Learn R Programming

BioNet (version 1.26.1)

getCompScores: 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.

Examples

Run this code
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)

Run the code above in your browser using DataLab