-
Notifications
You must be signed in to change notification settings - Fork 3
Home
bioguo edited this page Nov 29, 2019
·
1 revision
Build Annotation package by using information from KEGG, NCBI, Ensembl and return OrgDb object such as org.Hs.eg.db.
bioAnno provide wrap functions fromKEGG, fromEnsembl,fromNCBI and fromAnnoHub to build annotation package.
library(devtools)
install_github("guokai8/bioAnno")
library(bioAnno)
## build Annotation package by using fromKEGG
fromKEGG(species="hsa")
## which will build and install package "org.hsa.eg.db" which will include KEGG, GO annotation
## build Annotation package by using fromEnsembl
fromEnsembl(species="Human")
## build from AnnotationHub
fromAnnoHub(species="human")
The bioAnno just a package for funs. bioAnno provide wrap function which help me to easily build annotation package. The fromAnnoHub function is ready to use.
For any questions please contact [email protected]