Description Usage Arguments Value Author(s) References Examples
Returns a list of entry identifiers and associated definition for a given database or a given set of database entries.
1 | keggList(database, organism)
|
database |
Either a KEGG database (list available via |
organism |
|
A named character vector containing entry identifiers and associated definition.
Dan Tenenbaum
https://www.kegg.jp/kegg/docs/keggapi.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | res <- keggList("pathway") ## returns the list of reference pathways
length(res)
head(res)
res <- keggList("pathway", "hsa") ## returns the list of human pathways
length(res)
head(res)
res <- keggList("organism") ## returns the list of KEGG organisms with
## taxonomic classification
nrow(res)
head(res)
res <- keggList("hsa") ## returns the entire list of human genes
length(res)
head(res)
## keggList("T01001") ## same as above
keggList(c("hsa:10458", "ece:Z5100")) ## returns the list of a human gene
## and an E.coli O157 gene
keggList(c("cpd:C01290","gl:G00092")) ## returns the list of a compound entry
## and a glycan entry
keggList(c("C01290+G00092")) ## same as above (prefixes are not necessary)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.