Registry of Standard Biological Models: Difference between revisions

From OpenWetWare
Jump to navigationJump to search
No edit summary
No edit summary
 
(11 intermediate revisions by the same user not shown)
Line 1: Line 1:
<div>
<div>
{|class="white" cellspacing="3"
{|class="white" cellspacing="5" valign="top"
|{{Click || image=RoSBMBanner.png | link=Main_Page| width=705px | height=94px }}
|colspan=2|{{Click || image=RoSBMBanner.png | link=Main_Page| width=705px | height=94px }}
|-  
|-  
|width="705px" bgcolor="#181860" |
|colspan=2 width="705px" bgcolor="#181860" |
{|width="90%" bgcolor="#181860" align="center" style="border:0px" cellspacing="0"
{|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 reused and recombined to produce more complex models.  A draft implementation of the registry is underway and collaborators are being sought.</font>
|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''']]
|}
|}
{| cellspacing="3"
|-
|-
|colspan=2 width="700px" class="green2"| '''Talk to us at''' - [[BioSysBio:abstracts/2007/Vincent_Rouilly | '''BioSysBio 2007''']], [[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"
|width="350px" class="green3" | '''Goals'''
|'''Goals'''
 
*To contribute to the Open Source [[Synthetic Biology]] effort.
*To contribute to the Open Source [[Synthetic Biology]] effort.
*To store, curate and support models related to physical DNA Biobricks.
*To store, curate and support models related to [http://parts.mit.edu physical Biobricks].
*To drive and guide the experimental characterization of BioBricks.
*To drive and guide the experimental characterization of BioBricks.
*To enable the reuse of modular part models.
*To enable the reuse of modular part models.
*To provide a forum for modelers to contribute to the BioBricks effort.
*To provide a forum for modelers to contribute to the BioBricks effort.
 
|}
|width="350px" class="green3" | '''Activities'''
|width="350px" class="blue" valign="top" |
 
{|width="95%" class="blue" align="center" valign="top" style="border:0px" cellspacing="0"
*Build a 1 to N match between physical DNA parts and models into a database
|'''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:
*Define a modeling description language that is:
**Machine readable (XML, RDF)
**Machine readable
**Capable of describing gene expression networks
**Capable of describing gene expression networks
**Modular (standardized defined inputs/ouputs)
**Modular (standardized defined inputs/ouputs)
**Hierarchical (models are composable)
**Hierarchical (models are composable)
*Capable of describing models that can be related to experimental data.
**Capable of describing models that can be related to experimental data.
|}
|-
|-
|}
|}
Line 47: Line 48:
</div>
</div>
<hr class="divider2">
<hr class="divider2">


*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

4 May 2024

     11:36  User:Jernej Turnsek diffhist +50 Jernej Turnsek talk contribs
     09:20  User:Massih Forootan‎‎ 3 changes history +83 [Massih Forootan‎ (3×)]
     
09:20 (cur | prev) +78 Massih Forootan talk contribs (→‎Link to Publications)
     
09:18 (cur | prev) 0 Massih Forootan talk contribs (→‎Skills)
     
09:18 (cur | prev) +5 Massih Forootan talk contribs (→‎Skills)
     07:28  CHEM-ENG590E:Wiki Textbook‎‎ 4 changes history −445 [Sarah L. Perry‎ (4×)]
     
07:28 (cur | prev) +84 Sarah L. Perry talk contribs (→‎Chapter 4 - Flow Control and Mixing)
     
07:21 (cur | prev) −490 Sarah L. Perry talk contribs (→‎Chapter 9 - Microfluidics and Cell Culture)
     
07:19 (cur | prev) −35 Sarah L. Perry talk contribs (→‎Chapter 9 - Microfluidics and Cell Culture)
     
07:18 (cur | prev) −4 Sarah L. Perry talk contribs (→‎Chapter 4 - Flow Control and Mixing)
     07:18 Move log Sarah L. Perry talk contribs moved page Microfluidic Gradient Generators - Greg Schneider to Microfluidic Gradient Generators(Adding an Author)
     00:15  Renhao Li Lab:Publications diffhist +265 Renhao Li talk contribs (→‎2024)

3 May 2024

     15:02  CHIP:Talks diffhist 0 Gabor Balazsi talk contribs
     15:01  CHIP:Data diffhist −23 Gabor Balazsi talk contribs
     14:33  UA Biophysics:Protocols:Kanamycin‎‎ 5 changes history −421 [Elizabeth Suesca‎ (5×)]
     
14:33 (cur | prev) +13 Elizabeth Suesca talk contribs
     
14:21 (cur | prev) +16 Elizabeth Suesca talk contribs (→‎Materials)
     
14:19 (cur | prev) −6 Elizabeth Suesca talk contribs
     
14:14 (cur | prev) −50 Elizabeth Suesca talk contribs
     
14:13 (cur | prev) −394 Elizabeth Suesca talk contribs
     14:33  UA Biophysics:Protocols:Ampicillin‎‎ 4 changes history −379 [Elizabeth Suesca‎ (4×)]
     
14:33 (cur | prev) +15 Elizabeth Suesca talk contribs
     
14:19 (cur | prev) −7 Elizabeth Suesca talk contribs
     
14:11 (cur | prev) 0 Elizabeth Suesca talk contribs (→‎PROTOCOL)
     
14:09 (cur | prev) −387 Elizabeth Suesca talk contribs
     14:31  UA Biophysics:Protocols:Erythromycin‎‎ 3 changes history −315 [Elizabeth Suesca‎ (3×)]
     
14:31 (cur | prev) −7 Elizabeth Suesca talk contribs
     
14:30 (cur | prev) −12 Elizabeth Suesca talk contribs (→‎Materials)
     
14:18 (cur | prev) −296 Elizabeth Suesca talk contribs
     14:29  UA Biophysics:Protocols:Chloramphenicol‎‎ 2 changes history −427 [Elizabeth Suesca‎ (2×)]
     
14:29 (cur | prev) +36 Elizabeth Suesca talk contribs
     
14:16 (cur | prev) −463 Elizabeth Suesca talk contribs
N    12:09  BioMicroCenter:Oligo Synthesis‎‎ 7 changes history +4,408 [Noelani Kamelamela‎ (7×)]
     
12:09 (cur | prev) −14 Noelani Kamelamela talk contribs (→‎Dr Oligo 96)
     
12:09 (cur | prev) −16 Noelani Kamelamela talk contribs (→‎STX-200)
     
12:08 (cur | prev) −46 Noelani Kamelamela talk contribs (→‎Dr Oligo 96)
     
12:08 (cur | prev) +35 Noelani Kamelamela talk contribs (→‎Dr Oligo 96)
     
08:29 (cur | prev) +7 Noelani Kamelamela talk contribs (→‎Dr Oligo 96)
     
08:27 (cur | prev) +59 Noelani Kamelamela talk contribs (→‎Dr Oligo 96)
N    
08:16 (cur | prev) +4,383 Noelani Kamelamela talk contribs (Created page with "{{BioMicroCenter}} ''' ** All users must be trained before being allowed to use the equipment **'''<BR><BR> The BioMicro Center currently hosts two oligo synthesizers: one Dr Oligo 96 (Biolytic) and one Syntax STX-200 (DNAScript). <br><br> Dr Oligo is optimized for higher concentrations of oligos made through polyamidite synthesis. For ready to use oligos a series of steps must be completed using the other related machines in the Center including the column presser, the...")
     12:06  BioMicroCenter:Covaris‎‎ 5 changes history +172 [Noelani Kamelamela‎ (5×)]
     
12:06 (cur | prev) −5 Noelani Kamelamela talk contribs (→‎R230)
     
09:55 (cur | prev) +2 Noelani Kamelamela talk contribs (→‎R230)
     
09:54 (cur | prev) +1 Noelani Kamelamela talk contribs (→‎R230)
     
09:52 (cur | prev) +4 Noelani Kamelamela talk contribs (→‎R230)
     
08:41 (cur | prev) +170 Noelani Kamelamela talk contribs (→‎R230)
     09:52  (Upload log) [Noelani Kamelamela‎ (6×)]
     
09:52 Noelani Kamelamela talk contribs uploaded File:R230pic.jpg
     
08:42 Noelani Kamelamela talk contribs uploaded File:R230pic.jpeg
     
08:32 Noelani Kamelamela talk contribs uploaded File:Syntax.jpg
     
08:31 Noelani Kamelamela talk contribs uploaded File:Droligoprocess.jpg
     
08:29 Noelani Kamelamela talk contribs uploaded File:Chamber.jpg
     
08:28 Noelani Kamelamela talk contribs uploaded File:DrOligo.jpg

2 May 2024


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