Team:Paris/Analysis/Design1

From 2008.igem.org

Revision as of 00:58, 29 October 2008 by Cyprien (Talk | contribs)

Network Design - Part 1


Contents

Generating a FIFO sequential order of expression

A clock that would only indicate one hour, would not be very useful. The same goes for our BacteriO'clock. It is necessary that we add several distinct events in each cycle. We want to use three genes activated successively.

The easiest way to control a sequential expression of genes : the LIFO order

The washing of dirty plates traditionally follows a LIFO order : the last plate put on the stack is the first one to be washed
Network 1 : The Single Input Module can generate a LIFO temporal order.


The temporal order of expression that is the easiest to set up is the Last In First Out temporal order. The genetic network that generates this behavior is the Single Input Module (SIM) (Network 1). A transcription factor X activates the expression of different genes Zi. When X concentration increases, the threshold of activation Ki of the different genes Z are reached in a precise order. The expression will stop in the opposite order when X is not expressed anymore. To cut a long story short, the first gene to be switched on will be the last one to be OFF.

This order poses a real problem to us : several states of the system are redundant (Table 1). We can not accept a clock that would display twice the same hour !

The rules to generate a FIFO temporal order

Table 1 : Comparison of the LIFO and the FIFO orders. (● : gene is OFF, O : gene is ON)

In the contrary, in a FIFO order, there is no confusion possible between different states : they are all distincts. To generate this complex behavior, there are two major possibilities.

The simplest way to generate a FIFO : a simple cascade of genes

Network 2 : A cascade of gene : the simplest way to generate a FIFO behavior.

The first one, the simplest, which is also the most unsophisticated, is a simple cascade of genes (Network 2). When the first gene Z1 is switched on, it activates the second gene Z2, then the third gene Z3 is turned on. When gene Z1 is turned off, Z2 is switched off first, then Z3...

This network is really simple to implement but presents several problems that makes it incompatible with our project. First of all, the cascade is not resistant to mutations : when one gene is mutated, the cascade is definitely broken. Secondly, the time scale if far too long. Each activation step would take approximately one hour. One full cycle would last almost six hours. Last but not least, the cascade is probably not very resistant to intracellular noise, it is not robust enough.

The more sophisticated way to generate a FIFO behavior : a particular Multiple Output Feed-Forward Loop

The other way to implement a FIFO is based on a logic structure called Feed Forward Loop.

↓ Click here to know more about Feed Forward Loops ↑


Definition of a FFL

Fig. 1 : Structure of a type 1 coherent Feed Forward Loop


A Feed-Forward Loop is a genetic network composed of three nodes. This strong network motif is composed of a transcription factor X that regulates a second transcription factor, Y, and both X and Y regulate Z (Figure 1).

The different types of FFL


Depending on the type of regulations between the different nodes, we can define eight types of FFL that can be classified into two groups : coherent and incoherent FFLs. In coherent FFLs, the indirect path has the same overall sign as the direct path. The most abundant FFL is the type-1 coherent FFL (C1-FFL) (Figure 1).


The type 1 coherent Feed Forward Loop with an OR gate introduces a delay after the extinction of the signal

Fig. 2 : The C1-FFL with OR logic in the flagella system of E. coli.
Fig. 3 : Promoter dynamics after an OFF step of X, in the presence of Y. The results are shown for the wild-type bacterium, and for a bacterium in which the gene for Fli1 was deleted from the genome. The FFL generates a delay after an OFF step of X


In addition to the signs of the edges, to understand the dynamics of the FFL, we must also know how the inputs from the two regulators X and Y are integrated at the promoter of the gene Z. Uri ALON considers that there are two biologically reasonable logic functions : "AND" logic, in which both X and Y activities are need to be high in order to turn on Z expression and "OR" logic in which either X or Y is sufficient (Figure 2).


If the input function of the promoter of the gene Z is "OR", Z is expressed when X activity is high. There is no delay following the expression of X. But when X is not expressed anymore, its concentration decreases and reach the activation threshold of Y and Z. Y is not expressed anymore but as the concentration decreases, Z is still expressed. The OR-gate C1-FFL allow the gene Z to be expressed about one more hour after the gene X is OFF. (Figure 3)

Bibliography :

.

More precisely, the genetic network is called Multiple Output FFL (Network 3). Each gene Zi is regulated by both X and Y, as in a typical FFL. X activates Zi when its concentration reaches the threshold KX/Zi. It is the same for Y and its respective thresholds.

Network 3 : Multiple Output FFL is the logic structure that permit FIFO behavior. The thresholds must be ordered is a precise way : KX/Z1 < KX/Z2 < KX/Z3 and KX/Z1 > KX/Z2 > KX/Z3

All the MO FFL do not behave according to the FIFO order, three conditions are necessary and sufficient.

  • The input function for each gene Zi must be a OR or a SUM gate.
  • To have the order of expression Z1, Z2 and then Z3 at the switching ON, the thresholds must be ordered like this :
KX/Z1 < KX/Z2 < KX/Z3
  • To have the FIFO order, Z1 must be the first gene to be switched OFF when X is no more expressed. When X is not expresses anymore, its concentration decreases. The threshold KX/Z1 will be reached after the thresholds KX/Z2 and KX/Z3. As Y is still expressed when X decreases, its own concentration will decrease with a delay. To have a FIFO, Y concentration must reach KY/Z1 before KX/Z2 and KX/Z3. The necessary order must be :
KX/Z1 > KX/Z2 > KX/Z3


Implementation of our FIFO

In the FIFO you could start by saying we were looking for a FIFO and rather than designing it from scratch we decided to look in nature where we found and adopted the flagella which then inspired us further

Previous step : Project Description

Next step : Network Design Part 2 : Oscillations