nichenet_signaling_network | R Documentation |
Builds signaling network prior knowledge for NicheNet using multiple resources.
nichenet_signaling_network(
omnipath = list(),
pathwaycommons = list(),
harmonizome = list(),
vinayagam = list(),
cpdb = list(),
evex = list(),
inbiomap = list(),
only_omnipath = FALSE
)
omnipath |
List with paramaters to be passed to
|
pathwaycommons |
List with paramaters to be passed to
|
harmonizome |
List with paramaters to be passed to
|
vinayagam |
List with paramaters to be passed to
|
cpdb |
List with paramaters to be passed to
|
evex |
List with paramaters to be passed to
|
inbiomap |
List with paramaters to be passed to
|
only_omnipath |
Logical: a shortcut to use only OmniPath as network resource. |
A network data frame (tibble) with signaling interactions suitable for use with NicheNet.
nichenet_signaling_network_omnipath
nichenet_signaling_network_pathwaycommons
nichenet_signaling_network_harmonizome
nichenet_signaling_network_vinayagam
nichenet_signaling_network_cpdb
nichenet_signaling_network_evex
nichenet_signaling_network_inbiomap
# load everything with the default parameters:
# we don't load inBio Map due to the - hopefully
# temporary - issues of their server
sig_network <- nichenet_signaling_network(inbiomap = NULL, cpdb = NULL)
# override parameters for some resources:
sig_network <- nichenet_signaling_network(
omnipath = list(resources = c('SIGNOR', 'SignaLink3', 'SPIKE')),
pathwaycommons = NULL,
harmonizome = list(datasets = c('phosphositeplus', 'depod')),
# we can not include this in everyday tests as it takes too long:
# cpdb = list(complex_max_size = 1, min_score = .98),
cpdb = NULL,
evex = list(min_confidence = 1.5),
inbiomap = NULL
)
# use only OmniPath:
sig_network_omnipath <- nichenet_signaling_network(only_omnipath = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.