Description Usage Arguments Author(s) Examples
ensemblGo annotate the ENSEMBL ID with GO terms via ensembl online
1 2 3 4 |
genes |
a character vector of ENSG id |
parallel |
whether use parallel strategy to accelerate the process |
save.file |
whether save the data |
names |
part of saved file name |
Weibin Huang<654751191@qq.com>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | ## test genes
test <- common.annot$ENSEMBL;genes <- test[1:50]
## Not use parallel
system.time(
a <- ensemblGo(genes)
)
# User System time (50 tests)
# 0.56 0.15 36.20
## Use parallel
system.time(
a <- ensemblGo(genes,parallel = T)
)
# User System time (50 tests)
# 0.09 0.01 14.19
## Get available Go annotation
a2 <- a[a$Accession != "NotAvailable",]
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.