getCompScores {BioNet}R Documentation

Partition scores for subgraphs of the network

Description

The function partitions the scores into scores for each subgraph of the network.

Usage

getCompScores(network, score)

Arguments

network

A network in graphNEL or igraph format.

score

Vector of scores.

Value

A data frame with the components of the network and the score for each PPI identifier.

Author(s)

Marcus Dittrich

Examples

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)

[Package BioNet version 1.54.0 Index]