Difference between revisions of "Team:OLS Canmore AB CA/Basic Part"

(Prototype team page)
 
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{OLS_Canmore_AB_CA}}
+
{{Template_All_Teams}}
 +
 
 +
<!-- Declare that you are going to use html code instead of wiki code -->
 
<html>
 
<html>
  
<h2> Basic Parts</h2>
+
<!-- Start of CSS-->
 +
<style type="text/css">
  
 +
@import url(font-awesome.min.css);
 +
        @import url("http://fonts.googleapis.com/css?family=Roboto:500,300");
  
<div class="highlightBox">
+
#top_menu_inside {
<h4>Note</h4>
+
width: 1020px;
<p>In order to be considered for the <a href="https://2015.igem.org/Judging/Awards#SpecialPrizes">Best New Basic Part award</a>, you must fill out this page. Please give links to the Registry entries for the Basic parts you have made. Please see the Registry's <a href="http://parts.igem.org/Help:Parts#Basic_and_Composite_Parts"> Help:Parts page</a> for more information on part types.</p>
+
margin: 0px auto;
</div>
+
}
  
<p>
+
/* since the background is dark, we change the color of the text and links so they are visible on "show preview" mode */
A <b>basic part</b> is a functional unit of DNA that cannot be subdivided into smaller component parts. <a href="http://parts.igem.org/wiki/index.php/Part:BBa_R0051">BBa_R0051</a> is an example of a basic part, a promoter regulated by lambda cl.
+
</p>
+
  
<p>Most genetically-encoded functions have not yet been converted to BioBrick parts. Thus, there are <b>many</b> opportunities to find new, cool, and important genetically encoded functions, and refine and convert the DNA encoding these functions into BioBrick standard biological parts. </p>
+
p, #content {
 +
color:#808284;
 +
                        margin: 0 auto;
 +
}
  
 +
a, a:visited {
 +
color:#22BCB9;
 +
}
 +
 +
 +
 +
/* PAGE LAYOUT */
 +
 +
 +
/* Set up a width, height and color of the body wrapper*/
 +
body {
 +
background-color: #29221F;
 +
              width: 1020px;
 +
              margin: 0 auto;
 +
                font-family: "Roboto", Helvetica, sans-serif;
 +
font-size: 12 pt;
 +
font-weight: 300;
 +
 +
 +
}
 +
 +
/* Creates a container that will wrap all of the content inside your wiki pages. */
 +
#mainContainer { 
 +
width: 980px;
 +
overflow:hidden;
 +
float:left;
 +
margin-left:20px;
 +
margin-bottom: 15px;
 +
background-color: #fff;
 +
border-bottom: 8px solid #153b68;
 +
}
 +
 +
/* Creates the container for the menu */
 +
#menuContainer  {
 +
float:left;
 +
width: 150px;
 +
padding: 20px 0px;
 +
background-color: #0879ae;
 +
border-top: 8px solid #153b68;
 +
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
 +
}
 +
 +
/* Creates the container for the content */
 +
#contentContainer {
 +
padding-top: 0px;
 +
padding-right:10px;
 +
margin-bottom: 20px;
 +
width: 800px;
 +
padding-left: 20px;
 +
float: left;
 +
border-top: 8px solid #153b68;
 +
background-color: #fff;
 +
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
 +
}
 +
 +
 +
/*Set up height place holder for the banner*/
 +
#bannerContainer {
 +
margin-top: 0px;
 +
text-align: center;
 +
color: #40aadb;
 +
}
 +
 +
/*VISUAL STYLE (TABLES, FONTS, LINKS, IMAGES, UL) */
 +
 +
/*Change the styling of text for everything inside main container*/
 +
#mainContainer p {
 +
font-size: 14px;
 +
color: #000000;
 +
}
 +
 +
/*This changes the color and font family */
 +
#contentContainer h1, h2, h3, h4, h5, h6 {
 +
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
 +
color: #29221F;
 +
border-bottom: none;
 +
 +
margin-top:10px;
 +
}
 +
 +
/*Style of the links - links are different inside the menu */
 +
#contentContainer a {
 +
font-weight: ;
 +
color: #40aadb;
 +
}
 +
 +
  /* Styling links on hover- links are different inside the menu */
 +
#contentContainer a:hover {
 +
color: #0885c0;
 +
}
 +
 +
/*Change the styling of tables */
 +
        #contentContainer table {
 +
    border: 0px solid #29221F;
 +
    border-collapse: collapse;
 +
    margin: auto;
 +
    margin-bottom: 15px;
 +
    margin-top: 15px;
 +
    margin-right: 10px;
 +
    margin-left: 10px;
 +
    }
 +
 +
/*Change the styling of table cells*/
 +
    #contentContainer  td {
 +
    background-color: #fff;
 +
    padding: 10px;
 +
    border: 0px solid #29221F;
 +
    border-collapse: collapse;
 +
   
 +
    }
 +
 +
 +
/*Change the styling of table headers */
 +
    #contentContainer th {
 +
    background-color: #F4F0D8;
 +
    padding: 10px;
 +
    border: 0px solid #29221F;
 +
    border-collapse: collapse;
 +
    vertical-align: text-top;
 +
    }
 +
 +
 +
 +
 +
/*MENU STYLING */
 +
 +
/*Styling for the links in the menu */
 +
#menuContainer a {
 +
color: #fff;
 +
text-decoration:none;
 +
font-weight: ;
 +
}
 +
 +
/* Sets the style for lists inside menuContainer  */
 +
#menuContainer ul {
 +
list-style: none;
 +
margin-left:0px;
 +
}
 +
 +
/*Styles the list items to become menu buttons */
 +
#menuContainer ul li {
 +
text-align: center;
 +
display: block;
 +
width: 100%;
 +
height:30px;
 +
padding-top:10px;
 +
}
 +
 +
/*For the menu buttons, changes the color when hovering*/
 +
#menuContainer li:hover {
 +
color:  #FFF;
 +
background-color: #0885c0;
 +
}
 +
 +
/*Submenus are not displayed as default*/
 +
#menuContainer li ul {
 +
display: none;
 +
padding-top:15px;
 +
margin-left: -19px;
 +
}
 +
 +
/*Submenus are displayed when hovering the menu button */
 +
#menuContainer li:hover ul {
 +
/*display: inline-block; */
 +
display: block;
 +
position: absolute;
 +
float:right;
 +
margin-left: 150px;
 +
margin-top:-42px;
 +
}
 +
 +
/*Style the submenu buttons*/
 +
#menuContainer li ul li{
 +
background-color: #1697d3;
 +
padding-left:20px;
 +
padding-right:20px;
 +
height:30px;
 +
                                font-color:#fff
 +
padding-top:10px;
 +
margin-top:-2px;
 +
color: #28221E;
 +
width: 170px;
 +
}
 +
 +
/*CLASSES */
 +
 +
/*Clear class for all the pages, adds spacing too*/
 +
.clear{
 +
clear:both;
 +
height: 10px;
 +
}
 +
 +
 +
/* highlight box for special messages */
 +
          .highlightBox {
 +
            width:500px;
 +
            margin:auto;
 +
            background-color: #F4F0D8;
 +
    margin-bottom: 15px;
 +
    margin-top: 15px;
 +
    padding: 15px;
 +
    padding-top: 5px;
 +
            }
 +
 +
 +
</style>
 +
<!-- End of CSS -->
 +
 +
<!-- Start of the template html elements. -->
 +
<div id ="mainContainer"><!--This div will close on the page.-->
 +
 +
 +
<div id="bannerContainer">
 +
<img src="https://static.igem.org/mediawiki/2015/4/43/Team_OLS_Canmore_AB_CA_Banner.jpeg" width:"980px" height:"200px"/>
 +
</div>
 +
 +
<!-- Start of menu -->
 +
<div id="menuContainer">
 +
 +
<!-- This list is your menu, every list item is a menu button and nested listed become submenu buttons -->
 +
<ul>
 +
<a href="https://2015.igem.org/Team:OLS_Canmore_AB_CA"><li>HOME</li></a>
 +
 +
<a href="https://2015.igem.org/Team:OLS_Canmore_AB_CA/Team"><li>TEAM</li></a>
 +
 +
<a href="#"><li>PROJECT
 +
            <ul>
 +
<a href="https://2015.igem.org/Team:OLS_Canmore_AB_CA/Description"><li>Description</li></a>
 +
<a href="https://2015.igem.org/Team:OLS_Canmore_AB_CA/Experiments"><li>Experiments & Protocols</li></a> 
 +
<a href="https://2015.igem.org/Team:OLS_Canmore_AB_CA/Results"><li>Results</li></a> 
 +
                                                        <a href="https://2015.igem.org/Team:OLS_Canmore_AB_CA/Design"><li>Design</li></a> 
 +
</ul>
 +
</li></a>
 +
 +
<a href="#"><li>PARTS
 +
            <ul>
 +
<a href="https://2015.igem.org/Team:OLS_Canmore_AB_CA/Parts"><li>Team Parts</li></a>
 +
<a href="https://2015.igem.org/Team:OLS_Canmore_AB_CA/Basic_Part"><li>Basic Parts</li></a> 
 +
<a href="https://2015.igem.org/Team:OLS_Canmore_AB_CA/Composite_Part"><li>Composite Parts</li></a>
 +
</ul>
 +
</li></a>
 +
 +
<a href="https://2015.igem.org/Team:OLS_Canmore_AB_CA/Notebook"><li>NOTEBOOK</li></a>
 +
     
 +
<a href="https://2015.igem.org/Team:OLS_Canmore_AB_CA/Attributions"><li>ATTRIBUTIONS</li></a>
 +
 +
<a href="https://2015.igem.org/Team:OLS_Canmore_AB_CA/Collaborations"><li>COLLABORATIONS</li></a>
 +
 +
<a href="https://2015.igem.org/Team:OLS_Canmore_AB_CA/Practices"><li>HUMAN PRACTICES</li></a>
 +
 +
<a href="https://2015.igem.org/Team:OLS_Canmore_AB_CA/Safety"><li>SAFETY</li></a>
 +
<a href="https://2015.igem.org/Team:OLS_Canmore_AB_CA/Faith"><li>FAITH</li></a>
 +
<li></li>
 +
<li></li>
 +
<li></li>
 +
<li></li>
 +
<li></li>
 +
<li></li>
 +
<li></li>
 +
<li></li>
 +
<li></li>
 +
<li></li>
 +
<li></li>
 +
<li></li>
 +
<li></li>
 +
<li></li>
 +
<li></li>
 +
<li></li>
 +
<li></li>
 +
<li></li>
 +
<li></li>
 +
<li></li>
 +
<li></li>
 +
<li></li>
 +
<li></li>
 +
</ul>
 +
</div>
 +
<!-- End of menu  -->
 +
 +
<!-- Start of content -->
 +
<div id="contentContainer">
 +
<h2><center><b>Basic Parts</b></center></h2>
 +
 +
<table>
 +
<tr><td>
 +
<h3>Part Name: Keratinase A (BBa_K1717171)</h3>
 +
<p><em>Creator:</em> Our Lady of the Snows Catholic Academy 2015</p>
 +
<tr><td><p><em>Short Description:</em> Coding sequence for Keratinase A (KERA)</p></td></tr>
 +
<tr><td><p><em>Long Description:</em> Keratinases are proteolytic enzymes which break the disulphide bonds in various keratin substrates.  KER A is a basic part parts comprised from a synthesized KERA protein coding sequence, optimized for expression in <i>E.coli</i> and most active in degrading keratin in hair.</p>
 +
<p>This gene, when expressed in cells, can be tested for activity through looking for zones of clearing on skim milk agar plates where cells are growing, as well as by looking at degradation of keratin-containing substrates (hair, feathers, chemically synthesized keratin, etc.) when grown with cells.</td></tr>
 +
<tr><td><p><em>Design Considerations:</em> Keratinases are isolated form several bacterial and fungal species, but have been expressed in E.coli with more limited success.  The bacterial chassis that we are using is a strand of <i>E. coli</i> called K12.  Like all <i>E.coli</i>, this strain is gram-negative.  After extensive research and looking at the projects of Chicago, Sheffield, and Taiga, we deduced that the signal peptides (which were those of a gram-positive source organism) could be causing the poor secretion of the enzyme in those projects.  Previous teams either left the gram-positive signal peptides intact, or removed the signal peptide sequences entirely.  Our approach was instead to remove the original signal peptide and replace it with one optimized for secretion in <i>E.coli</i> (pelB, with sequence taken from part BBa_J32015).  When paired with a promoter, the part is designed to express the Keratinase and secrete it into the periplasm, where some will escape into the media extracellularily.</p>
 +
<p>DNA sequences were compared using Clustal to ensure that the protein coding sequences were not altered, and that start and stop codons were correct.  NEBCutter V2.0 was utilized to check for illegal cut sites.  One EcoRI site and one PstI site were identified, and a silent mutation was introduced in order to remove them.</p></td></tr>
 +
<tr><td><p><em>Source:</em> The sequence for the KERA coding region was taken from the <a href="http://www.uniprot.org/uniprot/Q53521">Uniprot gene/protein sequence bank<a></p></td></tr>
 +
</table>
 +
<table>
 +
<tr><td>
 +
<h3>Part Name: Keratinase US (BBa_K1717172)</h3>
 +
<p><em>Creator:</em> Our Lady of the Snows Catholic Academy 2015</p>
 +
<tr><td><p><em>Short Description:</em> Coding sequence for Keratinase US (KERUS)</p></td></tr>
 +
<tr><td><p><em>Long Description:</em> Keratinases are proteolytic enzymes which break the disulphide bonds in various keratin substrates.  KER US is a basic part parts comprised from a synthesized KERUS protein coding sequence, optimized for expression in <i>E.coli</i> and most active in degrading keratin in feathers.</p>
 +
<p>This gene, when expressed in cells, can be tested for activity through looking for zones of clearing on skim milk agar plates where cells are growing, as well as by looking at degradation of keratin-containing substrates (feathers, hair, chemically synthesized keratin, etc.) when grown with cells.</p></td></tr>
 +
<tr><td><p><em>Design Considerations:</em> Keratinases are isolated from several bacterial and fungal species, but have been expressed in <i>E. coli</i> with more limited success.  The bacterial chassis that we are using is a strand of <i>E-coli</i> called K-12. Like all <i>E. coli</i>, this strain is gram-negative. After extensive research and looking at the projects of Chicago, Sheffield and Taiga, we deduced that the signal peptides (which were those of a gram-positive source organism) could be causing the poor secretion of the enzyme in those projects.  Previous teams either left the gram-positive signal peptides intact, or removed signal peptide sequences entirely.  Our approach was instead to remove the original signal peptide sequence and replace it with one optimized for secretion in <i>E. coli</i> (pelB, with the sequence taken from part Part BBa_J32015) When paired with a promoter, the part is designed to express the keratinase and secrete it into the periplasm, where some will escape into the media extracellularily.
 +
DNA sequences were compared used Clustal to ensure protein coding sequences were not altered, and that start and stop codons were correct.  NEBCutter V2.0 was utilized to check for illegal cut sites.  No such sites were found.</p>
 +
<p>DNA sequences were compared using Clustal to ensure that the protein coding sequences were not altered, and that start and stop codons were correct.  NEBCutter V2.0 was utilized to check for illegal cut sites.  One EcoRI site and one PstI site were identified, and a silent mutation was introduced in order to remove them.</p></td></tr>
 +
<tr><td><p><em>Source:</em> The sequence for the KERUS coding region was taken from the <a href="http://www.uniprot.org/uniprot/A0A059PWB6">Uniprot gene/protein sequence bank<a></p></td></tr>
 +
</table>
 +
 +
<!--This div will close on the page.-->
 
</div>
 
</div>
 +
</div>
 +
<p font-color:"#fff"><center>Contact us at <strong>alinaarvisais@isidore.redeemer.ab.ca</strong> or <strong>taliadixon@isidore.redeemer.ab.ca</strong>, or even send a message to our facebook page: <a href="https://www.facebook.com/OLeSsence">https://www.facebook.com/OLeSsence</a></center><p>
 +
  
 
</html>
 
</html>

Latest revision as of 21:35, 18 September 2015

Basic Parts

Part Name: Keratinase A (BBa_K1717171)

Creator: Our Lady of the Snows Catholic Academy 2015

Short Description: Coding sequence for Keratinase A (KERA)

Long Description: Keratinases are proteolytic enzymes which break the disulphide bonds in various keratin substrates. KER A is a basic part parts comprised from a synthesized KERA protein coding sequence, optimized for expression in E.coli and most active in degrading keratin in hair.

This gene, when expressed in cells, can be tested for activity through looking for zones of clearing on skim milk agar plates where cells are growing, as well as by looking at degradation of keratin-containing substrates (hair, feathers, chemically synthesized keratin, etc.) when grown with cells.

Design Considerations: Keratinases are isolated form several bacterial and fungal species, but have been expressed in E.coli with more limited success. The bacterial chassis that we are using is a strand of E. coli called K12. Like all E.coli, this strain is gram-negative. After extensive research and looking at the projects of Chicago, Sheffield, and Taiga, we deduced that the signal peptides (which were those of a gram-positive source organism) could be causing the poor secretion of the enzyme in those projects. Previous teams either left the gram-positive signal peptides intact, or removed the signal peptide sequences entirely. Our approach was instead to remove the original signal peptide and replace it with one optimized for secretion in E.coli (pelB, with sequence taken from part BBa_J32015). When paired with a promoter, the part is designed to express the Keratinase and secrete it into the periplasm, where some will escape into the media extracellularily.

DNA sequences were compared using Clustal to ensure that the protein coding sequences were not altered, and that start and stop codons were correct. NEBCutter V2.0 was utilized to check for illegal cut sites. One EcoRI site and one PstI site were identified, and a silent mutation was introduced in order to remove them.

Source: The sequence for the KERA coding region was taken from the Uniprot gene/protein sequence bank

Part Name: Keratinase US (BBa_K1717172)

Creator: Our Lady of the Snows Catholic Academy 2015

Short Description: Coding sequence for Keratinase US (KERUS)

Long Description: Keratinases are proteolytic enzymes which break the disulphide bonds in various keratin substrates. KER US is a basic part parts comprised from a synthesized KERUS protein coding sequence, optimized for expression in E.coli and most active in degrading keratin in feathers.

This gene, when expressed in cells, can be tested for activity through looking for zones of clearing on skim milk agar plates where cells are growing, as well as by looking at degradation of keratin-containing substrates (feathers, hair, chemically synthesized keratin, etc.) when grown with cells.

Design Considerations: Keratinases are isolated from several bacterial and fungal species, but have been expressed in E. coli with more limited success. The bacterial chassis that we are using is a strand of E-coli called K-12. Like all E. coli, this strain is gram-negative. After extensive research and looking at the projects of Chicago, Sheffield and Taiga, we deduced that the signal peptides (which were those of a gram-positive source organism) could be causing the poor secretion of the enzyme in those projects. Previous teams either left the gram-positive signal peptides intact, or removed signal peptide sequences entirely. Our approach was instead to remove the original signal peptide sequence and replace it with one optimized for secretion in E. coli (pelB, with the sequence taken from part Part BBa_J32015) When paired with a promoter, the part is designed to express the keratinase and secrete it into the periplasm, where some will escape into the media extracellularily. DNA sequences were compared used Clustal to ensure protein coding sequences were not altered, and that start and stop codons were correct. NEBCutter V2.0 was utilized to check for illegal cut sites. No such sites were found.

DNA sequences were compared using Clustal to ensure that the protein coding sequences were not altered, and that start and stop codons were correct. NEBCutter V2.0 was utilized to check for illegal cut sites. One EcoRI site and one PstI site were identified, and a silent mutation was introduced in order to remove them.

Source: The sequence for the KERUS coding region was taken from the Uniprot gene/protein sequence bank

Contact us at alinaarvisais@isidore.redeemer.ab.ca or taliadixon@isidore.redeemer.ab.ca, or even send a message to our facebook page: https://www.facebook.com/OLeSsence