| Herbert M. Sauro Associate Professor Department of Bioengineering University of Washington | ![]() |
The role of Software and Standards in the Design and Construction of Synthetic Networks
The Sauro Lab meets regularly for group meetings. Since we have grown in size, they are split up into three focus groups. Have a look at the detailed schedule.
See papers
Studies on Complex Enzyme Systems by J. A. Burns
From THE GROWTH OF BACTERIAL CULTURES BY JACQUES MONOD Annu. Rev. Microbiol. 1949.3:371-394.
“It has often been assumed that the over-all rate of a system of linked reactions may be governed by the slowest, or master, reaction. That this conception should be used, if at all, with extreme caution, has also been emphasized (17, 18). On theoretical grounds, it can be shown that the over-all rate of a system of several consecutive reversible enzymatic reactions depends on the rate and equilibrium constant of each. The reasons for this are obvious, and we need not go into the mathematics of the problem. A master reaction could take control only if its rate were very much slower than that of all the other reactions. Where hundreds, perhaps thousands, of reactions linked in a network rather than as a chain are concerned, as in the growth of bacterial cells, such a situation is very improbable and, in general, the maximum growth rate should be expected to be controlled by a large number of different rate-determining steps.”
Suárez Miranda, Viajes de varones prudentes, Libro IV, Cap. XLV, Lérida, 1658
Borges, J. L. 1998. On exactitude in science. P. 325, In, Jorge Luis Borges, Collected Fictions (Trans. Hurley, H.) Penguin Books.
“On Exactitude in Science
… In that Empire, the Art of Cartography attained such Perfection that the map of a single Province occupied the entirety of a City, and the map of the Empire, the entirety of a Province. In time, those Unconscionable Maps no longer satisfied, and the Cartographers Guilds struck a Map of the Empire whose size was that of the Empire, and which coincided point for point with it. The following Generations, who were not so fond of the Study of Cartography as their Forebears had been, saw that that vast Map was Useless, and not without some Pitilessness was it, that they delivered it up to the Inclemencies of Sun and Winters. In the Deserts of the West, still today, there are Tattered Ruins of that Map, inhabited by Animals and Beggars; in all the Land there is no other Relic of the Disciplines of Geography.”
Here the instructions on how to create a news entry:
1. Create a new page under: http://www.sys-bio.org/sbwWiki/sysbio-news/ (say http://www.sys-bio.org/sbwWiki/sysbio-news/someNews )
2. Fill this page with the paragraph for the news entry.
NOTE: do not use fancy formatting for this one, as it will be stripped
out
(say "Some new news here" )
3. When saving the page, put the NEWS title as comment for the edit of the page
(say "Some News")
JabRef - Bibtex Reference Manager
Cambridge Latex Page Many useful links
Well presented tutorials on PSTricks
PSTricks: PsTricks Web Site Wikipedia PSTricks Site
After having worked though many different approaches to adding good looking and relatively maintainable graphics in LaTeX I have settled on the following tools.
tikz/pgf: “PGF is a macro package for creating graphics. It is platform- and format-independent and works together with the most important TeX backend drivers, including pdftex and dvips. It comes with a user-friendly syntax layer called TikZ.”. I would also recommend looking at some add-ons to tikz by someone called Alain Matthes. He has a number of different and interesting extensions including additional plotting support and networks diagrams.
Asymptote: “Asymptote is a powerful descriptive vector graphics language that provides a natural coordinate-based framework for technical drawing. Labels and equations are typeset with LaTeX, for high-quality PostScript output.” Asymptote is a sort of easy to use version of metapost. The syntax is more straight forward than metapost.
Both tools allow one to include the graphics commands directly in the LaTeX script. Both tools are actively maintained and continue to improve.
Interesting site on Newton Methods: Nunerical Methods Institute
Home of NLEQ etc: zlib
Continuation Algorithms (Though may not work on windows): LOCA
NDoc like GUI for running MS Sandcastle
and how to use it:
and a more bleeding edge library that uses WPF.
Non-Graphviz graph layout library
SCAMP
What is SCAMP? SCAMP is a general purpose simulator of metabolic and chemical networks. It is based around a simple metabolic language. The version of SCAMP available here is the PC version. Other versions may be available at other sites. The PC executable is a full 32-bit application that can be run from Windows or the DOS command line. A manual in LaTex format is also available here. Other text formats (e.g. Postscript) may be available at other sites.
To give you an idea of what a SCAMP command file looks like, here's an example:
Example model:
Title An example;
# Any text starting with a hash is a comment;
simulate;
dec A, B, C; # declare chemical species;
reactions
A + B - C; k1*A*B - k2*C;
C - A; k3*C;
eor;
initialise
A = 1.0; B = 0.2; C = 0;
k1 = 1.2; k2 = 0.6; k3 = 15;
ei;
print_sim TIME, A, B, C (results);
end
SCAMP's primary function is to enable users to carry out metabolic control analysis calculations, such as computing control coefficients and elasticities. A summary of features include:
References:
OLD REF: Sauro, H. M & Fell, D. A (1991) SCAMP: A Metabolic Simulator and Control Analysis Program. Mathl. Comput. Modelling Vol 15, No. 12, pp. 15-28
Sauro, H. M (1993) SCAMP: a general-purpose simulator and metabolic control analysis program. CABIOS, Vol 9, no. 4, Pages 441-450
This page was last modified on July 25, 1999