printSensitivity: Print out the sensitivity values of node/edge groups

Description Usage Arguments Details Value See Also Examples

View source: R/utils.R

Description

Print out the sensitivity values of node/edge groups in a network

Usage

1
printSensitivity(network, groupSet = 0)

Arguments

network

A network used for the outputting

groupSet

The indexing number of node/edge groups for whose sensitivity values are calculated. Default is 0 which specify the latest generated groups.

Details

This function prints out the sensitivity values of node/edge groups in a specific network. And the parameter groupSet has same meaning as in the calSensitivity function.

Value

None

See Also

calSensitivity, generateStates, generateGroups, generateGroup, findFBLs, findFFLs, calCentrality, findAttractors

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
data(amrn)

# generate 1000 random initial-states
states <- generateStates(amrn, 1000)
print(states)

# generate all possible groups each containing a single node in the HSN network
amrn <- generateGroups(amrn, "all", 1, 0)

# calculate sensitivity values of all nodes against the knockout mutation
amrn <- calSensitivity(amrn, states, "knockout")

# view the calculated sensitivity values and export all results to files
printSensitivity(amrn)

csclab/RMut documentation built on May 14, 2019, 12:07 p.m.