flux: Flux computation

Description Usage Arguments Details Value References See Also Examples

View source: R/flux.R

Description

Computes the flux of a metabolic pathway

Usage

1
flux(E_fun,A_fun,X_fun=1)

Arguments

E_fun

Numeric vector of concentrations

A_fun

Numeric vector of activities

X_fun

Numeric value. Default is 1

Details

Computes the flux of a metabolic pathway according to the Metabolic Control Theory (Kacser and Burns, 1973).

Value

flux returns a numeric value

References

Kacser, H. and J. A. Burns, 1973. The control of flux. Symp. Soc. Exp. Biol. 27:65–104.

Kacser, H., J. A. Burns, H. Kacser, and D. A. Fell, 1995. The control of flux : 21 years on. Biochemical Society Transactions 23:341–366.

See Also

Use function activities to compute enzyme activities.

Examples

1
2
3
4
5
E <- c(1,10,30)
A <- c(30,30,30)
J <- flux(E,A)

#result : J = 26.47059

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