Team:MIT/Tools/
From 2011.igem.org
(Difference between revisions)
Line 8: | Line 8: | ||
$('.content:first').css('display','block'); | $('.content:first').css('display','block'); | ||
$('.col_list li').css('cursor','pointer'); | $('.col_list li').css('cursor','pointer'); | ||
- | $('a').css('color', 'black'); | + | $('a.sec').css('color', 'black'); |
- | $('a').css('text-decoration', 'none'); | + | $('a.sec').css('text-decoration', 'none'); |
$('.col_list li').hover(function() { | $('.col_list li').hover(function() { | ||
Line 52: | Line 52: | ||
<div class="content" id="mcellcontent"> | <div class="content" id="mcellcontent"> | ||
- | + | <h1> ''mcell'' - A Multicellular Modeling Framework </h1> | |
''mcell'' is a small set of Python classes that allows the enterprising modeler to: | ''mcell'' is a small set of Python classes that allows the enterprising modeler to: | ||
Line 63: | Line 63: | ||
''mcell'' is a thin layer on top of the combination of [BionetSolver], which model internal cell states as systems of ODEs, and [CompuCell3D], which models cell shape dynamics using the Glazier-Graner-Hogeweg methos. It was created largely in reaction to inconveniences experienced when using BionetSolver and CompuCell3D as detailed [here]. It is in continuous development. | ''mcell'' is a thin layer on top of the combination of [BionetSolver], which model internal cell states as systems of ODEs, and [CompuCell3D], which models cell shape dynamics using the Glazier-Graner-Hogeweg methos. It was created largely in reaction to inconveniences experienced when using BionetSolver and CompuCell3D as detailed [here]. It is in continuous development. | ||
- | == | + | <h3> Quick Links</h3> |
+ | <ul> | ||
+ | <li><a href="#install">Why?</a></li> | ||
+ | <li><a href="#howitworks">How It Works</a></li> | ||
+ | <li><a href="#management">Management of Models</a></li> | ||
+ | <li><a href="#analysis">Rendering and Analysis of Runs</a></li> | ||
+ | </ul> | ||
- | == Installation | + | <h2><a id="install" class="sec"> Installation </a></h2> |
- | == How it works | + | <h2><a id="howitworks" class="sec"> How it works </a></h2> |
In mcell models, BionetSolver models the internal cell states, and CompuCell3D models the cell dynamics. | In mcell models, BionetSolver models the internal cell states, and CompuCell3D models the cell dynamics. | ||
- | + | <h3> BionetSolver </h3> | |
BionetSolver reads one or several [SBML] files, each of which define a ''circuit'' as a system of chemical reactions in several containers with given rate laws. SBML models are simply XML files, and can be written with a text editor; however, it is much easier to define them using a graphical designer, like [JDesigner], or using a simple scripting language, like [Jarnac]. (Both of those editors can be obtained by installing the [Synthetic Biology Workbench]. | BionetSolver reads one or several [SBML] files, each of which define a ''circuit'' as a system of chemical reactions in several containers with given rate laws. SBML models are simply XML files, and can be written with a text editor; however, it is much easier to define them using a graphical designer, like [JDesigner], or using a simple scripting language, like [Jarnac]. (Both of those editors can be obtained by installing the [Synthetic Biology Workbench]. | ||
After loading the circuits, BionetSolver is in posession of a system of ODEs that define the internal state of each modeled cell. To simulate each cell, BionetSolver simply Euler-steps its ODE system forward with a fixed time step. Some of the variables in the ODE model (like, say, the concentration of a protein on the neighboring cells) are actually parameters that are continually updated from the CompuCell3D thread. | After loading the circuits, BionetSolver is in posession of a system of ODEs that define the internal state of each modeled cell. To simulate each cell, BionetSolver simply Euler-steps its ODE system forward with a fixed time step. Some of the variables in the ODE model (like, say, the concentration of a protein on the neighboring cells) are actually parameters that are continually updated from the CompuCell3D thread. | ||
- | + | <h3> CompuCell3D </h3> | |
CompuCell3D uses | CompuCell3D uses | ||
- | == Model Management | + | <h2><a name="management" class="sec"> Model Management </a></h2> |
- | == Rendering and Analysis | + | <h2><a name="analysis" class="sec"> Rendering and Analysis </a></h2> |
</div> | </div> |
Revision as of 02:54, 28 September 2011
assembly stuf
geneious stuff