rpa_finder
Description
rpa_finder is a python package for the systematic discovery of Robust Perfect Adaptation (RPA) in chemical reaction networks.
It facilitates the determination of the dependencies of steady-state concentrations and reaction rates on all the reaction parameters (and the values of conserved quantitites if any) in a model-independent manner. This allows for systematic discovery of Robust Perfect Adaptation (RPA) in a reaction network. The determination is achieved through the enumeration of all the labeled buffering structures for a given reaction network. Once we have the list of labeled buffering structures, one can, for example, do the following:
- Finds all the concentrations and reactions affected by the change of a chosen reaction parameter.
- Finds all the reactions that affect the steady-state value of the concentration of a chosen species.
- Finds integrators realizing each RPA property represented by a (labeled) buffering structure.
Installation
The Python package can be installed via pip. Ensure that you have Python and pip installed on your system, then run the following command:
pip install rpa_finder
Usage
For examples, see also examples.ipynb.
Finding labeled buffering structures
First, prepare a list of reactions and create a reaction system object. For example, let us consider a reaction network with three species ${v_1,v_2,v_3}$ and the following five reactions:
-
$e_1: \emptyset \to v_1$
-
$e_2: v_1 \to v_2$
-
$e_3:v_2 \to v_3$
-
$e_4:v_3 \to v_1$
-
$e_5:v_2 \to \emptyset$
To prepare a reaction system for this network, let us first define a reaction network in a text format as
network1 = """
"", "v1"
"v1", "v2"
"v2", "v3"
"v3", "v1"
"v2", ""
"""
We can create a ReactionSystem object corresponding to the network.
Call the method enumerate_labeled_buffering_structures to enumerate labeled buffering structures for this network:
r_system1 = ReactionSystem(network1)
A labeled buffering structure is expressed by a quadruple, $( P, V_P, E_P, \mathcal E_P)$, where
- $P$ denotes a set of parameters that are perturbed
- $V_P$ denotes the set of species affected by the perturbation of the parameters in $P$
- $E_P$ denotes the set of reactions affected by the perturbation of the parameters in $P$
- $\mathcal E_P$ denote a set of added reactions to make the subnetwork $(V_P,E_P \cup \mathcal E_P)$ output-complete
Labeled buffering structures for a given reaction system can be found by the following function,
lbs_list = r_system1.enumerate_labeled_buffering_structures()
The output is
[[0], [0, 1, 2], [0, 1, 2, 3, 4], []]
[[1], [0], [], [1]]
[[2], [0, 2], [1, 2, 3], []]
[[3], [2], [], [3]]
[[4], [0, 1, 2], [1, 2, 3], [4]]
The species and reactions are indicated by indices.
To use names for species, one can use lbs_to_name:
lbs_name = [ r_system1.lbs_to_name(l) for l in lbs_list]
The content of lbs_name is
[[0], ['v1', 'v2', 'v3'], [0, 1, 2, 3, 4], []]
[[1], ['v1'], [], [1]]
[[2], ['v1', 'v3'], [1, 2, 3], []]
[[3], ['v3'], [], [3]]
[[4], ['v1', 'v2', 'v3'], [1, 2, 3], [4]]
We can read off the dependencies of concentrations and reaction rates on all the system parameters. For example, from the third labeled buffering structure, we can see that the perturbation of the parameter of reaction $e_3$ affects the concentrations of $v_1$ and $v_3$ and the rates of reactions $e_2,e_3,e_4$. It does not affect the concentration of $v_2$ and reaction rates of $e_1$ and $e_5$, which means that they exhibit RPA with respect to this parameter.
Note that the indices specifying the parameters is arranged in the order of $(\vec k, \vec \ell)$, where $\vec k$ are rate parameters and $\vec \ell$ are the values of conserved quantities.
As a basis of conserved quantities, those return by scipy.linalg.null_space(s) is used, where s is the stoichiometric matrix of the reaction system.
Testing
Tests can be run by python -m unittest discover -s tests
Reference
- Y. Hirono, A. Gupta, M. Khammash, "Complete characterization of robust perfect adaptation in biochemical reaction networks," arXiv:2307.07444.
Contact
If you have any questions or suggestions, feel free to drop an email to Yuji Hirono.
License
RPAFinder is licensed under the MIT License. See LICENSE for details.
Release files for rpa-finder 0.1.2
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| rpa_finder-0.1.2.tar.gz | 17.0 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| rpa_finder-0.1.2-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 42.3 kB
Release files / rpa_finder-0.1.2.tar.gz
| Download URL | rpa_finder-0.1.2.tar.gz |
|---|---|
| Size | 17.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
331f2063201faed9e8fc1d3135c490390df951e8199717837599c330ae9f4cb9
|
|
BLAKE2b-256 checksum How to use checksums |
e72d0ddaa89d494ad551bf2bd6ef7307e8922b45756a863f6f0cd7154214b0c8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/5.1.0 CPython/3.9.6
|
Release files / rpa_finder-0.1.2-py3-none-any.whl
| Download URL | rpa_finder-0.1.2-py3-none-any.whl |
|---|---|
| Size | 25.3 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
5e6d6f659d9b3e99e4aa7b0312632e7e739e637bddee5bbd0c33943f78a8e4a3
|
|
BLAKE2b-256 checksum How to use checksums |
b4eb188f18e0ac518696b17853932fd624985712d44fa95c16905b1d46068adc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/5.1.0 CPython/3.9.6
|