igem 2008 tutorial modeling. what? model a model in science is a physical, mathematical, or logical...

18
iGEM 2008 Tutorial Modeling

Upload: bathsheba-wilkerson

Post on 17-Jan-2018

219 views

Category:

Documents


0 download

DESCRIPTION

Kind of models Black box: purpose is to summarize the system compactly, not to explain how the system works White box: purpose is to account for physics, statistics,... of the system

TRANSCRIPT

Page 1: IGEM 2008 Tutorial Modeling. What? Model A model in science is a physical, mathematical, or logical representation of a system of entities, phenomena,

iGEM 2008 Tutorial Modeling

Page 2: IGEM 2008 Tutorial Modeling. What? Model A model in science is a physical, mathematical, or logical representation of a system of entities, phenomena,

What?• Model

A model in science is a physical, mathematical, or logical representation of a system of entities, phenomena, or processes.

• Simulation A simulation is the implementation of a model over time. A simulation brings a model to life and shows how a particular object or phenomenon will behave. It is useful for testing, analysis or training where real-world systems or concepts can be represented by a model.

• ModelingModeling refers to the process of generating a model as a conceptual representation of some phenomenon.

Page 3: IGEM 2008 Tutorial Modeling. What? Model A model in science is a physical, mathematical, or logical representation of a system of entities, phenomena,

Kind of models

• Black box:purpose is to summarize the system compactly, not to explain how the system works

• White box:purpose is to account for physics, statistics, ... of the system

Page 4: IGEM 2008 Tutorial Modeling. What? Model A model in science is a physical, mathematical, or logical representation of a system of entities, phenomena,

Example: Chemical Reactor

White box Black boxModel based on reaction equations

Model based on input-output data (e.g. ARX, neural network, …)

We will work with white box models

Example:

Page 5: IGEM 2008 Tutorial Modeling. What? Model A model in science is a physical, mathematical, or logical representation of a system of entities, phenomena,

What we get are systems of ordinary differential equations (ODE’s), which can be solved using MATLAB.

Page 6: IGEM 2008 Tutorial Modeling. What? Model A model in science is a physical, mathematical, or logical representation of a system of entities, phenomena,

What we get are systems of ordinary differential equations (ODE’s), which can be solved using MATLAB.

Page 7: IGEM 2008 Tutorial Modeling. What? Model A model in science is a physical, mathematical, or logical representation of a system of entities, phenomena,

Usefulness of modeling

• Costs of experiments reduce• Simulations are much faster number of

experiments increase• No danger!

• BUT simulations represent only part of the real world!

Page 8: IGEM 2008 Tutorial Modeling. What? Model A model in science is a physical, mathematical, or logical representation of a system of entities, phenomena,

Matlab

• How to model and simulate in Matlab:– Basic: m-files– Advanced: Simulink– Specific: SimBiology toolbox (*)

• Alternative: CellDesigner

(*) Useful link: http://www.mathworks.com/company/events/webinars/webinarconf.html?id=30351&language=en or google: matlab webminar simbiology (2nd hit)

Page 9: IGEM 2008 Tutorial Modeling. What? Model A model in science is a physical, mathematical, or logical representation of a system of entities, phenomena,

SimBiology

• What?

SimBiology® extends MATLAB® with tools for modeling, simulating, and analyzing biochemical pathways. You can create your own block diagram model using predefined blocks. You can manually enter in compartments, species, parameters, reactions, events, rules, kinetic laws, and units, or read in Systems Biology Mark-Up Language (SBML) models.

Page 10: IGEM 2008 Tutorial Modeling. What? Model A model in science is a physical, mathematical, or logical representation of a system of entities, phenomena,
Page 11: IGEM 2008 Tutorial Modeling. What? Model A model in science is a physical, mathematical, or logical representation of a system of entities, phenomena,
Page 12: IGEM 2008 Tutorial Modeling. What? Model A model in science is a physical, mathematical, or logical representation of a system of entities, phenomena,

iGEM-modeling

• Most interesting information about iGEM-modeling: ETH Zürich 2006/2007

• We’ll summarize some crucial aspects and discuss the modeling process of ETH Zürich 2007

Page 13: IGEM 2008 Tutorial Modeling. What? Model A model in science is a physical, mathematical, or logical representation of a system of entities, phenomena,

• Parameter estimation & sensitivity analysis– Most difficult and laborious part of modeling– Most parameters not knownSolution: sensitivity analysisWhich parameters have effect on which states

?

• Role of modelingImportant is the interaction between modeling and experiments: modeling is not a precursor phase of experiment and synthesis, it is part of the design cycle.

Page 14: IGEM 2008 Tutorial Modeling. What? Model A model in science is a physical, mathematical, or logical representation of a system of entities, phenomena,

ETH Zürich 2007

• Project:

• Top-down aproach:started with black box and recursively refined the system/model

Page 15: IGEM 2008 Tutorial Modeling. What? Model A model in science is a physical, mathematical, or logical representation of a system of entities, phenomena,

• Model Overview:

Define inputs/outputs/system state variablesNote: pay attention to noise sensitivity

Page 16: IGEM 2008 Tutorial Modeling. What? Model A model in science is a physical, mathematical, or logical representation of a system of entities, phenomena,

• Detailed Model

detailed model of all interactions in the system:define desired behaviour + formalized descripetion of system identify necessary biological components & interactions

Result: three basic subparts:– Sensors– Memory– reporters

Page 17: IGEM 2008 Tutorial Modeling. What? Model A model in science is a physical, mathematical, or logical representation of a system of entities, phenomena,

• Final Design

Bring the information about the sensors, memory and reporters together:

Page 18: IGEM 2008 Tutorial Modeling. What? Model A model in science is a physical, mathematical, or logical representation of a system of entities, phenomena,

• Mathematical Model

Based on the modeling done so far, we can derive the equations that govern the behavior of our system. The model is given by sets of coupled ordinary differential equations

• Simulation & Sensitivity Analysis