pathway_search {phoenics} | R Documentation |
Query KEGG pathways for a given set of metabolites
Description
Query KEGG pathways for a given set of metabolites
Usage
pathway_search(metab, organism, min_size = 2)
Arguments
metab |
vector of metabolite KEGG codes |
organism |
organism code in KEGG database |
min_size |
minimal number of metabolites required for a pathway to be returned |
Value
a data.frame with metabolites in rows and the following information in columns:
-
metabolite_code
metabolite code -
metabolite_name
metabolite name -
pathway_code
pathway code (identifier) -
pathway_name
name of the pathway
Author(s)
Camille Guilmineau <camille.guilmineau@inrae.fr>
Remi Servien <remi.servien@inrae.fr>
Nathalie Vialaneix <nathalie.vialaneix@inrae.fr>
References
Kanehisa M., Goto S. (2000). KEGG: Kyoto Encyclopedia of Genes and Genomes, Nucleic Acids Research, Volume 28, Issue 1, Pages 27–30, doi:10.1093/nar/28.1.27
Tenenbaum D., Maintainer B. (2022). KEGGREST: Client-side REST access to the Kyoto Encyclopedia of Genes and Genomes (KEGG). R package version 1.38.0.
Examples
if (requireNamespace("KEGGREST", quietly = TRUE)) {
data("MTBLS422")
quantif <- from_ASICS_to_PHOENICS(quantif)
pathways <- pathway_search(metab = colnames(quantif), organism = "mmu")
}