Team:Amsterdam/Sandbox

From 2011.igem.org

(Difference between revisions)
Line 1: Line 1:
{{:Team:Amsterdam/Header}}
{{:Team:Amsterdam/Header}}
<html>
<html>
 +
<script>
 +
//Configure the script here
 +
var teamname = "Amsterdam";
 +
 +
// Do not edit below
 +
 +
// Loop through the URL
 +
function buildDepth(array,count) {
 +
var depthStr="";
 +
for (i=0;i<count;i++)
 +
{
 +
depthStr=depthStr + array[i] + "/" ;
 +
}
 +
 +
return depthStr;
 +
}
 +
 +
// The function
 +
function buildBreadCrumbTrail(page) {
 +
// Declare vars
 +
var constituentFolders = new Array();
 +
var currentURL = page;
 +
 +
// Split the URL
 +
constituentFolders=currentURL.split("/");
 +
 +
// Start with a link to the team home page
 +
var outputStr="<a href='https://2011.igem.org/Team:'" + teamname + ">Home</a>";
 +
 +
// Loop through the URL
 +
for (count=0;count<(constituentFolders.length);count++)
 +
{
 +
outputStr=outputStr + " > <a href='https://2011.igem.org/Team:" + teamname +
 +
buildDepth(constituentFolders,count) + constituentFolders[count] + "'>" +
 +
capitaliseFirstLetter(constituentFolders[count]).replace(/-/gi," ") + "</a>";
 +
}
 +
 +
// Write to the div
 +
$("#breadcrumbs").html(outputStr);
 +
}
 +
 +
// Capitalize the first letter
 +
function capitaliseFirstLetter(string) {
 +
    return string.charAt(0).toUpperCase() + string.slice(1);
 +
}
 +
 +
// Start the script upon page load
 +
$(function() {
 +
buildBreadCrumbTrail(window.location.pathname);
 +
}
 +
</script>
 +
<div id="breadcrumbs"></div>
<div id="leftcolumn">
<div id="leftcolumn">
<h1>iGEM Team Amsterdam 2011</h1>
<h1>iGEM Team Amsterdam 2011</h1>

Revision as of 14:46, 5 July 2011

iGEM Team Amsterdam 2011

“Make biology simple with genetically engineered machines”

Our project

Escherichia coli's optimal growth temperature is 37°C. Its growth rate decreases sharply at temperatures deviating from this optimum, and growth beneath 8°C is impossible for wildtype E. coli. The aim of the project is to increase the cold tolerance of E. coli, effectively extending the growth curve as shown below. This will be attempted by expressing several different (combinations of) synthesized genes, through standardized plasmids. Succesfully manipulating E. coli's cold tolerance is valuable to both fundamental and applied science. Among others, it enhances the possibilities of heterologous protein expression, and it might lead towards more efficient biosynthesis of various heat-sensitive compounds (such as antibiotics).
Locations of visitors to this page
{{:Team:Amsterdam/Footer}}