Registry of Standard Biological Models: Difference between revisions

From OpenWetWare
Jump to navigationJump to search
No edit summary
No edit summary
Line 1: Line 1:
=Motivations=
= Motivations =


*to use modelling in order to gain a deeper understanding of DNA part properties.
*to use modelling in order to gain a deeper understanding of DNA part properties.
Line 5: Line 5:
*to complement open source spirit in synthetic biology and open-up new 'dry-work' contributions
*to complement open source spirit in synthetic biology and open-up new 'dry-work' contributions


=Means=
= Means =


*build 1 to N matches between physical DNA parts and models into a database
*build 1 to N matches between physical DNA parts and models into a database
*define the use of a standard description language having properties such as:
*define the use of a description language having properties such as:
**text based (XML, RDF)
**text based (XML, RDF)
**describe topological and dynamical (continuous & discrete) properties
**describe topological and dynamical (continuous & discrete) properties
Line 16: Line 16:
*define a validation schema between DNA part characterizations and model predictions
*define a validation schema between DNA part characterizations and model predictions


=Let's not re-invent the wheel=
= Interesting stuff to explore ... =


*SBML and CellML are already widely used standards. Are they what Synthetic Biology is looking for? [http://sbml.org/index.psp] [http://www.cellml.org/]
*SBML[http://sbml.org/index.psp] and CellML[http://www.cellml.org/] are already widely used standards. Are they what Synthetic Biology is looking for? 
*Petri Nets Markup language is already defining a modular/hierarchical approach. Could be interesting to investigate. [http://www2.informatik.hu-berlin.de/top/pnml/pnml.html]
*Petri Nets Markup language is already defining a modular/hierarchical approach. Could be interesting to investigate. [http://www2.informatik.hu-berlin.de/top/pnml/pnml.html]
*Standardized outputs: how about using experimental data format to store computed results (like FCS from Flow cytometry), it could help also to define a validation schema when it comes to challenge predicted results with measured ones.
*Standardized outputs: how about using experimental data format to store computed results (like FCS from Flow cytometry), it could help also to define a validation schema when it comes to challenge predicted results with measured ones.


=Original idea=
Original idea  
 
I'd like to see a centralized and standardized source of models for biological parts and devices.  A good framework for this would be the registry of standard biological parts.  Each part and device should have a simple ODE model of its behavior accompanying it.  In fact, this registry of models would operate identically and confer all the same advantages as a registry of parts.  Namely, it would produce simple standard models of components that could be reliably and rapidly combined to form models of more complex components.  If everybody building models was drawing from the same pool of component models, we could be more sure that those models were an accurate reflection of the physical component.  Again, just as with the registry of physical parts, everytime I wanted to build a model, I wouldn't have to start from scratch, I could start from well-tested components.
I'd like to see a centralized and standardized source of models for biological parts and devices.  A good framework for this would be the registry of standard biological parts.  Each part and device should have a simple ODE model of its behavior accompanying it.  In fact, this registry of models would operate identically and confer all the same advantages as a registry of parts.  Namely, it would produce simple standard models of components that could be reliably and rapidly combined to form models of more complex components.  If everybody building models was drawing from the same pool of component models, we could be more sure that those models were an accurate reflection of the physical component.  Again, just as with the registry of physical parts, everytime I wanted to build a model, I wouldn't have to start from scratch, I could start from well-tested components.



Revision as of 11:36, 6 August 2006

Motivations

  • to use modelling in order to gain a deeper understanding of DNA part properties.
  • to explore virtually the properties of de-novo assemblies between parts and get a faster/cheaper development process.
  • to complement open source spirit in synthetic biology and open-up new 'dry-work' contributions

Means

  • build 1 to N matches between physical DNA parts and models into a database
  • define the use of a description language having properties such as:
    • text based (XML, RDF)
    • describe topological and dynamical (continuous & discrete) properties
    • modular ( standardized inputs/ouputs )
    • hierarchical (encapsulation and abstraction of modules)
  • standardized computed outputs to allow easier communication/validation
  • define a validation schema between DNA part characterizations and model predictions

Interesting stuff to explore ...

  • SBML[1] and CellML[2] are already widely used standards. Are they what Synthetic Biology is looking for?
  • Petri Nets Markup language is already defining a modular/hierarchical approach. Could be interesting to investigate. [3]
  • Standardized outputs: how about using experimental data format to store computed results (like FCS from Flow cytometry), it could help also to define a validation schema when it comes to challenge predicted results with measured ones.
Original idea 

I'd like to see a centralized and standardized source of models for biological parts and devices. A good framework for this would be the registry of standard biological parts. Each part and device should have a simple ODE model of its behavior accompanying it. In fact, this registry of models would operate identically and confer all the same advantages as a registry of parts. Namely, it would produce simple standard models of components that could be reliably and rapidly combined to form models of more complex components. If everybody building models was drawing from the same pool of component models, we could be more sure that those models were an accurate reflection of the physical component. Again, just as with the registry of physical parts, everytime I wanted to build a model, I wouldn't have to start from scratch, I could start from well-tested components.

For example a constitutive promoter has a model with no inputs (ignoring polymerase and σ factor levels) and one output, PoPS. In Matlab, this would be a simple function with no inputs that returns a scalar output which is the PoPS output of the device -

PoPS_out = R0040;

A protein generator would have a model with a PoPS input and a protein production rate as output. For example -

dP = E0240(PoPS_in);

Note that E0240 might actually be a collection of part models for an RBS, coding region, and terminator -

function dp = E0240(PoPS_in)
RiPS = B0032(PoPS_in);
translation_rate = E0040(RiPS);
dp = B0015(translation_rate);


The part models for R0040 and E0240 could be put together in an obvious way to form a model of a reporter device.

We already have models for many of our simple parts that could be combined easily if only steady state conditions were considered. Some more organization would be required to allow each model to represent the time varying behavior of a device as combining devices would require the assembly of ODE's from different files. It should still be very possible though.