You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using the package to retrieve the enzymes and their reactions but the output from the package is missing reactions and enzymes found on the website. For example in the https://www.genome.jp/kegg-bin/show_pathway?hsa00670 pathway, the MTHFD1 (1.5.1.5) protein faciliates a reaction which is missing from the reactions retrieved from the KEGGgraph. Why is this?
Hi,
I'm using the package to retrieve the enzymes and their reactions but the output from the package is missing reactions and enzymes found on the website. For example in the https://www.genome.jp/kegg-bin/show_pathway?hsa00670 pathway, the MTHFD1 (1.5.1.5) protein faciliates a reaction which is missing from the reactions retrieved from the KEGGgraph. Why is this?
Thank you,
Savvas
library(KEGGgraph)
tmp <- tempfile()
genes_reactions <- data.frame(Gene_id = NULL,
Reaction = NULL,
pathway = NULL,
stringsAsFactors = F)
compound_reactions <- data.frame(Reaction = NULL,
Substrate = NULL,
Product = NULL,
Direction = NULL,
pathway = NULL,
stringsAsFactors = F)
j<- "hsa00670"
retrieveKGML(j, organism="hsa", destfile=tmp, method="auto", quiet=TRUE)
testing <- KEGGgraph::parseKGML2Graph(tmp)
The text was updated successfully, but these errors were encountered: