Links
New Text Book
Enzyme Kinetics for Systems Biology is a modern text book for undergraduate classes or as a reference text in systems and synthetic biology. The text covers all the main topics in enzyme kinetics including chapters on the kinetics of gene expression and generalized rate laws. Available now at the special price of only $45.95. Purchase at Amazon
Special student and bulk order prices available at blog.analogmachine.org
-
Recent Posts
Categories
- Chemistry (1)
- Delphi (17)
- Electronics (11)
- Enzyme Kinetics (19)
- General Interest (27)
- General Science Interest (72)
- LaTeX (20)
- Math (7)
- Metabolic Control Analysis (13)
- Modeling (48)
- Molecular Biology (17)
- Pathways (56)
- Programming (49)
- Publishing (22)
- Python (11)
- SBML (17)
- Software (47)
- Synthetic Biology (12)
- Systems Theory (38)
- Tellurium (9)
- Textbooks (9)
Archives
- March 2020 (1)
- December 2019 (3)
- November 2019 (2)
- September 2019 (2)
- March 2019 (1)
- February 2019 (1)
- September 2018 (2)
- August 2018 (2)
- May 2018 (3)
- November 2017 (1)
- October 2017 (1)
- September 2017 (1)
- June 2017 (3)
- February 2017 (1)
- November 2016 (4)
- October 2016 (4)
- August 2016 (1)
- July 2016 (1)
- August 2015 (1)
- February 2015 (1)
- January 2015 (3)
- October 2014 (1)
- September 2014 (1)
- August 2014 (2)
- July 2014 (3)
- June 2014 (1)
- May 2014 (1)
- April 2014 (1)
- March 2014 (4)
- February 2014 (1)
- January 2014 (2)
- December 2013 (2)
- November 2013 (3)
- October 2013 (2)
- August 2013 (1)
- July 2013 (1)
- June 2013 (1)
- May 2013 (3)
- April 2013 (1)
- March 2013 (3)
- February 2013 (1)
- January 2013 (1)
- December 2012 (4)
- November 2012 (2)
- October 2012 (2)
- September 2012 (5)
- August 2012 (4)
- July 2012 (1)
- June 2012 (2)
- May 2012 (3)
- April 2012 (3)
- March 2012 (5)
- February 2012 (3)
- January 2012 (1)
- December 2011 (2)
- November 2011 (2)
- October 2011 (1)
- September 2011 (6)
- August 2011 (5)
- July 2011 (6)
- June 2011 (5)
- May 2011 (11)
- April 2011 (4)
- March 2011 (1)
- September 2010 (1)
Recent Comments
- Derek Seymour on Clipping Rectangles in FireMonkey
- J-F on Clipping Rectangles in FireMonkey
- hsauro on PID Control Demonstration
- Rahul Ponde on PID Control Demonstration
- David Hunt on Analog Computers
Category Archives: Software
Plotting Bar graph of Species Concentrations in Tellurium
I had a model with 27 flaoting species and I wanted to plot the steady state concentrations on a histogram where the labels were the names of the different species. Here is a general purpose script that will do that: … Continue reading
Posted in Modeling, Pathways, Programming, Python, Software, Tellurium
Leave a comment
Plotting 3D graphs using Python and Tellurium
As an example I wanted to show how one could plot a 3D phase plot. A great example to use for this is the Lorenz Attractor. This system is interesting because it displays chaotic behavior. The differential equations for the … Continue reading
Posted in General Science Interest, Math, Modeling, Pathways, Programming, Software
Leave a comment
How do I change the simulation tolerances in Tellurium?
For very complicated and large models it may be necessary to adjust the simulator tolerances in order to get the correct simulation results. Sometimes the simulator will terminate a simulation because it was unable to proceed due to numerical errors. … Continue reading
Posted in Modeling, Pathways, Programming, SBML, Software, Systems Theory
Leave a comment
How do I plot phase plots using Tellurium?
Phase plots are a common way to visualize the dynamics of models where time courses are generated and one variable is plotted against the other. For example consider the following model that can show oscillations:
1 2 3 |
v1: $Xo -> S1; k1*Xo; v2: S1 -> S2; k2*S1*S2^h/(10 + S2^h) + k3*S1; v3: S2 -> ; k4*S2; |
In this model S2 … Continue reading
Posted in Modeling, Pathways, Programming, Software, Systems Theory
Leave a comment
How do I run a stochastic simulation using Tellurium/libRoadRunner?
In this post I will show you how to run a stochastic simulation using our Tellurium application. Tellurium is a set of libraries that can be used via Python. One of those libraries is libRoadRunner which is our very fast … Continue reading
Posted in Modeling, Pathways, Programming, SBML, Software
Leave a comment
Computing the steady state using Tellurium
If you’re building a model and you want to quickly find the model’s steady state, you can call the command steadyState. Let’s illustrate this with an example:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import tellurium as te r = te.loada (''' # Define a simple linear chain of reactions $Xo -> S1; k1*Xo; S1 -> S2; k2*S1; S2 -> S3; k3*S2; S3 -> $X1; k4*S3; # Initialize rate constants k1 = 0.2; k2 = 0.7; k3 = 0.15; k4 = 1.3; Xo = 10 ''') print r.getSteadyStateValues() |
Running this script by clicking in the green arrow in the tool … Continue reading
Posted in Modeling, Pathways, Software
Leave a comment
Bifurcation Analysis with Tellurium
I thought I’d try and write a series of HowTos on Tellurium, our python based tool for the construction, simulation and analysis of biochemical models. Details on this tool can be found here. One the unique features of Tellurium is … Continue reading
Posted in General Science Interest, Modeling, Pathways, Software
Leave a comment
Bode Plots using Python
I needed a quick way to plot some Bode plots for a second order system. I didn’t have access to Matlab, instead I searched for a solution using Python, and I found one. Documentation is a bit sparse so this … Continue reading
Posted in General Science Interest, Modeling, Programming, Software, Systems Theory
2 Comments
Programming Language Popularity
As programmers we sometimes like to play the game of what is the most popular programming language? There are various metrics online that try to measure this, most notably TIOBE, PYPL and Trendy Skills. They are all flawed in someway and often … Continue reading
Posted in Programming, Software
Leave a comment
My First Mac OS Application
I finished my first Mac OS application. Two screenshots are shown below, I’ll be making it available download at the end of the week. This was a test application to see how easy it would be use write a portable … Continue reading
Posted in Delphi, Programming, SBML, Software
Leave a comment