Description Usage Arguments Value Author(s) References See Also Examples
Given a set of KEGG gene/enzyme/compound/reation identifiers, the functions query the KEGG PATHWAY database for all the pathways in which items represented by the given set of identifers are involved
1 2 3 4 5 |
get.pathways.by.genes(genes.id.list)
get.pathways.by.enzymes(enzyme.id.list)
get.pathways.by.compounds(compound.id.list)
get.pathways.by.reactions(reaction.id.list)
|
genes.id.list |
|
enzyme.id.list |
|
compound.id.list |
|
reaction.id.list |
|
The functions return a vector of KEGG pathway ids
Kozo Nishida
http://www.kegg.jp/kegg/docs/keggapi.html
get.genes.by.pathway
,
get.enzymes.by.pathway
,
get.compounds.by.pathway
,
get.reactions.by.pathway
1 2 3 4 5 6 | # There seems to be some problem at the server side. Use try
pathways <- try(get.pathways.by.genes(c("eco:b0077", "eco:b0078")))
pathways <- try(get.pathways.by.enzymes("ec:1.3.99.1"))
pathways <- try(get.pathways.by.compounds(c("cpd:C00033", "cpd:C00158")))
pathways <- try(get.pathways.by.reactions(c("rn:R00959",
"rn:R02740", "rn:R00960", "rn:R01786")))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.