Registry of Standard Biological Models: Difference between revisions

From OpenWetWare
Jump to navigationJump to search
No edit summary
No edit summary
 
(15 intermediate revisions by the same user not shown)
Line 1: Line 1:
<div>
<div>
{|class="white" cellspacing="3"
{|class="white" cellspacing="5" valign="top"
|
|colspan=2|{{Click || image=RoSBMBanner.png | link=Main_Page| width=705px | height=94px }}
|-  
|-  
|width="705px" class="blue" colspan=2|{{Registry_of_Standard_Biological_Models/Blurb}}
|colspan=2 width="705px" bgcolor="#181860" |
{|width="90%" bgcolor="#181860" align="center" style="border:0px" cellspacing="0"
|bgcolor="#181860"|<font face="tahoma" size="2" color=#ffffff>A collection of models of biological parts that can be freely reused and composed with each other to produce more complex models.  A draft implementation of the registry is underway and collaborators are being sought.</font>
|}
|-
|colspan=2 width="705px" class="blue"|
{|width="95%" class="blue" align="center" style="border:0px" cellspacing="0"
|align="center"|'''Talk to us at''' - [[BioSysBio:abstracts/2007/Vincent_Rouilly | '''BioSysBio 2007''']], [http://www.syntheticbiology.ethz.ch/conf_2007 SB3.0], and [[Registry of Standard Biological Models/Presentation | '''iGEM Jamboree Workshop 2007''']]
|}
|-
|width="350px" class="blue" valign="top" |
{|width="95%" class="blue" align="center" valign="top" style="border:0px" cellspacing="0"
|'''Goals'''
*To contribute to the Open Source [[Synthetic Biology]] effort.
*To store, curate and support models related to [http://parts.mit.edu physical Biobricks].
*To drive and guide the experimental characterization of BioBricks.
*To enable the reuse of modular part models.
*To provide a forum for modelers to contribute to the BioBricks effort.
|}
|width="350px" class="blue" valign="top" |
{|width="95%" class="blue" align="center" valign="top" style="border:0px" cellspacing="0"
|'''Activities'''
*[[/Registry organization|Planning]] the architecture of a registry of standard biological models.
*Building a [[Registry of Standard Biological Models/Model Catalog|collection]] of standard biological models.
*Define a modeling description language that is:
**Machine readable
**Capable of describing gene expression networks
**Modular (standardized defined inputs/ouputs)
**Hierarchical (models are composable)
**Capable of describing models that can be related to experimental data.
|}
|-
|-
|}
|}
</div>


<hr class="divider2">
<hr class="divider2">
<div>
<div>
{|class="white"
{|class="white"
|width="700px" class="white" cellpadding="0"| {{navbar_icons}}
|width="700px" class="white" cellpadding="0"|'''Recent edits:'''
|-
|width="700px" class="white" cellpadding="0"|{{Special:Recentchanges/b=Registry_of_Standard_Biological_Models&limit=10}}
|-
|-
|}
|}
Line 21: Line 49:
<hr class="divider2">
<hr class="divider2">


* [[BioSysBio:abstracts/2007/Vincent_Rouilly | BioSysBio 2007 Abstract]]
* [[Registry of Standard Biological Models/Presentation | Presentation]]
= Motivations =
*to store, curate and search models related to physical DNA Biobricks.
*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
*to get a faster/cheaper development process.
*to complement open-source spirit in Synthetic Biology and open-up new 'dry-work' contributions
= Means =
*build a 1 to N match between physical DNA parts and models into a database
*define a modelling description language having properties such as:
**being text based (XML, RDF)
**being able to describe topological and dynamical (continuous & discrete) properties of bio-network
**being modular ( standardized inputs/ouputs with private/public access )
**being hierarchical (encapsulation and abstraction of modules)
* being able to define a validation schema between DNA part characterizations and model predictions to fine tune model parameters
*See [[Registry of Standard Biological Models/CellML Practical|this page]] for a draft implementation.
*See [[Registry of Standard Biological Models/CellML Practical|this page]] for a draft implementation.
*See [[Registry_of_Standard_Biological_Models/Basic_Component_Models|this page]] for a draft on model implementations following CellML 1.1.
*See [[Registry_of_Standard_Biological_Models/Basic_Component_Models|this page]] for a draft on model implementations following CellML 1.1.
*See [[Registry of Standard Biological Models/General Architecture Discussion|this page]] to access current discussion on the implementation.
= Interesting stuff to explore ... =
*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]
*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 &sigma; 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.

Latest revision as of 14:49, 4 October 2007

A collection of models of biological parts that can be freely reused and composed with each other to produce more complex models. A draft implementation of the registry is underway and collaborators are being sought.
Talk to us at - BioSysBio 2007, SB3.0, and iGEM Jamboree Workshop 2007
Goals
  • To contribute to the Open Source Synthetic Biology effort.
  • To store, curate and support models related to physical Biobricks.
  • To drive and guide the experimental characterization of BioBricks.
  • To enable the reuse of modular part models.
  • To provide a forum for modelers to contribute to the BioBricks effort.
Activities
  • Planning the architecture of a registry of standard biological models.
  • Building a collection of standard biological models.
  • Define a modeling description language that is:
    • Machine readable
    • Capable of describing gene expression networks
    • Modular (standardized defined inputs/ouputs)
    • Hierarchical (models are composable)
    • Capable of describing models that can be related to experimental data.

Recent edits:
List of abbreviations:
N
This edit created a new page (also see list of new pages)
m
This is a minor edit
b
This edit was performed by a bot
(±123)
The page size changed by this number of bytes

26 April 2024

     11:38  Hu:Publications diffhist +308 Hugangqing talk contribs
N    08:47  The Paper that Launched Microfluidics - Xi Ning‎‎ 2 changes history +16,815 [Xning098‎ (2×)]
     
08:47 (cur | prev) −1 Xning098 talk contribs (→‎Introduction)
N    
08:43 (cur | prev) +16,816 Xning098 talk contribs (Created page with "{{Template:CHEM-ENG590E}} ==Introduction== Microfluidics is the science and technology of systems that process or manipulate small (10 <sup> -18 </sup> to 10 <sup>−18 </sup> litres) amounts of fluids, using channels with dimensions of tens to hundreds of micrometres, as stated by George Whitesides. <sup> https://doi.org/10.1038/nature05058 1 </sup>. Microfluidic devices are microchemical systems such as labs on the chip, organs on the chip and plants on the chip....")
     08:43  CHEM-ENG590E:Wiki Textbook‎‎ 3 changes history 0 [Xning098‎ (3×)]
     
08:43 (cur | prev) 0 Xning098 talk contribs Tag: Manual revert
     
08:42 (cur | prev) 0 Xning098 talk contribs Tag: Manual revert
     
08:41 (cur | prev) 0 Xning098 talk contribs
     08:40  The paper that launched microfluidics - Xi Ning‎‎ 15 changes history +250 [Xning098‎ (15×)]
     
08:40 (cur | prev) +18 Xning098 talk contribs (→‎Significance)
     
08:36 (cur | prev) 0 Xning098 talk contribs (→‎Significance)
     
08:34 (cur | prev) +37 Xning098 talk contribs (→‎Significance)
     
08:31 (cur | prev) +3 Xning098 talk contribs (→‎Significance)
     
08:30 (cur | prev) +8 Xning098 talk contribs (→‎Significance)
     
08:28 (cur | prev) −31 Xning098 talk contribs (→‎Significance)
     
08:22 (cur | prev) −1 Xning098 talk contribs (→‎Electrokinetic effect)
     
08:21 (cur | prev) −2 Xning098 talk contribs (→‎Separation and quantification)
     
08:19 (cur | prev) 0 Xning098 talk contribs (→‎Sample dilution)
     
08:19 (cur | prev) 0 Xning098 talk contribs (→‎Sample dilution)
     
08:18 (cur | prev) 0 Xning098 talk contribs (→‎Separation and quantification)
     
08:17 (cur | prev) −1 Xning098 talk contribs (→‎Sample dilution)
     
08:17 (cur | prev) +1 Xning098 talk contribs
     
08:14 (cur | prev) 0 Xning098 talk contribs (→‎Microfluidic set-ups and its efficacy)
     
08:03 (cur | prev) +218 Xning098 talk contribs
     08:20  (Upload log) [Xning098‎ (6×)]
     
08:20 Xning098 talk contribs uploaded File:XiNingFigure2.jpeg
     
08:14 Xning098 talk contribs uploaded File:Figure4Drawn.XiNing.jpeg
     
08:00 Xning098 talk contribs uploaded File:DrawnFigure4XiNing.jpeg
     
07:38 Xning098 talk contribs uploaded File:XiNingDrawnSetup2.png
     
07:35 Xning098 talk contribs uploaded a new version of File:Figure 2 Set-up1.png
     
07:24 Xning098 talk contribs uploaded File:DrawnElectoosmoticflow.jpeg
     05:25  Ernesto-Perez-Rueda:Contact diffhist −94 Ernesto Perez-Rueda talk contribs

25 April 2024

     23:55  Flow and Pattern Asymmetries‎‎ 22 changes history +1,186 [Courtneychau‎ (22×)]
     
23:55 (cur | prev) −14 Courtneychau talk contribs (→‎Mixing on the Microfluidic Scale)
     
23:55 (cur | prev) −43 Courtneychau talk contribs (→‎Reynolds Number (Re))
     
23:55 (cur | prev) −46 Courtneychau talk contribs (→‎Péclet Number (Pe))
     
23:55 (cur | prev) −31 Courtneychau talk contribs (→‎Stokes Flow)
     
23:54 (cur | prev) −151 Courtneychau talk contribs (→‎Stokes Flow)
     
23:50 (cur | prev) +184 Courtneychau talk contribs (→‎References)
     
23:46 (cur | prev) 0 Courtneychau talk contribs (→‎Active Mixing Methods)
     
23:46 (cur | prev) +1 Courtneychau talk contribs (→‎Passive Mixing Methods)
     
23:45 (cur | prev) 0 Courtneychau talk contribs (→‎Chaotic Advection)
     
23:44 (cur | prev) 0 Courtneychau talk contribs (→‎Mixing on the Microfluidic Scale)
     
23:43 (cur | prev) +28 Courtneychau talk contribs (→‎Stokes Flow)
     
23:39 (cur | prev) +1 Courtneychau talk contribs (→‎Stokes Flow) Tag: Manual revert
     
23:38 (cur | prev) −1 Courtneychau talk contribs (→‎Stokes Flow)
     
23:37 (cur | prev) +11 Courtneychau talk contribs
     
23:36 (cur | prev) +15 Courtneychau talk contribs
     
23:33 (cur | prev) 0 Courtneychau talk contribs (→‎References)
     
23:30 (cur | prev) +3 Courtneychau talk contribs (→‎Passive Mixing Methods)
     
23:28 (cur | prev) −426 Courtneychau talk contribs
     
23:16 (cur | prev) +1,656 Courtneychau talk contribs (→‎References)
     
23:14 (cur | prev) 0 Courtneychau talk contribs (→‎Applications of Asymmetric Flow)
     
23:13 (cur | prev) 0 Courtneychau talk contribs (→‎Active Mixing Methods)
     
23:12 (cur | prev) −1 Courtneychau talk contribs (→‎Passive Mixing Methods)

  • See this page for a draft implementation.
  • See this page for a draft on model implementations following CellML 1.1.