Team:Osaka/SIGNAL

From 2009.igem.org

(Difference between revisions)
Line 55: Line 55:
   Fick's second law of diffusion can be written as
   Fick's second law of diffusion can be written as
<br>
<br>
-
where C[amount/length<sup>3</sup>] is the concentration, t[s] is the time, x[length] is the position, and D is the diffusion coefficient in dimensions of [length<sup>2</sup>/time].
+
where C[amount/length<sup>3</sup>] is the concentration, t[s] is the time, x[length] is the position, and D is the diffusion coefficient in dimensions of [length<sup>2</sup>/s].
<br>
<br>
If we apply the finite difference method to the above equation, fick's second law of diffusion can be expressed in a finite difference equation written as
If we apply the finite difference method to the above equation, fick's second law of diffusion can be expressed in a finite difference equation written as
Line 68: Line 68:
<br>
<br>
<br>
<br>
-
 
+
the estimated value of D is about 3E10<sup>-5</sup> so it fits the above condition.
 +
<br>
 +
<br>
 +
<font size="3"><b>Determination of the values of parameters</b></font>
 +
For accurate results, the precise determination of the values of parameters used in the simulation is essential.
</p>
</p>
</p>
</p>

Revision as of 04:32, 11 October 2009

Home of iGEMOSAKA wiki

SIGNAL

Overview

We will be using signaling parts from quorum sensing systems of various bacteria to implement intracellular communication between bacterial colonies of different 'colors'. If it works, we can for example cause two colonies of bacteria to change color or stop moving as they approach each other, hopefully resulting in interesting patterns.


Currently we are working on 2 distinct groups of parts: 'Senders' and 'Receivers'. 'Senders' code for enzymes that produce AHL signal molecules, which diffuse out of the cell, through the culture medium and into the receiving cell, where a receptor protein encoded by the 'Receiver' binds the signals, forming a complex which in turn can bind to and upregulate transcription from specific promoter.


To test the effectiveness of our signaling system, we will first test the Receivers by attaching a GFP coding unit (rbs + protein coding region + terminator) behind the Receiver's AHL-activated promoter. We will then directly add chemically-derived AHL into culture solutions of these 'Test Receivers' and look for GFP fluorescence which will indicate that transcription has been activated by AHL.


Following that, we will test the Senders by using the above Receivers. We can determine the amount of AHL produced by the Senders by comparing transcription activity induced by the Senders in relation to AHL-induced trancription activity.


Once both Sender and Receiver function has been confirmed and characterized, we will then attempt to characterize the function of the whole system in a way that relates to our intended usage. We will spot two colonies, one of Senders and one of Receivers, on a soft agar plate and determine the maximum distance that the Senders can successfully activate the Receivers. Of course, this will only work if the AHL molecules can effectively diffuse through the agar medium.


Stay tuned for more updates! :)

Object

Under construction

Implement

Under construction


Model

To make an effective simulation program we regarded the cell's movement as a diffusion. Therefore we applied the fick's second law of diffusion in modeling the cells movement along with the diffusion of autoinducers. Since the law of diffusion is a differential equation(strictly speaking a partial differential equation) the need for a numerical solution was inevitable. We used the finite difference method showen in equation (1)
We then applied it and converted it which gave us the equation (2) and (3), each representing the diffusion of the cell(or colony) and the autoinducer. These two equations were the bases of our program.
...(2)
...(3)


Finite difference method-Expicit method
As mentioned above we used the finite difference method (and also the explicit method). Finite difference methods are widely used numerical methods in solving differential equations, by considering the differential equations as a finite difference equations. We also used the explicit method which calculates the future state of a system by using the current state of the system.

Fick's second law of diffusion can be written as
where C[amount/length3] is the concentration, t[s] is the time, x[length] is the position, and D is the diffusion coefficient in dimensions of [length2/s].
If we apply the finite difference method to the above equation, fick's second law of diffusion can be expressed in a finite difference equation written as
where the concentration[C] of a substance at a time[t], and at a position [i,j] is represented as Cti,j
In this experiment, for convenience we let Δt=1 and Δx=1 but for a more accurate result Δt and Δx can be adjusted.
By applying the explicit method to the above equation again we reach the following equation.
Since the concentration of the substance can not be lower than zero, every term of the equation must be over zero. So we reach the following condition

the estimated value of D is about 3E10-5 so it fits the above condition.

Determination of the values of parameters For accurate results, the precise determination of the values of parameters used in the simulation is essential.