(337 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | {{Team:Emory/Test}} | ||
+ | |||
<html lang="en"> | <html lang="en"> | ||
<head> | <head> | ||
Line 5: | Line 7: | ||
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"> | <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> | <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> | ||
− | |||
<style> | <style> | ||
− | + | #content{width:100%} | |
− | + | #bodyContent{width:100%} | |
#nav{width:100%} | #nav{width:100%} | ||
− | # | + | |
− | background-size:cover; | + | |
− | + | ||
− | + | ||
− | + | ||
− | + | .navbar { | |
+ | padding-top: 15px; | ||
+ | } | ||
+ | |||
+ | #welcome-page { | ||
+ | background: url(https://static.igem.org/mediawiki/2016/4/44/IGemEmoryFrontPageTunnel.jpg); | ||
+ | -webkit-background-size: cover; | ||
+ | -moz-background-size: cover; | ||
+ | -o-background-size: cover; | ||
+ | background-size: cover; | ||
+ | background-attachment: fixed; | ||
+ | height: 1075px; | ||
+ | |||
} | } | ||
− | # | + | #explore { |
background: url(https://static.igem.org/mediawiki/2016/e/e1/IGemEmoryDesertRiver.jpeg); | background: url(https://static.igem.org/mediawiki/2016/e/e1/IGemEmoryDesertRiver.jpeg); | ||
-webkit-background-size: cover; | -webkit-background-size: cover; | ||
Line 26: | Line 39: | ||
background-size: cover; | background-size: cover; | ||
background-attachment: fixed; | background-attachment: fixed; | ||
+ | height: 1075px; | ||
} | } | ||
.btn { | .btn { | ||
− | background: | + | background: #EDE2DF; |
+ | opacity: 0.90; | ||
} | } | ||
.btn-default:hover { | .btn-default:hover { | ||
− | background: # | + | background: #378048; |
− | opacity: 0. | + | opacity: 0.50; |
} | } | ||
#what-we-do { | #what-we-do { | ||
background: white; | background: white; | ||
− | height: | + | height: 1000px; |
} | } | ||
Line 46: | Line 61: | ||
+ | #divison-one { | ||
+ | background: white; | ||
+ | height: 50px; | ||
+ | } | ||
− | |||
+ | |||
+ | #safety { | ||
+ | background: url(https://static.igem.org/mediawiki/2016/4/44/IGemEmoryClouds.jpeg); | ||
+ | -webkit-background-size: cover; | ||
+ | -moz-background-size: cover; | ||
+ | -o-background-size: cover; | ||
+ | background-size: cover; | ||
+ | background-attachment: fixed; | ||
+ | height: 1200px; | ||
+ | } | ||
+ | |||
+ | #division-three { | ||
+ | background-color: white; | ||
+ | height: 50px; | ||
+ | } | ||
+ | |||
+ | #team { | ||
+ | background: url(https://static.igem.org/mediawiki/2016/0/03/IGemEmoryRocks.jpeg); | ||
+ | -webkit-background-size: cover; | ||
+ | -moz-background-size: cover; | ||
+ | -o-background-size: cover; | ||
+ | background-size: cover; | ||
+ | background-attachment: fixed; | ||
+ | height: 1500px; | ||
+ | } | ||
+ | |||
+ | #divison-four { | ||
+ | background-color: white; | ||
+ | height: 50px; | ||
+ | } | ||
+ | |||
+ | #attributions { | ||
+ | background: url(https://static.igem.org/mediawiki/2016/a/af/TeamEmoryShore.jpeg); | ||
+ | -webkit-background-size: cover; | ||
+ | -moz-background-size: cover; | ||
+ | -o-background-size: cover; | ||
+ | background-size: cover; | ||
+ | background-attachment: fixed; | ||
+ | height: 1200px; | ||
+ | } | ||
+ | |||
+ | #sponsor_image { | ||
+ | display: inline; | ||
+ | margin: 15px; | ||
+ | padding: 0px; | ||
+ | } | ||
+ | |||
+ | |||
+ | /* Style the buttons that are used to open and close the accordion panel */ | ||
+ | button.accordion { | ||
+ | background-color: #eee; | ||
+ | color: #444; | ||
+ | cursor: pointer; | ||
+ | padding: 18px; | ||
+ | width: 100%; | ||
+ | text-align: left; | ||
+ | border: none; | ||
+ | outline: none; | ||
+ | transition: 0.4s; | ||
+ | } | ||
+ | |||
+ | /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */ | ||
+ | button.accordion.active, button.accordion:hover { | ||
+ | background-color: #ddd; | ||
+ | } | ||
+ | |||
+ | /* Style the accordion panel. Note: hidden by default */ | ||
+ | div.panel { | ||
+ | padding: 0 18px; | ||
+ | background-color: white; | ||
+ | max-height: 0; | ||
+ | overflow: hidden; | ||
+ | transition: 0.6s ease-in-out; | ||
+ | opacity: 0; | ||
+ | } | ||
+ | |||
+ | /* The "show" class is added to the accordion panel when the user clicks on one of the buttons. This will show the panel content */ | ||
+ | div.panel.show { | ||
+ | opacity: 1; | ||
+ | max-height: 500px; /* Whatever you like, as long as its more than the height of the content (on all screen sizes) */ | ||
+ | } | ||
</style> | </style> | ||
+ | |||
+ | |||
+ | |||
+ | <script> | ||
+ | |||
+ | //Smooth Scroll Dammit | ||
+ | $(document).ready(function(){ | ||
+ | $('a[href^="#"]').on('click',function (e) { | ||
+ | e.preventDefault(); | ||
+ | |||
+ | var target = this.hash; | ||
+ | var $target = $(target); | ||
+ | |||
+ | $('html, body').stop().animate({ | ||
+ | 'scrollTop': $target.offset().top | ||
+ | }, 900, 'swing', function () { | ||
+ | window.location.hash = target; | ||
+ | }); | ||
+ | }); | ||
+ | }); | ||
+ | |||
+ | |||
+ | // Toggle between adding and removing the "active" and "show" classes when the user clicks on one of the "Section" buttons. //The "active" class is used to add a background color to the current button when its belonging panel is open. The "show" //class is used to open the specific accordion panel | ||
+ | |||
+ | var acc = document.getElementsByClassName("accordion"); | ||
+ | var i; | ||
+ | |||
+ | for (i = 0; i < acc.length; i++) { | ||
+ | acc[i].onclick = function(){ | ||
+ | this.classList.toggle("active"); | ||
+ | this.nextElementSibling.classList.toggle("show"); | ||
+ | } | ||
+ | } | ||
+ | </script> | ||
+ | |||
</head> | </head> | ||
− | + | ||
+ | |||
+ | <body> | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | <!-- NAV BAR--> | ||
+ | <nav class="navbar navbar-inverse navbar-fixed-top"> | ||
+ | <div class="container-fluid"> | ||
+ | <div class="navbar-header"> | ||
+ | <a class="navbar-brand" href="#"></a> | ||
+ | </div> | ||
+ | <ul class="nav navbar-nav"> | ||
+ | <li class="active"><a href="#welcome-page" class="smoothScroll">Home</a></li> | ||
+ | <li><a href="#explore" class="smoothScroll">Map</a></li> | ||
+ | <li><a href="#what-we-do" class="smoothScroll">Purpose</a></li> | ||
+ | <li><a href="#project" class="smoothScroll">Project</a></li> | ||
+ | <li><a href="#notebook" class="smoothScroll">Notebook</a></li> | ||
+ | <li><a href="#parts" class="smoothScroll">Parts</a></li> | ||
+ | <li><a href="#team" class="smoothScroll">Meet the Team</a></li> | ||
+ | <li><a href="#judge" class="smoothScroll">Judging and Evaluations</a></li> | ||
+ | </ul> | ||
+ | </div> | ||
+ | </nav> | ||
<!-- PAGE 1 WELCOME PAGE --> | <!-- PAGE 1 WELCOME PAGE --> | ||
− | <div id=" | + | <div id="welcome-page" style="text-align:center"> |
<div class="about" class="smooth"></a> | <div class="about" class="smooth"></a> | ||
<div class= "container"> | <div class= "container"> | ||
− | <h1 style="text-align:center;font-size:60px;color:white;font-family:Open Sans, Arial, Helvetice Neue, sans-serif;padding-top: | + | <h1 style="text-align:center;font-size:60px;color:white;font-family:Open Sans, Arial, Helvetice Neue, sans-serif;padding-top:275px;"><strong>EMORY BIOTECH</strong></h1> |
− | <p style=" | + | <p style="font-size:40px;font-family:Open Sans, Arial, Helvetice Neue, sans-serif;text-align:center;color:white;padding-bottom:500px;">"to create, preserve, teach, and apply knowledge in service of humanity"</p> |
− | + | ||
+ | |||
+ | </div> | ||
Line 69: | Line 229: | ||
<!-- PAGE 2 EXPLORE --> | <!-- PAGE 2 EXPLORE --> | ||
− | <div id=" | + | <div id="explore"> |
<div class="container"> | <div class="container"> | ||
− | <h1 style="text-align:center;font-size:50px;color:343738;font-family:Open Sans, Arial, Helvetice Neue, sans-serif;padding-top: | + | <h1 style="text-align:center;font-size:50px;color:#343738;font-family:Open Sans, Arial, Helvetice Neue, sans-serif;padding-top:150px;"><strong>EXPLORE</strong></h1> |
− | <p style="text-align: center; font-size: | + | <p style="text-align:center;font-size:18px;color:#343738;padding-bottom:50px;"><i>Our Wiki page is organized in a comprehensive, linear manner so that every user can navigate it easily. Want to skip ahead a few sections? |
− | Have a go at the navigation bar and it'll push you in the right direction. | + | Have a go at the navigation bar and it'll push you in the right direction. If you ever get lost, you can always use it to return to our core pages, including the more detailed map below. I don't know what I just typed, I just needed to see what the text looks like. All of this will be edited further later.</i></p> |
− | map. I don't know what I just typed I just | + | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
</div> | </div> | ||
</div> | </div> | ||
Line 95: | Line 245: | ||
<div id="what-we-do"> | <div id="what-we-do"> | ||
<div class="container"> | <div class="container"> | ||
− | <h1 style="text-align:center;font-size:50px;color:343738;font-family:Open Sans, Arial, Helvetice Neue, sans-serif;padding-top: | + | <h1 style="text-align:center;font-size:50px;color:#343738;font-family:Open Sans, Arial, Helvetice Neue, sans-serif;padding-top:150px;">WHAT ARE WE DOING HERE?</h1> |
− | <p>Synthetic Biology is largely restricted to well-funded laboratories at major research universities in high income countries. One significant barrier to entry is the capital cost of instruments. The cloning and assembly of BioBricks, for example, includes the transformation of Escherichia coli, which requires the purchase of a refrigerated centrifuge and an ultra-cold freezer. Here we assemble BioBrick-compatible shuttle vectors for Acinetobacter baylyi ADP1, a naturally competent relative of E. coli that grows as rapidly under identical conditions. We will show that A. baylyi can be transformed with recombinant DNA simply by adding ligation reactions to mid-log cultures; transformants are selected as usual by spreading them onto LB agar plates supplemented with the appropriate antibiotics (kanamycin, spectinomycin, tetracycline, cefotaxime or amikacin). These experiments will show how BioBricks can be constructed and assembled in modestly funded laboratories in community colleges, high schools and even private homes. The resulting plasmid constructs retain their pSB1C3 backbones and will thus remain compatible with the BioBrick standard and capable of replication in the widely used E. coli chassis.</p> | + | <p style="font-size:18px;">Synthetic Biology is largely restricted to well-funded laboratories at major research universities in high income countries. One significant barrier to entry is the capital cost of instruments. The cloning and assembly of BioBricks, for example, includes the transformation of Escherichia coli, which requires the purchase of a refrigerated centrifuge and an ultra-cold freezer. Here we assemble BioBrick-compatible shuttle vectors for Acinetobacter baylyi ADP1, a naturally competent relative of E. coli that grows as rapidly under identical conditions. We will show that A. baylyi can be transformed with recombinant DNA simply by adding ligation reactions to mid-log cultures; transformants are selected as usual by spreading them onto LB agar plates supplemented with the appropriate antibiotics (kanamycin, spectinomycin, tetracycline, cefotaxime or amikacin). These experiments will show how BioBricks can be constructed and assembled in modestly funded laboratories in community colleges, high schools and even private homes. The resulting plasmid constructs retain their pSB1C3 backbones and will thus remain compatible with the BioBrick standard and capable of replication in the widely used E. coli chassis.</p> |
+ | <img src="https://static.igem.org/mediawiki/2016/f/fb/TeamEmory_Koli.png" alt="Coli" style="width:562x;height:450px;"> | ||
+ | <img src="https://static.igem.org/mediawiki/2016/2/21/TeamEmory_ADP1Ex.png" alt="ADP1" align="right;"> | ||
+ | </div> | ||
</div> | </div> | ||
− | |||
<!--PAGE 4 PROJECT, DESCRIPTION, DESIGN, RESULTS, NOTEBOOK --> | <!--PAGE 4 PROJECT, DESCRIPTION, DESIGN, RESULTS, NOTEBOOK --> | ||
− | <div id=" | + | <div id="project"> |
<div class="container"> | <div class="container"> | ||
− | + | <h1 style="text-align:center;font-size:50px;color:#343738;font-family:Open Sans, Arial, Helvetice Neue, sans-serif;padding-top:150px;">PROJECT</h1> | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | < | + | <h2 style="text-align:left;">Description</h2> |
− | + | ||
− | + | <img src="https://static.igem.org/mediawiki/2016/0/03/TeamEmory_DahliaEx.png" alt="flower1" style="float:right;"> | |
− | + | ||
− | + | <p style="text-align:left;padding-bottom:70px;">Synthetic Biology is largely restricted to well-funded laboratories at major research universities in high income countries. One significant barrier to entry is the capital cost of instruments. The cloning and assembly of BioBricks, for example, includes the transformation of Escherichia coli, which requires the purchase of a refrigerated centrifuge and an ultra-cold freezer. Here we assemble BioBrick-compatible shuttlevectors for Acinetobacter baylyi ADP1, a naturally competent relative of E. coli that grows as rapidly under identical conditions. We will show that A. baylyi can be transformed with recombinant DNA simply by adding ligation reactions to mid-log cultures; transformants are selected as usual by spreading them onto LB agar plates supplemented with the appropriate antibiotics (kanamycin, spectinomycin, tetracycline, cefotaxime or amikacin). These experiments will show how BioBricks can be constructed and assembled in modestly funded laboratories in community colleges, high schools and even private homes. The resulting plasmid constructs retain their pSB1C3 backbones and will thus remain compatible with the BioBrick standard and capable of replication in the widely used E. coli chassis.</p> | |
− | + | ||
− | + | <h2 style="text-align:right;">Design, Protocol, and Experiments</h2> | |
− | + | ||
− | + | <img src="https://static.igem.org/mediawiki/2016/3/35/TeamEm_WetLeafEx.png" alt="leaf" style="float:left;width:510px;height:330px;"> | |
− | + | ||
− | + | <p style="text-align:right;padding-bottom:70px;">Synthetic Biology is largely restricted to well-funded laboratories at major research universities in high income countries. One significant barrier to entry is the capital cost of instruments. The cloning and assembly of BioBricks, for example, includes the transformation of Escherichia coli, which requires the purchase of a refrigerated centrifuge and an ultra-cold freezer. Here we assemble BioBrick-compatible shuttlevectors for Acinetobacter baylyi ADP1, a naturally competent relative of E. coli that grows as rapidly under identical conditions. We will show that A. baylyi can be transformed with recombinant DNA simply by adding ligation reactions to mid-log cultures; transformants are selected as usual by spreading them onto LB agar plates supplemented with the appropriate antibiotics (kanamycin, spectinomycin, tetracycline, cefotaxime or amikacin). These experiments will show how BioBricks can be constructed and assembled in modestly funded laboratories in community colleges.</p> | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | <h2 style="text-align:left;">Results</h2> | |
− | + | ||
− | + | <img src="https://static.igem.org/mediawiki/2016/b/b6/TeamEmory_PurpleFlowerEx.png" alt="flower2" style="float:right;width:359px;height:332px;"> | |
− | + | ||
− | + | <p style="text-align:left;padding-bottom:70px;">Synthetic Biology is largely restricted to well-funded laboratories at major research universities in high income countries. One significant barrier to entry is the capital cost of instruments. The cloning and assembly of BioBricks, for example, includes the transformation of Escherichia coli, which requires the purchase of a refrigerated centrifuge and an ultra-cold freezer. Here we assemble BioBrick-compatible shuttlevectors for Acinetobacter baylyi ADP1, a naturally competent relative of E. coli that grows as rapidly under identical conditions. We will show that A. baylyi can be transformed with recombinant DNA simply by adding ligation reactions to mid-log cultures; transformants are selected as usual by spreading them onto LB agar plates supplemented with the appropriate antibiotics (kanamycin, spectinomycin, tetracycline, cefotaxime or amikacin). These experiments will show how BioBricks can be constructed and assembled in modestly funded laboratories in community colleges, high schools and even private homes. The resulting plasmid constructs retain their pSB1C3 backbones and will thus remain compatible with the BioBrick standard and capable of replication in the widely used E. coli chassis.</p> | |
− | + | ||
− | + | ||
− | + | </div> | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
</div> | </div> | ||
+ | <!--PAGE 5 NOTEBOOK --> | ||
+ | <div id="notebook"> | ||
+ | <div class="container"> | ||
+ | <h1 style="text-align:center;font-size:50px;color:#343738;font-family:Open Sans, Arial, Helvetice Neue, sans-serif;padding-top:150px;">NOTEBOOK</h1> | ||
+ | <p style="padding-bottom: 50px;">We've recorded all of our research achievements and blunders along the way in an online notebook, so you can experience our excitement, thoughts, and the challenges we've encountered and overcome throughout this process.</p> | ||
+ | </div> | ||
+ | </div> | ||
− | <!--PARTS--> | + | |
+ | <!--ACCORDION IN NOTEBOOK--> | ||
+ | |||
+ | <button class="accordion">WEEK ONE</button> | ||
+ | <div class="panel"> | ||
+ | <p>things happened</p> | ||
+ | </div> | ||
+ | |||
+ | <button class="accordion">WEEK TWO</button> | ||
+ | <div class="panel"> | ||
+ | <p>things happened</p> | ||
+ | </div> | ||
+ | |||
+ | <button class="accordion">WEEK THREE</button> | ||
+ | <div class="panel"> | ||
+ | <p>things happened</p> | ||
+ | </div> | ||
+ | |||
+ | |||
+ | |||
+ | <!--PAGE 6 PARTS--> | ||
<div class="parts" id="parts"> | <div class="parts" id="parts"> | ||
<div class="container"> | <div class="container"> | ||
− | <h1 style="text-align:center;font-size:50px;color:343738;font-family:Open Sans, Arial, Helvetice Neue, sans-serif;padding-top: | + | <h1 style="text-align:center;font-size:50px;color:#343738;font-family:Open Sans, Arial, Helvetice Neue, sans-serif;padding-top:150px;"><strong>PARTS</strong></h1> |
− | + | ||
+ | </div> | ||
</div> | </div> | ||
Line 197: | Line 334: | ||
<td>Part 1</td> | <td>Part 1</td> | ||
<td>Type 1</td> | <td>Type 1</td> | ||
− | <td>This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table. | + | <td>This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table.This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table.This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table.</td> |
− | + | ||
− | + | ||
<td>Length 1</td> | <td>Length 1</td> | ||
</tr> | </tr> | ||
Line 205: | Line 340: | ||
<td>Part 1</td> | <td>Part 1</td> | ||
<td>Type 1</td> | <td>Type 1</td> | ||
− | <td>This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table. | + | <td>This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table.This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table.This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table.</td> |
− | + | ||
− | + | ||
<td>Length 1</td> | <td>Length 1</td> | ||
</tr> | </tr> | ||
Line 213: | Line 346: | ||
<td>Part 1</td> | <td>Part 1</td> | ||
<td>Type 1</td> | <td>Type 1</td> | ||
− | <td>This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table. | + | <td>This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table.This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table.This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table.</td> |
− | + | ||
− | + | ||
<td>Length 1</td> | <td>Length 1</td> | ||
</tr> | </tr> | ||
Line 221: | Line 352: | ||
<td>Part 1</td> | <td>Part 1</td> | ||
<td>Type 1</td> | <td>Type 1</td> | ||
− | <td>This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table. | + | <td>This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table.This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table.This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table.</td> |
− | + | <td>Length 1</td> | |
− | + | </tr> | |
+ | <tr> | ||
+ | <td>Part 1</td> | ||
+ | <td>Type 1</td> | ||
+ | <td>This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table.This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table.This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table.</td> | ||
+ | <td>Length 1</td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td>Part 1</td> | ||
+ | <td>Type 1</td> | ||
+ | <td>This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table.This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table.This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table.</td> | ||
+ | <td>Length 1</td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td>Part 1</td> | ||
+ | <td>Type 1</td> | ||
+ | <td>This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table.This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table.This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table.</td> | ||
<td>Length 1</td> | <td>Length 1</td> | ||
</tr> | </tr> | ||
Line 230: | Line 377: | ||
</div> | </div> | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | <!--PAGE 7 SAFETY--> | |
− | <!--SAFETY--> | + | |
<div class="safety" id="safety"> | <div class="safety" id="safety"> | ||
<div class="container"> | <div class="container"> | ||
− | <h1 style="text-align:center;font-size:50px;color:343738;font-family:Open Sans, Arial, Helvetice Neue, sans-serif;padding-top: | + | <h1 style="text-align:center;font-size:50px;color:color:#343738;font-family:Open Sans, Arial, Helvetice Neue, sans-serif;padding-top:150px;"><strong>SAFETY</strong></h1> |
+ | <h2>Our Concerns</h2> | ||
− | + | <p style="text-align:center">Synthetic Biology is largely restricted to well-funded laboratories at major research universities in high income countries. One significant barrier to entry is the capital cost of instruments. The cloning and assembly of BioBricks, for example, includes the transformation of Escherichia coli, which requires the purchase of a refrigerated centrifuge and an ultra-cold freezer. Here we assemble BioBrick-compatible shuttle vectors for Acinetobacter baylyi ADP1, a naturally competent relative of E. coli that grows as rapidly under identical conditions. We will show that A. baylyi can be transformed with recombinant DNA simply by adding ligation reactions to mid-log cultures; transformants are selected as usual by spreading them onto LB agar plates supplemented with the appropriate antibiotics (kanamycin, spectinomycin, tetracycline, cefotaxime or amikacin). These experiments will show how BioBricks can be constructed and assembled in modestly funded laboratories in community colleges, high schools and even private homes. The resulting plasmid constructs retain their pSB1C3 backbones and will thus remain compatible with the BioBrick standard and capable of replication in the widely used E. coli chassis.</p> | |
+ | |||
+ | <h2>How We Addressed Them</h2> | ||
+ | <p style="text-align:center">Synthetic Biology is largely restricted to well-funded laboratories at major research universities in high income countries. One significant barrier to entry is the capital cost of instruments. The cloning and assembly of BioBricks, for example, includes the transformation of Escherichia coli, which requires the purchase of a refrigerated centrifuge and an ultra-cold freezer. Here we assemble BioBrick-compatible shuttle vectors for Acinetobacter baylyi ADP1, a naturally competent relative of E. coli that grows as rapidly under identical conditions. We will show that A. baylyi can be transformed with recombinant DNA simply by adding ligation reactions to mid-log cultures; transformants are selected as usual by spreading them onto LB agar plates supplemented with the appropriate antibiotics (kanamycin, spectinomycin, tetracycline, cefotaxime or amikacin). These experiments will show how BioBricks can be constructed and assembled in modestly funded laboratories in community colleges, high schools and even private homes. The resulting plasmid constructs retain their pSB1C3 backbones and will thus remain compatible with the BioBrick standard and capable of replication in the widely used E. coli chassis.</p> | ||
+ | </div> | ||
</div> | </div> | ||
+ | |||
+ | |||
+ | <!--DIVISION THREE--> | ||
+ | <div class="division-three" id="division-three"> | ||
+ | <div class="container"> | ||
+ | <p style="color:white;"> </p> | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <!--PAGE 8 HUMAN PRACTICES--> | ||
+ | |||
+ | <div class="human-practices" id="human-practices"> | ||
+ | <div class="container"> | ||
+ | <h1 style="text-align:center;font-size:50px;color:black;font-family:Open Sans, Arial, Helvetice Neue, sans-serif;padding-top:150px;"><strong>HUMAN PRACTICES & OUTREACH</strong></h1> | ||
+ | |||
+ | <img src="https://static.igem.org/mediawiki/2016/f/f6/TeamEmory_THelper.png" alt="guide" style="width:600px;height:600px;"> | ||
+ | |||
+ | |||
+ | <p style="font-size:18px;">Synthetic Biology is largely restricted to well-funded laboratories at major research universities in high income countries. One significant barrier to entry is the capital cost of instruments. The cloning and assembly of BioBricks, for example, includes the transformation of Escherichia coli, which requires the purchase of a refrigerated centrifuge and an ultra-cold freezer. Here we assemble BioBrick-compatible shuttle vectors for Acinetobacter baylyi ADP1, a naturally competent relative of E. coli that grows as rapidly under identical conditions. We will show that A. baylyi can be transformed with recombinant DNA simply by adding ligation reactions to mid-log cultures; transformants are selected as usual by spreading them onto LB agar plates supplemented with the appropriate antibiotics (kanamycin, spectinomycin, tetracycline, cefotaxime or amikacin). These experiments will show how BioBricks can be constructed and assembled in modestly funded laboratories in community colleges, high schools and even private homes. The resulting plasmid constructs retain their pSB1C3 backbones and will thus remain compatible with the BioBrick standard and capable of replication in the widely used E. coli chassis.</p> | ||
+ | |||
+ | <p style="padding-bottom:50px;font-size:18px;">Synthetic Biology is largely restricted to well-funded laboratories at major research universities in high income countries. One significant barrier to entry is the capital cost of instruments. The cloning and assembly of BioBricks, for example, includes the transformation of Escherichia coli, which requires the purchase of a refrigerated centrifuge and an ultra-cold freezer. Here we assemble BioBrick-compatible shuttle vectors for Acinetobacter baylyi ADP1, a naturally competent relative of E. coli that grows as rapidly under identical conditions. We will show that A. baylyi can be transformed with recombinant DNA simply by adding ligation reactions to mid-log cultures; transformants are selected as usual by spreading them onto LB agar plates supplemented with the appropriate antibiotics (kanamycin, spectinomycin, tetracycline, cefotaxime or amikacin). These experiments will show how BioBricks can be constructed and assembled in modestly funded laboratories in community colleges, high schools and even private homes. The resulting plasmid constructs retain their pSB1C3 backbones and will thus remain compatible with the BioBrick standard and capable of replication in the widely used E. coli chassis.</p> | ||
+ | |||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <!--PAGE 9 TEAM--> | ||
+ | |||
+ | <div class="team" id="team"> | ||
+ | <div class="container"> | ||
+ | <h1 style="text-align:center;font-size:50px;color:white;font-family:Open Sans, Arial, Helvetice Neue, sans-serif;padding-top:150px;"><strong>TEAM</strong></h1> | ||
+ | <div class="row"> | ||
+ | <div class="clearfix"> | ||
+ | |||
+ | </div> | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | <li class="col-lg-3 col-md-3 col-sm-6 "> | ||
+ | <div class="text-center"> | ||
+ | <div class="member-thumb"> | ||
+ | <img src="https://static.igem.org/mediawiki/2016/1/11/IGemEmoryXFiles.jpeg" class="img-responsive" alt="member 1" /> | ||
+ | </div> | ||
+ | <div class="team-inner"> | ||
+ | <p class="team-inner-header"><span style="color:white;"><strong>JASMINE CARROTHERS</p></span></strong> | ||
+ | <p class="team-inner-subtext"><span style="color:white;">Student</p></span> | ||
+ | </div> | ||
+ | </div> | ||
+ | </li> | ||
+ | |||
+ | |||
+ | <li class="col-lg-3 col-md-3 col-sm-6 "> | ||
+ | <div class="text-center"> | ||
+ | <div class="member-thumb"> | ||
+ | <img src="https://static.igem.org/mediawiki/2016/1/11/IGemEmoryXFiles.jpeg" class="img-responsive" alt="member 2" /> | ||
+ | </div> | ||
+ | |||
+ | <div class="team-inner"> | ||
+ | <p class="team-inner-header"><span style="color:white;"><strong>CYRILLUS TAN</p></span></strong> | ||
+ | <p class="team-inner-subtext"><span style="color:white;">Secondary PI</p></span> | ||
+ | </div> | ||
+ | </div> | ||
+ | </li> | ||
+ | |||
+ | |||
+ | <li class="col-lg-3 col-md-3 col-sm-6 "> | ||
+ | <div class="text-center"> | ||
+ | <div class="member-thumb"> | ||
+ | <img src="https://static.igem.org/mediawiki/2016/1/11/IGemEmoryXFiles.jpeg" class="img-responsive" alt="member 3" /> | ||
+ | </div> | ||
+ | <div class="team-inner"> | ||
+ | <p class="team-inner-header"><span style="color:white;"><strong>TALIA AKOH-ARREY</p></span></strong> | ||
+ | <p class="team-inner-subtext"><span style="color:white;">Student</p></span> | ||
+ | </div> | ||
+ | </div> | ||
+ | </li> | ||
+ | |||
+ | |||
+ | |||
+ | <li class="col-lg-3 col-md-3 col-sm-6 "> | ||
+ | <div class="text-center"> | ||
+ | <div class="member-thumb"> | ||
+ | <img src="https://static.igem.org/mediawiki/2016/1/11/IGemEmoryXFiles.jpeg" class="img-responsive" alt="member 4" /> | ||
+ | </div> | ||
+ | <div class="team-inner"> | ||
+ | <p class="team-inner-header"><span style="color:white;"><strong>MONE ANZAI</p></span></strong> | ||
+ | <p class="team-inner-subtext"><span style="color:white;">Student</p></span> | ||
+ | </li> | ||
+ | <li class="col-lg-3 col-md-3 col-sm-6 "> | ||
+ | <div class="text-center"> | ||
+ | <div class="member-thumb"> | ||
+ | <img src="https://static.igem.org/mediawiki/2016/1/11/IGemEmoryXFiles.jpeg" class="img-responsive" alt="member 4" /> | ||
+ | |||
+ | </div> | ||
+ | <div class="team-inner"> | ||
+ | <p class="team-inner-header"><span style="color:white;"><strong>KATHY LI</p></span></strong> | ||
+ | <p class="team-inner-subtext"><span style="color:white;">Student</p></span> | ||
+ | </div> | ||
+ | </div> | ||
+ | </li> | ||
+ | |||
+ | |||
+ | |||
+ | <li class="col-lg-3 col-md-3 col-sm-6 "> | ||
+ | <div class="text-center"> | ||
+ | <div class="member-thumb"> | ||
+ | <img src="https://static.igem.org/mediawiki/2016/1/11/IGemEmoryXFiles.jpeg" class="img-responsive" alt="member 3" /> | ||
+ | |||
+ | </div> | ||
+ | <div class="team-inner"> | ||
+ | <p class="team-inner-header"><span style="color:white;"><strong>SUJITH SWARNA</p></span></strong> | ||
+ | <p class="team-inner-subtext"><span style="color:white;">Student</p></span> | ||
+ | </div> | ||
+ | </div> | ||
+ | </li> | ||
+ | |||
+ | <li class="col-lg-3 col-md-3 col-sm-6 "> | ||
+ | <div class="text-center"> | ||
+ | <div class="member-thumb"> | ||
+ | <img src="https://static.igem.org/mediawiki/2016/1/11/IGemEmoryXFiles.jpeg" class="img-responsive" alt="member 3" /> | ||
+ | |||
+ | </div> | ||
+ | <div class="team-inner"> | ||
+ | <p class="team-inner-header"><span style="color:white;"><strong>HYUN HWANG</p></span></strong> | ||
+ | <p class="team-inner-subtext"><span style="color:white;">Student</p></span> | ||
+ | </div> | ||
+ | </div> | ||
+ | </li> | ||
+ | |||
+ | <li class="col-lg-3 col-md-3 col-sm-6 "> | ||
+ | <div class="text-center"> | ||
+ | <div class="member-thumb"> | ||
+ | <img src="https://static.igem.org/mediawiki/2016/1/11/IGemEmoryXFiles.jpeg" class="img-responsive" alt="member 3" /> | ||
+ | |||
+ | </div> | ||
+ | <div class="team-inner"> | ||
+ | <p class="team-inner-header"><span style="color:white;"><strong>ROHITA MOUDGAL</p></span></strong> | ||
+ | <p class="team-inner-subtext"><span style="color:white;">Student</p></span> | ||
+ | </div> | ||
+ | </div> | ||
+ | </li> | ||
+ | |||
+ | |||
+ | |||
+ | <li class="col-lg-3 col-md-3 col-sm-6 "> | ||
+ | <div class="text-center"> | ||
+ | <div class="member-thumb"> | ||
+ | <img src="https://static.igem.org/mediawiki/2016/1/11/IGemEmoryXFiles.jpeg" class="img-responsive" alt="member 3" /> | ||
+ | |||
+ | </div> | ||
+ | <div class="team-inner"> | ||
+ | <p class="team-inner-header"><span style="color:white;"><strong>JOSH MIRAGLIA</p></span></strong> | ||
+ | <p class="team-inner-subtext"><span style="color:white;">Student</p></span> | ||
+ | </div> | ||
+ | </div> | ||
+ | </li> | ||
+ | |||
+ | |||
+ | <li class="col-lg-3 col-md-3 col-sm-6 "> | ||
+ | <div class="text-center"> | ||
+ | <div class="member-thumb"> | ||
+ | <img src="https://static.igem.org/mediawiki/2016/1/11/IGemEmoryXFiles.jpeg" class="img-responsive" alt="member 3" /> | ||
+ | |||
+ | </div> | ||
+ | <div class="team-inner"> | ||
+ | <p class="team-inner-header"><span style="color:white;"><strong>KRISHNA MARISETTI</p></span></strong> | ||
+ | <p class="team-inner-subtext"><span style="color:white;">Student</p></span> | ||
+ | </div> | ||
+ | </div> | ||
+ | </li> | ||
+ | |||
+ | |||
+ | <li class="col-lg-3 col-md-3 col-sm-6 "> | ||
+ | <div class="text-center"> | ||
+ | <div class="member-thumb"> | ||
+ | <img src="https://static.igem.org/mediawiki/2016/1/11/IGemEmoryXFiles.jpeg" class="img-responsive" alt="member 3" /> | ||
+ | |||
+ | </div> | ||
+ | <div class="team-inner"> | ||
+ | <p class="team-inner-header"><span style="color:white;"><strong>Munsa Manandahar</p></span></strong> | ||
+ | <p class="team-inner-subtext"><span style="color:white;">Student</p></span> | ||
+ | </div> | ||
+ | </div> | ||
+ | </li> | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | <li class="col-lg-3 col-md-3 col-sm-6 "> | ||
+ | <div class="text-center"> | ||
+ | <div class="member-thumb"> | ||
+ | <img src="https://static.igem.org/mediawiki/2016/1/11/IGemEmoryXFiles.jpeg" class="img-responsive" alt="member 3" /> | ||
+ | |||
+ | </div> | ||
+ | <div class="team-inner"> | ||
+ | <p class="team-inner-header"><span style="color:white;"><strong>MARUF M. HOQUE</p></span></strong> | ||
+ | <p class="team-inner-subtext"><span style="color:white;">Student</p></span> | ||
+ | </div> | ||
+ | </div> | ||
+ | </li> | ||
+ | |||
+ | |||
+ | <li class="col-lg-3 col-md-3 col-sm-6 "> | ||
+ | <div class="text-center"> | ||
+ | <div class="member-thumb"> | ||
+ | <img src="https://static.igem.org/mediawiki/2016/1/11/IGemEmoryXFiles.jpeg" class="img-responsive" alt="member 3" /> | ||
+ | |||
+ | </div> | ||
+ | <div class="team-inner"> | ||
+ | <p class="team-inner-header"><span style="color:white;"><strong>DR. ICHIRO MATSUMURA</p></span></strong> | ||
+ | <p class="team-inner-subtext"><span style="color:white;">Student</p></span> | ||
+ | </div> | ||
+ | </div> | ||
+ | </li> | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | </ul> | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | |||
+ | <!--PAGE 10--> | ||
+ | <div class="attributions" id="attributions"> | ||
+ | <div class="container"> | ||
+ | <h1 style="text-align:center;font-size:50px;color:343738;font-family:Open Sans, Arial, Helvetice Neue, sans-serif;padding-top:150px;"><strong>ATTRIBUTIONS</strong></h1> | ||
+ | <p style="font-size:18;">We've come a long way and it's time to give credit where it's due.</p> | ||
+ | |||
+ | |||
+ | <h2 style="text-align:center;">Building and Establishing Our Team</h2> | ||
+ | <p style="font-size:13;">Emory Biotech was created by <span style="color:#22A161;">Rohita</span> and <span style="color:#22A161;">Josh</span> (and other people whose names I will need). We'll add a few more lines to give proper thanks to these individuals for taking the time to establish a base from which this group could flourish (funding from department, legitimizing the club..etc). Note: Most of the text in these sections are just to show what attributions will look like. I will definitely add more categories to make sure all aspects of this project ae covered and people get due credit</p> | ||
+ | |||
+ | |||
+ | <h2 style="text-align:center;">Experimental Design and Conduct</h2> | ||
+ | <p style="font-size:13;">Some <strong><span style="color:#22A161;">student(s)</strong></style> was responsible for this and this and that and that. Someone came up with the experimental design and other things with the help of <strong><span style="color:#22A161;">Dr. Matsumura</strong></span>...etc.</p> | ||
+ | |||
+ | <h2 style="text-align:center;">General Lab Support/Challenging Technique</h2> | ||
+ | <p style="font-size:13;"><span style="color:#22A161;">Dr. Matsumura</span> generously provided his lab space and plenty of his time in teaching our researchers important lab techniques....etc.</p | ||
+ | > | ||
+ | <h2 style="text-align:center;">KickStarter Campaign Management</h2> | ||
+ | <p style="font-size:13;"><strong><span style="color:#22A161;">Maruf</span></strong> did many things etc etc etc.</p> | ||
+ | |||
+ | <h2 style="text-align:center;">Human Practices and Outreach Coordinator</h2> | ||
+ | <p style="font-size:13;"><strong><span style="color:#22A161;">Someone</span></strong> did many things to make this possible etc etc etc.</p> | ||
+ | <h2 style="text-align:center;">Lead Wiki and Graphic Designer</h2> | ||
+ | <p style="font-size:13;">The wiki was designed, supervised, and maintained by <span style="color:#22A161;"><strong>Talia</strong></span>. Logos were done by...etc.</p> | ||
+ | |||
+ | <p>General Support, Project support and advice, Fundraising help and advice, Lab support, Difficult technique support, Project advisor support, Wiki support, Presentation coaching, Human Practices support, Thanks and acknowledgements for all other people involved in helping make a successful iGEM team. </p> | ||
+ | |||
+ | |||
+ | |||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <!--PAGE 12 JUDGING PAGES--> | ||
+ | |||
+ | <div class="judge" id="judge"> | ||
+ | <div class="container"> | ||
+ | <h1 style="text-align:center;font-size:50px;color:#343738;font-family:Open Sans, Arial, Helvetice Neue, sans-serif; padding-top:150px;padding-bottom:50px;"><strong>JUDGING AND EVALUATIONS</strong></h1> | ||
+ | <p style="text-align:center;font-size:18px;color:#343738;padding-bottom:50px;">For the convenience of the judges, we've gathered all the links to the specific pages we'd like to be evaluated for and put them in one spot.</p> | ||
+ | |||
+ | <div class="guide-button" id ="guide-button"> | ||
+ | <a href="https://2016.igem.org/Team:Emory/Description"button type="button" class="btn btn-default btn-block">Project Description</button></a> | ||
+ | <a href="https://2016.igem.org/Team:Emory/Design"button type="button" class="btn btn-default btn-block">Project Design</button></a> | ||
+ | <a href="https://2016.igem.org/Team:Emory/Design"button type="button" class="btn btn-default btn-block">Proof of Concept</button></a> | ||
+ | <a href="https://2016.igem.org/Team:Emory/Demonstrate"button type="button" class="btn btn-default btn-block">Demonstration And Results</button></a> | ||
+ | <a href="https://2016.igem.org/Team:Example/Notebook"button type="button" class="btn btn-default btn-block">Notebook</button></a> | ||
+ | <a href="https://2016.igem.org/Team:Emory/Parts"button type="button" class="btn btn-default btn-block">Parts</button></a> | ||
+ | <a href="https://2016.igem.org/Team:Emory/Integrated_Practices"button type="button" class="btn btn-default btn-block">Integrated Human Practices</button></a> | ||
+ | <a href="https://2016.igem.org/Team:Emory/Engagement" button type="button" class="btn btn-default btn-block">Education and Public Engagement</button></a> | ||
+ | <a href="https://2016.igem.org/Team:Emory/Attributions"button type="button" class="btn btn-default btn-block">Attributions</button></a> | ||
+ | |||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | |||
+ | |||
+ | <!--PAGE 12 SPONSORS--> | ||
+ | <div class="sponsors" id="sponsors"> | ||
+ | <div class="container"> | ||
+ | <h1 style="text-align:center;font-size:50px;color:#343738;font-family:Open Sans, Arial, Helvetice Neue, sans-serif; padding-top:150px;padding-bottom:50px;"><strong>SPONSORS</strong></h1> | ||
+ | |||
+ | <img src="https://static.igem.org/mediawiki/2016/a/a3/TeamEmoryIDTLogo.png" class="sponsor_images" /> | ||
+ | <img src="https://static.igem.org/mediawiki/2016/a/aa/EmoryBiologyLogo.gif" class="sponsor_images" /> | ||
+ | <img src="https://static.igem.org/mediawiki/2016/5/58/TeamEmoryDepartmentofChemistry.png" class="sponsor_images" /> | ||
+ | |||
+ | |||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | |||
+ | |||
+ | </body> |
Latest revision as of 20:27, 23 September 2016
EMORY BIOTECH
"to create, preserve, teach, and apply knowledge in service of humanity"
EXPLORE
Our Wiki page is organized in a comprehensive, linear manner so that every user can navigate it easily. Want to skip ahead a few sections? Have a go at the navigation bar and it'll push you in the right direction. If you ever get lost, you can always use it to return to our core pages, including the more detailed map below. I don't know what I just typed, I just needed to see what the text looks like. All of this will be edited further later.
WHAT ARE WE DOING HERE?
Synthetic Biology is largely restricted to well-funded laboratories at major research universities in high income countries. One significant barrier to entry is the capital cost of instruments. The cloning and assembly of BioBricks, for example, includes the transformation of Escherichia coli, which requires the purchase of a refrigerated centrifuge and an ultra-cold freezer. Here we assemble BioBrick-compatible shuttle vectors for Acinetobacter baylyi ADP1, a naturally competent relative of E. coli that grows as rapidly under identical conditions. We will show that A. baylyi can be transformed with recombinant DNA simply by adding ligation reactions to mid-log cultures; transformants are selected as usual by spreading them onto LB agar plates supplemented with the appropriate antibiotics (kanamycin, spectinomycin, tetracycline, cefotaxime or amikacin). These experiments will show how BioBricks can be constructed and assembled in modestly funded laboratories in community colleges, high schools and even private homes. The resulting plasmid constructs retain their pSB1C3 backbones and will thus remain compatible with the BioBrick standard and capable of replication in the widely used E. coli chassis.
PROJECT
Description
Synthetic Biology is largely restricted to well-funded laboratories at major research universities in high income countries. One significant barrier to entry is the capital cost of instruments. The cloning and assembly of BioBricks, for example, includes the transformation of Escherichia coli, which requires the purchase of a refrigerated centrifuge and an ultra-cold freezer. Here we assemble BioBrick-compatible shuttlevectors for Acinetobacter baylyi ADP1, a naturally competent relative of E. coli that grows as rapidly under identical conditions. We will show that A. baylyi can be transformed with recombinant DNA simply by adding ligation reactions to mid-log cultures; transformants are selected as usual by spreading them onto LB agar plates supplemented with the appropriate antibiotics (kanamycin, spectinomycin, tetracycline, cefotaxime or amikacin). These experiments will show how BioBricks can be constructed and assembled in modestly funded laboratories in community colleges, high schools and even private homes. The resulting plasmid constructs retain their pSB1C3 backbones and will thus remain compatible with the BioBrick standard and capable of replication in the widely used E. coli chassis.
Design, Protocol, and Experiments
Synthetic Biology is largely restricted to well-funded laboratories at major research universities in high income countries. One significant barrier to entry is the capital cost of instruments. The cloning and assembly of BioBricks, for example, includes the transformation of Escherichia coli, which requires the purchase of a refrigerated centrifuge and an ultra-cold freezer. Here we assemble BioBrick-compatible shuttlevectors for Acinetobacter baylyi ADP1, a naturally competent relative of E. coli that grows as rapidly under identical conditions. We will show that A. baylyi can be transformed with recombinant DNA simply by adding ligation reactions to mid-log cultures; transformants are selected as usual by spreading them onto LB agar plates supplemented with the appropriate antibiotics (kanamycin, spectinomycin, tetracycline, cefotaxime or amikacin). These experiments will show how BioBricks can be constructed and assembled in modestly funded laboratories in community colleges.
Results
Synthetic Biology is largely restricted to well-funded laboratories at major research universities in high income countries. One significant barrier to entry is the capital cost of instruments. The cloning and assembly of BioBricks, for example, includes the transformation of Escherichia coli, which requires the purchase of a refrigerated centrifuge and an ultra-cold freezer. Here we assemble BioBrick-compatible shuttlevectors for Acinetobacter baylyi ADP1, a naturally competent relative of E. coli that grows as rapidly under identical conditions. We will show that A. baylyi can be transformed with recombinant DNA simply by adding ligation reactions to mid-log cultures; transformants are selected as usual by spreading them onto LB agar plates supplemented with the appropriate antibiotics (kanamycin, spectinomycin, tetracycline, cefotaxime or amikacin). These experiments will show how BioBricks can be constructed and assembled in modestly funded laboratories in community colleges, high schools and even private homes. The resulting plasmid constructs retain their pSB1C3 backbones and will thus remain compatible with the BioBrick standard and capable of replication in the widely used E. coli chassis.
NOTEBOOK
We've recorded all of our research achievements and blunders along the way in an online notebook, so you can experience our excitement, thoughts, and the challenges we've encountered and overcome throughout this process.
things happened
things happened
things happened
PARTS
Name | Type | Description | Length |
---|---|---|---|
Part 1 | Type 1 | This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table.This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table.This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table. | Length 1 |
Part 1 | Type 1 | This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table.This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table.This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table. | Length 1 |
Part 1 | Type 1 | This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table.This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table.This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table. | Length 1 |
Part 1 | Type 1 | This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table.This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table.This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table. | Length 1 |
Part 1 | Type 1 | This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table.This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table.This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table. | Length 1 |
Part 1 | Type 1 | This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table.This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table.This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table. | Length 1 |
Part 1 | Type 1 | This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table.This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table.This is a nice part. It has a nice description, I'm sure. Typing a lot of text to see how long the description can be without messing up the table. | Length 1 |
SAFETY
Our Concerns
Synthetic Biology is largely restricted to well-funded laboratories at major research universities in high income countries. One significant barrier to entry is the capital cost of instruments. The cloning and assembly of BioBricks, for example, includes the transformation of Escherichia coli, which requires the purchase of a refrigerated centrifuge and an ultra-cold freezer. Here we assemble BioBrick-compatible shuttle vectors for Acinetobacter baylyi ADP1, a naturally competent relative of E. coli that grows as rapidly under identical conditions. We will show that A. baylyi can be transformed with recombinant DNA simply by adding ligation reactions to mid-log cultures; transformants are selected as usual by spreading them onto LB agar plates supplemented with the appropriate antibiotics (kanamycin, spectinomycin, tetracycline, cefotaxime or amikacin). These experiments will show how BioBricks can be constructed and assembled in modestly funded laboratories in community colleges, high schools and even private homes. The resulting plasmid constructs retain their pSB1C3 backbones and will thus remain compatible with the BioBrick standard and capable of replication in the widely used E. coli chassis.
How We Addressed Them
Synthetic Biology is largely restricted to well-funded laboratories at major research universities in high income countries. One significant barrier to entry is the capital cost of instruments. The cloning and assembly of BioBricks, for example, includes the transformation of Escherichia coli, which requires the purchase of a refrigerated centrifuge and an ultra-cold freezer. Here we assemble BioBrick-compatible shuttle vectors for Acinetobacter baylyi ADP1, a naturally competent relative of E. coli that grows as rapidly under identical conditions. We will show that A. baylyi can be transformed with recombinant DNA simply by adding ligation reactions to mid-log cultures; transformants are selected as usual by spreading them onto LB agar plates supplemented with the appropriate antibiotics (kanamycin, spectinomycin, tetracycline, cefotaxime or amikacin). These experiments will show how BioBricks can be constructed and assembled in modestly funded laboratories in community colleges, high schools and even private homes. The resulting plasmid constructs retain their pSB1C3 backbones and will thus remain compatible with the BioBrick standard and capable of replication in the widely used E. coli chassis.
HUMAN PRACTICES & OUTREACH
Synthetic Biology is largely restricted to well-funded laboratories at major research universities in high income countries. One significant barrier to entry is the capital cost of instruments. The cloning and assembly of BioBricks, for example, includes the transformation of Escherichia coli, which requires the purchase of a refrigerated centrifuge and an ultra-cold freezer. Here we assemble BioBrick-compatible shuttle vectors for Acinetobacter baylyi ADP1, a naturally competent relative of E. coli that grows as rapidly under identical conditions. We will show that A. baylyi can be transformed with recombinant DNA simply by adding ligation reactions to mid-log cultures; transformants are selected as usual by spreading them onto LB agar plates supplemented with the appropriate antibiotics (kanamycin, spectinomycin, tetracycline, cefotaxime or amikacin). These experiments will show how BioBricks can be constructed and assembled in modestly funded laboratories in community colleges, high schools and even private homes. The resulting plasmid constructs retain their pSB1C3 backbones and will thus remain compatible with the BioBrick standard and capable of replication in the widely used E. coli chassis.
Synthetic Biology is largely restricted to well-funded laboratories at major research universities in high income countries. One significant barrier to entry is the capital cost of instruments. The cloning and assembly of BioBricks, for example, includes the transformation of Escherichia coli, which requires the purchase of a refrigerated centrifuge and an ultra-cold freezer. Here we assemble BioBrick-compatible shuttle vectors for Acinetobacter baylyi ADP1, a naturally competent relative of E. coli that grows as rapidly under identical conditions. We will show that A. baylyi can be transformed with recombinant DNA simply by adding ligation reactions to mid-log cultures; transformants are selected as usual by spreading them onto LB agar plates supplemented with the appropriate antibiotics (kanamycin, spectinomycin, tetracycline, cefotaxime or amikacin). These experiments will show how BioBricks can be constructed and assembled in modestly funded laboratories in community colleges, high schools and even private homes. The resulting plasmid constructs retain their pSB1C3 backbones and will thus remain compatible with the BioBrick standard and capable of replication in the widely used E. coli chassis.
TEAM
JASMINE CARROTHERS
Student
CYRILLUS TAN
Secondary PI
TALIA AKOH-ARREY
Student
MONE ANZAI
Student
KATHY LI
Student
SUJITH SWARNA
Student
HYUN HWANG
Student
ROHITA MOUDGAL
Student
JOSH MIRAGLIA
Student
KRISHNA MARISETTI
Student
Munsa Manandahar
Student
MARUF M. HOQUE
Student
DR. ICHIRO MATSUMURA
Student
ATTRIBUTIONS
We've come a long way and it's time to give credit where it's due.
Building and Establishing Our Team
Emory Biotech was created by Rohita and Josh (and other people whose names I will need). We'll add a few more lines to give proper thanks to these individuals for taking the time to establish a base from which this group could flourish (funding from department, legitimizing the club..etc). Note: Most of the text in these sections are just to show what attributions will look like. I will definitely add more categories to make sure all aspects of this project ae covered and people get due credit
Experimental Design and Conduct
Some student(s) was responsible for this and this and that and that. Someone came up with the experimental design and other things with the help of Dr. Matsumura...etc.
General Lab Support/Challenging Technique
Dr. Matsumura generously provided his lab space and plenty of his time in teaching our researchers important lab techniques....etc.
KickStarter Campaign Management
Maruf did many things etc etc etc.
Human Practices and Outreach Coordinator
Someone did many things to make this possible etc etc etc.
Lead Wiki and Graphic Designer
The wiki was designed, supervised, and maintained by Talia. Logos were done by...etc.
General Support, Project support and advice, Fundraising help and advice, Lab support, Difficult technique support, Project advisor support, Wiki support, Presentation coaching, Human Practices support, Thanks and acknowledgements for all other people involved in helping make a successful iGEM team.
JUDGING AND EVALUATIONS
For the convenience of the judges, we've gathered all the links to the specific pages we'd like to be evaluated for and put them in one spot.