A Python package to turn arbitrary polynomial ODEs into a transcriptional network simulating it.
Project description
ode2tn
ode2tn is a Python package to compile arbitrary polynomial ODEs into a transcriptional network simulating the ODEs.
See this paper for details: TODO
Installation
Type pip install ode2tn at the command line.
Usage
See the notebook.ipynb (relative link on GitHub; will not work on other sites like pypi.org) for more examples of usage, including all the examples discussed in the paper.
The functions ode2tn and plot_tn are the main elements of the package.
ode2tn converts a system of arbitrary polynomial ODEs into another system of ODEs representing a transcriptional network as defined in the paper above.
Each variable $x$ in the original ODEs is represented by a pair of variables $x^\top,x^\bot$, whose ratio $\frac{x^\top}{x^\bot}$ follows the same dynamics in the transcriptional network as $x$ does in the original ODEs.
plot_tn does this conversion and then plots the ratios by default, although it can be customized what exactly is plotted;
see the documentation for gpac.plot for a description of all options.
Here is a typical way to call each function:
from math import pi
import numpy as np
import sympy as sp
from transform import plot_tn, ode2tn
x,y = sp.symbols('x y')
odes = { # odes dict maps each symbol to an expression for its time derivative
x: y-2, # dx/dt = y-2
y: -x+2, # dy/dt = -x+2
}
inits = { # inits maps each symbol to its initial value
x: 2, # x(0) = 2
y: 1, # y(0) = 1
}
gamma = 2 # uniform decay constant; should have gamma > max q^-;
# see proof of main Theorem in paper for what q^- is
beta = 1 # constant introduced to keep values from going to infinity or 0
tn_odes, tn_inits, tn_syms = ode2tn(odes, inits, gamma=gamma, beta=beta)
gp.display_odes(tn_odes) # displays nice rendered LaTeX in Jupyter notebook
print(f'{tn_inits=}')
print(f'{tn_syms=}')
When run in a Jupyter notebook, this will show
showing that the variables x and y have been replace by pairs x_t,x_b and y_t,y_b, whose ratios x_t/x_b and y_t/y_b will track the values of the original variable x and y over time.
If not in a Jupyter notebook, one could also inspect the transcriptional network ODEs via
for var, ode in tn_odes.items():
print(f"{var}' = {ode}")
which would print a text-based version of the equations:
x_t' = x_b*y_t/y_b - 2*x_t + x_t/x_b
x_b' = 2*x_b**2/x_t - 2*x_b + 1
y_t' = 2*y_b - 2*y_t + y_t/y_b
y_b' = -2*y_b + 1 + x_t*y_b**2/(x_b*y_t)
The function plot_tn above does this conversion on the original odes and then plots the ratios.
Running
t_eval = np.linspace(0, 6*pi, 1000)
# note below it is odes and inits, not tn_odes and tn_inits
# plot_tn calls ode2tn to convert the ODEs before plotting
plot_tn(odes, inits, gamma=gamma, beta=beta, t_eval=t_eval, show_factors=True)
in a Jupyter notebook will show this figure:
The parameter show_factors above indicates to show a second subplot with the underlying transcription factors ($x^\top, x^\bot, y^\top, y^\bot$ above).
If left unspecified, it defaults to False and plots only the original values (ratios of pairs of transcription factors, $x,y$ above).
One could also hand the transcriptional network ODEs to gpac to integrate, if you want to directly access the data being plotted above.
The OdeResult object returned by gpac.integrate_odes is the same returned by scipy.integrate.solve_ivp, where the return value sol has a field sol.y that has the values of the variables in the order they were inserted into tn_odes, which will be the same as the order in which the original variables x and y were inserted, with x_t coming before x_b:
t_eval = np.linspace(0, 2*pi, 5)
sol = gp.integrate_odes(tn_odes, tn_inits, t_eval)
print(f'times = {sol.t}')
print(f'x_t = {sol.y[0]}')
print(f'x_b = {sol.y[1]}')
print(f'y_t = {sol.y[2]}')
print(f'y_b = {sol.y[3]}')
which would print
times = [0. 1.57079633 3.14159265 4.71238898 6.28318531]
x_t = [2. 1.78280757 3.67207594 2.80592514 1.71859172]
x_b = [1. 1.78425369 1.83663725 0.93260227 0.859926 ]
y_t = [1. 1.87324904 2.14156469 2.10338162 2.74383426]
y_b = [1. 0.93637933 0.71348949 1.05261915 2.78279691]
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ode2tn-1.0.4.tar.gz.
File metadata
- Download URL: ode2tn-1.0.4.tar.gz
- Upload date:
- Size: 13.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3afaf6ad2047b83001d03c112da607be1ea4cbc1f6703ef80b9a7beed3bb89df
|
|
| MD5 |
78d034aee8ab90e9556e1057f54cac8e
|
|
| BLAKE2b-256 |
83cb49c42d86c25eedc52fa24297f107dc6d8ceb6d1ee74c0b57e5a66096edd9
|
Provenance
The following attestation bundles were made for ode2tn-1.0.4.tar.gz:
Publisher:
python-publish.yml on UC-Davis-molecular-computing/ode2tn
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ode2tn-1.0.4.tar.gz -
Subject digest:
3afaf6ad2047b83001d03c112da607be1ea4cbc1f6703ef80b9a7beed3bb89df - Sigstore transparency entry: 201218677
- Sigstore integration time:
-
Permalink:
UC-Davis-molecular-computing/ode2tn@e94830f84c31d1b257d10d1da04e42ade254c7bb -
Branch / Tag:
refs/tags/v1.0.4 - Owner: https://github.com/UC-Davis-molecular-computing
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@e94830f84c31d1b257d10d1da04e42ade254c7bb -
Trigger Event:
release
-
Statement type:
File details
Details for the file ode2tn-1.0.4-py3-none-any.whl.
File metadata
- Download URL: ode2tn-1.0.4-py3-none-any.whl
- Upload date:
- Size: 11.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
93423133200709d7337693e7dc43d5c5bcea0825b0c31f452e028c3ae13e4022
|
|
| MD5 |
8539b8ab63993f8ab5ecb34dbd0e4365
|
|
| BLAKE2b-256 |
c2c73b95a5f4e8fe58d42c24a40801cb167a968dba39327ce59f241e79d63b53
|
Provenance
The following attestation bundles were made for ode2tn-1.0.4-py3-none-any.whl:
Publisher:
python-publish.yml on UC-Davis-molecular-computing/ode2tn
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ode2tn-1.0.4-py3-none-any.whl -
Subject digest:
93423133200709d7337693e7dc43d5c5bcea0825b0c31f452e028c3ae13e4022 - Sigstore transparency entry: 201218683
- Sigstore integration time:
-
Permalink:
UC-Davis-molecular-computing/ode2tn@e94830f84c31d1b257d10d1da04e42ade254c7bb -
Branch / Tag:
refs/tags/v1.0.4 - Owner: https://github.com/UC-Davis-molecular-computing
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@e94830f84c31d1b257d10d1da04e42ade254c7bb -
Trigger Event:
release
-
Statement type: