Description Usage Arguments Value Author(s) Examples
The function partitions the scores into scores for each subgraph of the network.
1 | getCompScores(network, score)
|
network |
A network in graphNEL or igraph format. |
score |
Vector of scores. |
A data frame with the components of the network and the score for each PPI identifier.
Marcus Dittrich
1 2 3 4 5 6 7 8 9 | library(DLBCL)
data(interactome)
data(dataLym)
# create random subgraph with 100 nodes and their direct neighbors
nodes <- nodes(interactome)[sample(length(nodes(interactome)), 100)]
subnet <- subNetwork(nodeList=nodes, network=interactome, neighbors="first")
score <- dataLym$score001
names(score) <- dataLym$label
getCompScores(score=score, network=subnet)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.