Team:Glasgow/Modeling
From 2014.igem.org
(Difference between revisions)
Lowlight42 (Talk | contribs) |
Lowlight42 (Talk | contribs) |
||
Line 35: | Line 35: | ||
#dog {width:400px;} | #dog {width:400px;} | ||
+ | |||
+ | table.center {margin-right:auto; | ||
+ | margin-left:auto;} | ||
+ | |||
+ | #minibar {width:20%; | ||
+ | text-align:center;} | ||
+ | |||
+ | #firstlink {border-right: 2px solid black;} | ||
+ | |||
+ | .minibarcell {padding:2px;} | ||
+ | |||
+ | .minibarlink:link {text-decoration:none; | ||
+ | color:#000000} | ||
+ | .minibarlink:visited {text-decoration:none; | ||
+ | color:#606060;} | ||
+ | .minibarlink:hover {text-decoration:none; | ||
+ | color:#0033CC} | ||
+ | .minibarlink:active {text-decoration:none;} | ||
+ | |||
Line 95: | Line 114: | ||
<p> And here's random walk run that happened to look like a dog.</p> | <p> And here's random walk run that happened to look like a dog.</p> | ||
+ | <table id="minibar" class="center"> | ||
+ | <tr><td class="minibarcell" id="firstlink"><a class= "minibarlink" href="https://2014.igem.org/Team:Glasgow/Modeling_Intro">Intro</a></td> | ||
+ | <td class="minibarcell"><a class= "minibarlink" href="https://2014.igem.org/wiki/index.php?title=Team:Glasgow/Modeling_Part2">Bacterial Buoyancy</a> | ||
+ | </tr> | ||
+ | |||
+ | </table | ||
<a href="https://2014.igem.org/wiki/index.php?title=Team:Glasgow/Modeling_Part2 align="right">Bacterial floatation</a> | <a href="https://2014.igem.org/wiki/index.php?title=Team:Glasgow/Modeling_Part2 align="right">Bacterial floatation</a> |
Revision as of 15:38, 13 September 2014
New page Modelling Intro
Section 1: Modelling of Bacteria Random Walk
Firstly, we created a very basic 2D model of a flagella propelled bacterium. This was heavily based on the “random walk” model we mentioned previously, only we introduced a small degree of order, based on a more extensive and all-encompassing model created by Dillon, Fauci and Gaver in 1995.(link to paper?)DOI: 10.1006/jtbi.1995.0251
In order to simplify the model, we made a number of assumptions. These are:
The movement of a bacteria through a medium is described thus:
1. The bacteria is moving at a random angle at a certain speed.
2. After a certain time (the “run” time), the bacteria reorientates itself (the “tumble”),
and sets off at a different angle. This run time can be influenced by the chemotaxic gradient,
if present.
The images below describe how the run times are influenced: if the bacteria is on a path towards the "food", it is unlikely to change direction.
These is the result of a MATLAB simulation using the angle and run time distributions. Of course, every run was entirely random. The gif shows the path of 10 different bacterium, all spreading out from a central point. They each make 300 steps. The timing of this is roughly x10 faster than real life.
Bacterial floatation
Firstly, we created a very basic 2D model of a flagella propelled bacterium. This was heavily based on the “random walk” model we mentioned previously, only we introduced a small degree of order, based on a more extensive and all-encompassing model created by Dillon, Fauci and Gaver in 1995.(link to paper?)DOI: 10.1006/jtbi.1995.0251
In order to simplify the model, we made a number of assumptions. These are:
- Tumbling is instantaneous
- Chemotaxic gradient is not a factor
- An E.coil cell can be represented as a sphere
- Speed is constant (20ms-1)
The movement of a bacteria through a medium is described thus:
1. The bacteria is moving at a random angle at a certain speed.
2. After a certain time (the “run” time), the bacteria reorientates itself (the “tumble”),
and sets off at a different angle. This run time can be influenced by the chemotaxic gradient,
if present.
The images below describe how the run times are influenced: if the bacteria is on a path towards the "food", it is unlikely to change direction.
Based on the previous research, we decided that the tumble angle would be picked each time from a normal distribution, having a mean of 68 degrees and a standard deviation of 36. This angle would be either added or subtracted from the previous position. The speed was set at a constant 20ms-1.Given angle, speed and time, new x and y coordinates are calculated and plotted. This process is repeated for any number of steps to show the theoretical path of a bacterium.
These is the result of a MATLAB simulation using the angle and run time distributions. Of course, every run was entirely random. The gif shows the path of 10 different bacterium, all spreading out from a central point. They each make 300 steps. The timing of this is roughly x10 faster than real life.
And here's random walk run that happened to look like a dog.
Intro | Bacterial Buoyancy |