Python code relating to the textbook, Stochastic modelling for systems biology, third edition
Project description
smfsb for python
Python library for the book, Stochastic modelling for systems biology, third edition. This library is a Python port of the R package associated with the book.
Install
Latest stable version:
pip install smfsb
To upgrade already installed package:
pip install --upgrade smfsb
Note that a number of breaking syntax changes (more pythonic names) were introduced in version 1.1.0. If you upgrade to a version >= 1.1.0 from a version prior to 1.1.0 you will have to update syntax to the new style.
Basic usage
Note that the book, and its associated github repo is the main source of documentation for this library. The code in the book is in R, but the code in this library is supposed to mirror the R code, but in Python.
Using a model built-in to the library
First, see how to simulate a built-in model:
import smfsb
lv = smfsb.models.lv()
print(lv)
stepLv = lv.step_gillespie()
out = smfsb.sim_time_series(lv.m, 0, 100, 0.1, stepLv)
Now, if matplotlib
is installed, you can plot the output with
import matplotlib.pyplot as plt
fig, axis = plt.subplots()
for i in range(2):
axis.plot(range(out.shape[0]), out[:,i])
axis.legend(lv.n)
fig.savefig("lv.pdf")
Standard python docstring documentation is available. Usage information can be obtained from the python REPL with commands like help(smfsb.Spn)
, help(smfsb.Spn.step_gillespie)
or help(smfsb.sim_time_series)
. This documentation is also available on ReadTheDocs. The API documentation contains very minimal usage examples. For more interesting examples, see the demos directory.
Creating and simulating a model
Next, let's create and simulate our own model by specifying a stochastic Petri net explicitly.
import numpy as np
sir = smfsb.Spn(["S", "I", "R"], ["S->I", "I->R"],
[[1,1,0],[0,1,0]], [[0,2,0],[0,0,1]],
lambda x, t: np.array([0.3*x[0]*x[1]/200, 0.1*x[1]]),
[197, 3, 0])
stepSir = sir.step_poisson()
sample = smfsb.sim_sample(500, sir.m, 0, 20, stepSir)
fig, axis = plt.subplots()
axis.hist(sample[:,1],30)
axis.set_title("Infected at time 20")
plt.savefig("sIr.pdf")
Reading and parsing models in SBML and SBML-shorthand
Note that you can read in SBML or SBML-shorthand models that have been designed for discrete stochastic simulation into a stochastic Petri net directly. To read and parse an SBML model, use
m = smfsb.file_to_spn("myModel.xml")
Note that if you are working with SBML models in Python using libsbml, then there is also a function model_to_spn
which takes a libsbml model object.
To read and parse an SBML-shorthand model, use
m = smfsb.mod_to_spn("myModel.mod")
There is also a function shorthand_to_spn
which expects a python string containing a shorthand model. This is convenient for embedding shorthand models inside python scripts, and is particularly convenient when working with things like Jupyter notebooks. Below follows a complete session to illustrate the idea by creating and simulating a realisation from a discrete stochastic SEIR model.
import smfsb
import numpy as np
seirSH = """
@model:3.1.1=SEIR "SEIR Epidemic model"
s=item, t=second, v=litre, e=item
@compartments
Pop
@species
Pop:S=100 s
Pop:E=0 s
Pop:I=5 s
Pop:R=0 s
@reactions
@r=Infection
S + I -> E + I
beta*S*I : beta=0.1
@r=Transition
E -> I
sigma*E : sigma=0.2
@r=Removal
I -> R
gamma*I : gamma=0.5
"""
seir = smfsb.shorthand_to_spn(seirSH)
stepSeir = seir.step_gillespie()
out = smfsb.sim_time_series(seir.m, 0, 40, 0.05, stepSeir)
import matplotlib.pyplot as plt
fig, axis = plt.subplots()
for i in range(len(seir.m)):
axis.plot(np.arange(0, 40, 0.05), out[:,i])
axis.legend(seir.n)
fig.savefig("seir.pdf")
A collection of appropriate models is associated with the book.
You can see this package on PyPI or GitHub.
Fast simulation and inference
If you like this library but find it a little slow, you should know that there is a JAX port of this package: JAX-smfsb. It requires a JAX installalation, and the API is (very) slightly modified, but it has state-of-the-art performance for simulation and inference.
Copyright (2023-2024) Darren J Wilkinson
Project details
Release history Release notifications | RSS feed
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
File details
Details for the file smfsb-1.1.0.tar.gz
.
File metadata
- Download URL: smfsb-1.1.0.tar.gz
- Upload date:
- Size: 598.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2a451cb7db15fefae4a63ef1c28f3b25e3cc07135f9d91e3e054db67ef667e34 |
|
MD5 | b5ef0d4b085a74e0fe18fc76710e9496 |
|
BLAKE2b-256 | 6b13fd606693046c1f4a333f5f6d0c1810dfddf46d0c11898745408bcd0abe9f |
File details
Details for the file smfsb-1.1.0-py3-none-any.whl
.
File metadata
- Download URL: smfsb-1.1.0-py3-none-any.whl
- Upload date:
- Size: 26.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3b1d90a50b84b23e6514e4c30f939beebdca480557d3a8b0391260af241866fb |
|
MD5 | ef3fc16e8796cd2f44bb23567cf64c34 |
|
BLAKE2b-256 | 0b22a06340abc42afb38c1dd226d54030967a9a01500b723dc48d0f011bdcfc2 |