keggConv | R Documentation |
Convert KEGG identifiers to/from outside identifiers.
keggConv(target, source, querySize = 100)
target |
A KEGG organism code (), T number, or one of the external
databases |
source |
Same as |
querySize |
Empirically, KEGG limits queries to 100 source identifiers per query.
This argument enables larger queries by dividing |
A named character vector.
Dan Tenenbaum
https://www.kegg.jp/kegg/docs/keggapi.html
## conversion from NCBI GeneID to KEGG ID for E. coli genes
head(keggConv("eco", "ncbi-geneid"))
head(keggConv("ncbi-geneid", "eco")) ## opposite direction
## conversion from KEGG ID to NCBI GI
head(keggConv("ncbi-proteinid", c("hsa:10458", "ece:Z5100")))
## conversion from NCBI GI to KEGG ID when the organism code is not known:
head(keggConv("genes", "ncbi-geneid:3113320"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.