Line 23: | Line 23: | ||
<h2><span class="project-color">Introduction</span></h2> | <h2><span class="project-color">Introduction</span></h2> | ||
− | <p | + | <p> |
Bacteria produce insignificant amount of biofilm when they are alone. When bacteria are grouped up however, they produce a biofilm at a much higher rate per bacteria than they did alone. This is attributed to the quorom sensing molecule (QSM). When the bacteria senses a high concentration of QSM it starts producing biofilm at a much higher rate than when it is low. | Bacteria produce insignificant amount of biofilm when they are alone. When bacteria are grouped up however, they produce a biofilm at a much higher rate per bacteria than they did alone. This is attributed to the quorom sensing molecule (QSM). When the bacteria senses a high concentration of QSM it starts producing biofilm at a much higher rate than when it is low. | ||
</p> | </p> | ||
− | <p | + | <p> |
We have produced a computational model inspired by Fozard et al. 2012 article, "Inhibition of quorom sensing in a computational biofilm simulation". We use a three dimensional grid of boxes, which contain information about bacteria and concentrations of molecules. By setting up a number of differential equations, one can from an initial state of bacteria and concentrations learn how they evolve over time. In our project we are interested in finding how many bacteria is activated by the quorom sensing molecules and how the biofilm is produced. The code is available on <a href"https://github.com/torhaugl/NTNU_Trondheim">github</a>. | We have produced a computational model inspired by Fozard et al. 2012 article, "Inhibition of quorom sensing in a computational biofilm simulation". We use a three dimensional grid of boxes, which contain information about bacteria and concentrations of molecules. By setting up a number of differential equations, one can from an initial state of bacteria and concentrations learn how they evolve over time. In our project we are interested in finding how many bacteria is activated by the quorom sensing molecules and how the biofilm is produced. The code is available on <a href"https://github.com/torhaugl/NTNU_Trondheim">github</a>. | ||
</p> | </p> | ||
Line 36: | Line 36: | ||
<h2><span class="project-color">Theory</span></h2> | <h2><span class="project-color">Theory</span></h2> | ||
− | <p | + | <p> |
The boxes used in the simulation contain information of particles and concentration of QSM and substrate. Each particle can either be a collection of bacteria, or an exopolysaccharide (EPS) particle. | The boxes used in the simulation contain information of particles and concentration of QSM and substrate. Each particle can either be a collection of bacteria, or an exopolysaccharide (EPS) particle. | ||
Line 51: | Line 51: | ||
<br> | <br> | ||
− | <p | + | <p> |
where <i>i</i> is the index to the box and <i>q</i> is the type of molecules, substrate and QSM. <i>D</i> is the diffusion constant, <i>l</i> is the side-length of the boxes in the three dimensional grid, <i>K</i> is a half-saturation constant, <i>Z<sub>QSM</sub></i> is the production rate of QSM in up- and down-regulated states, <i>M</i> is the mass of the bacteria particle, and <i>n</i> is the number of up- and down regulated bacteria. | where <i>i</i> is the index to the box and <i>q</i> is the type of molecules, substrate and QSM. <i>D</i> is the diffusion constant, <i>l</i> is the side-length of the boxes in the three dimensional grid, <i>K</i> is a half-saturation constant, <i>Z<sub>QSM</sub></i> is the production rate of QSM in up- and down-regulated states, <i>M</i> is the mass of the bacteria particle, and <i>n</i> is the number of up- and down regulated bacteria. | ||
− | The mass <i>M</i> of each bacteria is modeled to be proportional to the difference in substrate uptake and maintenance rate, </p> | + | The mass <i>M</i> of each bacteria is modeled to be proportional to the difference in substrate uptake and maintenance rate, |
+ | </p> | ||
<br> | <br> | ||
<center> | <center> | ||
Line 60: | Line 61: | ||
</center> | </center> | ||
<br> | <br> | ||
− | <p | + | <p> |
where <i>V<sub>max</sub></i> and <i>Y<sub>max</sub></i> is the maximum substrate uptake and maximum yield respectively and <i>m</i> is the maintenance rate. | where <i>V<sub>max</sub></i> and <i>Y<sub>max</sub></i> is the maximum substrate uptake and maximum yield respectively and <i>m</i> is the maintenance rate. | ||
Line 69: | Line 70: | ||
<br> | <br> | ||
− | <p | + | <p> |
At each time-step, a pressure value <i>p</i> was calculated for all the boxes, | At each time-step, a pressure value <i>p</i> was calculated for all the boxes, | ||
</p> | </p> | ||
Line 78: | Line 79: | ||
<br> | <br> | ||
− | <p | + | <p> |
The number of particles to be moved out of a box at index <i>i</i> to a neighbouring box is dependent on the pressure difference, | The number of particles to be moved out of a box at index <i>i</i> to a neighbouring box is dependent on the pressure difference, | ||
</p> | </p> | ||
Line 87: | Line 88: | ||
<br> | <br> | ||
− | <p | + | <p> |
where <i>N</i> is the total amount of particles in the box. | where <i>N</i> is the total amount of particles in the box. | ||
Line 96: | Line 97: | ||
<br> | <br> | ||
− | <p | + | <p> |
At each timestep, each cell had a probability Q± per minute to convert from down-regulated to up-regulated, | At each timestep, each cell had a probability Q± per minute to convert from down-regulated to up-regulated, | ||
</p> | </p> | ||
Line 111: | Line 112: | ||
<h2><span class="project-color">Results</span></h2> | <h2><span class="project-color">Results</span></h2> | ||
− | <p | + | <p> |
Figure 1 shows how the bacteria count increased over time, and how many of them were up-regulated to produce more EPS and QSM. Three simulations were run, one without refilling the system with substrate, one refilling after 2 hours and one after 4 hours. Figure 2 shows how the amount of EPS increased over time for the three refilling scenarios run. | Figure 1 shows how the bacteria count increased over time, and how many of them were up-regulated to produce more EPS and QSM. Three simulations were run, one without refilling the system with substrate, one refilling after 2 hours and one after 4 hours. Figure 2 shows how the amount of EPS increased over time for the three refilling scenarios run. | ||
+ | </p> | ||
+ | <p> | ||
From Figure 2 we see that the amount of EPS produced is only slightly changed when refilling with new substrate. Therefore we chose to simplify the experimental procedure by not refilling the substrate. | From Figure 2 we see that the amount of EPS produced is only slightly changed when refilling with new substrate. Therefore we chose to simplify the experimental procedure by not refilling the substrate. | ||
+ | </p> | ||
− | < | + | <figure> |
<img src="https://static.igem.org/mediawiki/2018/6/66/T--NTNU_Trondheim--refill_count.png"> | <img src="https://static.igem.org/mediawiki/2018/6/66/T--NTNU_Trondheim--refill_count.png"> | ||
+ | <figcaption><b>Figure 1:</b> </figcaption> | ||
+ | </figure> | ||
+ | |||
+ | <figure> | ||
<img src="https://static.igem.org/mediawiki/2018/d/d5/T--NTNU_Trondheim--refill_eps.png"> | <img src="https://static.igem.org/mediawiki/2018/d/d5/T--NTNU_Trondheim--refill_eps.png"> | ||
− | </ | + | <figcaption><b>Figure 2:</b> </figcaption> |
− | </ | + | </figure> |
− | + | ||
− | + | ||
Revision as of 13:52, 14 October 2018
Introduction
Bacteria produce insignificant amount of biofilm when they are alone. When bacteria are grouped up however, they produce a biofilm at a much higher rate per bacteria than they did alone. This is attributed to the quorom sensing molecule (QSM). When the bacteria senses a high concentration of QSM it starts producing biofilm at a much higher rate than when it is low.
We have produced a computational model inspired by Fozard et al. 2012 article, "Inhibition of quorom sensing in a computational biofilm simulation". We use a three dimensional grid of boxes, which contain information about bacteria and concentrations of molecules. By setting up a number of differential equations, one can from an initial state of bacteria and concentrations learn how they evolve over time. In our project we are interested in finding how many bacteria is activated by the quorom sensing molecules and how the biofilm is produced. The code is available on github.
Theory
The boxes used in the simulation contain information of particles and concentration of QSM and substrate. Each particle can either be a collection of bacteria, or an exopolysaccharide (EPS) particle. The concentration was updated according to
where i is the index to the box and q is the type of molecules, substrate and QSM. D is the diffusion constant, l is the side-length of the boxes in the three dimensional grid, K is a half-saturation constant, ZQSM is the production rate of QSM in up- and down-regulated states, M is the mass of the bacteria particle, and n is the number of up- and down regulated bacteria. The mass M of each bacteria is modeled to be proportional to the difference in substrate uptake and maintenance rate,
where Vmax and Ymax is the maximum substrate uptake and maximum yield respectively and m is the maintenance rate. The production of exopolysaccharide (EPS), or biofilm, is depdendent on the number of up- and down-regulated cells,
At each time-step, a pressure value p was calculated for all the boxes,
The number of particles to be moved out of a box at index i to a neighbouring box is dependent on the pressure difference,
where N is the total amount of particles in the box. The relative probability of moving to a specific box was chosen to be linearly dependent on the pressure difference,
At each timestep, each cell had a probability Q± per minute to convert from down-regulated to up-regulated,
Results
Figure 1 shows how the bacteria count increased over time, and how many of them were up-regulated to produce more EPS and QSM. Three simulations were run, one without refilling the system with substrate, one refilling after 2 hours and one after 4 hours. Figure 2 shows how the amount of EPS increased over time for the three refilling scenarios run.
From Figure 2 we see that the amount of EPS produced is only slightly changed when refilling with new substrate. Therefore we chose to simplify the experimental procedure by not refilling the substrate.