nichenet_gr_network | R Documentation |
Builds gene regulatory network prior knowledge for NicheNet using multiple resources.
nichenet_gr_network(
omnipath = list(),
harmonizome = list(),
regnetwork = list(),
htridb = list(),
remap = list(),
evex = list(),
pathwaycommons = list(),
trrust = list(),
only_omnipath = FALSE
)
omnipath |
List with paramaters to be passed to
|
harmonizome |
List with paramaters to be passed to
|
regnetwork |
List with paramaters to be passed to
|
htridb |
List with paramaters to be passed to
|
remap |
List with paramaters to be passed to
|
evex |
List with paramaters to be passed to
|
pathwaycommons |
List with paramaters to be passed to
|
trrust |
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 gene regulatory interactions suitable for use with NicheNet.
nichenet_gr_network_evex
nichenet_gr_network_harmonizome
nichenet_gr_network_htridb
nichenet_gr_network_omnipath
nichenet_gr_network_pathwaycommons
nichenet_gr_network_regnetwork
nichenet_gr_network_remap
nichenet_gr_network_trrust
# load everything with the default parameters:
gr_network <- nichenet_gr_network()
# less targets from ReMap, not using RegNetwork:
gr_network <- nichenet_gr_network(
# I needed to disable ReMap here due to some issues
# of one of the Bioconductor build servers
# remap = list(top_targets = 200),
remap = NULL,
regnetwork = NULL,
)
# use only OmniPath:
gr_network_omnipath <- nichenet_gr_network(only_omnipath = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.