getCompScores {BioNet} | R Documentation |
The function partitions the scores into scores for each subgraph of the network.
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
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)