Revision 1 as of 2010-05-20 02:11:46

Clear message

Example of how to get all mouse gene coordinates using biomaRt:

library(biomaRt)

mouse <- useMart("ensembl", dataset="mmusculus_gene_ensembl")

# check out what's available
ma <- listAttributes(mouse)

loci <- getBM(attribute=c("chromosome_name", "start_position", "end_position", "strand"), mart=mouse)