Team:UGA-Georgia

From 2014.igem.org

(Difference between revisions)
 
(114 intermediate revisions not shown)
Line 4: Line 4:
<html>
<html>
-
<!--main content -->
 
-
<table width="70%" align="center">
 
 +
<style>
 +
#contentSub, #footer-box, #catlinks, #search-controls, #p-logo, .printfooter, .firstHeading,.visualClear {display: none;} /*-- hides default wiki settings --*/
-
<!--welcome box -->
 
-
<tr>
 
-
<td style="border:1px solid black;" colspan="3" align="center" height="150px" bgColor=#FF0000>
 
-
<h1 >WELCOME TO iGEM 2014! </h1>
 
-
<p>Your team has been approved and you are ready to start the iGEM season!
 
-
<br>On this page you can document your project, introduce your team members, document your progress <br> and share your iGEM experience with the rest of the world! </p>
 
-
<br>
 
-
<p style="color:#E7E7E7"> <a href="https://2014.igem.org/wiki/index.php?title=Team:UGA-Georgia&action=edit"style="color:#FFFFFF"> Click here  to edit this page!</a> </p>
 
-
</td>
 
-
</tr>
 
-
<tr> <td colspan="3"  height="5px"> </td></tr>
+
    <style>
-
<!-- end welcome box -->
+
    #sddm
-
<tr>
+
{ margin: 0;
 +
padding: 0;
 +
z-index: 30}
-
<!--navigation menu -->
+
#sddm li
-
<td align="center" colspan="3">
+
{ margin: 0;
 +
padding: 0;
 +
list-style: none;
 +
float: left;
 +
font: bold 11px arial}
-
<table  width="100%">
+
#sddm li a
-
<tr heigth="15px"></tr>
+
{ display: block;
-
<tr heigth="75px">
+
margin: 0 1px 0 0;
 +
padding: 4px 10px;
 +
width: 60px;
 +
background: #5970B2;
 +
color: #FFF;
 +
text-align: center;
 +
text-decoration: none}
 +
#sddm li a:hover
 +
{ background: #49A3FF}
-
<td style="border:1px solid black;" align="center" height ="45px" onMouseOver="this.bgColor='#dc143c'" onMouseOut="this.bgColor='#ff0000'" bgColor=#ff0000> 
+
#sddm div
-
<a href="https://2014.igem.org/Team:UGA-Georgia"style="color:#000000">Home </a> </td>
+
{ position: absolute;
 +
visibility: hidden;
 +
margin: 0;
 +
padding: 0;
 +
background:  #EAEBD8;
 +
border: 1px solid #5970B2}
-
<td style="border:1px solid black;" align="center" height ="45px" onMouseOver="this.bgColor='#dc143c'" onMouseOut="this.bgColor='#ff0000'" bgColor=#ff0000>
+
#sddm div a
-
<a href="https://2014.igem.org/Team:UGA-Georgia/Team"style="color:#000000"> Team </a> </td>
+
{ position: relative;
 +
display: block;
 +
margin: 0;
 +
padding: 5px 84px;
 +
width: auto;
 +
white-space: nowrap;
 +
text-align: left;
 +
text-decoration: none;
 +
background: #FEE5AD;
 +
color: #000000;
 +
font: 15px arial}
-
<td style="border:1px solid black;" align="center"  height ="45px"  onMouseOver="this.bgColor='#dc143c'" onMouseOut="this.bgColor='#ff0000'" bgColor=#ff0000>
+
#sddm div a:hover
-
<a href="https://igem.org/Team.cgi?year=2014&team_name=UGA-Georgia"style="color:#000000"> Official Team Profile </a></td>
+
{ background: #49A3FF;
 +
color: #FFF}
 +
</style>
-
<td style="border:1px solid black" align="center"  height ="45px" onMouseOver="this.bgColor='#dc143c'" onMouseOut="this.bgColor='#ff0000'" bgColor=#ff0000>
+
<html>
-
<a href="https://2014.igem.org/Team:UGA-Georgia/Project"style="color:#000000"> Project</a></td>
+
<head>
 +
<style>
 +
body {
 +
  background-color:white;
 +
background-image: linear-gradient(90deg, rgba(200,0,0,.5) 50%, transparent 50%),
 +
linear-gradient(rgba(200,0,0,.5) 50%, transparent 50%);
 +
background-size:50px 50px;
 +
</style>
 +
</head>
 +
<body>
-
<td style="border:1px solid black;" align="center"  height ="45px" onMouseOver="this.bgColor='#dc143c'" onMouseOut="this.bgColor='#ff0000'" bgColor=#ff0000>
+
<script>
-
<a href="https://2014.igem.org/Team:UGA-Georgia/Parts"style="color:#000000"> Parts</a></td>
+
      var timeout = 500;
 +
      var closetimer = 0;
 +
      var ddmenuitem = 0;
-
<td style="border:1px solid black;" align="center" height ="45px" onMouseOver="this.bgColor='#dc143c'" onMouseOut="this.bgColor='#ff0000'" bgColor=#ff0000>
+
// open hidden layer
-
<a href="https://2014.igem.org/Team:UGA-Georgia/Modeling"style="color:#000000"> Modeling</a></td>
+
      function mopen(id)
 +
      {
 +
    // cancel close timer
 +
    mcancelclosetime();
 +
    // close old layer
 +
    if(ddmenuitem) ddmenuitem.style.visibility = 'hidden';
 +
    // get new layer and show it
 +
    ddmenuitem = document.getElementById(id);
 +
    ddmenuitem.style.visibility = 'visible';
 +
    }
 +
// close showed layer
 +
      function mclose()
 +
      {
 +
    if(ddmenuitem) ddmenuitem.style.visibility = 'hidden';
 +
      }
-
<td style="border:1px solid black;" align="center" height ="45px" onMouseOver="this.bgColor='#dc143c'" onMouseOut="this.bgColor='#ff0000'" bgColor=#ff0000> 
+
// go close timer
-
<a href="https://2014.igem.org/Team:UGA-Georgia/Notebook"style="color:#000000"> Notebook</a></td>
+
      function mclosetime()
 +
      {
 +
  closetimer = window.setTimeout(mclose, timeout);
 +
      }
-
<td style="border:1px solid black;" align="center"  height ="45px" onMouseOver="this.bgColor='#dc143c'" onMouseOut="this.bgColor='#ff0000'" bgColor=#ff0000>
+
// cancel close timer
-
<a href="https://2014.igem.org/Team:UGA-Georgia/Safety"style=" color:#000000"> Safety </a></td>
+
      function mcancelclosetime()
 +
      {
 +
  if(closetimer)
 +
  {
 +
window.clearTimeout(closetimer);
 +
closetimer = null;
 +
  }
 +
}
-
<td style="border:1px solid black;" align="center"  height ="45px" onMouseOver="this.bgColor='#dc143c'" onMouseOut="this.bgColor='#ff0000'" bgColor=#ff0000>
+
// close layer when click-out
-
<a href="https://2014.igem.org/Team:UGA-Georgia/Attributions"style="color:#000000"> Attributions </a></td>
+
    document.onclick = mclose;
 +
    </script>
 +
<style>
 +
img.center {
 +
    display: block;
 +
    margin-left: auto;
 +
    margin-right: auto;
 +
}
 +
</style>
 +
<!--main content -->
 +
<table width="70%" align="center" bgcolor="#FF9999">
-
<td align ="center"> <a href="https://2014.igem.org/Main_Page"> <img src="https://static.igem.org/mediawiki/igem.org/6/60/Igemlogo_300px.png" width="55px"></a> </td>
 
-
</tr>
 
-
</table>
 
-
<!--end navigation menu -->
 
-
</tr>
 
-
</tr>
+
<!--navigation menu -->
-
+
 +
<td align="center" colspan="3">
 +
<table  width="100%" id="sddm">
 +
<tr heigth="15px"></tr>
 +
<tr heigth="75px">
 +
<div id="banner"><img id="idSelector" src="https://static.igem.org/mediawiki/2014/f/fa/Bannerugafinal.png" width="100%" height="100" align="center"></div> 
 +
<td style="border:1px #fff;" align="center" height ="45px"  width="250" onMouseOver="this.bgColor='#FF000'" onMouseOut="this.bgColor='#FEE5AD'" bgColor=#FEE5AD> 
 +
<a href="https://2014.igem.org/Team:UGA-Georgia" ><p style="font-family: Basic L"><font size="2">HOME</font></p> </a> </td>
-
</td>
+
<td style="border:1px #fff" align="center"  height ="45px" width="250" onMouseOver="this.bgColor='#FF000'" onMouseOut="this.bgColor='#FEE5AD'" bgColor=#FEE5AD> 
 +
<a href="#" onmouseover="mopen('m1')"
 +
        onmouseout="mclosetime()" style="color:#000000" onMouseOver="this.bgColor='#FF000'" onMouseOut="this.bgColor='#FEE5AD'" bgColor=#FEE5AD><p style="font-family: Basic L"><font size="2"><b>PROJECT</b></font></p></a>
 +
        <div id="m1"
 +
            onmouseover="mcancelclosetime()"
 +
            onmouseout="mclosetime()">
 +
        <a href="https://2014.igem.org/Team:UGA-Georgia/Overview">Overview</a>
 +
        <a href="https://2014.igem.org/Team:UGA-Georgia/Geraniol">Geraniol</a>
 +
        <a href="https://2014.igem.org/Team:UGA-Georgia/Modeling">Modeling</a>
 +
        <a href="https://2014.igem.org/Team:UGA-Georgia/RBS">RBS Library</a>
 +
        <a href="https://2014.igem.org/Team:UGA-Georgia/Parts">Parts</a>
 +
        </div></td>
-
<tr> <td colspan="3" height="15px"> </td></tr>
+
<td style="border:1px #fff;" align="center" height ="45px" width="250" onMouseOver="this.bgColor='#FF000'" onMouseOut="this.bgColor='#FEE5AD'" bgColor=#FEE5AD>
-
<tr><td bgColor="#e7e7e7" colspan="3" height="1px"> </tr>
+
<a href="#" onmouseover="mopen('m3')"
-
<tr> <td colspan="3" height="5px"> </td></tr>
+
        onmouseout="mclosetime()" style="color:#000000"><p style="font-family: Basic L"><font size="2"><b>WET LAB</b></font></p></a>
 +
                <div id="m3"  
 +
            onmouseover="mcancelclosetime()"  
 +
            onmouseout="mclosetime()">
 +
        <a href="https://2014.igem.org/Team:UGA-Georgia/Safety">Safety</a>
 +
        <a href="https://2014.igem.org/Team:UGA-Georgia/Notebook">Notebook</a>
 +
        <a href="https://2014.igem.org/Team:UGA-Georgia/Protocols">Protocols</a>
 +
        </div></td>
-
<!--project description section -->
+
<td style="border:1px #fff;" align="center" height ="45px" width="250" onMouseOver="this.bgColor='#FF000'" onMouseOut="this.bgColor='#FEE5AD'" bgColor=#FEE5AD> 
-
<tr><td colspan="3"> <h3> Project Description </h3></td></tr>
+
<a href="#" onmouseover="mopen('m4')"
 +
        onmouseout="mclosetime()" style="color:#000000"><p style="font-family: Basic L"><font size="2"><b>HUMAN PRACTICES</b></font></p></a>
 +
                <div id="m4"
 +
            onmouseover="mcancelclosetime()"
 +
            onmouseout="mclosetime()">
 +
        <a href="https://2014.igem.org/Team:UGA-Georgia/Outreach">Outreach</a>
 +
        <a href="https://2014.igem.org/Team:UGA-Georgia/Seminars">Seminars</a>
 +
        </div></td>
-
<tr>
+
<td style="border:1px #fff;" align="center"  height ="45px" width="250" onMouseOver="this.bgColor='#FF000'" onMouseOut="this.bgColor='#FEE5AD'" bgColor=#FEE5AD>  
-
<td width="45%" valign="top">
+
<a href="#" onmouseover="mopen('m2')"  
 +
        onmouseout="mclosetime()" style="color:#000000"><p style="font-family: Basic L"><font size="2"><b>TEAM</b></font></p></a>
 +
                <div id="m2"
 +
            onmouseover="mcancelclosetime()"
 +
            onmouseout="mclosetime()">
 +
        <a href="https://igem.org/Team.cgi?id=1383">Official Team Profile</a>
 +
        <a href="https://2014.igem.org/Team:UGA-Georgia/Team">Members</a>
 +
        <a href="https://2014.igem.org/Team:UGA-Georgia/Attributions">Attributions</a>
 +
       
 +
        </div></td>
-
<p>The 2014 University of Georgia iGEM team focuses on <em>two main goals</em>: <br><br>First, we aim to make methanogens a more tangible host for synthetic biologists. To achieve this, we are creating a metabolic flux model for the lipid biosynthesis pathway in <i>M. maripaludis</i>. Our goal is to map the entire pathway, complete a genome-scale flux balance analysis, and develop strategies for overproduction of isoprenoid compounds. In addition, ribosome binding sites (RBS) are not well characterized in Archaea, so we are creating a library of RBS sequences and measuring their relative strength of fluorescence. A library of RBS will allow us the ability for variable levels of expression. Also, we are developing new methods for extracting, concentrating, measuring and quantifying organically soluble material, like geraniol, from <i>M. maripaludis</i> cultures.</p>
+
<td align ="center"> <a href="https://2014.igem.org/Main_Page"> <img src="https://static.igem.org/mediawiki/2014/d/d2/UGA-iGEM_Logo.jpg" width="55px"></a> </td>
 +
</tr>
 +
</table>
-
</td>
+
<!--end navigation menu -->
-
<td> </td>
+
-
<td width="45%">
+
-
<p>Second, we are demonstrating the utility of methanogens in synthetic biology through optimized geraniol production. Following up on the work from the 2013 iGEM season, we’ve continued targeting geraniol as a high value bio-chemical which may be produced from inexpensive substrates such as H2/CO2 or formate. Uses of Geraniol include potential biofuel, organic pesticide, tumor suppressor of breast, colon and prostate cancers, fragrances and flavorings. Last year, geraniol production in <i>Methanococcus maripaludis</i> was quantified as 0.2% of lipid dry weight. This year, UGA-iGEM seeks to address the overall geraniol yield through several projects which satisfy both of our main goals mentioned above.<br></p></tr>
 
-
<!--requirements section -->
 
-
<tr><td colspan="3"> <h3> Requirements </h3></td></tr>
 
-
<tr>
 
-
<td width="45%"  valign="top">
 
-
<p> Please be sure to keep these links, your audience will want to find your: </p>
 
-
<!-- Links to other team pages -->
 
-
<ul>
 
-
<li><a href="https://2014.igem.org/Team:UGA-Georgia">Home</a> </li>
 
-
<li><a href="https://2014.igem.org/Team:UGA-Georgia/Team">Team</a> </li>
 
-
<li><a href="https://igem.org/Team.cgi?year=2013&team_name=UGA-Georgia">Official Team Profile</a> </li>
 
-
<li><a href="https://2014.igem.org/Team:UGA-Georgia/Project">Project</a> </li>
 
-
<li><a href="https://2014.igem.org/Team:UGA-Georgia/Parts">Parts</a> </li>
 
-
<li><a href="https://2014.igem.org/Team:UGA-Georgia/Modeling">Modeling</a> </li>
 
-
<li><a href="https://2014.igem.org/Team:UGA-Georgia/Notebook">Notebook</a> </li>
 
-
<li><a href="https://2014.igem.org/Team:UGA-Georgia/Safety">Safety</a> </li>
 
-
<li><a href="https://2014.igem.org/Team:UGA-Georgia/Attributions">Attributions</a> </li>
 
-
</ul>
+
<!-- First block of content -->
-
 
+
<table  id="firstblock" width="100%"  cellspacing="0" height="500px">
-
</td>
+
<tr>
 +
<td  bgColor="#FFFFFF"></td>
 +
<td width="975px" align="center" bgColor="#FFFFFF" >
-
<td > </td>
+
<img src="https://static.igem.org/mediawiki/2014/1/18/IGEM_graphic2.jpg" width="300px" height="450px" >
-
<td width="45%">
+
-
<p>There are a few wiki requirements teams must follow:</p>
+
<h3>Welcome!  <p>The New Archaea-Type
-
<ul>
+
</h3>
-
<li>All pages, images and files must be hosted on the <a href ="https://2014.igem.org/Special:Upload">  2014.igem.org server</a>. </li>
+
<p>Scroll down to find more about our project! </p>
-
<li>All pages must be created under the team’s name space.</li>
+
-
<li>As part of your documentation, keep the links from the menu to the left. </li>
+
-
<li>Do not use flash in wiki code. </li>
+
-
<li>The <a href="https://static.igem.org/mediawiki/igem.org/6/60/Igemlogo_300px.png"> iGEM logo </a> should be placed on the upper part of every page and should link to <a href="https://2014.igem.org/Main_Page">2014.igem.org</a>.</li>
+
-
</ul>
+
-
<p>Visit the <a href="https://2014.igem.org/Wiki_How-To"> Wiki How To page </a> for a complete list of requirements, tips and other useful information. </p>
+
</td>
</td>
 +
<td bgColor="#FFFFFF"></td>
</tr>
</tr>
 +
</table>
 +
<!-- end of first block -->
 +
<!--  Block of content 1 -->
 +
<table width="100%"  cellspacing="0" height="400px">
 +
<tr><td  bgColor="#FEE5AD"></td>
 +
<td width="975px" align="center" bgColor="#FEE5AD 80%" >
 +
<table  width="975px"  cellspacing="0" height="400px">
 +
<tr>
-
<tr> <td colspan="3" height="15px"> </td></tr>
+
<td width="95%" bgColor="#FEE5AD" rowspan="3" align="center">  
-
<tr><td bgColor="#e7e7e7" colspan="3" height="1"> </tr>
+
-
<!--tips  -->
+
<!-- Content goes here -->
-
<tr><td colspan="3" > <h3> Tips  </h3></td></tr>
+
-
<tr>
+
<h3>Read about our projects!</h3>
-
<td width="45%" valign="top">
+
-
<p>We are currently working on providing teams with some easy to use design templates.
+
-
<br> In the meantime you can also view other team wikis for inspiration! Here are some very good examples</p>
+
-
<ul>
+
<p>The 2014 University of Georgia iGEM team focuses on <em>two main goals</em>: <br><br>First, we aim to make methanogens a more tangible host for synthetic biologists. To achieve this, we are creating a metabolic flux model for the lipid biosynthesis pathway in <i>Methanococcus maripaludis</i>. Our goal is to map the entire pathway, complete a genome-scale flux balance analysis, and develop strategies for overproduction of isoprenoid compounds. In addition, ribosome binding sites (RBS) are not well characterized in Archaea, so we are creating a library of RBS sequences and measuring their relative strength of fluorescence. A library of RBS will allow us the ability for variable levels of expression. Also, we are developing new methods for extracting, concentrating, measuring and quantifying organically soluble material from <i>M. maripaludis</i> cultures.<p>
-
<li> <a href="https://2013.igem.org/Team:SDU-Denmark/"> 2013 SDU Denmark </a> </li>
+
-
<li> <a href="https://2013.igem.org/Team:SYSU-China">2013 SYSU China</a> </li>
+
-
<li> <a href="https://2013.igem.org/Team:Shenzhen_BGIC_ATCG"> 2013 Shenxhen BGIG ATCG </a></li>
+
-
<li> <a href="https://2013.igem.org/Team:Colombia_Uniandes">2013 Colombia Unianades </a></li>
+
-
<li> <a href="https://2013.igem.org/Team:Lethbridge">2013 Lethbridge</a></li>
+
-
</ul>
+
-
<p>For a full wiki list, you can visit <a href="https://igem.org/Team_Wikis?year=2013">iGEM 2013 web sites </a> and <a href="https://igem.org/Team_Wikis?year=2012">iGEM 2012 web sites</a>  lists. </p>
 
-
</td>
 
-
<td> </td>
 
-
<td width="45%">
 
-
<p>This wiki will be your team’s first interaction with the rest of the world, so here are a few tips to help you get started: </p>
+
<p>Second, we are demonstrating the utility of methanogens in synthetic biology by the optimized production of geraniol, an organically soluble material. Following up on the work from the 2013 iGEM season, we’ve continued targeting geraniol as a high value bio-chemical which may be produced from inexpensive substrates such as H2/CO2 or formate. Uses of Geraniol include potential biofuel, organic pesticide, tumor suppressor of breast, colon and prostate cancers, fragrances and flavorings. Last year, geraniol production in <i>M. maripaludis</i> was quantified as 0.2% of lipid dry weight. This year, UGA-iGEM seeks to address the overall geraniol yield through several projects which satisfy both of our main goals mentioned above.<p>
 +
 
 +
 
 +
</td> 
 +
 
 +
 
 +
<!-- This is the back to top button -->
 +
<td bgColor=#FEE5AD> </td>
 +
<tr><td bgColor=#FEE5AD></td></tr>
 +
<tr> <td  height="20px" width="5%" align="center" onMouseOver="this.bgColor='#FF0000'" onMouseOut="this.bgColor='#A1DBB2'" bgColor=#A1DBB2>
 +
<a href="#sddm" style="text-decoration:none;color:#1C140D"> Top </a> </td></tr>
 +
</table>
 +
 
-
<ul>
 
-
<li>State your accomplishments! Tell people what you have achieved from the start. </li>
 
-
<li>Be clear about what you are doing and what you plan to do.</li>
 
-
<li>You have a global audience! Consider the different backgrounds that your users come from.</li>
 
-
<li>Make sure information is easy to find; nothing should be more than 3 clicks away.  </li>
 
-
<li>Avoid using very small fonts and low contrast colors; information should be easy to read.  </li>
 
-
<li>Start documenting your project as early as possible; don’t leave anything to the last minute before the Wiki Freeze. For a complete list of deadlines visit the <a href="">iGEM 2013 calendar</a> </li>
 
-
<li>Have lots of fun! </li>
 
-
</ul>
 
-
</br>
 
</td>
</td>
 +
<td bgColor="#FEE5AD"></td>
</tr>
</tr>
</table>
</table>
 +
<!-- end of Block—>
 +
</body>
 +
</html>

Latest revision as of 02:19, 18 October 2014


HOME

PROJECT

WET LAB

HUMAN PRACTICES

TEAM

Welcome!

The New Archaea-Type

Scroll down to find more about our project!

Read about our projects!

The 2014 University of Georgia iGEM team focuses on two main goals:

First, we aim to make methanogens a more tangible host for synthetic biologists. To achieve this, we are creating a metabolic flux model for the lipid biosynthesis pathway in Methanococcus maripaludis. Our goal is to map the entire pathway, complete a genome-scale flux balance analysis, and develop strategies for overproduction of isoprenoid compounds. In addition, ribosome binding sites (RBS) are not well characterized in Archaea, so we are creating a library of RBS sequences and measuring their relative strength of fluorescence. A library of RBS will allow us the ability for variable levels of expression. Also, we are developing new methods for extracting, concentrating, measuring and quantifying organically soluble material from M. maripaludis cultures.

Second, we are demonstrating the utility of methanogens in synthetic biology by the optimized production of geraniol, an organically soluble material. Following up on the work from the 2013 iGEM season, we’ve continued targeting geraniol as a high value bio-chemical which may be produced from inexpensive substrates such as H2/CO2 or formate. Uses of Geraniol include potential biofuel, organic pesticide, tumor suppressor of breast, colon and prostate cancers, fragrances and flavorings. Last year, geraniol production in M. maripaludis was quantified as 0.2% of lipid dry weight. This year, UGA-iGEM seeks to address the overall geraniol yield through several projects which satisfy both of our main goals mentioned above.

Top