Team:UC Davis/Project/Strain

From 2012.igem.org

(Difference between revisions)
Line 81: Line 81:
<script type="text/javascript"        src ="https://2012.igem.org/forum/forum_scripts.js"></script>
<script type="text/javascript"        src ="https://2012.igem.org/forum/forum_scripts.js"></script>
 +
<!-- slide script starts here -->
 +
<script type="text/javascript">
 +
function slider() {
 +
    var $current = $('#slides IMG.current');
 +
 +
    if ( $current.length == 0 ) $current = $('#slides IMG:last');
 +
    var $next =  $current.next().length ? $current.next()
 +
        : $('#slides IMG:first');
 +
 +
      $current.addClass('previous');
 +
    $next.css({opacity: 0.0})
 +
        .addClass('current')
 +
        .animate({opacity: 1.0}, 2500, function() {
 +
            $current.removeClass('current previous');
 +
        });
 +
 +
var $navicurrent = $('.progress li.current');
 +
if($navicurrent.length ==0) $navicurrent = $('.progress li:last');
 +
var $navinext = $navicurrent.next().length ? $navicurrent.next() : $('.progress li:first');
 +
$navicurrent.addClass('previous');
 +
$navicurrent.removeClass('current previous');
 +
$navinext.addClass('current').animate({opacity: 1.0}, 2500, function() {
 +
        });
 +
 +
$('.progress li').click(function(){
 +
   
 +
var $ncurrent = $(this);
 +
        $('.progress li').removeClass('current').removeClass('previous');
 +
        $('#slides IMG').removeClass('current').removeClass('previous');
 +
        $ncurrent.addClass('current');
 +
        var ncurrentindex = $ncurrent.index();
 +
if(  ncurrentindex=== 0) $current = $('#slides IMG:first');
 +
        if(  ncurrentindex=== 1) $current = $('#slides IMG:eq(1)');
 +
        if(  ncurrentindex=== 2) $current = $('#slides IMG:eq(2)');
 +
        if(  ncurrentindex=== 3) $current = $('#slides IMG:last');
 +
        $current.addClass('current');
 +
 +
});
 +
 +
}
 +
$(function() {
 +
    setInterval( "slider()", 5000 );
 +
});
 +
 +
$(document).ready(function(){
 +
 +
  $('a.lightbox').click(function(e) {
 +
    $('body').css('display', 'inherit'); // hide scrollbars!
 +
 +
    $('<div id="overlay"></div>')
 +
    .css('opacity', '0')
 +
      .animate({'opacity': '0.7'}, 'slow')
 +
    .click(function(){
 +
      removeLightbox();
 +
      })
 +
      .appendTo('body');
 +
 +
    $('<div id="lightbox"></div>')
 +
      .hide()
 +
      .appendTo('body');
 +
 +
    $('<img>')
 +
      .attr('src', $(this).attr('href'))
 +
      .load(function() {
 +
        positionLightboxImage();
 +
      })
 +
      .click(function() {
 +
        removeLightbox();
 +
      })
 +
      .appendTo('#lightbox');
 +
 +
    return false;
 +
  });
 +
});
 +
 +
function positionLightboxImage() {
 +
  var top = ($(window).height()  - $('#lightbox').height())/2;
 +
  var left = ($(window).width() - $('#lightbox').width())/2;
 +
 +
  $('#lightbox')
 +
    .css({
 +
      'top': top,
 +
      'left':left-80
 +
    })
 +
    .fadeIn();
 +
}
 +
 +
function removeLightbox() {
 +
 +
  $('#overlay, #lightbox')
 +
    .fadeOut('slow', function() {
 +
      $(this).remove();
 +
      $('body').css('overflow-y', 'auto'); // show scrollbars!
 +
    });
 +
}
 +
 +
 +
</script>
 +
<!-- slide script ends here -->
<style type="text/css">
<style type="text/css">
<!-- beginning of slider style -->
<!-- beginning of slider style -->
Line 106: Line 205:
#menubar.right-menu { width:300px; display:block; float:left; margin-top:-80px; border: none;}
#menubar.right-menu { width:300px; display:block; float:left; margin-top:-80px; border: none;}
.right-menu ul { border: none; width: 300px;}
.right-menu ul { border: none; width: 300px;}
-
#footer-box { background-color: #216085; border: none; width: 100%; height: 100%; margin: -10px auto 0 auto; padding: 20px 0;}
+
#footer-box { background-color: #216085; border: none; width: 850px; height: 30px; margin: -10px auto 0 auto; padding: 20px 0;}
.visualClear { display: none; }
.visualClear { display: none; }
#footer { border: none; width: 850px; margin: 0 auto; padding: 0;}
#footer { border: none; width: 850px; margin: 0 auto; padding: 0;}
Line 118: Line 217:
h3#siteSub { display: none;}
h3#siteSub { display: none;}
#contentSub {display: none;}
#contentSub {display: none;}
-
p:first-child { display: none;}
+
p:first-child { display: block;}
h1{border:none; width: 100%; clear: both;}
h1{border:none; width: 100%; clear: both;}
-
<!-- end of slides style -->
 
-
 
-
body {
 
-
    background-color: #ffffff;
 
-
    color: black;
 
-
    font: x-small sans-serif;
 
-
    margin: 0;
 
-
    padding: 0;
 
-
    height:100%;
 
-
#    height:auto !important;
 
-
}
 
#globalWrapper {
#globalWrapper {
     position: relative;
     position: relative;
     font-size: 127%;
     font-size: 127%;
-
     width: 100%;
+
     width: 850px //100%;
     margin: 0;
     margin: 0;
     padding: 0;
     padding: 0;
     padding-bottom: 10px;
     padding-bottom: 10px;
-
    background-color: #ffffff;
+
#    background:url(http://img.photobucket.com/albums/v26/bluemelon/bg-2-1.jpg);
-
#   height:100%;
+
#    background-repeat: no-repeat;
-
 
+
#   background-attachment: fixed;
 +
#   background-size:100% auto;
}
}
Line 149: Line 238:
     margin: 0 auto;
     margin: 0 auto;
     padding: 5px 5px 5px 5px;;
     padding: 5px 5px 5px 5px;;
-
     background: white;
+
     background: transparent;
     color: black;
     color: black;
-
    border-left: 1px solid #ffffff;
+
#    border-left: 1px solid #ffffff;
-
    border-right: 1px solid #ffffff;
+
#    border-right: 1px solid #ffffff;
-
    line-height: 1.5em;
+
#    line-height: 1.5em;
-
#    z-index: 2;
+
}
}
 +
 +
 +
body {
 +
background-color: rgba(255,255,255,1);
 +
background-image: url('http://img.photobucket.com/albums/v26/bluemelon/bg-2-1.jpg');
 +
background-size: 100%;
 +
background-repeat: no-repeat;
 +
background-attachment:fixed;
 +
 +
    color: black;
 +
    font: x-small sans-serif;
 +
    margin: 0;
 +
    padding: 0;
 +
#    height:100%;
 +
}
 +
#topmenubar {
#topmenubar {
Line 211: Line 315:
         position:relative;
         position:relative;
         height:42px;
         height:42px;
-
         width: 856px;
+
         width: 850px;
         margin-left: -2px;
         margin-left: -2px;
         display:block;
         display:block;
Line 220: Line 324:
         overflow:hidden;
         overflow:hidden;
         padding:0px;  
         padding:0px;  
-
         margin:0px;  
+
         margin:2px solid transparent;  
         list-style-type:none;  
         list-style-type:none;  
         height:24px;
         height:24px;
 +
        width: 107px;
         list-style-image:none;
         list-style-image:none;
-
         background:#004b85;
+
         background: #004b85;
}
}
#newnavi .newmenu li    {
#newnavi .newmenu li    {
         float:right;  
         float:right;  
-
        height:24px;
+
         background: #004b85;
-
        width: 103px;
+
         text-align:center;
-
         background:#004b85;
+
-
         border-left: solid 2px white;
+
-
        border-right: solid 2px white;
+
}
}
#newnavi .newmenu .selected {
#newnavi .newmenu .selected {
Line 238: Line 340:
}
}
#newnavi .newmenu li a  {
#newnavi .newmenu li a  {
-
text-align:center; vertical-align:middle; width:82px; padding:5px 10px 5px 10px; display:block; color:#fff; text-decoration:none; font:14px arial, verdana, sans-serif; font-weight: bold;
+
text-align:center; vertical-align:middle; width:86px; padding:5px 10px 5px 10px; display:block; color:#fff; text-decoration:none; font:14px arial, verdana, sans-serif; font-weight: bold;
}
}
#newnavi .newmenu li:hover a {
#newnavi .newmenu li:hover a {
Line 244: Line 346:
}
}
#newnavi .newmenu ul    {
#newnavi .newmenu ul    {
-
position:absolute; left:-9999px; top:-9999px; list-style-type:none; list-style-image:none; margin:0px; border:0px; padding:0px; background:lavender;
+
position:absolute; left:-9999px; top:-9999px; list-style-type:none; list-style-image:none; margin:0px; border:0px; padding:0px; background: #05bcea;
}
}
#newnavi .newmenu li:hover      {
#newnavi .newmenu li:hover      {
Line 250: Line 352:
}
}
#newnavi .newmenu li:hover ul  {
#newnavi .newmenu li:hover ul  {
-
left:0px; top:23px; background:lavender;  width:103px; opacity:0.7; z-index:3;
+
left:0px; top:26px; background: #05bcea;  width:150px; opacity:1.0 ; z-index:4;
}
}
#newnavi .newmenu li:hover ul li        {
#newnavi .newmenu li:hover ul li        {
-
         height:17px;
+
          
-
        border:none;
+
         background: #05bcea;
-
         background:lavender;
+
}
}
#newnavi .newmenu li:hover ul li a      {
#newnavi .newmenu li:hover ul li a      {
-
text-align:center; height:17px; padding:0px;display:block; font-size:12px; width:103px; line-height:16px; text-indent:0px; color:#444;  
+
text-align:left; padding:5px 0px 5px 0px;display:block; font-size:12px; width:150px; text-indent:10px; color:#444;  
-
background-color:transparent; text-decoration:none; border:0px solid transparent;       
+
background-color: #05bcea; text-decoration:none;       
}
}
#newnavi .newmenu li:hover ul li a:hover {
#newnavi .newmenu li:hover ul li a:hover {
-
height:18px; background:silver; color:#000; border:solid 0px #444;    
+
background: #05bcea; color:#ffffff; width:150px;     
 +
}
 +
 
 +
#slides {
 +
    position:relative;
 +
    height:280px;
 +
    width: 840px
 +
   
 +
}
 +
 
 +
#slides IMG {
 +
        position:absolute;
 +
        opacity:0.0;
 +
        top:0px;   
 +
        left:0px;
 +
        z-index:1;   
 +
}
 +
 
 +
#slides .current {
 +
    z-index:3;
 +
    opacity:1.0;
 +
}
 +
 
 +
#slides .previous {
 +
    z-index:2;
 +
}
 +
 
 +
.progress {
 +
 
 +
margin-top:-270px;
 +
margin-left:20px;
 +
position:absolute;
 +
 
 +
}
 +
 
 +
.progress li{
 +
border:1px solid rgba(0,0,0,0.9);
 +
border-radius:3px;
 +
margin-left: 5px;
 +
float:left;
 +
display:block;
 +
position:relative;
 +
z-index:10;
 +
background-color:rgba(255,255,255,0.4);
 +
}
 +
 
 +
.progress li a{
 +
    padding-left: 6px;
 +
    padding-right: 6px;
 +
}
 +
 
 +
.progress li a:hover {
 +
text-decoration:none;
 +
}
 +
 
 +
.progress .current {
 +
background-color:white;
 +
}
 +
 
 +
#myleftrightbox
 +
{
 +
position:relative;
 +
width:850px;
 +
float:left;
 +
background-color:transparent;
 +
margin-top: 0px;
 +
margin-left:3.75px solid transparent;
 +
margin-right:3.75px solid transparent;
 +
border-radius: 4px;
 +
padding: 0px;
 +
font: sans-serif;
 +
font-size: 13px;
 +
color: white;
 +
}
 +
 
 +
#myleftrightbox .fourboxes
 +
{
 +
width:191px;
 +
float:left;
 +
background-color:rgba(143,143,143,0.7);
 +
margin-top: 15px;
 +
margin-left:3.75px solid #e8eff1;
 +
margin-right:3.75px solid #e8eff1;
 +
margin-bottom:0px;
 +
border-radius: 4px;
 +
padding: 8.5px;
 +
font: sans-serif;
 +
font-size: 13px;
 +
color: white;
 +
}
 +
 
 +
#myleftrightbox .fourboxes-1
 +
{
 +
width:191px;
 +
float:left;
 +
background-color:rgba(143,143,143,0.7);
 +
margin-top: 15px;
 +
margin-left:3.75px solid #e8eff1;
 +
margin-right:3.75px solid #e8eff1;
 +
margin-bottom:0px;
 +
border-radius: 4px;
 +
padding: 8.5px;
 +
font: sans-serif;
 +
font-size: 13px;
 +
color: white;
 +
}
 +
 
 +
#myleftrightbox .fourboxes-2
 +
{
 +
width:191px;
 +
float:left;
 +
background-color:rgba(143,143,143,0.7);
 +
margin-top: 15px;
 +
margin-left:3.75px solid #e8eff1;
 +
margin-right:3.75px solid #e8eff1;
 +
margin-bottom:0px;
 +
border-radius: 4px;
 +
padding: 8.5px;
 +
font: sans-serif;
 +
font-size: 13px;
 +
color: white;
 +
}
 +
 
 +
#myleftrightbox .fourboxes-3
 +
{
 +
width:191px;
 +
float:left;
 +
background-color:rgba(143,143,143,0.7);
 +
margin-top: 15px;
 +
margin-left:3.75px solid #e8eff1;
 +
margin-right:3.75px solid #e8eff1;
 +
margin-bottom:0px;
 +
border-radius: 4px;
 +
padding: 8.5px;
 +
font: sans-serif;
 +
font-size: 13px;
 +
color: white;
 +
}
 +
 
 +
#myleftrightbox .fourboxes-4
 +
{
 +
width:191px;
 +
float:left;
 +
background-color:rgba(143,143,143,0.7);
 +
margin-top: 15px;
 +
margin-left:3.75px solid #e8eff1;
 +
margin-right:3.75px solid #e8eff1;
 +
margin-bottom:0px;
 +
border-radius: 4px;
 +
padding: 8.5px;
 +
font: sans-serif;
 +
font-size: 13px;
 +
color: white;
 +
}
 +
 
 +
#myleftrightbox .fourboxes-1:hover {
 +
background-color:green;
 +
}
 +
#myleftrightbox .fourboxes-2:hover {
 +
background-color:orange;
 +
}
 +
#myleftrightbox .fourboxes-3:hover {
 +
background-color:#05bcea;
 +
}
 +
#myleftrightbox .fourboxes-4:hover {
 +
background-color:#676767;
 +
}
 +
 
 +
 
 +
#myleftrightbox .fourboxes2
 +
{
 +
width:191px;
 +
float:left;
 +
background-color:rgba(143,143,143,0.7);
 +
margin-top: 5px;
 +
margin-left:3.75px solid #e8eff1;
 +
margin-right:3.75px solid #e8eff1;
 +
margin-bottom:0px;
 +
border-radius: 4px;
 +
padding: 8.5px;
 +
font: sans-serif;
 +
font-size: 13px;
 +
color: white;
 +
}
 +
 
 +
#myleftrightbox .spacebox
 +
{
 +
float:left;
 +
width:5px;
 +
 
 +
}
 +
#myleftbox
 +
{
 +
position:relative;
 +
width:625px;
 +
float:left;
 +
background-color:;
 +
margin-top: 0px;
 +
border-radius: 4px;
 +
padding: 0px;
 +
font: sans-serif;
 +
font-size: 13px;
 +
color: white;
 +
}
 +
#myleftbox .smallbox
 +
{
 +
width:604px;
 +
float:left;
 +
background-color:#bfbfbf;
 +
margin-top: 15px;
 +
border-radius: 4px;
 +
padding: 15px 15px 15px 15px;
 +
font: sans-serif;
 +
font-size: 13px;
 +
line-height:1.5em;
 +
color:black;
 +
}
 +
#myleftbox .smallbox h1
 +
{
 +
color:#004b85;
 +
font-weight:bold;
 +
}
 +
#myleftbox .smallbox p
 +
{
 +
color: #004b85;
 +
font-weight:bold;
 +
}
 +
#myleftbox .smallboxsite
 +
{
 +
width:604px;
 +
float:left;
 +
background-color:rgba(191,191,191,0.6 );
 +
margin-top: 17px;
 +
border-radius: 4px;
 +
padding: 15px 15px 15px 15px;
 +
font: sans-serif;
 +
font-size: 13px;
 +
line-height:1.5em;
 +
color:black;
 +
 
 +
}
 +
#myleftbox .threeboxes
 +
{
 +
width:191px;
 +
float:left;
 +
background-color:rgba(143,143,143,0.7);
 +
margin-top: 15px;
 +
border-radius: 4px;
 +
border-left:2px solid #e8eff1;
 +
border-right:2px solid #e8eff1;
 +
padding: 7px 7px 7px 7px;
 +
font: sans-serif;
 +
font-size: 13px;
 +
color: white;
 +
}
 +
 
 +
#myleftbox .threeboxes2
 +
{
 +
width:191px;
 +
float:left;
 +
background-color:rgba(143,143,143,0.7);
 +
margin-top: 5px;
 +
border-radius: 4px;
 +
border-left:2px solid #e8eff1;
 +
border-right:2px solid #e8eff1;
 +
padding: 7px 7px 7px 7px;
 +
font: sans-serif;
 +
font-size: 13px;
 +
color: white;
 +
}
 +
 
 +
#myleftbox .threeleft
 +
{
 +
width:175px;
 +
float:left;
 +
background-color:#ba9108;
 +
margin-top: -52px;
 +
border-radius: 4px;
 +
padding: 15px 15px 15px 15px;
 +
font: sans-serif;
 +
font-size: 13px;
 +
color: white;
 +
}
 +
 
 +
#myleftbox .threecenter
 +
{
 +
width:175px;
 +
#float:left;
 +
background-color:#ba9108;
 +
margin-top: -52px;
 +
border-radius: 4px;
 +
padding: 15px 15px 15px 15px;
 +
font: sans-serif;
 +
font-size: 13px;
 +
color: white;
 +
}
 +
#myleftbox .threeright
 +
{
 +
width:175px;
 +
float:right;
 +
background-color:#ba9108;
 +
margin-top: -52px;
 +
border-radius: 4px;
 +
padding: 15px 15px 15px 15px;
 +
font: sans-serif;
 +
font-size: 13px;
 +
color: white;
 +
}
 +
 
 +
 
 +
 
 +
#myleftbox .twoboxes
 +
{
 +
width:295px;
 +
height:120px;
 +
float:left;
 +
background-color:rgba(143,143,143,0.7);
 +
margin-top: 15px;
 +
border-radius: 4px;
 +
border-left:2px solid #e8eff1;
 +
border-right:2px solid #e8eff1;
 +
padding: 7px 7px 7px 7px;
 +
font: sans-serif;
 +
font-size: 13px;
 +
color: white;
 +
}
 +
 
 +
#myleftbox .twoboxes1
 +
{
 +
width:295px;
 +
height:120px;
 +
float:left;
 +
background-color:rgba(143,143,143,0.7);
 +
margin-top: 15px;
 +
border-radius: 4px;
 +
border-left:1px solid #e8eff1;
 +
border-right:2px solid #e8eff1;
 +
padding: 7px 7px 7px 7px;
 +
font: sans-serif;
 +
font-size: 13px;
 +
color: white;
 +
left:9px;
 +
}
 +
 
 +
#myleftbox .twoboxes:hover {
 +
background-color:red;
 +
}
 +
 
 +
#myleftbox .twoboxes1:hover {
 +
background-color:green;
 +
}
 +
 
 +
#sponsorbox
 +
{
 +
position: relative;
 +
width: 208px;
 +
margin-top:15px;
 +
float: right;
 +
height: auto;
 +
}
 +
 
 +
#sponsorbox .sponsorfloat
 +
{
 +
left:-3px;
 +
width:198px;
 +
float: right;
 +
background-color: #004b85;
 +
margin-top: 0px;
 +
margin-bottom:5px;
 +
border-radius: 4px;
 +
padding: 5px 5px 5px 5px;
 +
font: sans-serif;
 +
font-size: 13px;
 +
color: rgba(225,225,225,1);
 +
}
 +
 
 +
#sponsorbox .sponsorfloat h2
 +
{
 +
#color:#ba9108;
 +
color:white;
 +
font-size:130%;
 +
}
 +
 
 +
#sponsorbox .sponsorfloat a
 +
{
 +
color:white;
 +
font: sans-serif;
 +
}
 +
 
 +
#sponsorbox .sponsorfloat p
 +
{
 +
font: sans-serif;
 +
}
 +
.newsAnnouncement
 +
{
 +
width:205px;
 +
height:110px;
 +
overflow-x:hidden;
 +
overflow-y:scroll;
}
}
Line 283: Line 782:
font-weight:bold;
font-weight:bold;
font-size: 40px;
font-size: 40px;
-
color: #004b85;;
+
color: #016D8B;;
-
left:10px;
+
-
}
+
-
 
+
-
.floatbox3 hp{
+
-
font-weight:bold;
+
-
font-size: 20px;
+
-
color: #004b85;;
+
left:10px;
left:10px;
}
}
Line 318: Line 810:
     padding: 0 .0em;}
     padding: 0 .0em;}
-
 
+
#catlinks {
 +
background-color:transparent;
 +
border:1px solid transparent;
 +
}
 +
#footpage {
 +
background-color:transparent;
 +
}
 +
#footer-box {
 +
background-color:rgba(191,191,191,0.5);
 +
margin-top:0px;
 +
}
#footer-box-1 {
#footer-box-1 {
          
          
Line 327: Line 829:
         border: 1px solid #444444;
         border: 1px solid #444444;
}
}
 +
#tweets {
 +
    width: 203px;
 +
    margin: 0 auto;
 +
    font: sans-serif;
 +
    font-size: 12px;
 +
}
 +
 +
#tweets .twtr-widget,
 +
#tweets .twtr-doc {
 +
 +
    width: 100%;
 +
    height: auto;
 +
}
 +
 +
#tweets .twtr-hd {
 +
    display:none;
 +
    background: #d40;
 +
    color: #fff;
 +
    -moz-border-radius: 4px 4px 0 0;
 +
    border-radius: 4px 4px 0 0;
 +
    font-family: sans-serif !important;
 +
    }
 +
 +
#tweets .twtr-hd *,
 +
#tweets .twtr-hd h4 a {
 +
 +
    background: #d40 !important;
 +
    font: sans-serif !important;
 +
}
 +
 +
#tweets .twtr-hd h3,
 +
#tweets .twtr-hd h4 {
 +
 +
    font-weight: normal;
 +
    text-align: left;
 +
    margin:0;
 +
}
 +
 +
#tweets .twtr-hd h3 {
 +
       
 +
    background: #fff !important;
 +
    color: #333 !important;
 +
    font: sans-serif;
 +
    font-size: 1.0em !important;
 +
    padding: 0.2em !important;
 +
    -moz-border-radius: 0px;
 +
    border-radius: 0px;
 +
 +
}
 +
 +
#tweets .twtr-tweet {
 +
 +
    background: #fff;
 +
    font: sans-serif !important;
 +
    font-size: 12px;
 +
}
 +
 +
#tweets .twtr-tweet a:link,
 +
#tweets .twtr-tweet a:visited,
 +
#tweets .twtr-tweet a:hover {
 +
 +
    color: #c40 !important;
 +
 +
}
 +
 +
#tweets .twtr-tweet .twtr-tweet-text {
 +
 +
    border-bottom: 1px dashed #666 !important;
 +
    padding-bottom: 4px !important;
 +
    font: sans-serif;
 +
    font-size:12px;
 +
}
 +
 +
#tweets .twtr-tweet .twtr-tweet-text p {
 +
 +
    color: #333 !important;
 +
    font: sans-serif;
 +
    font-size: 12px;
 +
 +
}
 +
 +
#overlay {
 +
  z-index:2;
 +
  position:fixed;
 +
  top: 0;
 +
  left: 0;
 +
  height: 100%;
 +
  width: 100%;
 +
  background: black no-repeat scroll center center;
 +
}
 +
 +
#lightbox {
 +
  position: fixed;
 +
  width:840;
 +
  z-index:2;
 +
}
</style>
</style>
Line 366: Line 964:
         </ul>
         </ul>
         </li>
         </li>
-
         <li ><a href="https://2012.igem.org/Team:UC_Davis/Notebook" title="Notebook">Notebook</a>
+
         <li ><a href="https://2012.igem.org/Notebook" title="Notebook">Notebook</a>
           <ul>
           <ul>
-
             <li ><a href="./Notebook.htm ">Week 1</a></li>
+
             <li ><a href="https://2012.igem.org/Team:UC_Davis/Notebook ">Overview</a></li>
-
             <li ><a href="./Notebook.htm ">Week 2</a></li>
+
             <li ><a href="https://2012.igem.org/Team:UC_Davis/Notebook/Protocols ">Protocols</a></li>
-
             <li ><a href="./Notebook.htm ">Week 3</a></li>
+
             <li ><a href="https://2012.igem.org/Team:UC_Davis/Notebook ">Notebook</a></li>
           </ul>
           </ul>
         </li>
         </li>
Line 378: Line 976:
         <li class="selected"><a href="https://2012.igem.org/Team:UC_Davis/Project" title="Project">Project</a>
         <li class="selected"><a href="https://2012.igem.org/Team:UC_Davis/Project" title="Project">Project</a>
           <ul>
           <ul>
-
             <li ><a href="https://2012.igem.org/Team:UC_Davis/Project/Strain">Strain</a></li>
+
            <li ><a href="https://2012.igem.org/Team:UC_Davis/Project">Project Overview</a></li>
-
             <li ><a href="https://2012.igem.org/Team:UC_Davis/Project/Catalyst">Catalyst</a></li>
+
             <li ><a href="https://2012.igem.org/Team:UC_Davis/Project/Strain">Modular Engineering</a></li>
 +
             <li ><a href="https://2012.igem.org/Team:UC_Davis/Project/Catalyst">Chassis Engineering</a></li>
             <li ><a href="https://2012.igem.org/Team:UC_Davis/Project/Protein_Engineering">Protein Engineering</a></li>
             <li ><a href="https://2012.igem.org/Team:UC_Davis/Project/Protein_Engineering">Protein Engineering</a></li>
           </ul>
           </ul>
Line 387: Line 986:
     </ul>
     </ul>
   </div>
   </div>
 +
<!-- slide show starts here
 +
<div id="slides">
 +
 +
    <img  src="http://img.photobucket.com/albums/v26/bluemelon/slide-1-2.jpg" width="850" height="280" alt="" class="current" />
 +
    <img  src="http://img.photobucket.com/albums/v26/bluemelon/slide-2-2.jpg" width="850" height="280" alt="" />
 +
    <img  src="http://img.photobucket.com/albums/v26/bluemelon/slide-3-2.jpg" width="850" height="280" alt="" />
 +
    <img  src="http://img.photobucket.com/albums/v26/bluemelon/slide-4-2.jpg" width="850" height="280" alt="" />
 +
</div>
 +
    <ul class="progress">
 +
<li class="current"><a href="#n_0">1</a> </li>
 +
<li><a href="#n_1">2</a> </li>
 +
        <li><a href="#n_2">3</a> </li>
 +
        <li><a href="#n_3">4</a> </li>
 +
    </ul>
 +
slide show ends here -->
 +
 +
<img src="https://static.igem.org/mediawiki/2012/4/47/UCD_chassis_engineering_banner.jpg">
 +
 +
<div id="bodyContent"> 
 +
<!--  <div id="contentSub"></div> -->
 +
<!--  </div> -->
 +
<!-- float: right; first try -->
 +
<!-- 1st row four boxes starts here -->
 +
<div id="myleftrightbox">
 +
<div id="myleftrightbox"  class="fourboxes-1">
 +
<a href="https://2012.igem.org/Team:UC_Davis/Project"><img src="https://static.igem.org/mediawiki/2012/7/73/UCD_project_small_banner.jpg
 +
"></a>
 +
</div>
 +
<div id="myleftrightbox"  class="spacebox">
 +
<p></p>
 +
</div>
 +
<div id="myleftrightbox"  class="fourboxes-2">
 +
<a href="https://2012.igem.org/Team:UC_Davis/Project/Catalyst"><img src="https://static.igem.org/mediawiki/2012/5/55/UCD_modular_small_banner.jpg
 +
"></a>
 +
</div>
 +
<div id="myleftrightbox"  class="spacebox">
 +
<p></p>
 +
</div>
 +
<div id="myleftrightbox"  class="fourboxes-3">
 +
<a href="https://2012.igem.org/Team:UC_Davis/Project/Protein_Engineering"><img src="http://img.photobucket.com/albums/v26/bluemelon/protein_small_banner-2.jpg"></a>
 +
</div>
 +
<div id="myleftrightbox"  class="spacebox">
 +
<p></p>
 +
</div>
 +
<div id="myleftrightbox"  class="fourboxes-4">
 +
<a href="https://2012.igem.org/Team:UC_Davis/Project"><img src="https://static.igem.org/mediawiki/2012/1/18/UCD_criteria_small_banner.jpg"></a>
 +
</div>
 +
</div>
 +
<!-- 1st row four boxes ends here -->
 +
 +
 +
<!-- <div id="sponsorbox" style="width:220px; float:right;"> -->
 +
 +
<div id="sponsorbox">
 +
<div id="sponsorbox" class="sponsorfloat">
 +
<!-- twitter starts here -->
 +
</script>
 +
<div id="tweets">
 +
<center>
 +
<h2>UCDavis iGEM Tweets</h2>
 +
</center>
 +
<script charset="utf-8" src="http://widgets.twimg.com/j/2/widget.js"></script>
 +
<script>
 +
new TWTR.Widget({
 +
  version: 2,
 +
  type: 'profile',
 +
  rpp: 10,
 +
  interval: 30000,
 +
  width: 203,
 +
  height: 100,
 +
 
 +
  theme: {
 +
    shell: {
 +
      background: '#004b85',
 +
      color: '#ffffff'
 +
    },
 +
    tweets: {
 +
      background: '#004b85',
 +
      color: '#ffffff',
 +
      links: '#4aed05'
 +
    }
   
   
-
+
  },
-
<img src="http://img.photobucket.com/albums/v26/bluemelon/project_banner1.jpg" width="850" height="228">
+
  features: {
 +
    scrollbar: true,
 +
    loop: false,
 +
    live: true,
 +
    behavior: 'all'
 +
  }
 +
}).render().setUser('UCDavisiGEM').start();
-
  <div id="bodyContent">  
+
</script>
-
            <div id="contentSub"></div>
+
</div>
 +
<!-- twitter ends here -->
 +
</div>
-
<br>
+
<div id="sponsorbox" class="sponsorfloat">
 +
<center>
 +
<h2>Our Sponsors</h2>
 +
<a href="http://www.novozymes.com/en/Pages/default.aspx" target="_blank"><img src="https://static.igem.org/mediawiki/2011/2/21/UCD_Novozymes-logo.jpg" width="200"></a>
 +
</center>
-
  <div class="floatbox3">
+
<center>
-
<h1> Strain </h1>
+
<a href="http://engineering.ucdavis.edu/" target="_blank"><img src="https://static.igem.org/mediawiki/2011/f/f6/UCD_CoE.png" width="200" height="40"></a>
-
<article>
+
</center>
-
</article>
+
<center>
-
  </div>
+
<a href="http://biosci.ucdavis.edu/index_js.html" target="_blank"><img src="https://static.igem.org/mediawiki/2011/b/b1/UCD_biosci_sponsor.jpg" width="200" height="90"></a>
 +
</center>
-
<br>
+
<center>
-
<div class="floatbox3">
+
<a href="http://www.genomecenter.ucdavis.edu/" target="_blank"><img src="https://static.igem.org/mediawiki/2011/1/1b/UCD_Genome_center_sponsor.jpg" width="200" height="60"></a>
-
<hp>Background</hp>
+
</center>
 +
 
 +
<center>
 +
<a href="http://www.fishersci.com" target="_blank"><img src="https://static.igem.org/mediawiki/2011/a/a4/UCD_Fisher_Logo.gif" width="200"></a>
 +
</center>
 +
 
 +
<center>
 +
<a href="http://www.bme.ucdavis.edu/" target="_blank"><img src="https://static.igem.org/mediawiki/2011/4/40/UCD_BME_logo_minimal_copy.png" width="200 height="70"></a>
 +
</center>
 +
 
 +
</div>
 +
</div>
 +
<!--  <br> -->
 +
<!-- div id="myleftbox" style="width:625px; float:left;" -->
 +
<div id="myleftbox">
 +
 
 +
<div id="myleftbox"  class="smallbox">
 +
<h1>Background</h1>
<article>
<article>
The strain section of our project focuses on the degradation of ethylene glycol, a chemical that is metabolized to oxalic acid further downstream. Oxalic acid is toxic to the kidney and fatal to the organism. We found an E. coli mutant from the University of Barcelona in Barcelona, Spain, that is able to grow solely on ethylene glycol, one of the two products created during PET degradation [1]. The scientists in Barcelona created these mutants through directed evolution – a process that selects for the most fit in a group under increasing conditions of ethylene glycol. From this, they learned that the main contributors in the degradation were propanediol oxidoreductase and glycolaldehyde dehydrogenase. These two enzymes are expressed at low levels in MG1655 but not at all in DH5α. We want to overexpress these enzymes in MG1655 through directed strain engineering. Rather than take the enzymes from the Barcelona strain, we want to clone the enzymes from the MG1655 and be able to control them ourselves, also known as rational strain engineering.  
The strain section of our project focuses on the degradation of ethylene glycol, a chemical that is metabolized to oxalic acid further downstream. Oxalic acid is toxic to the kidney and fatal to the organism. We found an E. coli mutant from the University of Barcelona in Barcelona, Spain, that is able to grow solely on ethylene glycol, one of the two products created during PET degradation [1]. The scientists in Barcelona created these mutants through directed evolution – a process that selects for the most fit in a group under increasing conditions of ethylene glycol. From this, they learned that the main contributors in the degradation were propanediol oxidoreductase and glycolaldehyde dehydrogenase. These two enzymes are expressed at low levels in MG1655 but not at all in DH5α. We want to overexpress these enzymes in MG1655 through directed strain engineering. Rather than take the enzymes from the Barcelona strain, we want to clone the enzymes from the MG1655 and be able to control them ourselves, also known as rational strain engineering.  
</article></div>
</article></div>
 +
<br>
<br>
-
<div class="floatbox3">
+
<div id="myleftbox"  class="smallbox">
-
<hp>What we're doing</hp>
+
<h1>Rationale</h1>
 +
 
<article>
<article>
 +
Ethylene glycol is a potential toxin to any mammals that consume it, so we are taking extra measures to ensure the proper disposal of it. We want to break down the ethylene glycol product from the cutinase-driven degradation of polyethylene terephthalate (PET) so that none of the ethylene glycol is released into the environment. We have engineered our E. coli to degrade the ethylene glycol after breaking down PET so that no human intervention is necessary. 
 +
 +
<br>Our main goal is for the E. coli to be able to live off PET as the sole carbon source. In order to do this, it must be able to sequester the carbon into its metabolism. In the diagram below, the ethylene glycol binds to the glycolaldehyde reductase to form glycolaldehyde. After, the glycolaldehyde attaches to the glycolaldehyde dehydrogenase to form glycolate. The glycolate goes in to the metabolism via further reactions with glycolate dehydrogenase and malate synthase. The (S)-malate is the final product that is incorporated in to the citric acid (TCA) cycle. As the citric acid cycle propagates, more energy is made for the cell, allowing growth and self-sufficient development on PET.
 +
 +
<br><center><a href="http://img.photobucket.com/albums/v26/bluemelon/figure-2.png" class="lightbox"><img src="http://img.photobucket.com/albums/v26/bluemelon/figure-2.png"> </a> </center>
 +
 +
 +
</article>
 +
</div>
 +
 +
<div id="myleftbox"  class="twoboxes">
 +
<a href="https://2012.igem.org/Team:UC_Davis/Project/Directed_Evolution"><img src="http://img.photobucket.com/albums/v26/bluemelon/directed_wide_banner-3.jpg" border="0"></a>
 +
</div>
 +
 +
<div id="myleftbox"  class="twoboxes1">
 +
<a href="https://2012.igem.org/Team:UC_Davis/Project/Our_Strain"><img src="http://img.photobucket.com/albums/v26/bluemelon/rational_wide_banner-1.jpg" border="0"></a>
 +
</div>
<br>
<br>
-
We previously learned that the strain we had received from Barcelona possessed the ability to decompose ethylene glycol to glycolate via the enzymes glycolaldehyde reductase and glycolaldehyde dehydrogenase. Our goal was to reproduce this ability with plasmids expressed in DH5&alpha; and MG1655, two ordinary E. coli strains that cannot degrade ethylene glycol. We devised two approaches to achieve this design using psb1A3. Our first procedure involves a polycistronic system, with two genes under the control of one promoter. We will have two variants of the plasmid, one with an inducible pBAD promoter and one with the constitutive J23101 promoter. The constitutive promoter shows us if the cell is capable of producing the enzymes correctly. With the inducible promoter, we can see how much enzyme production overwhelms the cell, leading to cell death.
+
<div id="myleftbox"  class="smallbox">
-
<br><img src="https://static.igem.org/mediawiki/2012/0/04/UCDavis_Construct1.png" style="width: 880px">
+
<h1>Our Strain</h1>
 +
<article>
 +
Our goal in the construction of the reductase and dehydrogenase assembly is to allow a modular system for simplified testing and use. In addition to the use of the modular system, the sequencing of the strain from Barcelona shows us the other mutations in the chromosome that allow it to be efficient. Putting these two pieces of information together specifies the region in the MG1655 chromosome that we want to overexpress or mutate for efficient degradation of ethylene glycol.
 +
</article>
 +
</div>
 +
 
 +
<br>
 +
<div id="myleftbox"  class="smallbox">
 +
<h1> What we're doing </h1>
 +
<article>
 +
We previously learned that the strain we had received from Barcelona possessed the ability to decompose ethylene glycol to glycolate via the enzymes glycolaldehyde reductase and glycolaldehyde dehydrogenase. Our goal was to reproduce this ability with plasmids expressed in DH5&alpha; and MG1655, two ordinary E. coli strains that cannot degrade ethylene glycol. We devised two approaches to achieve this design using psb1A3. Our first procedure involves a polycistronic system, with two genes under the control of one promoter. We will have two variants of the plasmid, one with an inducible pBAD promoter and one with the constitutive J23101 promoter.  
 +
<br><a href="https://static.igem.org/mediawiki/2012/0/04/UCDavis_Construct1.png" class="lightbox">
 +
<img src="https://static.igem.org/mediawiki/2012/0/04/UCDavis_Construct1.png" width="600"></a><br>
Our second approach separates the genes, allowing us to see if the genes can be expressed more efficiently when they are under the control of one promoter each. The separation also permits us to induce one promoter and therefore express one gene at a time. With the genes expressed independently, we are able to control the production of each enzyme and ensure equal amounts are expressed. The glycolaldehyde reductase enzyme will be under the control of the pBAD promoter; the glycolaldehyde dehydrogenase enzyme will be under the control of the pLAC promoter. Because we are employing the lac promoter, we must have the lacI operon to act as the repressor. The diagrams below depict the cassette orientation within each plasmid. For each of these set-ups, we will use restriction enzymes, gel purifications, and then ligations to piece together each sub-construct. The process is lengthy in time because of the time involved for transformations, liquid cultures, and enzymatic digests.  
Our second approach separates the genes, allowing us to see if the genes can be expressed more efficiently when they are under the control of one promoter each. The separation also permits us to induce one promoter and therefore express one gene at a time. With the genes expressed independently, we are able to control the production of each enzyme and ensure equal amounts are expressed. The glycolaldehyde reductase enzyme will be under the control of the pBAD promoter; the glycolaldehyde dehydrogenase enzyme will be under the control of the pLAC promoter. Because we are employing the lac promoter, we must have the lacI operon to act as the repressor. The diagrams below depict the cassette orientation within each plasmid. For each of these set-ups, we will use restriction enzymes, gel purifications, and then ligations to piece together each sub-construct. The process is lengthy in time because of the time involved for transformations, liquid cultures, and enzymatic digests.  
-
<br><img src="https://static.igem.org/mediawiki/2012/e/eb/Tecan_EG_Lab_UCD.png">
+
<br><a href="https://static.igem.org/mediawiki/2012/e/eb/Tecan_EG_Lab_UCD.png" class="lightbox"> <img src="https://static.igem.org/mediawiki/2012/e/eb/Tecan_EG_Lab_UCD.png" width="600"></a>
-
<br><br><br><img src="https://static.igem.org/mediawiki/2012/a/a2/Tecan_EG_UCD_2.png">
+
</article>
-
<br><br><br><img src="https://static.igem.org/mediawiki/2012/4/4c/Tecan_EG_UCD_3.png">
+
</div>
-
</article></div>
+
-
<br>
+
<br>  
-
<div class="floatbox3">
+
<div id="myleftbox"  class="smallbox"><h1> References </h1>
-
<hp>References</hp>
+
<article>
<article>
1. Boronat, Albert, Caballero, Estrella, and Juan Aguilar. “Experimental Evolution of a Metabolic Pathway for Ethylene Glycol Utilization by <i>Escherichia coli</i>.” Journal of Bacteriology, Vol. 153 No. 1, pp. 134-139, January 1983.   
1. Boronat, Albert, Caballero, Estrella, and Juan Aguilar. “Experimental Evolution of a Metabolic Pathway for Ethylene Glycol Utilization by <i>Escherichia coli</i>.” Journal of Bacteriology, Vol. 153 No. 1, pp. 134-139, January 1983.   
-
</article></div>
+
</article>
 +
</div>
 +
 +
 +
 +
<!-- site map starts here -->
 +
<div id="myleftbox"  class="smallboxsite">
 +
<ul style="font-size:10px;list-style-image:none;list-style-type:none;float:left;display:inline;color:#000000;"  >
 +
 +
<li style="float:left;margin:0 10px solid red"><a href="https://2012.igem.org/Team:UC_Davis"><p>Home</p><ul style="text-indent:-15px;
 +
list-style-image:none;list-style-type:none;color:#000000;"><li>Welcome </li><li>Tweets </li><li>Criteria </li><li>Sponsors </li> </ul> </a> </li>
 +
 +
<li style="float:left ;margin:0 10px;"><a href="https://2012.igem.org/Team:UC_Davis/Team"><p>Team</p> <ul style="text-indent:-15px;list-style-image:none;
 +
list-style-type:none;color:#000000 "><li>Who we are </li><li>Students </li><li>Advisors</li></ul></a> </li>
 +
 +
<li style="float:left ;margin:0 10px;"><a href="https://2012.igem.org/Team:UC_Davis/Project "><p>Project</p></a> <ul style="text-indent:-15px;list-style-image:none;list-style-type:none;color:#000000"><li><a style="color:#000000 " href="https://2012.igem.org/Team:UC_Davis/Project">Project Overview</a> </li><li><a style="color:#000000 "  href="https://2012.igem.org/Team:UC_Davis/Project/Strain ">Modular Engineering</a></li><li><a style="color:#000000 " href="https://2012.igem.org/Team:UC_Davis/Project/Catalyst ">Chassis Engineering</a></li><li><a style="color:#000000 " href="https://2012.igem.org/Team:UC_Davis/Project/Protein_Engineering ">Protein Engineering</a></li> </ul> </li>
 +
 +
<li style="float:left ;margin:0 10px"><a href="https://2012.igem.org/Team:UC_Davis/Safety "> <p>Safety</p></a> <a style="color:#000000 " href="https://2012.igem.org/Team:UC_Davis/Safety "> Safety</a> </li>
 +
 +
<li style="float:left ;margin:0 10px;"><a href="https://2012.igem.org/Team:UC_Davis/Notebook "> <p>Notebook</p></a> <ul style="text-indent:-15px;list-style-image:none;list-style-type:none;color:#000000  "><li><a style="color:#000000 " href="https://2012.igem.org/Team:UC_Davis/Notebook">Notebook Overview</a> </li><li><a style="color:#000000 " href="https://2012.igem.org/Team:UC_Davis/Notebook/Protocols ">Protocols</a> </li><li><a style="color:#000000 " href="https://2012.igem.org/Team:UC_Davis/Notebook ">Notebook</a> </li> </ul> </li>
 +
 +
<li style="float:left ;margin:0 10px;"><a href="https://2012.igem.org/Team:UC_Davis/Data "> <p>Data </p><ul style="text-indent:-15px;list-style-image:none;
 +
list-style-type:none;color:#000000"><li>Data One </li><li>Data Two </li><li>Data Three </li></ul></a> </li>
 +
 +
<li style="float:left ;margin:0 10px"><a href="https://2012.igem.org/Team:UC_Davis/Attributions "> <p>Attribution </p></a><a style="color:#000000 "  href="https://2012.igem.org/Team:UC_Davis/Attributions "> Attribution</a></li>
 +
 +
<li style="float:left ;margin:0 10px"><a href="https://2012.igem.org/Main_Page "> <p>iGEM </p></a><a style="color:#000000 " href="https://2012.igem.org/Main_Page " > iGEM</a></li>
 +
</ul>
 +
</div>
 +
<!-- site map ends here -->
 +
 +
</div>
</div>
</div>
 +
<!--  </div> -->
<script>if (window.runOnloadHook) runOnloadHook();</script>
<script>if (window.runOnloadHook) runOnloadHook();</script>
</div>
</div>
</div>
</div>
 +
</body>
 +
<!-- footer starts here -->
 +
<br>
 +
<div id="footpage">
 +
<div class="printfooter">
 +
Retrieved from "<a href="https://2012.igem.org/Team:UC_Davis">https://2012.igem.org/Team:UC_Davis</a>"</div>
 +
<div id="catlinks"><div id='catlinks' class='catlinks catlinks-allhidden'></div></div> <!-- end content -->
 +
<div class="visualClear"></div>
 +
</div>
 +
    </div>
 +
<!-- PAGE FOOTER -- ITEMS FROM COLUMN ! HAVE BEEN MOVED HERE  -- RDR  -->
 +
<div class="visualClear"></div>
 +
    <div id='footer-box' class='noprint'>
 +
        <div id="footer">
 +
              <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="http://bits.wikimedia.org/static-1.20wmf10/skins/common/images/poweredby_mediawiki_88x31.png " height="31" width="88" alt="Powered by MediaWiki" /></a></div>       <div id="f-copyrightico"><a href="http://creativecommons.org/licenses/by/3.0/"><img src="http://i.creativecommons.org/l/by/3.0/88x31.png" alt="Attribution 3.0 Unported" width="88" height="31" /></a></div>     <ul id="f-list">
 +
 +
  <!-- Recentchanges is not handles well DEBUG -->
 +
    <li id="t-recentchanges"><a href="/Special:RecentChanges"
 +
      title='Recent changes'>Recent changes</a></li>
-
</body>
+
    <li id="t-whatlinkshere"><a href="/Special:WhatLinksHere/Team:UC_Davis"
 +
      title="List of all wiki pages that link here [j]" accesskey="j">What links here</a></li>
 +
 
 +
                        <li id="t-recentchangeslinked"><a href="/Special:RecentChangesLinked/Team:UC_Davis"
 +
                          title="Recent changes in pages linked from this page [k]" accesskey="k">Related changes</a></li>
 +
 
 +
 
 +
 
 +
                <li id="t-specialpages"><a href="/Special:SpecialPages"
 +
                  title="List of all special pages [q]" accesskey="q">Special pages</a>
 +
                </li>
 +
                <li><a href='/Special:Preferences'>My preferences</a></li>
 +
            </ul>
 +
        </div> <!-- close footer -->
 +
        <div id='footer'>
 +
    <ul id="f-list">
 +
 
 +
            <li id="t-print"><a href="/wiki/index.php?title=Team:UC_Davis&amp;printable=yes"
 +
              title="Printable version of this page [p]" accesskey="p">Printable version</a>
 +
            </li>
 +
 
 +
            <li id="t-permalink"><a href="/wiki/index.php?title=Team:UC_Davis&amp;oldid=80194"
 +
              title="Permanent link to this revision of the page">Permanent link</a>
 +
            </li>
 +
 
 +
 
 +
        <li id="privacy"><a href="/2012.igem.org:Privacy_policy" title="2012.igem.org:Privacy policy">Privacy policy</a></li>
 +
        <li id="disclaimer"><a href="/2012.igem.org:General_disclaimer" title="2012.igem.org:General disclaimer">Disclaimers</a></li>
 +
    </ul>
 +
</div> <!-- close footer -->
 +
    </div> <!-- close footer-box -->
 +
 +
<script>if (window.runOnloadHook) runOnloadHook();</script>
 +
</div>
 +
</div>
 +
<!-- footer ends here -->
</html>
</html>

Revision as of 23:47, 4 September 2012

Team:UC Davis - 2012.igem.org

UCDavis iGEM Tweets

Our Sponsors

Background

The strain section of our project focuses on the degradation of ethylene glycol, a chemical that is metabolized to oxalic acid further downstream. Oxalic acid is toxic to the kidney and fatal to the organism. We found an E. coli mutant from the University of Barcelona in Barcelona, Spain, that is able to grow solely on ethylene glycol, one of the two products created during PET degradation [1]. The scientists in Barcelona created these mutants through directed evolution – a process that selects for the most fit in a group under increasing conditions of ethylene glycol. From this, they learned that the main contributors in the degradation were propanediol oxidoreductase and glycolaldehyde dehydrogenase. These two enzymes are expressed at low levels in MG1655 but not at all in DH5α. We want to overexpress these enzymes in MG1655 through directed strain engineering. Rather than take the enzymes from the Barcelona strain, we want to clone the enzymes from the MG1655 and be able to control them ourselves, also known as rational strain engineering.

Rationale

Ethylene glycol is a potential toxin to any mammals that consume it, so we are taking extra measures to ensure the proper disposal of it. We want to break down the ethylene glycol product from the cutinase-driven degradation of polyethylene terephthalate (PET) so that none of the ethylene glycol is released into the environment. We have engineered our E. coli to degrade the ethylene glycol after breaking down PET so that no human intervention is necessary.
Our main goal is for the E. coli to be able to live off PET as the sole carbon source. In order to do this, it must be able to sequester the carbon into its metabolism. In the diagram below, the ethylene glycol binds to the glycolaldehyde reductase to form glycolaldehyde. After, the glycolaldehyde attaches to the glycolaldehyde dehydrogenase to form glycolate. The glycolate goes in to the metabolism via further reactions with glycolate dehydrogenase and malate synthase. The (S)-malate is the final product that is incorporated in to the citric acid (TCA) cycle. As the citric acid cycle propagates, more energy is made for the cell, allowing growth and self-sufficient development on PET.

Our Strain

Our goal in the construction of the reductase and dehydrogenase assembly is to allow a modular system for simplified testing and use. In addition to the use of the modular system, the sequencing of the strain from Barcelona shows us the other mutations in the chromosome that allow it to be efficient. Putting these two pieces of information together specifies the region in the MG1655 chromosome that we want to overexpress or mutate for efficient degradation of ethylene glycol.

What we're doing

We previously learned that the strain we had received from Barcelona possessed the ability to decompose ethylene glycol to glycolate via the enzymes glycolaldehyde reductase and glycolaldehyde dehydrogenase. Our goal was to reproduce this ability with plasmids expressed in DH5α and MG1655, two ordinary E. coli strains that cannot degrade ethylene glycol. We devised two approaches to achieve this design using psb1A3. Our first procedure involves a polycistronic system, with two genes under the control of one promoter. We will have two variants of the plasmid, one with an inducible pBAD promoter and one with the constitutive J23101 promoter.

Our second approach separates the genes, allowing us to see if the genes can be expressed more efficiently when they are under the control of one promoter each. The separation also permits us to induce one promoter and therefore express one gene at a time. With the genes expressed independently, we are able to control the production of each enzyme and ensure equal amounts are expressed. The glycolaldehyde reductase enzyme will be under the control of the pBAD promoter; the glycolaldehyde dehydrogenase enzyme will be under the control of the pLAC promoter. Because we are employing the lac promoter, we must have the lacI operon to act as the repressor. The diagrams below depict the cassette orientation within each plasmid. For each of these set-ups, we will use restriction enzymes, gel purifications, and then ligations to piece together each sub-construct. The process is lengthy in time because of the time involved for transformations, liquid cultures, and enzymatic digests.

References

1. Boronat, Albert, Caballero, Estrella, and Juan Aguilar. “Experimental Evolution of a Metabolic Pathway for Ethylene Glycol Utilization by Escherichia coli.” Journal of Bacteriology, Vol. 153 No. 1, pp. 134-139, January 1983.

Retrieved from "http://2012.igem.org/Team:UC_Davis/Project/Strain"