Python code to run kinetic models of enzyme reactions


Keywords
enzyme, kinetics, modelling, biocatalysis, reactions
License
MIT
Install
pip install kinetics==1.4.3

Documentation

kinetics

Documentation Status

kinetics is a package for modelling reactions using ordinary differential equations. It's primarily aimed at modelling enzyme reactions, although can be used for other purposes.

See the Documentation for more information.

kinetics uses scipy.integrate.odeint to solve ordinary differential equations, but extends upon this to allow the use of parameter distributions rather than single parameter values. This allows error to be incorporated into the modelling.

kinetics uses scipy's probability distributions, with a large number of distributions to choose from. Typically uniform , normal, log-uniform or log-normal distributions are used.

Documentation: ReadTheDocs

Github: kinetics

Requirements: NumPy, SciPy, matplotlib, tqdm, pandas, SALib, seaborn, and deap.

Installation: pip install kinetics

Citation: Finnigan, W., Cutlan, R., Snajdrova, R., Adams, J., Littlechild, J. and Harmer, N. (2019), Engineering a seven enzyme biotransformation using mathematical modelling and characterized enzyme parts. ChemCatChem.

graphical abstract

Features

  • Construct systems of ODEs simply by selecting suitable rate equations and naming parameters and species.
  • Use either simple parameter values or probability distributions.
  • Run sensitivity analysis using SALib
  • Easily plot model runs using predefined plotting functions
  • Optimisation using genetic algorithm using DEAP (coming soon)