bc41c5da |
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/keggDataREST.R
|
d3c522bc |
\name{keggPathwayGraphs}
\alias{keggPathwayGraphs}
\title{Download and parse KEGG pathway data}
\usage{
|
bc41c5da |
keggPathwayGraphs(organism = "hsa", targRelTypes = c("GErel", "PCrel",
"PPrel"), relPercThresh = 0.9, nodeOnlyGraphs = FALSE,
updateCache = FALSE, verbose = TRUE)
|
d3c522bc |
}
\arguments{
|
bc41c5da |
\item{organism}{organism code as defined by KEGG}
|
d3c522bc |
|
bc41c5da |
\item{targRelTypes}{target relation types}
|
d3c522bc |
|
bc41c5da |
\item{relPercThresh}{percentage of the number of relation types over all possible realtions in the pathway}
|
d3c522bc |
|
bc41c5da |
\item{nodeOnlyGraphs}{allow graphs with no edges}
|
d3c522bc |
|
bc41c5da |
\item{updateCache}{re-download KEGG data}
|
d3c522bc |
|
bc41c5da |
\item{verbose}{show progress of downloading and parsing}
|
d3c522bc |
}
\value{
|
bc41c5da |
A list of \code{\link{graphNEL}} objects encoding the pathway information.
|
d3c522bc |
}
\description{
|
bc41c5da |
Download and parse KEGG pathway data
|
d3c522bc |
}
\examples{
|
bc41c5da |
# The pathway cache provided as part of the pathway contains only the
|
d3c522bc |
# pathways that passed the default filtering. We recommend, re-downloading
# the pathways using the updateCache parameter
kpg <- keggPathwayGraphs("hsa")
# to update the pathway cache for human run:
# kpg <- keggPathwayGraphs("hsa", updateCache = TRUE)
# this is time consuming and depends on the available bandwith.
head(names(kpg))
kpg[["path:hsa04110"]]
head(nodes(kpg[["path:hsa04110"]]))
head(edges(kpg[["path:hsa04110"]]))
|
bc41c5da |
|
d3c522bc |
}
\author{
|
bc41c5da |
Calin Voichita and Sorin Draghici
|
d3c522bc |
}
\seealso{
|
bc41c5da |
\code{\link{keggPathwayNames}}
|
d3c522bc |
}
|