getSpecies {biomaRt} | R Documentation |
Displays species identifiers currently present in Ensembl
getSpecies(mart, db = c("ensembl"))
db |
database to query, only works for Ensembl |
mart |
object of class Mart, containing connections to the BioMart databases. You can creat such an object using the function martConnect. |
Steffen Durinck, http://www.esat.kuleuven.ac.be/~sdurinck
if(interactive()){ mart <- martConnect() species =getSpecies(mart = mart) show(species) martDisconnect(mart = mart) }