RNV.ranking.order.factor: Name and value of RNV-ranking-order factor

Description Usage Arguments Details Value Examples

View source: R/RNV.ranking.order.factor.R

Description

Gives the name and values of the RNV-ranking-order factor

Usage

1
RNV.ranking.order.factor(A_fun,correl_fun,E_ini_fun,B_fun=NULL)

Arguments

A_fun

Numeric vector of activities

correl_fun

Character string indicating the abbreviation of the constraint applied on the system

E_ini_fun

Numeric vector of initial concentrations.

B_fun

Numeric vector of global co-regulation coefficients

Details

Factors governing ranking order of RNV

RNV-ranking-order factor depends on constraint. It would be:

Value

Invisible list of 2 elements:

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
A <- c(1,20,30)
E0 <- c(30,30,30)

#Independence
rank_var <- RNV.ranking.order.factor(A,"SC",E0)
all.equal(A^(1/3),rank_var$value) #TRUE

#Positive regulation
B <- 1/c(0.2,0.5,0.3)
rank_var <- RNV.ranking.order.factor(A,"RegPos",E0,B)
all.equal(1/B,rank_var$value) #TRUE

SimEvolEnzCons documentation built on Oct. 29, 2021, 1:07 a.m.