keggInfo {KEGGREST} | R Documentation |
Displays statistics of a given database, such as number of entries, version, release date, and source.
keggInfo(database)
database |
Either a KEGG database (list available via |
A character vector containing statistics about database
.
Dan Tenenbaum
https://www.kegg.jp/kegg/docs/keggapi.html
res <- keggInfo("kegg") ## displays the current statistics of the KEGG database
cat(res)
res <- keggInfo("pathway") ## displays the number pathway entries including both
## the reference and organism-specific pathways
cat(res)
res <- keggInfo("hsa") ## displays the number of gene entries for the
## KEGG organism Homo sapiens
cat(res)