joinNetworks | R Documentation |
This function joins multiple networks and resticts the joined network to interactions involving a target node ID of interest
joinNetworks(id, network, intA.col = "SymbolA", intB.col = "SymbolB")
id |
character. A gene or protein ID around which a joined network should be constructed. |
network |
list. Each element of the list is a |
intA.col |
character. Name of the column that stores the ID of the first
interactor in each |
intB.col |
character. Name of the column that stores the ID of the second
interactor in each |
A data.frame
containing the joined network.
library(BioPlex) bp.293t <- BioPlex::getBioPlex(cell.line = "293T", version = "3.0") bp.hct <- BioPlex::getBioPlex(cell.line = "HCT116", version = "1.0") netl <- list(HEK = bp.293t, HCT = bp.hct) jnet <- joinNetworks(id = "CDH2", network = netl)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.