1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/utils-omnipath.R
\name{get_resource}
\alias{get_resource}
\title{Wrapper to access resources inside Omnipath.
This wrapper allows to easily query different prior knowledge resources.
To check available resources run \code{decoupleR::show_resources()}. For more
information visit the official website for \href{https://omnipathdb.org/}{Omnipath}.}
\usage{
get_resource(name, organism = "human", ...)
}
\arguments{
\item{name}{Name of the resource to query.}
\item{organism}{Organism name or NCBI Taxonomy ID.}
\item{...}{Passed to \code{OmnipathR::import_omnipath_annotations}.}
}
\description{
Wrapper to access resources inside Omnipath.
This wrapper allows to easily query different prior knowledge resources.
To check available resources run \code{decoupleR::show_resources()}. For more
information visit the official website for \href{https://omnipathdb.org/}{Omnipath}.
}
\examples{
df <- decoupleR::get_resource('SIGNOR')
}
|