Learn R Programming

SimEvolEnzCons (version 2.0.0)

compute.delta: Computation of mutation actual effect

Description

Computes the actual effect \(\delta\) of a mutation

Usage

compute.delta(nu_fun,E_fun,correl_fun,B_fun=NULL)

Arguments

nu_fun

Numeric. Canonical effect of the mutation

E_fun

Numeric vector of concentrations

correl_fun

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

B_fun

Numeric vector of global co-regulation coefficients

Value

Numeric vector. Each element i of the vector is the actual effect \(\delta_i\) for which enzyme i in E_fun is targeted by the mutation.

Details

Computes the actual effect \(\delta\) of a mutation depending on its canonical effect \(\nu\) and on the constraints.

See Also

Use function is.correl.authorized to see allowed constraints for correl_fun.

Examples

Run this code
# NOT RUN {
mu <- 1
E <- c(30,30,30)
beta <- matrix(c(1,10,5,0.1,1,0.5,0.2,2,1),nrow=3)
B <- apply(beta,1,sumbis)
correl <- "RegPos"

compute.delta(mu,E,correl,B)


# }

Run the code above in your browser using DataLab