Team:XMU-China/Project Modelling Intracellularmodel
From 2014.igem.org
Line 352: | Line 352: | ||
$(".navbar_main").mouseenter(function(){ | $(".navbar_main").mouseenter(function(){ | ||
var nav_bar_hover_target = $(this); | var nav_bar_hover_target = $(this); | ||
- | nav_bar_hover_target.children(".navbar_sub").slideDown(); | + | nav_bar_hover_target.children(".navbar_sub").stop().slideDown(); |
$(".navbar_main").mouseleave(function(){ | $(".navbar_main").mouseleave(function(){ | ||
var nav_bar_hoveroff_target = $(this); | var nav_bar_hoveroff_target = $(this); | ||
- | nav_bar_hoveroff_target.children(".navbar_sub").slideUp(); | + | nav_bar_hoveroff_target.children(".navbar_sub").stop().slideUp(); |
}); | }); | ||
}); | }); |
Revision as of 03:21, 18 October 2014
INTRACELLULAR MODEL
The following functions are based on ordinary differential equations with Hill functions that captured the activation and repression of protein synthesis.
The intracellular species included cheZ (C or ZT), LacI (L), L-ara (A), IPTG (I).
Equations as follows[1][2]:
|
(a) |
|
(b) |
Parameters:
α----- protein synthesis rate()
β----- repression coefficient( )
γ----- protein decay()
δ-----activation coefficient()
m----- transcription factor cooperativity ()
With above two equations, the relation between stimuli and intracellular is built. With certain concentration of IPTG and L-arabinose, the concentration of cheZ (ZT) will get for the following modeling.
References
1. Song, K. Introduction to Synthetic Biology. Science Press.