Team:Grenoble/Biology/Introduction
From 2012.igem.org
Revision as of 13:21, 25 September 2012 by Adeline millet (Talk | contribs)
Network details section
In this section you will find a precise description of the networks we attempted to construct as well as the explanation on how they work and what is the purpose of each actor.A biological "AND" gate
Protocols
In this section you will find the description of our experiments in order to be able to reproduce what we did (if you have the will).Notebook
In case you have the will to follow our experiments day by day; this section is made for you!!!
$(document).ready(
function(){
$("ul.topnav li").hover(
function() {
// Hover over
$(this).parent().find("ul.subnav").hide();
$(this).find("ul.subnav").show();
// Hover out
$(this).hover(
function() {
},
function(){
$(this).find("ul.subnav").hide();
}
);
},
function(){
$(this).find("ul.subnav").hide();
}
);
}
);