omnipath-interactions | R Documentation |
The functions listed here all download pairwise, causal molecular interactions from the https://omnipathdb.org/interactions endpoint of the OmniPath web service. They are different only in the type of interactions and the kind of resources and data they have been compiled from. A complete list of these functions is available below, these cover the interaction datasets and types currently available in OmniPath:
Interactions from the https://omnipathdb.org/interactions endpoint of the OmniPath web service. By default, it downloads only the "omnipath" dataset, which corresponds to the curated causal interactions described in Turei et al. 2016.
Imports interactions from the 'omnipath' dataset of OmniPath, a dataset that inherits most of its design and contents from the original OmniPath core from the 2016 publication. This dataset consists of about 40k interactions.
Imports the dataset from: https://omnipathdb.org/interactions?datasets=pathwayextra, which contains activity flow interactions without literature reference. The activity flow interactions supported by literature references are part of the 'omnipath' dataset.
Imports the dataset from: https://omnipathdb.org/interactions?datasets=kinaseextra, which contains enzyme-substrate interactions without literature reference. The enzyme-substrate interactions supported by literature references are part of the 'omnipath' dataset.
Imports the dataset from: https://omnipathdb.org/interactions?datasets=ligrecextra, which contains ligand-receptor interactions without literature reference. The ligand-receptor interactions supported by literature references are part of the 'omnipath' dataset.
Imports interactions from all post-translational datasets of OmniPath. The datasets are "omnipath", "kinaseextra", "pathwayextra" and "ligrecextra".
Imports the dataset from: https://omnipathdb.org/interactions?datasets=dorothea which contains transcription factor (TF)-target interactions from DoRothEA https://github.com/saezlab/DoRothEA DoRothEA is a comprehensive resource of transcriptional regulation, consisting of 16 original resources, in silico TFBS prediction, gene expression signatures and ChIP-Seq binding site analysis.
Imports the dataset from: https://omnipathdb.org/interactions?datasets=tf_target, which contains transcription factor-target protein coding gene interactions. Note: this is not the only TF-target dataset in OmniPath, 'dorothea' is the other one and the 'tf_mirna' dataset provides TF-miRNA gene interactions.
Imports the dataset from: https://omnipathdb.org/interactions?datasets=tf_target,dorothea, which contains transcription factor-target protein coding gene interactions.
CollecTRI is a comprehensive resource of transcriptional regulation, published in 2023, consisting of 14 resources and original literature curation.
Imports the dataset from: https://omnipathdb.org/interactions?datasets=mirnatarget, which contains miRNA-mRNA interactions.
Imports the dataset from: https://omnipathdb.org/interactions?datasets=tf_mirna, which contains transcription factor-miRNA gene interactions
Imports the dataset from: https://omnipathdb.org/interactions?datasets=lncrna_mrna, which contains lncRNA-mRNA interactions
Imports the dataset from: https://omnipathdb.org/interactions?datasets=small_molecule, which contains small molecule-protein interactions. Small molecules can be metabolites, intrinsic ligands or drug compounds.
omnipath_interactions(...)
omnipath(...)
pathwayextra(...)
kinaseextra(...)
ligrecextra(...)
post_translational(...)
dorothea(dorothea_levels = c("A", "B"), ...)
tf_target(...)
transcriptional(dorothea_levels = c("A", "B"), ...)
collectri(...)
mirna_target(...)
tf_mirna(...)
lncrna_mrna(...)
small_molecule(...)
all_interactions(
dorothea_levels = c("A", "B"),
types = NULL,
fields = NULL,
exclude = NULL,
...
)
... |
Arguments passed on to
|
dorothea_levels |
The confidence levels of the dorothea interactions (TF-target) which range from A to D. Set to A and B by default. |
types |
Character: interaction types, such as "transcriptional", "post_transcriptional", "post_translational", etc. |
fields |
Character: additional fields (columns) to be included in the
result. For a list of available fields, see |
exclude |
Character: names of datasets or resource to be excluded from
the result. By deafult, the records supported by only these resources or
datasets will be removed from the output. If |
Post-translational (protein-protein, PPI) interactions
omnipath
: the OmniPath data as defined in the 2016 paper,
an arbitrary optimum between coverage and quality. This dataset
contains almost entirely causal (stimulatory or inhibitory; i.e.
activity flow , according to the SBGN standard), physical
interactions between pairs of proteins, curated by experts
from the literature.
pathwayextra
: activity flow interactions without literature
references.
kinaseextra
: enzyme-substrate interactions without
literature references.
ligrecextra
: ligand-receptor interactions without
literature references.
post_translational
: all post-translational
(protein-protein, PPI) interactions; this is the combination of the
omnipath, pathwayextra, kinaseextra and ligrecextra
datasets.
TF-target (gene regulatory, GRN) interactions
collectri
: transcription factor (TF)-target
interactions from CollecTRI.
dorothea
: transcription factor (TF)-target
interactions from DoRothEA
tf_target
: transcription factor
(TF)-target interactions from other resources
transcriptional
: all transcription factor
(TF)-target interactions; this is the combination of the
collectri, dorothea and tf_target datasets.
Post-transcriptional (miRNA-target) and other RNA related interactions
In these datasets we intend to collect the literature curated resources, hence we don't include some of the most well known large databases if those are based on predictions or high-throughput assays.
mirna_target
: miRNA-mRNA interactions
tf_mirna
: TF-miRNA interactions
lncrna_mrna
: lncRNA-mRNA interactions
Other interaction access functions
small_molecule
: interactions between small molecules and
proteins. Currently this is a small, experimental dataset that
includes drug-target, ligand-receptor, enzyme-metabolite and other
interactions. In the future this will be largely expanded and
divided into multiple datasets.
all_interactions
: all the interaction datasets combined.
A dataframe of molecular interactions.
A dataframe of literature curated, post-translational signaling interactions.
A dataframe containing activity flow interactions between proteins without literature reference
A dataframe containing enzyme-substrate interactions without literature reference
A dataframe containing ligand-receptor interactions including the ones without literature references
A dataframe containing post-translational interactions
A data frame of TF-target interactions from DoRothEA.
A dataframe containing TF-target interactions
A dataframe containing TF-target interactions.
A dataframe of TF-target interactions.
A dataframe containing miRNA-mRNA interactions
A dataframe containing TF-miRNA interactions
A dataframe containing lncRNA-mRNA interactions
A dataframe of small molecule-protein interactions
A dataframe containing all the datasets in the interactions query
interaction_resources
interaction_graph
print_interactions
annotated_network
omnipath_interactions
post_translational
interaction_resources
all_interactions
interaction_graph
print_interactions
op <- omnipath(resources = c("CA1", "SIGNOR", "SignaLink3"))
op
interactions = omnipath_interactions(
resources = "SignaLink3",
organism = 9606
)
pathways <- omnipath()
pathways
interactions <-
pathwayextra(
resources = c("BioGRID", "IntAct"),
organism = 9606
)
kinase_substrate <-
kinaseextra(
resources = c('PhosphoPoint', 'PhosphoSite'),
organism = 9606
)
ligand_receptor <- ligrecextra(
resources = c('HPRD', 'Guide2Pharma'),
organism = 9606
)
interactions <- post_translational(resources = "BioGRID")
dorothea_grn <- dorothea(
resources = c('DoRothEA', 'ARACNe-GTEx_DoRothEA'),
organism = 9606,
dorothea_levels = c('A', 'B', 'C')
)
dorothea_grn
interactions <- tf_target(resources = c("DoRothEA", "SIGNOR"))
grn <- transcriptional(resources = c("PAZAR", "ORegAnno", "DoRothEA"))
grn
collectri_grn <- collectri()
collectri_grn
interactions <- mirna_target( resources = c("miRTarBase", "miRecords"))
interactions <- tf_mirna(resources = "TransmiR")
interactions <- lncrna_mrna(resources = c("ncRDeathDB"))
# What are the targets of aspirin?
interactions <- small_molecule(sources = "ASPIRIN")
# The prostaglandin synthases:
interactions
interactions <- all_interactions(
resources = c("HPRD", "BioGRID"),
organism = 9606
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.