Description Usage Arguments Value Examples
subnetwork gets a bipartite network containing only the transcription factors or genes and their respective connections
1 | subnetwork(x, nodes, subTf = TRUE)
|
x |
an object of class "panda" |
nodes |
character vector containing the transcription factor or gene labels to subset |
subTf |
an optional logical indicating whether to subset by transcription factor. Default is TRUE. |
An matrix describing the subsetted bipartite network.
1 2 3 4 5 6 7 8 9 | data(pandaToyData)
pandaRes <- panda(pandaToyData$motif,
pandaToyData$expression,pandaToyData$ppi,hamming=.001,progress=TRUE)
topPandaRes <- topedges(pandaRes,1000)
subnet.pandaRes <- subnetwork(topPandaRes,c("AR","ARID3A","ELK1"))
data(pandaResult)
topPandaRes <- topedges(pandaResult,1000)
subnetwork(topPandaRes,c("AR","ARID3A","ELK1"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.