translateKEGGID2GeneID | R Documentation |
translateKEGGID2GeneID
translates KEGGID to NCBI Entrez Gene ID, and
translateGeneID2KEGGID
translates Entrez Gene ID back to KEGGID.
translateKEGGID2GeneID(x, organism="hsa") translateGeneID2KEGGID(x, organism="hsa")
x |
KEGGID, e.g. 'hsa:1432', or Entrez Gene ID, e.g. '1432' |
organism |
Three alphabet code for organisms. The mapping between the orgniams and codes can be found at https://www.genome.jp/kegg/kegg3.html |
The KEGGID are unique identifiers used by KEGG PATHWAY to identify gene products. After parsing the KEGG pathway into graph, the graph use KEGGID as its nodes' names.
translateKEGGID2GeneID
converts KEGGIDs into entrez GeneID, which can be
translated to other types of identifiers, for example with biomaRt
package or organism-specific annotation packages. See vignette for
examples.
translateKEGG2GeneID
is maintained for back-compatibility and
wrapps translateKEGGID2GeneID
.
Entrez GeneID of the given KEGG ID(s)
This function works so far only with human KEGGIDs, since for them the Entrez GeneID can be derived easily with removing the organism prefix.
The complete functional function will be implemented in the later release of the package.
Jitao David Zhang
egNodes <- c("hsa:1432", "hsa:11072") translateKEGGID2GeneID(egNodes) translateGeneID2KEGGID("1432")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.