The Tellurium Simulator

Funded by NIGMS: R01-GM123032 and previously from R01-GM081070

A Python Environment for Reproducible Dynamical Modeling of Biological Networks

Tellurium is a Python package that knits together a variety of important packages for carrying out simulation studies in systems biology and other disciplines. 

Tellurium runs on Windows, Mac OS and Linux. 

Ready to install? Please visit the download page.

Want to know more? Visit the documentation site at:
Documentation

You can join discussions at:

https://github.com/sys-bio/tellurium/discussions


Tellurium relies on open-source contributions from many people. See the acknowledgment page for details.

New contributions are always welcome, see the GitHub page.

The Tellurium, Antimony, and libRoadRunner project were funded by NIH/NIGMS (GM081070). Previous funding has come from DARPA, DOE, and the NSF.

Tellurium is licensed under the Apache 2.0 license. Constituent packages have various licenses. 

Recent Publications:

Acknowledgements

This work is funded by the generous support of the NIH/NIGMS grant: GM123032, and GM081070

Example Python script, modeling a simple three-step pathway:

import tellurium as te

r = te.loada ('''

     Xo -> S1; k1*Xo

     S1 -> S2; k2*S1

     S2 ->; k3*S2

      

     k1 = 0.1; k2 = 0.05; k3 = 0.1

     Xo = 10; S2 = 0

''')

m = r.simulate (0, 80, 100)
r.plot()