Team:Hong Kong HKUST/characterization/mls1
From 2013.igem.org
(Created page with "<html> <head> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"> </script> <script type="text/javascript"> $(document).ready(function(){ $("ul.first...") |
|||
Line 3: | Line 3: | ||
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"> | <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"> | ||
</script> | </script> | ||
- | |||
<script type="text/javascript"> | <script type="text/javascript"> | ||
$(document).ready(function(){ | $(document).ready(function(){ | ||
Line 10: | Line 9: | ||
}); | }); | ||
}); | }); | ||
- | </script> | + | </script> |
+ | <script> | ||
+ | $(document).ready(function(){ | ||
+ | // hide #back-top first | ||
+ | $("#back-top").hide(); | ||
+ | |||
+ | // fade in #back-top | ||
+ | $(function () { | ||
+ | $(window).scroll(function () { | ||
+ | if ($(this).scrollTop() > 100) { | ||
+ | $('#back-top').fadeIn(); | ||
+ | } else { | ||
+ | $('#back-top').fadeOut(); | ||
+ | } | ||
+ | }); | ||
+ | |||
+ | // scroll body to 0px on click | ||
+ | $('#back-top a').click(function () { | ||
+ | $('body,html').animate({ | ||
+ | scrollTop: 0 | ||
+ | }, 800); | ||
+ | return false; | ||
+ | }); | ||
+ | }); | ||
+ | |||
+ | }); | ||
+ | </script> | ||
<script> | <script> | ||
- | + | $(document).ready(function() | |
{ | { | ||
$('#menubar').mouseover(function(){ | $('#menubar').mouseover(function(){ | ||
Line 30: | Line 55: | ||
</script> | </script> | ||
<style type="text/css"> | <style type="text/css"> | ||
- | body{background-color:# | + | body{background-color:#d5cfbf;width:100%;margin-bottom:20px;min-width:600px;max-width:2000px;font: x-small sans-serif;} |
#menubar | #menubar | ||
{background-color:#EEECEC;opacity:0.8;top:-4px;width:360px;height:23px;position:absolute;top:-20px;} | {background-color:#EEECEC;opacity:0.8;top:-4px;width:360px;height:23px;position:absolute;top:-20px;} | ||
Line 44: | Line 69: | ||
{visibility:hidden;} | {visibility:hidden;} | ||
#globalWrapper | #globalWrapper | ||
- | {position: relative;font-size:127%;width:100%;margin:0;padding:0;padding-bottom:10px;background-color:#494042;} | + | {position: relative;font-size:127%;width:100%;margin:0;padding:0;padding-bottom:10px;background-color:#494042;height:2550px;} |
#content | #content | ||
- | {width: | + | {width: 995px;border:none;background-color:#ffffff;height:2500px;padding:0px;margin-top:0px;line-height: 1.5em;color: black;} |
#top-section | #top-section | ||
{height:2px;border:none;background-color:#494042;} | {height:2px;border:none;background-color:#494042;} | ||
#catlinks | #catlinks | ||
- | { | + | {display:none;} |
#footer-box | #footer-box | ||
{display:none} | {display:none} | ||
#kepala | #kepala | ||
- | {position:absolute;top:15px;background-color:#F0A5BE;height: | + | {position:absolute;top:15px;background-color:#F0A5BE;} |
- | + | #cover | |
- | { | + | {position:absolute;top:0px;height:168px;width:100%;background:#494042;z-index:-1;} |
+ | body, div, dl, dt, dd, ul, ol, li, h1, h4, h6, pre, form, fieldset, p, blockquote, th, td { | ||
+ | margin: 0; | ||
+ | padding: 0; | ||
+ | font-size: 14px; | ||
+ | } | ||
+ | * { | ||
+ | -webkit-box-sizing: border-box; | ||
+ | -moz-box-sizing: border-box; | ||
+ | box-sizing: border-box; | ||
+ | } | ||
+ | div.menu | ||
+ | { | ||
+ | width:100%; | ||
+ | } | ||
+ | .row { | ||
+ | width: 940px; | ||
+ | max-width: 100%; | ||
+ | min-width: 768px; | ||
+ | margin: 0 auto; | ||
+ | |||
+ | } | ||
+ | .row:after { | ||
+ | clear: both; | ||
+ | } | ||
+ | .row:before, .row:after { | ||
+ | content: ""; | ||
+ | display: table; | ||
+ | } | ||
.menu ul,li | .menu ul,li | ||
{ | { | ||
Line 67: | Line 120: | ||
{ | { | ||
float:left; | float:left; | ||
- | width:16. | + | width:16.667%; |
} | } | ||
ul.first>li>a:link,ul.first>li>a:visited | ul.first>li>a:link,ul.first>li>a:visited | ||
Line 114: | Line 167: | ||
top:141px; | top:141px; | ||
width:100%; | width:100%; | ||
+ | z-index:1; | ||
+ | } | ||
+ | #back-top { | ||
+ | position: fixed; | ||
+ | top: 10%; | ||
+ | right: 2%; | ||
+ | } | ||
+ | #back-top a { | ||
+ | width: 108px; | ||
+ | display: block; | ||
+ | text-align: center; | ||
+ | font: 11px/100% Arial, Helvetica, sans-serif; | ||
+ | text-transform: uppercase; | ||
+ | text-decoration: none; | ||
+ | color: #bbb; | ||
+ | /* background color transition */ | ||
+ | -webkit-transition: 1s; | ||
+ | -moz-transition: 1s; | ||
+ | transition: 1s; | ||
+ | } | ||
+ | #back-top a:hover { | ||
+ | color: #ffffff; | ||
+ | } | ||
+ | |||
+ | #back-top span { | ||
+ | width: 65px; | ||
+ | height: 60px; | ||
+ | display: block; | ||
+ | margin-bottom: 7px; | ||
+ | background: #ddd url(up-arrow.png) no-repeat center center; | ||
+ | /* rounded corners */ | ||
+ | -webkit-border-radius: 15px; | ||
+ | -moz-border-radius: 15px; | ||
+ | border-radius: 15px; | ||
+ | /* background color transition */ | ||
+ | -webkit-transition: 1s; | ||
+ | -moz-transition: 1s; | ||
+ | transition: 1s; | ||
+ | } | ||
+ | #back-top a:hover span { | ||
+ | background-color: #777;margin-top:10px; | ||
+ | } | ||
+ | |||
+ | ul.side-nav, ul.side-nav1 { | ||
+ | display: block; | ||
+ | list-style: none; | ||
+ | margin: 0; | ||
+ | padding: 17px 0;font-family:"Trebuchet MS", Helvetica, sans-serif; | ||
+ | } | ||
+ | ul.side-nav h6 { | ||
+ | margin: 47px 0px 0px; | ||
+ | } | ||
+ | ul.side-nav1 h6 { | ||
+ | margin: 0px 0px 0px; | ||
+ | } | ||
+ | ul.side-nav li.divider, ul.side-nav1 li.divider { | ||
+ | border-top: 1px solid #ddd; | ||
+ | } | ||
+ | |||
+ | .two, .row .two { | ||
+ | width: 16.66667%; | ||
+ | top:160px; | ||
} | } | ||
ul, ol { | ul, ol { | ||
- | |||
font-size: 14px; | font-size: 14px; | ||
+ | line-height: 1.6; | ||
} | } | ||
- | + | [class*="column"] + [class*="column"]:last-child { | |
- | + | float: right; | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
} | } | ||
- | + | .ten, .row .ten { | |
- | + | width: 83.33333%; | |
- | + | top:192px; | |
- | + | ||
- | + | ||
- | width: | + | |
- | + | ||
- | + | ||
} | } | ||
- | + | .column, .columns { | |
- | + | float: left; | |
+ | min-height: 1px; | ||
+ | padding: 0 15px; | ||
+ | position: relative; | ||
} | } | ||
+ | .twelve, .row .twelve { | ||
+ | width: 100%; | ||
+ | } | ||
+ | h1, h2, h4, h5, h6 { | ||
+ | font-family:"Trebuchet MS", Helvetica, sans-serif; | ||
+ | font-weight: normal; | ||
+ | color: #000; | ||
+ | border-bottom: none; | ||
+ | |||
+ | |||
+ | h3{font-size:18px;font-family:"Trebuchet MS", Helvetica, sans-serif;} | ||
+ | h5{margin-left:15px;} | ||
+ | |||
+ | } | ||
+ | div.team-bios-container div.row { | ||
+ | padding: 0px 0px 10px; | ||
+ | border-bottom: 1px solid #ddd; | ||
+ | } | ||
+ | .row .row { | ||
+ | width: auto; | ||
+ | max-width: none; | ||
+ | min-width: 0; | ||
+ | margin: 0 -15px; | ||
+ | } | ||
+ | media="screen, projection" | ||
+ | #bodyContent h1, #bodyContent h2 { | ||
+ | margin-bottom: .6em; | ||
+ | } | ||
+ | h1.centered, h2.centered, h3.centered, h4.centered, h5.centered, h6.centered { | ||
+ | text-align: center; | ||
+ | } | ||
+ | h2 { | ||
+ | font-size: 37px; | ||
+ | } | ||
+ | .nine, .row .nine { | ||
+ | width: 100%;font-family:"Trebuchet MS", Helvetica, sans-serif; | ||
+ | } | ||
+ | [class*="column"] + [class*="column"]:last-child { | ||
+ | float: right; | ||
+ | } | ||
+ | .three, .row .three { | ||
+ | width: 25%; | ||
+ | } | ||
+ | #construct{margin-left:30px;} | ||
+ | ul li ul, ul li ol { | ||
+ | margin-left: 20px; | ||
+ | margin-bottom: 0;} | ||
+ | #msk1{margin-left:20px;} | ||
+ | #msk2{margin-left:55px;} | ||
+ | #msk3{margin-left:35px;} | ||
+ | #msk4{margin-left:70px;} | ||
</style> | </style> | ||
- | |||
- | |||
- | |||
+ | <body> | ||
+ | <p id="back-top" style="display:none;"> | ||
+ | <a href="#top"><span><img src="http://515alive.com/theme/img/up-arrow.png" style="width:90%;"><br><br>BACK TO TOP</span></a> | ||
+ | </p> | ||
+ | <a href=https://2013.igem.org/Team:Hong_Kong_HKUST><center><div id="kepala" style="height:121px;width:100%;"><img src="https://static.igem.org/mediawiki/igem.org/c/c7/BANNER1_%281%29.png" style="height:121px;width:100%;align:middle;"></div></center></a> | ||
+ | <div id="cover"></div> | ||
<div class="menu"> | <div class="menu"> | ||
<ul class="first"> | <ul class="first"> | ||
Line 202: | Line 364: | ||
</div> | </div> | ||
- | < | + | <div class="row"> |
+ | <div class="two columns"><br> | ||
+ | <ul class="side-nav"> | ||
+ | <li> | ||
+ | <h6>Mitochondrial Leader Sequence</h6> | ||
+ | </li> | ||
+ | <li class="divider"></li> | ||
+ | <li> | ||
+ | <a href=#introduction>Introduction</a> | ||
+ | </li> | ||
+ | <li> | ||
+ | <a href=#result>Result</a> | ||
+ | </li> | ||
+ | <li> | ||
+ | <a href=#conclusion>Conclusion</a> | ||
+ | </li> | ||
+ | <li> | ||
+ | <a href=#reference>Reference</a> | ||
+ | </li> | ||
+ | |||
+ | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | + | </ul> | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | < | + | <ul class="side-nav1"> |
- | < | + | <li> |
- | < | + | <h6>Characterization</h6> |
- | < | + | </li> |
- | + | <li class="divider"></li> | |
- | <a href="https://2013.igem.org/Team:Hong_Kong_HKUST/characterization/mls">< | + | <li> |
- | < | + | <a href="https://2013.igem.org/Team:Hong_Kong_HKUST/characterization/mls">Mitochondrial Leader Sequence</a> |
+ | </li> | ||
+ | <li> | ||
+ | <a href="https://2013.igem.org/Team:Hong_Kong_HKUST/characterization/cmv">CMV Promoter</a> | ||
+ | </li> | ||
+ | <li> | ||
+ | <a href="https://2013.igem.org/Team:Hong_Kong_HKUST/characterization/ef1a">EF1-alpha Promoter</a> | ||
+ | </li> | ||
+ | |||
+ | </ul> | ||
+ | </div> | ||
- | < | + | <div class="ten columns team-bios-container"> |
- | + | <div class="row" id="ugd-members"> | |
- | + | <div class="twelve columns"> | |
+ | <h2 class="centered">Mitochondrial Leader Sequence</h2> | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <div class="row"> | ||
+ | <div class="nine columns"><p id="introduction"></p> | ||
<h3>Introduction</h3> | <h3>Introduction</h3> | ||
- | <p | + | <p>Mitochondrial Leader Sequence (MLS) helps direct protein to the mitochondria when this peptide sequence is in front of the N-terminus of the protein of interest. MLS will be removed upon the peptide’s translocation into the mitochondria, but four additional amino acid residues (Ile-His-Ser-Leu) will be left at the N-terminus of the protein. The CDS of MLS was cloned out from pCMV/myc/mito (Invitrogen, Carlsbard, CA) using PCR. |
- | + | ||
- | <p | + | This part is in RFC10 standard but cannot be fused directly to other CDS due to limitations in RFC10. Users who obtained this part can extract the part by PCR and fuse to other domains using Splicing by Overlapping PCR. MLS in RFC25 standard (BBa_K1119001) is also submitted to facilitate fusing with other CDS. </p> |
+ | <br> | ||
+ | <p>In our characterization, the CDS of MLS was assembled in frame with that of GFP reporter using Freiburg’s RFC25 format(BBa_K648013). The translation unit was driven by CMV promoter (BBa_K1119006) and terminated by hGH polyA signal (BBa_K404108). | ||
The MLS-GFP generator (BBa_K1119009) was then transfected into HEK293FT cells. Mitochondria were stained after transfection and co-localization was determined by area of signal that overlapped. | The MLS-GFP generator (BBa_K1119009) was then transfected into HEK293FT cells. Mitochondria were stained after transfection and co-localization was determined by area of signal that overlapped. | ||
- | To provide a positive control, CDS of EGFP from pEGFP-N1 (Clontech) was inserted downstream and in frame with the CDS of the MLS in the commercial plasmid pCMV/myc/mito, (Invitrogen, Carlsbard, CA). A negative control was made by GFP generator that does not contains the CDS of MLS (BBa_K1119008). | + | To provide a positive control, CDS of EGFP from pEGFP-N1 (Clontech) was inserted downstream and in frame with the CDS of the MLS in the commercial plasmid pCMV/myc/mito, (Invitrogen, Carlsbard, CA). A negative control was made by GFP generator that does not contains the CDS of MLS (BBa_K1119008). |
The detailed protocol of our characterization can be found in HKUST iGEM 2013 Wiki.</p> | The detailed protocol of our characterization can be found in HKUST iGEM 2013 Wiki.</p> | ||
<br> | <br> | ||
+ | </div> | ||
- | + | </div> | |
- | + | <div class="row"> | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | < | + | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | <div class="row"> | + | |
<div class="nine columns"><p id="result"></p> | <div class="nine columns"><p id="result"></p> | ||
- | <h3>Result</h3 | + | <h3>Result</h3><img src="https://static.igem.org/mediawiki/parts/b/b9/Mlschar_1.jpg" > |
- | <br><p | + | <br><p><b>Figure 1. MLS directs GFP into mitochondria.</b> When MLS is added to the N terminus of GFP, the GFP was directed to the mitochondria in the cells, giving patches of GFP signal that overlapped with the signals from MitoTracker®. When MLS is not added to the GFP, the GFP signal can be seen scattered all around in the cell. Scale bar = 10 microns</p> |
- | + | ||
<br><br><br> | <br><br><br> | ||
- | + | <img src="https://static.igem.org/mediawiki/parts/8/80/Scatterplots_mlsquantification.jpg" style="width:700px;height:268px;"> | |
+ | <br><p><b>Figure 2. Scatter plots of fluorescence intensities of green (y axis) and red (x axis) from images shown in Figure 1</b>. It showed that the BioBrick MLS-GFP and commercial GFP construct had linear relationship of green intensities and red intensities while the GFP generator had no relationship. Pearson's correlation coefficient (rp) and Spearman correlation coefficient (rs) were determined using the Pearson-Spearman correlation colocalization plugin (French et al., 2008) for ImageJ with a threshold of 0 and listed for each image.</p> | ||
+ | <br><br><br> | ||
+ | <img src="https://static.igem.org/mediawiki/parts/c/c2/Barchart_mlsquantification.jpg" > | ||
+ | <br><p><b>Figure 3. Mean Pearson correlation coefficient(rp) and mean Spearman correlation coefficient(rs) were shown in bar chart.</b> Using ImageJ software and plugins, the Pearson correlation coefficient and Spearman correlation coefficient were generated. For every batch of transfected cells, four samples were used for quantification. Experimental BioBrick MLS-GFP and commercial MLS-GFP: Coefficients were close to 1, good colocalization ; GFP: Coefficients were close to 0, poor colocalization. Error bars show standard deviation.</p> | ||
</div> | </div> | ||
</div> | </div> | ||
+ | <div class="row"> | ||
+ | <div class="nine columns"><p id="conclusion"></p> | ||
- | < | + | <h3>Conclusion</h3> |
- | + | ||
- | + | ||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | + | </div> | |
- | + | </div> | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
<div class="row"> | <div class="row"> | ||
<div class="nine columns"><p id="reference"></p> | <div class="nine columns"><p id="reference"></p> | ||
<h3>Reference</h3> | <h3>Reference</h3> | ||
- | + | ||
</div> | </div> | ||
</div> | </div> | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
</body> | </body> | ||
</html> | </html> |
Latest revision as of 16:21, 27 September 2013
-
Mitochondrial Leader Sequence
- Introduction
- Result
- Conclusion
- Reference
-
Characterization
- Mitochondrial Leader Sequence
- CMV Promoter
- EF1-alpha Promoter
Mitochondrial Leader Sequence
Introduction
Mitochondrial Leader Sequence (MLS) helps direct protein to the mitochondria when this peptide sequence is in front of the N-terminus of the protein of interest. MLS will be removed upon the peptide’s translocation into the mitochondria, but four additional amino acid residues (Ile-His-Ser-Leu) will be left at the N-terminus of the protein. The CDS of MLS was cloned out from pCMV/myc/mito (Invitrogen, Carlsbard, CA) using PCR. This part is in RFC10 standard but cannot be fused directly to other CDS due to limitations in RFC10. Users who obtained this part can extract the part by PCR and fuse to other domains using Splicing by Overlapping PCR. MLS in RFC25 standard (BBa_K1119001) is also submitted to facilitate fusing with other CDS.
In our characterization, the CDS of MLS was assembled in frame with that of GFP reporter using Freiburg’s RFC25 format(BBa_K648013). The translation unit was driven by CMV promoter (BBa_K1119006) and terminated by hGH polyA signal (BBa_K404108). The MLS-GFP generator (BBa_K1119009) was then transfected into HEK293FT cells. Mitochondria were stained after transfection and co-localization was determined by area of signal that overlapped. To provide a positive control, CDS of EGFP from pEGFP-N1 (Clontech) was inserted downstream and in frame with the CDS of the MLS in the commercial plasmid pCMV/myc/mito, (Invitrogen, Carlsbard, CA). A negative control was made by GFP generator that does not contains the CDS of MLS (BBa_K1119008). The detailed protocol of our characterization can be found in HKUST iGEM 2013 Wiki.
Result
Figure 1. MLS directs GFP into mitochondria. When MLS is added to the N terminus of GFP, the GFP was directed to the mitochondria in the cells, giving patches of GFP signal that overlapped with the signals from MitoTracker®. When MLS is not added to the GFP, the GFP signal can be seen scattered all around in the cell. Scale bar = 10 microns
Figure 2. Scatter plots of fluorescence intensities of green (y axis) and red (x axis) from images shown in Figure 1. It showed that the BioBrick MLS-GFP and commercial GFP construct had linear relationship of green intensities and red intensities while the GFP generator had no relationship. Pearson's correlation coefficient (rp) and Spearman correlation coefficient (rs) were determined using the Pearson-Spearman correlation colocalization plugin (French et al., 2008) for ImageJ with a threshold of 0 and listed for each image.
Figure 3. Mean Pearson correlation coefficient(rp) and mean Spearman correlation coefficient(rs) were shown in bar chart. Using ImageJ software and plugins, the Pearson correlation coefficient and Spearman correlation coefficient were generated. For every batch of transfected cells, four samples were used for quantification. Experimental BioBrick MLS-GFP and commercial MLS-GFP: Coefficients were close to 1, good colocalization ; GFP: Coefficients were close to 0, poor colocalization. Error bars show standard deviation.