Difference between revisions of "Team:Glasgow/Project/Overview/Bistable"
Line 1: | Line 1: | ||
{{GlasgowNavbar}} | {{GlasgowNavbar}} | ||
<html> | <html> | ||
− | + | <head> | |
− | + | <script type="text/javascript" > | |
− | + | function menuFixed(id){ | |
− | + | var obj = document.getElementById(id); | |
+ | var _getHeight = obj.offsetTop; | ||
+ | |||
+ | window.onscroll = function(){ | ||
+ | changePos(id,_getHeight); | ||
+ | } | ||
+ | } | ||
+ | function changePos(id,height){ | ||
+ | var obj = document.getElementById(id);var windowBottom = $(window).scrollTop() + $(window).innerHeight(); | ||
+ | var scrollTop = document.documentElement.scrollTop || document.body.scrollTop - 150; | ||
+ | var windowBottom = $(window).scrollTop() + $(window).innerHeight(); | ||
+ | var w = window.innerWidth; | ||
+ | if(w>=1024){ | ||
+ | if($(window).scrollTop() + $(window).height() > $(document).height() - 500){ | ||
+ | $('#sidebar').fadeOut("fast");}else{$('#sidebar').fadeIn("fast");} | ||
+ | } | ||
+ | if(scrollTop < height){ obj.style.position = 'relative'; | ||
+ | }else{ | ||
+ | obj.style.position = 'fixed'; | ||
+ | } | ||
+ | } | ||
+ | </script> | ||
+ | |||
+ | <script type="text/javascript"> | ||
+ | window.onload = function(){ | ||
+ | menuFixed('sidebar'); | ||
+ | } | ||
+ | </script> | ||
+ | |||
+ | <script type="text/javascript"> | ||
+ | // 收缩展开效果 | ||
+ | $(document).ready(function(){ | ||
+ | // $(".box h5").toggle(function(){ | ||
+ | // $(this).next(".text").animate({height: 'toggle', opacity: 'toggle'}, "slow"); | ||
+ | // },function(){ | ||
+ | //$(this).next(".text").animate({height: 'toggle', opacity: 'toggle'}, "slow"); | ||
+ | //}); | ||
+ | $("div.text").hide();//默认隐藏div,或者在样式表中添加.text{display:none},推荐使用后者 | ||
+ | $(".box h5").click(function(){ | ||
+ | $(this).next(".text").slideToggle("slow"); | ||
+ | }) | ||
+ | }); | ||
+ | </script> | ||
+ | <style> | ||
+ | .firstHeading { | ||
+ | display:none; | ||
} | } | ||
− | + | figcaption { | |
+ | color: #666666; | ||
+ | font-size: 0.7em; | ||
+ | font-style: italic; | ||
+ | font-family: 'Noto Sans', sans-serif; | ||
+ | margin-bottom: 15px; | ||
+ | } | ||
#content { | #content { | ||
width:auto; | width:auto; | ||
Line 12: | Line 63: | ||
padding:0px 0px 0px 0px; | padding:0px 0px 0px 0px; | ||
border:none; | border:none; | ||
− | + | } | |
− | + | * { | |
− | } | + | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
padding:0; | padding:0; | ||
margin:0; | margin:0; | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
} | } | ||
+ | .banner { | ||
+ | height:55vh; | ||
+ | top:0; | ||
+ | background-color:black; | ||
+ | } | ||
h1 { | h1 { | ||
− | + | color:white; | |
− | margin: | + | margin-top:15vh; |
− | + | margin-left: 20vw; | |
+ | position:absolute; | ||
+ | font-size: 4em; | ||
} | } | ||
− | . | + | .links { |
− | + | margin-top: 5vh; | |
− | margin: | + | text-decoration:none; |
+ | color:blue; | ||
+ | margin-left:5vw; | ||
+ | } | ||
+ | |||
+ | |||
+ | .containerRight { | ||
+ | width:70vw; | ||
text-align: justify; | text-align: justify; | ||
+ | background-color:white; | ||
+ | margin-left: 25vw; | ||
+ | /*float: right;*/ | ||
+ | } | ||
+ | |||
+ | div h2 { | ||
+ | text-align: center; | ||
+ | margin-bottom: 8vh; | ||
+ | margin-top:5vh; | ||
} | } | ||
+ | /* | ||
+ | .leftContainer { | ||
+ | width:22vw; | ||
+ | float:left; | ||
+ | height:100%; | ||
+ | text-align: center; | ||
+ | background-color:white; | ||
+ | }*/ | ||
+ | |||
+ | table { | ||
+ | margin-top:15vh; | ||
+ | border-radius: 10%; | ||
+ | margin-left:7.5vw; | ||
+ | float:left; | ||
+ | text-align:center; | ||
+ | } | ||
+ | |||
+ | td { | ||
+ | padding:0.8vw; | ||
+ | cursor:pointer; | ||
+ | margin-top: 4vh; | ||
+ | color:deepskyblue; | ||
+ | } | ||
+ | |||
+ | td:hover { | ||
+ | margin-top: 4vh; | ||
+ | background-color: deepskyblue; | ||
+ | color:white; | ||
+ | } | ||
+ | |||
+ | .fixed { | ||
+ | position: fixed; | ||
+ | top:5vh; | ||
+ | |||
+ | } | ||
+ | |||
+ | .final { | ||
+ | top: 230vh; | ||
+ | position:relative; | ||
+ | } | ||
+ | |||
.monster { | .monster { | ||
Line 52: | Line 154: | ||
.monsterContainer { | .monsterContainer { | ||
− | width: | + | width:70vw; |
height:50vh; | height:50vh; | ||
margin:10vh auto; | margin:10vh auto; | ||
text-align: justify; | text-align: justify; | ||
+ | margin-bottom: 10vh; | ||
} | } | ||
Line 75: | Line 178: | ||
color: white; | color: white; | ||
position:absolute; | position:absolute; | ||
− | bottom: | + | bottom:5%; |
left: 5%; | left: 5%; | ||
width:100%; | width:100%; | ||
Line 96: | Line 199: | ||
opacity:1 | opacity:1 | ||
} | } | ||
− | + | h5{ | |
− | + | text-align:center; | |
− | + | font-size:18px; | |
− | + | ||
− | + | ||
− | + | ||
} | } | ||
− | + | ||
− | + | .text{line-height:22px;padding:0 6px;} | |
− | + | .box h5{padding-top:0px;font-weight:bold;cursor: pointer;} | |
− | + | .box{position:relative;border:1px solid #e7e7e7;background-color:#C1EAFF;} | |
− | + | figcaption { | |
− | + | color: #666666; | |
− | + | font-size: 0.7em; | |
− | + | font-style: italic; | |
− | + | font-family: 'Noto Sans', sans-serif; | |
− | + | margin-bottom: 15px; | |
− | + | } | |
− | + | </style> | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | } | + | |
− | . | + | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | } | + | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | } | + | |
− | </style> | + | |
</head> | </head> | ||
Line 478: | Line 437: | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
</div> | </div> | ||
</div> | </div> | ||
+ | <script> | ||
− | + | ||
− | + | $('.overview').click(function() { | |
− | + | $('html, body').animate({ scrollTop: $('.scrollOverview').offset().top}, 1000); | |
− | + | }); | |
− | $( | + | |
− | $('. | + | $('.sensor').click(function() { |
− | + | $('html, body').animate({ scrollTop: $('.scrollSensor').offset().top}, 1000); | |
− | + | }); | |
− | + | ||
− | + | $('.survivability').click(function() { | |
− | + | $('html, body').animate({ scrollTop: $('.scrollSurvivability').offset().top}, 1000); | |
− | + | }); | |
− | }); | + | |
+ | $('.conclusion').click(function() { | ||
+ | $('html, body').animate({ scrollTop: $('.scrollConclusion').offset().top}, 1000); | ||
+ | }); | ||
+ | |||
+ | $('.results').click(function() { | ||
+ | $('html, body').animate({ scrollTop: $('.scrollResults').offset().top}, 1000); | ||
+ | }); | ||
+ | |||
+ | $('.top').click(function() { | ||
+ | $('html, body').animate({ scrollTop: $('.scrollTop').offset().top}, 1000); | ||
}); | }); | ||
− | </script> | + | </script> |
+ | <script type="text/javascript"> | ||
+ | var x = $('.links').offset().top; | ||
+ | $(window).scroll(function() { | ||
+ | if ($(this).scrollTop() > x) { | ||
+ | $('table').addClass("fixed"); | ||
+ | } | ||
+ | |||
+ | |||
+ | else { | ||
+ | $('table').removeClass("fixed"); | ||
+ | } | ||
+ | }); | ||
+ | |||
+ | </script> | ||
</body> | </body> |
Revision as of 03:37, 19 September 2015
Home > Project > Repressors
Summary
Aim: To test the function of the SrpR and PhlF repressor proteins using GFP and RFP reporter genes. To demonstrate the utility of these two repressors by building a classic Synthetic Biology genetic circuit; a bistable switch in which each repressor represses the expression of the other. Results Overview: Our results indicate that SrpR (K1725060) is expressed, rather than PhlF (K1725040), in both versions of the bistable switch we built (K1725100 and K1725101). We have not yet added a way to flip the switch from one state to the other. Parts Submitted: • BBa_K1725043 - PhlF repressible promoter drives the expression of srpr repressor with B0032 RBS and B0010+ terminator • BBa_K1725063 - SrpR repressible promoter drives the expression of phlf repressor with B0032 RBS and B0010+ terminator • BBa_K1725100 - SrpR repressible promoter drives the expression of phlf repressor with B0032 RBS and B0010+ terminator and PhlF repressible promoter drives the expression of srpr repressor with B0032 RBS and B0010+ terminator • BBa_K1725101 - PhlF repressible promoter drives the expression of srpr repressor with B0032 RBS and B0010+ terminator and SrpR repressible promoter drives the expression of phlf repressor with B0032 RBS and B0010+ terminator • BBa_K1725102 - SrpR repressible promoter driving the expression of RFP with B0030 RBS and B0015 terminator • BBa_K1725103 – SrpR repressible promoter driving the expression of RFP with B0030 RBS and B0015 terminator and PhlF repressible promoter RBS driving GFP expression with B0032 RBS
Introduction
A bistable switch is composed of two repressor proteins and the promoters they repress. (for a more detailed explanation of how these transcriptional repressors function, see our page ). The system is set up so that each repressor inhibits the promoter that is used to transcribe the other repressor, as shown in figure 1. (Gardner et al, 2000). The system can therefore fall into two different stable states. If repressor 1 is on, it turns off repressor 2 so that repressor 1 continues to be expressed. If repressor 2 is on, the opposite happens. In addition it is useful to have inducer chemicals that interact with the repressor proteins, preventing their association with their operator sequence and preventing repression. Adding the appropriate inducer can switch which repressor is expressed – changing the state of the switch. It has been shown that bistable switches can maintain their state for a long time, without changing spontaneously unless one of the inducers is added. This type of switch has been utilised to develop bacteria of the gut microbiome with memory that can be used in diagnostics by recording and reporting changes in the environment of an organism. (Kotula et al, 2013)
Methods
E. colistrain used: DH5α. Biobricks that used and assembled in plasmids for the bistable switch are shown below. • BBa_K1725000 – PhlF repressible promoter (Pphlf) • BBa_K1725002 – PhlF repressible promoter driving GFP expression with B0032 RBS • BBa_K1725020 – SrpR repressible promoter (Psrpr) • BBa_K1725041 – Phlf repressible promoter with B0032 RBS and B0010+ terminator • BBa_K1725043 – PhlF repressible promoter drives the expression of srpr repressor with B0032 RBS and B0010+ terminator • BBa_K1725061 – srpr repressor with B0032 RBS and B0010+ terminator • BBa_K1725063 – SrpR repressible promoter drives the expression of phlf repressor with B0032 RBS and B0010+ terminator • BBa_K1725100 – SrpR repressible promoter drives the expression of phlf repressor with B0032 RBS and B0010+ terminator and PhlF repressible promoter drives the expression of srpr repressor with B0032 RBS and B0010+ terminator • BBa_K1725101 – PhlF repressible promoter drives the expression of srpr repressor with B0032 RBS and B0010+ terminator and SrpR repressible promoter drives the expression of phlf repressor with B0032 RBS and B0010+ terminator • BBa_K1725102 – SrpR repressible promoter driving the expression of RFP with B0030 RBS and B0015 terminator • BBa_K1725103 – SrpR repressible promoter driving the expression of RFP with B0030 RBS and B0015 terminator and PhlF repressible promoter RBS driving GFP expression with B0032 RBS The above biobricks were tested by restriction digests to confirm their sequence. First we had to show that the GFP/RFP reporter plasmid (K1725103) in pSB3K3 with the two promoters expresses both GFP and RFP when there are no repressors present. The plasmid was transformed into DH5α and scanned to detect fluorescence. Then we had to test that each of the repressors in K1725043 and K1725063 work normally, and that one turns off the GFP and the other turns off the RFP of the reporter plasmid. We therefore transformed each plasmid in pSB1C3 containing one of the repressors into DH5α cells with the reporter plasmid. The colonies were scanned for GFP and RFP detection. After testing PhlF and SrpR repressors individually, we had to test both repressors with the GFP/RFP reporter plasmid. We transformed both versions of the bistable switch (K1725100 and K1725101) in pSB1C3 into DH5α cells already containing the reporter plasmid. Fluorescence scans followed to reveal which of the promoters is expressed. For the fluorescence scanning, the Typhoon scanner was used. Green fluorescence was detected using channel 1 (lager 473nm; filter BPB1; PMT 450V) and red fluorescence from channel 2 (lager 532nm; filter LPG; PMT 450V). BPB1 was at 530nm (+/- 20) and CPG at >575nm. The protocols followed for the experiments, including the production of CaCl2 competent cells, transformation, plasmid preparation, restriction digest, gel electrophoresis, ethidium bromide and Azure A staining, gel extraction, and ligation, are available on our Protocols page.
Results
Our reporter plasmid, K1725103 in pSB3K3, carries the gfp gene expressed from the PphlF promoter and rfp expressed from the PsrpR promoter. This plasmid was introduced into DH5α cells and colonies were scanned for expression of GFP and RFP (fig 3). In the absence of any repressor all the colonies expressed both GFP and RFP and are yellow when the red and green images were overlaid (Figure 3d) Controls were done with plasmids expressing no GFP or RFP (K1725083) (Figure 3a) , just GFP from the PphlF promoter (K1725002) (Figure 3b) or just RFP from the PsrpR promoter (K1725102) (Figure 3c), showing that the scanner was correctly detecting GFP and RFP, and that our reporter plasmid expresses both fluorescent proteins in the absence of any repressors.
Conclusion
New Basic Parts, BBa_K1725000 (PhlF repressible promoter), BBa_K1725020 (SrpR repressible promoter), and BBa_K1725040 (phlF encoding PhlF repressor) were successfully characterised, and submitted to the iGEM registry. BBa_K1725060 – (srpR encoding SrpR repressor) was characterised on our Bistable Switch page. K1725000 drives expression of GFP in the BioBricks K1725001 and K1725002, and is significantly stronger than our control promoter, R0040. K1725020 drives expression of GFP in the BioBricks K1725021 and K1725022, and is of equivalent strength to our control promoter, R0040, when both were coupled with the strong Ribosome Binding Site, B0034. K1725040 successfully represses K1725000 driven GFP expression 83-fold, and does not repress promoters K1725020 or R0040. The next steps in characterisation of our repressor BioBricks would be to construct the BioBrick K1725062 (by insertion of the lacI regulated promoter, K1725080, upstream of K1725061, in order to express the repressor protein) then to repeat our fluorescence experiments to characterise K1725060 further. Additionally, GFP purifed from E. coli would be used in place of iLOV fluorescent protein to calibrate the Typhoon FLA 9000, so the molecules of GFP per cell calculations would give a value closer to an absolute value for fluorescence.
References
Abbas, A., Morrissey, J.P., Marquez, P.C., Sheehan, M.M., Delany, I.R., and O’Gara, F. (2002). Characterization of Interactions between the Transcriptional Repressor PhlF and Its Binding Site at the phlA Promoter in Pseudomonas fluorescens F113. J. Bacteriol. 184, 3008–3016. Alberts et al (2008). Molecular Biology of the Cell (Garland Science, Taylor and Francis Group). Chapter 7, p337-434 Buckley, A. Petersen, J. Roe, A. Douce, G. Christie, J. (2015). LOV-based reporters for fluorescence imaging. Current Opinion in Chemical Biology. 27 (1), p39–45. Sheehan, M.M., Delany, I., Fenton, A., Bardin, S., O’Gara, F., and Aarons, S. (2000). Regulation of production of the antifungal metabolite 2,4-diacetylphloroglucinol in Pseudomonas fluorescens F113: genetic analysis of phlF as a transcriptional repressor. Microbiology 146, 537–546. Stanton, B.C., Nielsen, A.A.K., Tamsir, A., Clancy, K., Peterson, T., and Voigt, C.A. (2014). Genomic mining of prokaryotic repressors for orthogonal logic gates. Nat. Chem. Biol. 10, 99–105. Sun, X., Zahir, Z., Lynch, K.H., and Dennis, J.J. (2011). An Antirepressor, SrpR, Is Involved in Transcriptional Regulation of the SrpABC Solvent Tolerance Efflux Pump of Pseudomonas putida S12. J. Bacteriol. 193, 2717–2725. Wery, J., Hidayat, B., Kieboom, J., and Bont, J.A.M. de (2001). An Insertion Sequence Prepares Pseudomonas putida S12 for Severe Solvent Stress. J. Biol. Chem. 276, 5700–5706.