Team:UGA-Georgia/Team

From 2014.igem.org

(Difference between revisions)
(Prototype team page)
 
(46 intermediate revisions not shown)
Line 1: Line 1:
 +
<!-- *** What falls between these lines is the Alert Box!  You can remove it from your pages once you have read and understood the alert *** -->
 +
 +
{{CSS/Main}}
{{CSS/Main}}
Line 4: Line 7:
<html>
<html>
-
<!--main content -->
+
<style>
-
<table width="70%" align="center">
+
#contentSub, #footer-box, #catlinks, #search-controls, #p-logo, .printfooter, .firstHeading,.visualClear {display: none;} /*-- hides default wiki settings --*/
 +
<style>
 +
    #sddm
 +
{ margin: 0;
 +
padding: 0;
 +
z-index: 30}
 +
#sddm li
 +
{ margin: 0;
 +
padding: 0;
 +
list-style: none;
 +
float: left;
 +
font: bold 11px arial}
-
<!--welcome box -->
+
#sddm li a
-
<tr>
+
{ display: block;
-
<td style="border:1px solid black;" colspan="3" align="center" height="150px" bgColor=#FF404B>
+
margin: 0 1px 0 0;
-
<h1 >WELCOME TO iGEM 2014! </h1>
+
padding: 4px 10px;
-
<p>Your team has been approved and you are ready to start the iGEM season!
+
width: 60px;
-
<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>
+
background: #5970B2;
-
<br>
+
color: #FFF;
-
<p style="color:#E7E7E7"> <a href="https://2014.igem.org/wiki/index.php?title=Team:UGA-Georgia/Team&action=edit"style="color:#FFFFFF"> Click here  to edit this page!</a> </p>
+
text-align: center;
-
</td>
+
text-decoration: none}
-
</tr>
+
-
<tr> <td colspan="3"  height="5px"> </td></tr>
+
#sddm li a:hover
-
<!-- end welcome box -->
+
{ background: #49A3FF}
-
<tr>
+
-
<!--navigation menu -->
+
#sddm div
-
<td align="center" colspan="3">
+
{ position: absolute;
 +
visibility: hidden;
 +
margin: 0;
 +
padding: 0;
 +
background:  #EAEBD8;
 +
border: 1px solid #5970B2}
-
<table  width="100%">
+
#sddm div a
-
<tr heigth="15px"></tr>
+
{ position: relative;
-
<tr heigth="75px">
+
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}
 +
#sddm div a:hover
 +
{ background: #49A3FF;
 +
color: #FFF}
 +
</style>
 +
<html>
 +
<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='#d3d3d3'" onMouseOut="this.bgColor='#e7e7e7'" bgColor=#e7e7e7> 
+
<script>
-
<a href="https://2014.igem.org/Team:UGA-Georgia"style="color:#000000">Home </a> </td>
+
      var timeout = 500;
 +
      var closetimer = 0;
 +
      var ddmenuitem = 0;
-
<td style="border:1px solid black;" align="center" height ="45px" onMouseOver="this.bgColor='#d3d3d3'" onMouseOut="this.bgColor='#e7e7e7'" bgColor=#e7e7e7>
+
// open hidden layer
-
<a href="https://2014.igem.org/Team:UGA-Georgia/Team"style="color:#000000"> Team </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='#d3d3d3'" onMouseOut="this.bgColor='#e7e7e7'" bgColor=#e7e7e7>
+
// go close timer
-
<a href="https://igem.org/Team.cgi?year=2014&team_name=UGA-Georgia"style="color:#000000"> Official Team Profile </a></td>
+
      function mclosetime()
 +
      {
 +
  closetimer = window.setTimeout(mclose, timeout);
 +
      }
-
<td style="border:1px solid black" align="center"  height ="45px" onMouseOver="this.bgColor='#d3d3d3'" onMouseOut="this.bgColor='#e7e7e7'" bgColor=#e7e7e7> 
+
// cancel close timer
-
<a href="https://2014.igem.org/Team:UGA-Georgia/Project"style="color:#000000"> Project</a></td>
+
      function mcancelclosetime()
 +
      {
 +
  if(closetimer)
 +
  {
 +
window.clearTimeout(closetimer);
 +
closetimer = null;
 +
  }
 +
}
-
<td style="border:1px solid black;" align="center" height ="45px" onMouseOver="this.bgColor='#d3d3d3'" onMouseOut="this.bgColor='#e7e7e7'" bgColor=#e7e7e7>  
+
// close layer when click-out
-
<a href="https://2014.igem.org/Team:UGA-Georgia/Parts"style="color:#000000"> Parts</a></td>
+
    document.onclick = mclose;
 +
    </script>
 +
<style>
 +
img.center {
 +
    display: block;
 +
    margin-left: auto;
 +
    margin-right: auto;
 +
}
 +
</style>
 +
<!--main content -->
 +
<table width="85%" align="center" bgcolor="#E6E6FA">
 +
 
 +
<!--navigation menu -->
 +
<br>
 +
<td align="center" colspan="3">
 +
 
 +
<table  width="100%" id="sddm">
 +
<tr heigth="15px"></tr>
 +
<tr heigth="75px">  
-
<td style="border:1px solid black;" align="center" height ="45px" onMouseOver="this.bgColor='#d3d3d3'" onMouseOut="this.bgColor='#e7e7e7'" bgColor=#e7e7e7>  
+
<div id="banner"><img id="idSelector" src="https://static.igem.org/mediawiki/2014/f/fa/Bannerugafinal.png" width="100%" height="100" align="center"></div>     
-
<a href="https://2014.igem.org/Team:UGA-Georgia/Modeling"style="color:#000000"> Modeling</a></td>
+
<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 style="border:1px solid black;" align="center" height ="45px" onMouseOver="this.bgColor='#d3d3d3'" onMouseOut="this.bgColor='#e7e7e7'" bgColor=#e7e7e7>   
+
<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/Notebook"style="color:#000000"> Notebook</a></td>
+
<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>
-
<td style="border:1px solid black;" align="center" height ="45px" onMouseOver="this.bgColor='#d3d3d3'" onMouseOut="this.bgColor='#e7e7e7'" bgColor=#e7e7e7>  
+
<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/Safety"style=" color:#000000"> Safety </a></td>
+
<a href="#" onmouseover="mopen('m3')"
 +
        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>
-
<td style="border:1px solid black;" align="center" height ="45px" onMouseOver="this.bgColor='#d3d3d3'" onMouseOut="this.bgColor='#e7e7e7'" bgColor=#e7e7e7>  
+
<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/Attributions"style="color:#000000"> Attributions </a></td>
+
<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>
 +
<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('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>
-
<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>
+
<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>
</tr>
</table>
</table>
Line 72: Line 194:
<tr> <td colspan="3"  height="5px"> </td></tr>
<tr> <td colspan="3"  height="5px"> </td></tr>
-
<tr><td > <h3> Team Information</h3></td>
+
<tr><td align="center">
 +
<img src="https://static.igem.org/mediawiki/2014/d/df/Team_Photo.JPG" width="800px" height="598px"
 +
</tr>
 +
</td>
 +
 
 +
<td align="center">
 +
 
 +
 
 +
<tr> <td colspan="3"  height="15px"> </td></tr>
 +
<tr><td bgColor="#e7e7e7" colspan="3" height="1px"> </tr>
 +
<tr> <td colspan="3"  height="5px"> </td></tr>
 +
 
 +
<tr><td ><font size="6"> <h3> The Undergraduates</h3></font></td>
<td ></td >
<td ></td >
-
<td > <h3> Upload pictures of your team!</h3></td>
 
</tr>
</tr>
<tr>
<tr>
-
<td width="45%"  valign="top">
+
<td width="100%"  valign="top">
-
<p>
+
<br>
-
You can write a background of your team here. Give us a background of your team, the members, etc. Or tell us more about something of your choosing.</p>
+
<br>
-
<p>
+
<p>Peyton Smith is a senior dual majoring in Biochemistry & Molecular Biology and Genetics. Otherwise known as ‘the Methanococcus guy’, Peyton has led the team as President and ran the Methanococcus lab for the past two iGEM seasons. He claims his favorite part about working in the lab is teaching the new iGEMers, but we really know he just enjoys torturing them with synthetic biology/Methanococcus trivia. His passion lies in developing new biological systems and his dream is to pursue a doctorate in bio-engineering. Outside of science, he enjoys running and good old fashioned SEC football.</p>
-
You can look at what other teams did to get some inspiration! Here are a few examples:</p>
+
<br>
-
<ul>
+
<br>
-
<li><a href="https://2013.igem.org/Team:Evry/Team">2013 Evry</a></li>
+
<br>
-
<li><a href="https://2013.igem.org/Team:Cornell/team">2013 Cornell</a></li>
+
<br>
-
<li><a href="https://2013.igem.org/Team:UANL_Mty-Mexico/Team">2013 UANL Mty-Mexico</a></li>
+
<br>
-
<li><a href="https://2013.igem.org/Team:Korea_U_Seoul/Team/Korea_University">2013 Korea U Seoul</a></li>
+
<br>
 +
<br>
 +
<br>
 +
<p> Rebecca Buchanan is a senior who is dual majoring in Biochemistry & Molecular Biology and Cellular Biology with a minor in Religion. She has been a part of the UGA iGEM team since January and has become very invested in the team and research. Rebecca wants to apply to graduate school for regenerative medicine which she finds absolutely fascinating. When she isn't working in the lab, she enjoys playing tennis, going to concerts, and spending quality time with her <a href="https://static.igem.org/mediawiki/2014/d/d1/Cat.jpg"> cat</a>. </p>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<p>My name is Mengyin Cheng, I am a senior majoring in Biochemical Engineering and I have been a member of the iGEM team for almost a year now. I have always loved metabolic engineering and the science behind it. The way genes can be manipulated to create the products that we desire is the part that I love the most about metabolic engineering and synthetic biology. This is what has brought me to join the group. Moreover, the product that we have produced has the ability to benefit several aspects of people’s life including the cosmetic and the oil industry. I have always wanted to give back to the society with the knowledge that I have acquired in college. In addition, I have several other interests such as dancing, singing, and drawing.</p>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<p> Kevin Moriles is a 4th year senior at the University of Georgia, majoring in Biological Science. After graduation, Kevin plans on applying to medical school to become a pediatrician. Kevin joined iGEM in 2013 and has been deeply involved ever since! When he is not studying or working on research, Kevin can be found reading or working out. Go DAWGS!!!! </p>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<p> Katelyn Snider is a 4th year Biology major from Roswell, GA. In addition to research, she also enjoys the outdoors and volunteer work. After graduation, Katelyn plans to pursue graduate school. </p>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<p> Brandon Burroway is a 4th year undergraduate student at UGA. He is majoring in Biology and minoring in Spanish. He is currently applying to medical school for entrance in Fall 2015. Brandon worked with the iGEM team throughout the Summer of 2013 and Spring 2014. Outside of research and class work, Brandon enjoys volunteering at the the Mercy Health Center and playing soccer at the University of Georgia. </p>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
-
</ul>
+
<td align="right">
 +
<img src="https://static.igem.org/mediawiki/2014/c/c6/PeytonBio.jpg" width="100px" height="200px">
 +
<br>
 +
<br>
 +
<br>
 +
<img src="https://static.igem.org/mediawiki/2014/4/4c/RebeccaBio.jpg" width="100px" height="200px">
 +
<br>
 +
<br>
 +
<br>
 +
<img src="https://static.igem.org/mediawiki/2014/a/a3/Mengyin_Photo.jpg" width="100px" height="200px" >
 +
<br>
 +
<br>
 +
<br>
 +
<img src="https://static.igem.org/mediawiki/2014/7/72/Kevin%27s_Photo.jpg" width="100px" height="200px" >
 +
<br>
 +
<br>
 +
<br>
 +
<img src="https://static.igem.org/mediawiki/2014/9/9d/Katelyn%27s_Photo.jpg" width="100px" height="200px">
 +
<br>
 +
<br>
 +
<br>
 +
<img src="https://static.igem.org/mediawiki/2014/0/07/BrandonPhoto.jpg" width="100px" height="200px">
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<tr><td ><font size="6"> <h3> The Instructors</h3></font></td>
 +
<td ></td >
 +
</tr>
 +
<tr>
 +
<td width="100%"  valign="top">
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<p> Rachit Jain is a Doctoral Candidate at the University of Georgia pursuing Metabolic engineering research. He is also the founding member of UGA's iGEM team. Currently he is playing the role of an instructor for UGA's team.</p>
 +
<p></p>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<p> Naga Sirisha is a graduate student pursing her PhD in Biological and agricultural engineering at the University of Georgia. Her involvement with biotechnology research began with her masters’ research on downstream processing for the purification of bacterial hyaluronic acid produced by the fermentation of genetically engineered lactococcus lactis at the Indian Institute of Technology Madras (India). Currently, her doctoral research interests are in the area of algal biofuels. She is working towards improving the yield and quality of algal biofuels produced by thermochemical and fermentation pathways using various pretreatments and component extraction methods.  Besides research, Sirisha pursues hobbies such as music, tennis, yoga and hiking. </p>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<p> Narendran Sekar got his master degree in Biotechnology in 2012 from Centre for Biotechnology, Anna University, Chennai, India. In his master program, he worked on flux balance analysis to optimize the production of recombinant protein in E. coli. He is currently a PhD student in Biological and Agricultural Engineering at the University of Georgia, Athens, GA, USA and doing his research in highly interdisciplinary field of bio-electrochemistry.  His major research work focusses on studying electrogenic characteristics of microorganisms such as cyanobacteria (Synechococcus elongatus) and hyperthermophilic archaea (Pyrococcus furiosus), and genetically manipulating their extracellular electron transfer capabilities for energy generation applications. He is instructing undergraduate students at UGA for the iGEM competition for the past two years. </p>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<p> Dr. Zhe Lyu. Postdoctoral research associate.  I have been working on methanogenic archaea encompassing their isolation, genomics, physiology and ecology since my doctoral studies.  I am currently involved in engineering <i>Methanococcus maripaludis</i>, an excellent model organism for methanogenic archaea to promote biogas production. Methanogenic archaea play vital roles in regulating our climate and quenching our thirst for clean energy, all because the one simple molecule they release – methane.  I believe that our research activities at UGA will enable better engineering and understanding of methanogenic archaea using synthetic biology, and prepare us for the grand challenges such as global warming and energy crisis. </p>
-
</td>
+
 
-
<td></td>
+
<td align="right">
-
<td width="45%"  valign="top">  
+
<img src="https://static.igem.org/mediawiki/2014/f/f5/Rachit%27s_Photo.jpg" width="100px" height="200px">
-
<p> We provide a server where you can upload images for your wiki!</p>
+
<br>
-
<p> Add pictures of your team members, advisors, instructors, lab, institution and everything you wish to show! </p>
+
<br>
-
<a href="https://2014.igem.org/Special:Upload"><img src="" width="100px" height="100px"> </a> <a href="https://2014.igem.org/Special:Upload"><img src="" width="100px" height="100px"> </a>
+
<br>
-
</a> <a href="https://2014.igem.org/Special:Upload"><img src="" width="100px" height="100px"> </a>
+
<br>
 +
<img src="https://static.igem.org/mediawiki/2014/0/0d/Sirisha1.JPG" width="100px" height="200px" >
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<img src="https://static.igem.org/mediawiki/2014/8/8a/NarendranPhoto.JPG" width="100px" height="200px">
 +
<br>
 +
<br>
 +
<br>
<br>
<br>
-
<a href="https://2014.igem.org/Special:Upload">Click here to upload! </a>
+
<img src="https://static.igem.org/mediawiki/2014/0/06/LZ_Photo.png" width="100px" height="200px" >
</td>
</td>
 +
 +
</ul>
 +
 +
 +
 +
</td>
</tr>
</tr>
-
<tr><td > <h3> Tips for the Team Page </h3></td>
+
<tr><td ><font size="6"> <h3> The Faculty Advisors </h3></font></td>
<td ></td >
<td ></td >
<td > </td>
<td > </td>
Line 114: Line 371:
<tr>
<tr>
-
<td width="45%"  valign="top">  
+
<td width="100%"  valign="top">
-
<p>What should this page contain?</p>
+
<br>
-
<ul>
+
<br>
-
<li> Include pictures of your teammates, don’t forget instructors and advisors! </li>
+
<br>
-
<li> You can add a small biography or a few words from each team member, tell us what you like, and what motivates to participate in iGEM. </li>
+
<br>
-
<li>Take team pictures! Show us your school, your lab and little bit of your city.</li>
+
<p>Dr. William B. Whitman, Professor Department of Microbiology</p>
-
<li>Remember that image galleries can help you showcase many pictures while saving space </li>
+
<br>
-
</ul>
+
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<p>Dr. Yajun Yan, Assistant Professor College of Engineering</p>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<p>Dr. Brahm Verma, Professor College of Engineering</p>
 +
 
 +
 
 +
<td align="right">
 +
<img src="https://static.igem.org/mediawiki/2014/2/28/BarnyPhoto%282%29.png" width="100px" height="200px">
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<img src="https://static.igem.org/mediawiki/2014/8/8c/YanPhoto2.png" width="100px" height="200px" >
 +
<br>
 +
<br>
 +
<br>
 +
<br>
 +
<img src="https://static.igem.org/mediawiki/2014/5/5a/VermaPhoto2.png" width="100px" height="200px" >
 +
<br>
 +
<br>
 +
</td>
</td>
</td>
Line 132: Line 428:
</table>
</table>
 +
</body>
</html>
</html>

Latest revision as of 03:17, 18 October 2014




HOME

PROJECT

WET LAB

HUMAN PRACTICES

TEAM

The Undergraduates



Peyton Smith is a senior dual majoring in Biochemistry & Molecular Biology and Genetics. Otherwise known as ‘the Methanococcus guy’, Peyton has led the team as President and ran the Methanococcus lab for the past two iGEM seasons. He claims his favorite part about working in the lab is teaching the new iGEMers, but we really know he just enjoys torturing them with synthetic biology/Methanococcus trivia. His passion lies in developing new biological systems and his dream is to pursue a doctorate in bio-engineering. Outside of science, he enjoys running and good old fashioned SEC football.









Rebecca Buchanan is a senior who is dual majoring in Biochemistry & Molecular Biology and Cellular Biology with a minor in Religion. She has been a part of the UGA iGEM team since January and has become very invested in the team and research. Rebecca wants to apply to graduate school for regenerative medicine which she finds absolutely fascinating. When she isn't working in the lab, she enjoys playing tennis, going to concerts, and spending quality time with her cat.








My name is Mengyin Cheng, I am a senior majoring in Biochemical Engineering and I have been a member of the iGEM team for almost a year now. I have always loved metabolic engineering and the science behind it. The way genes can be manipulated to create the products that we desire is the part that I love the most about metabolic engineering and synthetic biology. This is what has brought me to join the group. Moreover, the product that we have produced has the ability to benefit several aspects of people’s life including the cosmetic and the oil industry. I have always wanted to give back to the society with the knowledge that I have acquired in college. In addition, I have several other interests such as dancing, singing, and drawing.









Kevin Moriles is a 4th year senior at the University of Georgia, majoring in Biological Science. After graduation, Kevin plans on applying to medical school to become a pediatrician. Kevin joined iGEM in 2013 and has been deeply involved ever since! When he is not studying or working on research, Kevin can be found reading or working out. Go DAWGS!!!!










Katelyn Snider is a 4th year Biology major from Roswell, GA. In addition to research, she also enjoys the outdoors and volunteer work. After graduation, Katelyn plans to pursue graduate school.










Brandon Burroway is a 4th year undergraduate student at UGA. He is majoring in Biology and minoring in Spanish. He is currently applying to medical school for entrance in Fall 2015. Brandon worked with the iGEM team throughout the Summer of 2013 and Spring 2014. Outside of research and class work, Brandon enjoys volunteering at the the Mercy Health Center and playing soccer at the University of Georgia.



























The Instructors





Rachit Jain is a Doctoral Candidate at the University of Georgia pursuing Metabolic engineering research. He is also the founding member of UGA's iGEM team. Currently he is playing the role of an instructor for UGA's team.











Naga Sirisha is a graduate student pursing her PhD in Biological and agricultural engineering at the University of Georgia. Her involvement with biotechnology research began with her masters’ research on downstream processing for the purification of bacterial hyaluronic acid produced by the fermentation of genetically engineered lactococcus lactis at the Indian Institute of Technology Madras (India). Currently, her doctoral research interests are in the area of algal biofuels. She is working towards improving the yield and quality of algal biofuels produced by thermochemical and fermentation pathways using various pretreatments and component extraction methods. Besides research, Sirisha pursues hobbies such as music, tennis, yoga and hiking.






Narendran Sekar got his master degree in Biotechnology in 2012 from Centre for Biotechnology, Anna University, Chennai, India. In his master program, he worked on flux balance analysis to optimize the production of recombinant protein in E. coli. He is currently a PhD student in Biological and Agricultural Engineering at the University of Georgia, Athens, GA, USA and doing his research in highly interdisciplinary field of bio-electrochemistry. His major research work focusses on studying electrogenic characteristics of microorganisms such as cyanobacteria (Synechococcus elongatus) and hyperthermophilic archaea (Pyrococcus furiosus), and genetically manipulating their extracellular electron transfer capabilities for energy generation applications. He is instructing undergraduate students at UGA for the iGEM competition for the past two years.









Dr. Zhe Lyu. Postdoctoral research associate. I have been working on methanogenic archaea encompassing their isolation, genomics, physiology and ecology since my doctoral studies. I am currently involved in engineering Methanococcus maripaludis, an excellent model organism for methanogenic archaea to promote biogas production. Methanogenic archaea play vital roles in regulating our climate and quenching our thirst for clean energy, all because the one simple molecule they release – methane. I believe that our research activities at UGA will enable better engineering and understanding of methanogenic archaea using synthetic biology, and prepare us for the grand challenges such as global warming and energy crisis.













The Faculty Advisors





Dr. William B. Whitman, Professor Department of Microbiology












Dr. Yajun Yan, Assistant Professor College of Engineering












Dr. Brahm Verma, Professor College of Engineering