Skip to main content

Simulation of Non-Steady state enzyme Kinetics and inhibitory phenomena

Project description

.. image:: docs/source/_static/images/logo/logo_nskinetics_light_white-circle.png :width: 250

=============================================================== The (Non-)Steady state Kinetics simulation package (NSKinetics)

.. image:: http://img.shields.io/pypi/v/nskinetics.svg?style=flat :target: https://pypi.python.org/pypi/nskinetics :alt: Version_status .. image:: http://img.shields.io/badge/docs-latest-brightgreen.svg?style=flat :target: https://nskinetics.readthedocs.io/en/latest/ :alt: Documentation .. image:: http://img.shields.io/badge/license-MIT-blue.svg?style=flat :target: https://github.com/sarangbhagwat/nskinetics/blob/main/LICENSE :alt: license .. image:: https://img.shields.io/pypi/pyversions/nskinetics.svg :target: https://pypi.python.org/pypi/nskinetics :alt: Supported_versions .. image:: https://coveralls.io/repos/github/sarangbhagwat/nskinetics/badge.svg?cachebuster=202507072 :target: https://coveralls.io/github/sarangbhagwat/nskinetics?branch=main

Contents

.. contents:: :local:

What is NSKinetics?

NSKinetics is a fast, flexible, and convenient package in Python to simulate steady and non-steady state reaction kinetics and to connect them with techno-economic analysis (TEA) and life cycle assessment (LCA) under uncertainty. NSKinetics enables the construction, simulation, and analysis of reaction systems governed by mass action kinetics or other user-defined rate laws. It supports features such as species concentration spikes, event triggers, inverse modeling (parameter fitting to experimental data), parameter identifiability analysis, and optimal design of experiments.

Installation

Get the latest version of NSKinetics from PyPI <https://pypi.org/project/nskinetics/>__. If you have an installation of Python with pip, simply install it with:

.. code-block:: bash

$ pip install nskinetics

To get the git version, run:

.. code-block:: bash

$ git clone git://github.com/sarangbhagwat/nskinetics

For help on common installation issues, please visit the documentation <https://nskinetics.readthedocs.io/en/latest/>__.

Documentation

NSKinetic's full documentation <https://nskinetics.readthedocs.io/en/latest/>__ is currently being developed. In the meantime, here are some examples to get started:

Example 1: Simple enzyme-substrate system

.. code-block:: python

import nskinetics as nsk

# Create a SpeciesSystem object
sp_sys = nsk.SpeciesSystem('sp_sys', 
                       ['E', 'S', 'ES', 'P'], # enzyme, substrate, enzyme-substrate complex, product
                       concentrations=[1e-4, 1e-4, 0, 0])

# Describe reactions by writing chemical equations and kinetic parameter info
reactions = [
            'E + S <-> ES; kf = 12, kb = 10.0', # kf = kon, kb = koff
            'ES -> E + P; kf = 32.0' # kf = kcat (enzyme turnover number)
            ]

# Generate a ReactionSystem from strings
rxn_sys = nsk.ReactionSystem(ID='ESP_rxn_sys', 
                             reactions=reactions,
                             species_system=sp_sys)

# Simulate the ReactionSystem
rxn_sys.solve(t_span=[0, 2*24*3600], # I want to simulate the system over 2 days
             sp_conc_for_events={'S':1e-6}, # In addition to a full simulation,
             )                              # I want to know the time at which [S] drops to 1e-6

# Plot results
rxn_sys.plot_solution() 

.. image:: docs/source/_static/images/example_1_plot_i.png :width: 400

Since [ES] was too small to view in the overall plot, let's also plot it separately:

.. code-block:: python

rxn_sys.plot_solution(sps_to_include=['ES'])

.. image:: docs/source/_static/images/example_1_plot_ii.png :width: 400

Example 2: Simple enzyme-substrate system + competitive inhibition + "mechanism-based" inhibition

.. code-block:: python

import nskinetics as nsk

# Create a SpeciesSystem object
sp_sys = nsk.SpeciesSystem('sp_sys', 
                       ['E', 'S', 'ES', 'P',
                        'I_CI', 'EI_CI', 'Q',
                        'I_MBI', 'EI_MBI_unstable', 'EI_MBI_stable'], # mechanism-based_inhibitor, unstable enzyme-MBI complex, stable enzyme-MBI complex 
                       concentrations=[1e-4, 1e-4, 0, 0,
                                       5e-5, 0, 0,
                                       0, 0, 0])

# Describe reactions by writing chemical equations and kinetic parameter info
reactions = [
            'E + S <-> ES; kf = 12, kb = 10.0',
            'ES -> E + P; kf = 32.0',
            'E + I_CI <-> EI_CI; kf=12, kb=10.0',
            'EI_CI -> E + Q; kf=32',
            'E + I_MBI <-> EI_MBI_unstable; kf=12.0, kb=10',
            'EI_MBI_unstable -> EI_MBI_stable; kf = 32'
            ]

# Generate a ReactionSystem from strings
rxn_sys = nsk.ReactionSystem(ID='rxn_sys', 
                                 reactions=reactions,
                                 species_system=sp_sys)

# Simulate the ReactionSystem
rxn_sys.solve(t_span=[0, 2*24*3600],
              sp_conc_for_events={'S':1e-6})

# Plot results
rxn_sys.plot_solution()

.. image:: docs/source/_static/images/example_2_plot_i.png :width: 400

Example 3: Simple enzyme-substrate system in a fed-batch regime

.. code-block:: python

import nskinetics as nsk

# Create a SpeciesSystem object
sp_sys = nsk.SpeciesSystem('sp_sys', 
                       ['E', 'S', 'ES', 'P',],
                       concentrations=[1e-4, 1e-4, 0, 0,])

# Describe reactions by writing chemical equations and kinetic parameter info
reactions = [
            'E + S <-> ES; kf = 12, kb = 10.0',
            'ES -> E + P; kf = 32.0',
            ]

# Generate a ReactionSystem from strings
rxn_sys = nsk.ReactionSystem(ID='rxn_sys', 
                                 reactions=reactions,
                                 species_system=sp_sys)


# Describe forced concentration spikes for any species 
# (e.g., from feeding substrate in a fed-batch regime)
spikes = {20000: 'Target; S; 1e-4', # at t=40000, add enough S to achieve [S]=1e-4
          50000: 'Target; S; 1e-4', # at t=50000, add enough S to to achieve [S]=1e-4
          80000: 'Target; S; 1e-4', # at t=80000, add enough S to achieve [S]=1e-4
          100000: 'Change; S; 2e-4',# at t=100000, add enough S to increase [S] by 2e-4
          }

# Simulate the ReactionSystem
rxn_sys.solve(t_span=[0, 2*24*3600],
              sp_conc_for_events={'S':1e-6},
              spikes=spikes)

# Plot results
rxn_sys.plot_solution()

.. image:: docs/source/_static/images/example_3_plot_i.png :width: 400

Bug reports

To report bugs, please use NSKinetics's Bug Tracker at:

https://github.com/sarangbhagwat/nskinetics

Contributing

For guidelines on how to contribute, visit:

[link to be added]

License information

See LICENSE.txt for information on the terms & conditions for usage of this software, and a DISCLAIMER OF ALL WARRANTIES.

Although not required by the NSKinetics license, if it is convenient for you, please cite NSKinetics if used in your work. Please also consider contributing any changes you make back, and benefit the community.

About the authors

NSKinetics was created and developed by Sarang S. Bhagwat <https://github.com/sarangbhagwat>__ as part of the Scown Group <https://cscown.com/>__ and the Energy & Biosciences Institute <https://energybiosciencesinstitute.org/>__ at the University of California, Berkeley (UC Berkeley) <https://www.berkeley.edu/>__.

References

.. [1] To be added <link to be added>__.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nskinetics-0.2.5.tar.gz (71.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

nskinetics-0.2.5-py3-none-any.whl (85.2 kB view details)

Uploaded Python 3

File details

Details for the file nskinetics-0.2.5.tar.gz.

File metadata

  • Download URL: nskinetics-0.2.5.tar.gz
  • Upload date:
  • Size: 71.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for nskinetics-0.2.5.tar.gz
Algorithm Hash digest
SHA256 d329613884f701c19f4966725b8c51bf73283f0c2717e99ee4289b84ec989bfd
MD5 ef27a1a516e2a0382be6bfdc5ea198e9
BLAKE2b-256 89e6b75ffa926edb5f87e80d102f3429b8228405d072ac79306f309b24ed325a

See more details on using hashes here.

File details

Details for the file nskinetics-0.2.5-py3-none-any.whl.

File metadata

  • Download URL: nskinetics-0.2.5-py3-none-any.whl
  • Upload date:
  • Size: 85.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for nskinetics-0.2.5-py3-none-any.whl
Algorithm Hash digest
SHA256 6242db37e52f470dd28ee9a19e5e6d50fdc91dd0a36e1ffd2cc84f86ba544a32
MD5 e4cd79a5c70c2ff49bcbebc4e0e2040a
BLAKE2b-256 7d28ad3f1ecf26c3fdf57aa76233e5be81f81fb27e545c897f13c3a17a248c6a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page