-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question: BiomaRt? #11
Comments
Hi Tokhir, Thank you very much for your question. I am always very happy to receive feedback on I tried to specify the differences between the established The main difference between To give you a short example: Imagine you are interested in the plant model Since this googling part might be feasible for some species, it becomes impossible to automate when using dozens or hundreds of species. For this reason, I implemented the Here are the examples for # retrieve available marts and datasets for Arabidopsis thaliana
Ath <- biomartr::organismBM(organism = "Arabidopsis thaliana")
# look at results
Ath[ , c("mart", "dataset", "version")]
Thus, thanks to the For # retrieve available marts and datasets for Saccharomyces cerevisiae
Scerevisiae <- biomartr::organismBM(organism = "Saccharomyces cerevisiae")
# look at results
Scerevisiae[ , c("mart", "dataset", "version")]
Here we see that there are 5 different As you can see, thanks to the specification by scientific name, this process of Analogously, the function In a common scenario, users wish to map # retrieve all id related attributes for Arabidopsis thaliana
biomartr::organismAttributes("Arabidopsis thaliana", topic = "id")
This way, users can retrieve all available id mapping Furthermore, in addition to the functionality provided by the I hope I could answer your question? Best wishes, |
I have been using bioconductor's BiomaRt package recently.
How is this package different from BiomaRt?
The text was updated successfully, but these errors were encountered: