getDisplayName-methods | R Documentation |
In KGML files, 'graph' element has a 'name' attribute to store the displaying name of a node, which is straighforward for end users. For example, biologists have no idea about a node 'hsa:1432' but its display name 'MAPK14' helps them to link this node to their knowledge. This method extract DisplayName from graph objects for KEGGNode and graph, where the method for graph returns the display names of its nodes.
An object of KEGGNode-class
A KEGG graph object
Jitao David Zhang mailto:jitao_david.zhang@roche.com
KGML Document Manual https://www.genome.jp/kegg/docs/xml/
sfile <- system.file("extdata/hsa04010.xml",package="KEGGgraph") pathway <- parseKGML(sfile) nodes <- nodes(pathway) subnodes <- nodes[10:15] sapply(subnodes, getDisplayName) ## compare them with getName, one 'displayName' may correspond to many paralogues sapply(subnodes, getName)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.