Description Usage Arguments Details Value Author(s) Examples
The function translates the KEGG graph into a graph of equivalant topology while index with unique identifiers given by user. The new identifiers could be, for example, GeneSymbol or other identifiers mapped to KEGGID.
1 | translateKEGGgraph(graph, newNodes)
|
graph |
A KEGG graph |
newNodes |
A character vector giving the new nodes, must be of the same length and same order of the nodes of the given graph |
The function is still experimental and users are welcomed to report any difficulties
Another graph indexed by the given identifier
Jitao David Zhang <jitao_david.zhang@roche.com>
1 2 3 4 5 6 7 8 9 10 11 12 | sfile <- system.file("extdata/hsa04010.xml",package="KEGGgraph")
gR <- parseKGML2Graph(sfile,expandGenes=TRUE)
subG <- subKEGGgraph(c("hsa:1848","hsa:1432","hsa:2002","hsa:8986"),gR)
symbols <- c("DUSP6","MAPK14","ELK1","RPS6KA4")
sub2G <- translateKEGGgraph(subG, symbols)
sub2G
nodes(sub2G)
if(require(Rgraphviz) & interactive()) {
plot(sub2G, "neato")
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.