Description Methods Author(s) References Examples
This method can be used to extract generic type attribute from several objects implemented in KEGGgraph package.
The meanings and descriptions of the types can be found at KGML manual listed in the reference.
An object of KEGGEdge-class
An object of KEGGNode-class
An object of
KEGGReaction-class
Jitao David Zhang mailto:jitao_david.zhang@roche.com
KGML Manual http://www.genome.jp/kegg/docs/xml/
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | mapfile <- system.file("extdata/map00260.xml", package="KEGGgraph")
maptest <- parseKGML(mapfile)
## node type
node <- nodes(maptest)[[3]]
getType(node)
## edge type
edge <- edges(maptest)[[5]]
getType(edge)
## reaction type
reaction <- getReactions(maptest)[[5]]
getType(reaction)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.