powered by
Computes the mutant value of enzyme kinetic parameters
mut.kin(kin_fun,i_fun,nu_fun,typ_A=1)
Numeric vector of enzyme kinetic parameter, which are the resident values
Numeric value indicating the number of the enzyme targeted by the mutation
Numeric value of mutation size
Numeric for mutation method. Default is 1. See details in mut.kin.
mut.kin
Numeric vector of mutant values of enzyme kinetic parameters
This function used three mutation methods:
Additive method (typ_A=1): mutant kinetic parameter is the sum of the resident one plus size of mutation \(\nu\)
typ_A=1
Multiplicative method (typ_A=2): mutant kinetic parameter is the product of the resident one and \(1+\nu\)
typ_A=2
Random method (typ_A=3): mutant kinetic parameter is equal to the mutation size
typ_A=3
The method 1 is the default one.
See function mut.E.direct to compute mutation for enzyme concentrations.
mut.E.direct
See function activities to compute "activities" from enzyme kinetic parameters.
activities
# NOT RUN { kin <- c(1,10,1000) mu <- 1 #size of mutation i <- 3 #enzyme directly targeted by mutation mut.kin(kin,i,mu) # }
Run the code above in your browser using DataLab