findAttractors: Identifies attractors of a network.

Description Usage Arguments Details Value See Also Examples

View source: R/core.R

Description

Identifies attractors of a network and returns the resulted transition network.

Usage

1
findAttractors(network, stateSet)

Arguments

network

A network used for the attractors search

stateSet

The identifier for accessing a set of initial-states

Details

This function searches attractors of a specific network, and the returned results are stored in a Transition network object. The calculation is based on a set of initial-states specified by an identifier stateSet. The current set of update-rules of the network is used with a synchronous updating scheme.

Value

The resulted transition network.

See Also

generateStates, generateState, generateRule, calSensitivity

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
data(amrn)
# Generate a set of random Nested Canalyzing rules
generateRule(amrn, 2)

# Generate a specific initial-state for the AMRN network
state1 <- generateState(amrn, "1110011011")

transNet <- findAttractors(amrn, state1)
print(transNet)
output(transNet)

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