Team:Lyon-INSA/notebook
From 2012.igem.org
(Difference between revisions)
Line 3: | Line 3: | ||
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" xmlns:fb="https://www.facebook.com/2008/fbml" > | <html xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" xmlns:fb="https://www.facebook.com/2008/fbml" > | ||
- | <script> | + | <script> |
- | var globalDay; | + | var globalDay; |
- | var globalMonth | + | var globalMonth; |
- | + | ||
- | + | /* MODIF LUCAS */ | |
- | + | ||
- | + | ||
+ | $(document).ready(function(){ | ||
+ | $("#noteBookTextContent").tinyscrollbar(); | ||
+ | $("#p-logo").find("img").attr("src","none"); | ||
- | + | //initialisation au chargement de la page | |
- | + | selectMonth($(".month:eq(0)").text(),"asc"); | |
- | + | $("#monthDays ul li").has("a").eq(0).addClass("selected"); | |
- | $( | + | $(".month").click(function(){ |
- | $( | + | selectMonth($(this).text(),"asc"); |
- | $("# | + | $("#noteBookTextContent").tinyscrollbar_update(); |
+ | $(".textContent").transition({perspective: '500px',rotateX: '+=360deg'},700); | ||
+ | }); | ||
- | + | $("#jourPrecedent").click(function(){ | |
+ | $(".textContent").transition({perspective: '500px',rotateY: '+=360deg'},700); | ||
+ | switchDay(globalMonth,globalDay - 1); | ||
+ | $("#noteBookTextContent").tinyscrollbar_update(); | ||
+ | }); | ||
- | + | $("#jourSuivant").click(function(){ | |
- | $("# | + | $(".textContent").transition({ |
- | + | perspective: '400px',rotateY: '-=360deg' | |
- | + | },700); | |
- | + | switchDay(globalMonth,globalDay + 1); | |
- | + | $("#noteBookTextContent").tinyscrollbar_update(); | |
- | + | }); | |
- | + | ||
- | + | ||
- | + | ||
- | $(".textContent").transition({ | + | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | $("#noteBookTextContent").tinyscrollbar_update(); | + | |
- | }); | + | |
- | }); | + | }); |
- | function selectMonth(month_name,type) | + | //fonction appelé lorsque l'on clique sur un jour (anime le texte et change les données affichées) |
- | { | + | function selectDayAnimate(month_name,day, useDayNumber, dayLink) { |
+ | $(".textContent").fadeOut('fast', function() { | ||
+ | switchDay(month_name, day, useDayNumber); | ||
+ | }).fadeIn(); | ||
+ | $("#monthDays .selected").removeClass("selected"); | ||
+ | $(dayLink).parent().addClass("selected"); | ||
+ | $("#noteBookTextContent").tinyscrollbar_update(); | ||
+ | } | ||
+ | |||
+ | function selectMonth(month_name,type) | ||
+ | { | ||
- | + | $(".textContent").text(""); | |
- | + | var xmlDoc=document.getElementById("xmldata") | |
- | + | var day=0; | |
- | + | var monthIndex = -1; | |
- | + | var x=xmlDoc.getElementsByTagName("month"); | |
- | + | for (i=0;i<x.length;i++) | |
- | + | { | |
- | + | if (x[i].getAttribute("name")==month_name) | |
- | + | { | |
- | + | if (type=="desc") | |
- | + | { | |
- | + | day=x[i].getElementsByTagName("jour").length-1; | |
- | + | } | |
+ | var jour=x[i].getElementsByTagName("jour"); | ||
$(".textContent").append("<div class='dateExp'></div>"); | $(".textContent").append("<div class='dateExp'></div>"); | ||
$(".dateExp").append(jour[day].getElementsByTagName("date")[0].childNodes[0].nodeValue); | $(".dateExp").append(jour[day].getElementsByTagName("date")[0].childNodes[0].nodeValue); | ||
Line 77: | Line 78: | ||
$("#descExp"+j).append(jour[day].getElementsByTagName("description")[j].innerHTML); | $("#descExp"+j).append(jour[day].getElementsByTagName("description")[j].innerHTML); | ||
} | } | ||
+ | monthIndex = i; | ||
+ | } | ||
+ | } | ||
+ | //initialisation de la liste de jour pour le mois selectionné | ||
+ | var dayCounter = 1; | ||
+ | if (monthIndex != -1) { | ||
+ | var monthSize = parseInt(x[monthIndex].getAttribute("size")); | ||
+ | $("#monthDays ul").children().remove(); | ||
+ | for (j=0;j<jour.length;j++) { | ||
+ | var xmlDayNumber = jour[j].getAttribute("nb"); | ||
+ | if (xmlDayNumber != null && dayCounter <= monthSize) { | ||
+ | // nombre seul | ||
+ | while(dayCounter != xmlDayNumber && dayCounter != monthSize + 1) { | ||
+ | $("#monthDays ul").append("<li>"+ dayCounter +"</li>"); | ||
+ | dayCounter++; | ||
+ | } | ||
+ | //nombre avec un lien | ||
+ | $("#monthDays ul").append("<li><a href='#' onClick='selectDayAnimate(\""+ month_name + "\", " + xmlDayNumber + ", true, this);" | ||
+ | |||
+ | + "return false;'>" | ||
+ | + xmlDayNumber +"</a></li>"); | ||
+ | dayCounter++; | ||
+ | } else { | ||
+ | $("#monthDays ul").append("<li>"+ dayCounter +"</li>"); | ||
+ | dayCounter++; | ||
+ | } | ||
+ | } | ||
+ | while(dayCounter != (monthSize + 1) ) { | ||
+ | $("#monthDays ul").append("<li>"+ dayCounter +"</li>"); | ||
+ | dayCounter++; | ||
+ | } | ||
+ | } | ||
+ | else { | ||
+ | //le mois m'existe pas dans le xml, la liste n'a pas de liens | ||
+ | $("#monthDays ul").children().remove(); | ||
+ | while(dayCounter != 32) { | ||
+ | $("#monthDays ul").append("<li>"+ dayCounter +"</li>"); | ||
+ | dayCounter++; | ||
+ | } | ||
+ | } | ||
- | + | globalDay=day; | |
- | + | globalMonth=month_name; | |
- | + | } | |
- | + | ||
- | } | + | |
- | function | + | //fusion de previousday et nextday dans une seule fonction |
- | { | + | //day peut etre l'index du jour dans le xml (utilisation de previous/next) |
- | + | //ou le numéro du jour directement (indiqué par useDayNumber) | |
- | + | function switchDay(month_name,day, useDayNumber) | |
- | + | { | |
- | + | $(".textContent").html(""); | |
- | + | var xmlDoc=document.getElementById("xmldata") | |
- | + | var x=xmlDoc.getElementsByTagName("month"); | |
- | + | for (i=0;i<x.length;i++) | |
- | + | { | |
- | + | if (x[i].getAttribute("name")==month_name) | |
- | + | { | |
- | + | var foundDay = false; | |
+ | var jour=x[i].getElementsByTagName("jour"); | ||
+ | if (useDayNumber) { | ||
+ | //parcours des jours | ||
+ | for (var j = 0; j < jour.length; j++) { | ||
+ | |||
+ | if (day == jour[j].getAttribute("nb")) { | ||
+ | foundDay = true; | ||
+ | changeNote(jour[j]); | ||
+ | globalDay=j; | ||
- | + | } | |
- | + | } | |
+ | } | ||
+ | else if (jour.length > day) { | ||
+ | //utilisation de day comme un index sur le xml | ||
+ | foundDay = true; | ||
+ | changeNote(jour[day]); | ||
+ | globalDay = day; | ||
+ | } | ||
+ | if (!foundDay) { | ||
- | + | var monthIndexToTest = 0; | |
- | { | + | var actionType; |
- | + | if (day - globalDay > 0) { | |
- | + | //day bigger so going to next month | |
- | + | monthIndexToTest = i + 1; | |
- | + | actionType = "asc"; | |
- | } | + | } |
+ | else { | ||
+ | //day smaller so going to previous month | ||
+ | monthIndexToTest = i - 1; | ||
+ | actionType = "desc"; | ||
+ | } | ||
+ | if (monthIndexToTest<x.length) | ||
+ | { | ||
+ | if (x[monthIndexToTest].getElementsByTagName("jour").length>0) { | ||
+ | selectMonth(x[monthIndexToTest].getAttribute("name"),actionType); | ||
+ | } | ||
+ | else | ||
+ | { | ||
+ | globalDay=x[i].getElementsByTagName("jour").length; | ||
+ | } | ||
+ | } | ||
+ | else | ||
+ | { | ||
+ | globalDay=x[i].getElementsByTagName("jour").length; | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | //change du texte lors de la selection d'un jour | ||
+ | function changeNote(xmlDayNode) { | ||
+ | $(".textContent").append("<div class='titreExp'></div>"); | ||
+ | $(".titreExp").append(xmlDayNode.getElementsByTagName("titre")[0].childNodes[0].nodeValue); | ||
+ | $(".textContent").append("<div class='dateExp'></div>"); | ||
+ | $(".dateExp").append(" - " + xmlDayNode.getElementsByTagName("date")[0].childNodes[0].nodeValue); | ||
+ | $(".textContent").append("<div class='descExp'></div>"); | ||
- | + | $(".descExp").append(xmlDayNode.getElementsByTagName("description")[0].innerHTML); | |
- | + | ||
} | } | ||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | + | /* //MODIF LUCAS */ | |
- | + | </script> | |
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | < | + | </p><div id="projectBar" class="menuBar"> |
+ | <div class="boutonMenu" onclick="window.location='menu';">Menu</div> | ||
+ | <div id="ongletBar"> | ||
+ | <div class="boutonOnglet" onclick="window.location='project';">Project description</div> | ||
+ | <div class="boutonOnglet" onclick="window.location='modelling';">Modelling</div> | ||
+ | <div class="boutonOnglet" onclick="window.location='safety';">Safety</div> | ||
+ | <div class="boutonOnglet BOClicked">Notebook</div> | ||
+ | <div class="boutonOnglet" onclick="window.location='protocol';">Protocol</div> | ||
+ | <div class="boutonOnglet" onclick="window.location='datapage';">Data Page</div> | ||
+ | </div> | ||
+ | </div> | ||
+ | <div id="bandeau"></div> | ||
+ | <div id="xml" style="display:none;"> | ||
+ | <xml id="xmldata" style="display:none;"> | ||
+ | <!--?xml version="1.0" encoding="ISO-8859-1"?--> | ||
+ | <!-- Edited by XMLSpy --> | ||
+ | <project> | ||
+ | <month name="July" size="31"> | ||
+ | <jour nb="2"> | ||
+ | <titre>For all purposes</titre> | ||
+ | <date> Monday, July 2nd 2012</date> | ||
+ | <description>Liquid culture (5 mL LB media) of NM 522 cells and overnight incubation under agitation at 37°C for later transformations.</description> | ||
+ | </jour> | ||
+ | <jour nb="3"> | ||
+ | <titre>For all purposes</titre> | ||
+ | <date> Tuesday, July 3rd 2012</date> | ||
+ | <description><p>Dilution of 100 µL saturated culture in 5 mL LB media. </p><br> | ||
+ | <p>Incubation time : 2 hours (until O.D =0,3). </p><br> | ||
+ | Transformation of the NM 522 strain (this experiment was made 3 times) <br> | ||
- | + | For the positive control the pSB1C3 plasmid was used ; | |
- | + | For the transformation, the pBBA_I742123 was used (well A2, 5th iGEM kit plate) | |
- | + | The transformed bacteria were selected on chloramphenicol plates. | |
- | + | </description> | |
- | + | </jour> | |
- | + | <jour nb="4"> | |
- | + | <titre>For all purposes</titre> | |
- | + | <date> Wednesday, July 4th 2012</date> | |
- | + | <description> | |
- | + | Transformation analysis:<br><br> | |
- | < | + | <ul> |
- | < | + | <li>Positive control: lots of colonies</li> |
- | < | + | <li>Negative control: one of the three negative controls was contaminated (the correspondent transformed colonies were not used). No colonies were observed on the other two negative control plates.</li> |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | <li>Test plate: between 1 and 8 were observed.</li></ul> | |
- | + | <br> | |
- | + | 4 liquid cultures (5mL LB media + 50 µL chloramphenicol) and 4 streaked chloramphenicol plates were made using isolated colonies likely to contain transformed bacteria.<br><br> | |
- | </ | + | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | The antibiotic resistance (Ampicillin, Tetracyclin, Chloramphenicol and Kanamycin ) of the following strains was tested: BS 168, BS 168 MCherry, BS 168 GFP, BS 168 Lysostaphine, Staphylococcus epidermidis, BS Abrb. | |
+ | </description> | ||
+ | </jour> | ||
+ | <jour nb="5"> | ||
+ | <titre>For all purposes</titre> | ||
+ | <date> Thursday, July 5th 2012</date> | ||
+ | <description> | ||
- | + | Antibiotics resistance tests :<br><br> | |
- | < | + | <ul> |
- | + | <li>Bs 168 : no resistance</li> | |
- | + | <li>Bs 168 M cherry : no resistance</li> | |
- | < | + | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | <li>Bs 168 GFP : no resistance</li> | |
- | + | ||
- | + | ||
- | + | <li>Bs abrB : Cm resistant</li> | |
- | + | <li>Bs 168 lysostaphine PWG100 : no resistance</li> | |
- | + | <li>S. Epidermidis : Tet resistant</li> | |
+ | </ul> | ||
+ | <br> | ||
+ | Extraction of 4 clones containing the pBBA_I742123 plasmid. Verification by gel electrophoresis (after EcoR1 digestion) | ||
- | + | </description> | |
+ | </jour> | ||
+ | <jour nb="6"> | ||
+ | <titre>For all purposes</titre> | ||
+ | <date> Friday, July 6th 2012</date> | ||
+ | <description> | ||
- | + | Telephonic conference with Romain Briandet<br><br> | |
- | + | ||
- | <br | + | |
- | + | ||
- | < | + | Terminator was retrieved from the plate 1 well 13D<br><br> |
- | + | Long meeting | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | </description> | |
+ | </jour> | ||
+ | <jour nb="9"> | ||
+ | <titre>For all purposes</titre> | ||
+ | <date> Monday, July 9th 2012</date> | ||
+ | <description> | ||
+ | <ul> | ||
+ | <li>pBBa_I742123 was put in storage (under the reference pBK1);</li> | ||
- | + | <li>a liquid culture of NM522/pBK1 transformed cells was made so we could extract more plasmid DNA (50 mL LB media + 500 µL Cloramphenicol + 500 µL liquid culture of transformed bacteria );</li> | |
- | + | ||
- | < | + | <li>we had the 3 genes coding for lysostaphin, dispersin and lacI repressor in pUC57 Ampicillin resistant plasmid delivered;</li> |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | <li>transformation of NM522 strain with pUC57-Lyso, pUC57-Disp and pUC57-sfp;</li> | |
- | + | <li>200 µL of each transformed strains were spread on LB media Ampicillin resistant plates | |
+ | liquid cultures of the following strains were made: Bs 168 in BL, Bs abrB in BL media supplemented with Chloramphenicol, S. epidermidis in BL media supplemented with Tetracyclin</li></ul> | ||
- | + | </description> | |
+ | </jour> | ||
+ | <jour nb="10"> | ||
+ | <titre>For all purposes</titre> | ||
+ | <date> Tuesday, July 10th 2012</date> | ||
+ | <description> | ||
+ | the following parts were put in storage: | ||
+ | <ul> | ||
+ | <li>Lysostaphin in pUC57 Amp resistant (pBK2);</li> | ||
- | + | <li>Dispersin in pUC57 Amp resistant (pBK3);</li> | |
- | + | ||
- | + | <li>Surfactin part 2 (RBS-lacI-terminator) dans pUC57 Amp resistant (pBK4)</li> | |
- | + | </ul> | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | and the following strains: | |
+ | <ul> | ||
+ | <li>S epi on BL + Tet (BK1)</li> | ||
- | + | <li>Bs abrB on BL + Cm (BK2)</li> | |
- | + | ||
- | + | <li>Bs 168 on BL (BK3)</li> | |
- | <ul> | + | </ul> |
- | + | ligation of Dispersin and Lysostaphin biobricks: | |
+ | <ul> | ||
+ | <li>digestion of pBK2 with the restriction enzymes EcoRI and SpeI;</li> | ||
- | + | <li>digestion of pBK3 with the restriction enzymes PstI and XbaI;</li> | |
- | + | <li>digestion of pBK4 with the restriction enzymes EcoRI and PstI;</li> | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | <li>3A ligation of the digested parts;</li> | |
- | + | <li>electrophoresis control showed the expected fragment for lysostaphin and dispersin (2,1 kb). However, the digested backbone plasmid had 3 fragments instead of 2.<br> | |
+ | <strong>Plasmid A2 extraction with a midiprep (pBK5) and digestion → 3 stripes are observed : PROBLEM. Digestion is made again with E, P and E+P → There are 2 Pst1 sites !!! WRONG PLASMID</strong></li> | ||
- | + | <li>transformation of NM522 strain with the part BBa_K606061 Chloramphenicol resistant;</li> | |
- | + | <li>transformation of NM522 strain with the part BBa_B0010 Ampicillin resistant;</li> | |
- | + | ||
- | + | <li>transformation of NM522 strain with the part BBa_K606040 Chloramphenicol resistant;</li> | |
+ | <li>design and order of the primers for the constitutive promotor (part BBa_K143012)</li> | ||
+ | </ul> | ||
+ | </description> | ||
+ | </jour> | ||
+ | <jour nb="11"> | ||
+ | <titre>For all purposes</titre> | ||
+ | <date> Wednesday, July 11th 2012</date> | ||
+ | <description> | ||
+ | <ul> | ||
+ | <li>Extraction of part BBa_K606061 (RBS) Chloramphenicol resistant from transformed NM522 strain;</li> | ||
+ | <li>Extraction of part BBa_B0010 (terminator) Ampicillin resistant from transformed NM522 strain; <i>(nb : the clones were pink which means that the part contains a RFP gene)</i></li> | ||
+ | <li>Extraction of part BBa_K606040 (pLacI) from transformed NM522 strain;</li> | ||
+ | <li>Extraction of pUC57-Lyso/pUC57-Disp/pUC57-lacI from transformed NM522 strains;</li> | ||
+ | <li>Transformation of NM522 strain with the part BBa_0010 Ampicillin resistant. The observed phenotype does not correspond to the description found in the registry (the colour of the colonies is pink). We decided to make another transformation with the same part, only this time the 2011 kit was used.</li> | ||
+ | </ul> | ||
+ | </description> | ||
+ | </jour> | ||
- | + | <jour nb="12"> | |
+ | <titre>For all purposes</titre> | ||
+ | <date> Thursday, July 12th 2012</date> | ||
+ | <description> | ||
+ | <ul> | ||
+ | <li>PCR product electrophoresis of Promoter PCR : the product is not the good one.</li> | ||
+ | <li>Reception and storage of the primers (for the amplification of the BBa_K143012 part);</li> | ||
+ | <li>The transformed NM522 strain with the part BBa_0010 Ampicillin resistant from the 2011 iGEM kit shows the same phenotype as the part found in the 2012 kit;</li> | ||
+ | <li>Extractions with a miniprep kit are made : | ||
+ | <ul> | ||
+ | <li>4 clones containing the pLac promotor (1,2,3,4)</li> | ||
+ | <li>4 clones containing the Bacillus subtilis RBS (1,2,3,4)</li> | ||
+ | <li>3 clones containing theTerminator 1,2,3</li> | ||
+ | <li>4 clones containing the gene for Dispersin</li> | ||
+ | <li>4 clones containing the gene for Lysostaphin</li> | ||
+ | <li>4 clones containing the gene for lacI</li> | ||
+ | </ul> | ||
+ | Then a digestion is made on a 0.7% agarose gel.</li> | ||
- | + | </ul> | |
- | + | </description> | |
- | + | </jour> | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | </ul> | + | |
- | </description> | + | |
- | + | ||
- | <jour> | + | <jour nb="13"> |
- | + | <titre>Kill</titre> | |
- | + | <date> Friday, July 13th 2012</date> | |
- | + | <description> | |
- | <ul> | + | <ul> |
- | + | <li>PCR of the constitutive promotor (part BBa_K143012); → the PCR did not work so we ran a new PCR with a more diluted promotor solution.</li> | |
- | + | <li>The following strains are put in storage: | |
- | + | <ul> | |
- | + | <li>NM522 containing lacI-pUC57</li> | |
- | + | <li>NM522 containing rbs-pUC57 </li> | |
- | + | <li>NM522 containing dsp-pUC57</li> | |
- | + | </ul> | |
- | + | </li></ul> | |
- | + | </description> | |
- | + | </jour> | |
- | + | ||
- | + | ||
- | + | ||
- | + | <jour nb="16"> | |
- | + | <date> Monday, July 16th 2012</date> | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | <jour> | + | |
- | + | ||
<titre>Kill</titre> | <titre>Kill</titre> | ||
- | + | <description> | |
- | <ul> | + | <ul> |
- | + | <li>PCR of constitutive promoter → it didn’t work. A new PCR is run with modifications of settings. The annealing temperature was modified from 50°C to 57°C, and 3 solutions with different concentration were tested, however the concentration did not affect the yield.</li> | |
- | + | <li>Purification of the PCR product.</li> | |
- | + | <li>Gel electrophoresis of lysostaphin.</li> | |
- | </ul | + | </ul> |
- | + | ||
<titre>For all purposes</titre> | <titre>For all purposes</titre> | ||
- | + | <ul> | |
- | <ul> | + | <li>Transformation of B0015 terminator.</li> |
- | + | <li>Strains BK13 (Bs arbB), BK10 (Bs 168 GFP) and BK11 (Bs 168 mCherry) are put in storage.</li> | |
- | + | </ul> | |
- | </ul> | + | </description> |
- | </description> | + | </jour> |
- | + | ||
- | <jour> | + | <jour nb="17"> |
- | + | <date> Tuesday, July 17th 2012</date> | |
<titre>For all purposes</titre> | <titre>For all purposes</titre> | ||
- | + | <description> | |
- | <ul> | + | <ul> |
- | + | <li>Long morning meeting to discuss results and to write some posters in a frenetic psychopath way in order to remember our tasks.</li> | |
- | + | <li>Ligation of promoter-rbs-GFP in plasmid.</li> | |
- | + | <li>Bs’ genomic DNA extraction: buffers preparation.</li> | |
- | + | <li>Failure of B0015 transformation.</li> | |
- | </ul | + | </ul> |
- | + | ||
<titre>Kill</titre> | <titre>Kill</titre> | ||
- | + | <ul> | |
- | <ul> | + | <li>Cloning of the constitutive promoter in front of the disp part (the gene coding for Dispersin) and RBS/GFP (of Ecoli) using a 3A ligation followed by transformation of the ligation in the NM522 strain;</li> |
- | + | <li>Extraction of pUC57-lysostaphin. Gel electrohporesis showed a shaded DNA → forgetting of RNase during the extraction.</li> | |
- | + | </ul> | |
- | </ul> | + | </description> |
- | </description | + | </jour> |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | <jour> | + | <jour nb="18"> |
- | + | <date> Wednesday, July 18th 2012</date> | |
<titre>For all purposes</titre> | <titre>For all purposes</titre> | ||
- | + | <description> | |
- | <ul> | + | <ul> |
- | + | <li>Extraction and digestion (E & P) of strain Bs 168 GFP’s plasmid. Gel electrohporesis showed absence of non digested plasmid → extraction failure.</li> | |
- | + | <li>Bs 168’s genomic DNA extraction (Kit Genomic DNA from tissue) .</li> | |
- | + | <li>Transformation of pBK5 in <i>B. subtilis</i> abrB failed.</li> | |
- | + | </ul> | |
- | </ul | + | |
- | + | ||
<titre>Kill</titre> | <titre>Kill</titre> | ||
- | + | <ul> | |
- | <ul> | + | <li>The transformation results of the 3A ligation ([disp+RBS/GFP+pSB1T3]) was unsuccessful, so it was repeated, this time with both a positive control (strain 39) and a negative one with NM522 culture ;</li> |
- | + | <li>Addition of RNase to the miniprep from pUC57-lysostaphin clones. Gel electrophoresis: there is still a layered cut. However, the bands are as expected.</li> | |
- | + | </ul> | |
- | + | </description> | |
- | </ul> | + | </jour> |
- | </description> | + | |
- | + | ||
- | <jour> | + | <jour nb="19"> |
- | + | <date> Thursday, July 19th 2012</date> | |
<titre>For all purposes</titre> | <titre>For all purposes</titre> | ||
- | + | <description> | |
- | <ul> | + | <ul> |
- | + | <li>TSS tests are also made to be sure that all TSS solutions that we have are ok because some transformations did not work;</li> | |
- | + | <li>A 50ug/mL erythromycin solution is made in order to test the strains’ resistance;</li> | |
- | + | <li>Transformation of yfp, gfp et cfp (from iGEM plates) in NM522;</li> | |
- | + | <li>B0015 transformation in NM522.</li> | |
- | </ul | + | </ul> |
- | + | ||
<titre>Kill</titre> | <titre>Kill</titre> | ||
- | + | <ul> | |
- | <ul> | + | <li>The transformation of the 3A ligation ([disp+RBS/GFP+pSB1T3]) was successful, so 6 clones were tested on a plate containing BL media supplemented with Tetracyclin;</li> |
- | + | <li>The fluorescence test of the transformed bacteria containing [disp+RBS/GFP+pSB1T3] confirm that the promotor is functional</li> | |
- | + | <li>Ligation of the promoter in a Cm resistant iGEM plasmid was made in order to send it to the registry.</li> | |
- | + | </ul> | |
- | + | </description> | |
- | + | </jour> | |
- | + | ||
- | </ul> | + | |
- | </description> | + | |
- | + | ||
- | <jour> | + | <jour nb="20"> |
- | + | <date> Friday, July 20th 2012</date> | |
<titre>For all purposes</titre> | <titre>For all purposes</titre> | ||
- | + | <description> | |
- | <ul> | + | <ul> |
- | + | <li>Transformation results : all TSS work (except maybe 1 and 2 with a smaller yield) and prom+pSB1C3 OK → 6 clones are isolated on a GL+Cm plate.</li> | |
- | + | <li>Quantification and gel electrophoresis of B.subtilis’ genomic DNA.</li> | |
- | + | <li>Antibiotic testing of <i>B. thuringensis</i> 407 gfp strain and other strains in BL+Ery growth medium.</li> | |
- | + | <li>Failure of transforming pBK5 in <i>B. subtilis</i> 168 with the same protocol as previously. New task: find a new protocol.</li> | |
- | + | </ul> | |
- | + | ||
- | </ul | + | |
- | + | ||
<titre>Kill</titre> | <titre>Kill</titre> | ||
- | + | <ul> | |
- | <ul> | + | <li>Transformation of NM522 strain with the part BBa_K606030 (pBK6) and promoter+dispersin;</li> |
- | + | <li>Ligation Prom+Dsp in P23 and transformation;</li> | |
- | + | <li>Ligation Lysostaphin in pSB1C3 and transformation;</li> | |
- | + | <li>Isolation of 6 clones of the Term transformation;</li> | |
- | + | <li>Transformation results of fluorescent genes: ok, except yfp </li> | |
- | + | <li>NM522 strain containing pUC57-lysostaphin is put in storage under the name of BK12.</li> | |
- | + | </ul> | |
- | + | </description> | |
- | + | </jour> | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | </ul> | + | |
- | </description> | + | |
- | + | ||
- | + | ||
- | + | ||
- | + | <jour nb="23"> | |
- | + | <date> Monday, July 23rd 2012</date> | |
- | + | ||
- | <jour> | + | |
- | + | ||
<titre>For all purposes</titre> | <titre>For all purposes</titre> | ||
- | + | <description> | |
- | <ul> | + | <ul> |
- | + | <li>Selected clones (NM522+pBK6) are red, meaning that pVeg promoter and RBS from subtilis are recognized by <i>E. coli</i>’s ribosome. 4 clones are streaked in LB+Cm.</li> | |
- | + | <li>GL+Ery and TSB+Tet Petri plates are made.</li> | |
- | + | <li>YFP transformation was successful.</li> | |
- | + | <li>GFP and CFP plasmids’ extraction showed a failure in ligation.</li> | |
- | + | <li><i>B. subtilis</i> 168 is put in storage (BK14) in TSB medium.</li> | |
- | + | <li>Extraction of B0015 terminator. Gel electrophoresis showed 4 good clones.</li> | |
- | </ul | + | </ul> |
- | + | ||
<titre>Kill</titre> | <titre>Kill</titre> | ||
- | + | <ul> | |
- | <ul> | + | <li>Transformation results</li> |
- | + | <ul> | |
- | + | <li>Prom+Dsp in p23 : nothing on the plate;</li> | |
- | + | <li>Lysostaphin, negative witness contains bacteria so the plate is put in junk.</li> | |
- | + | </ul> | |
- | + | <li>New digestions, ligations,transformations:</li> | |
- | + | <ul> | |
- | + | <li>Lyso+Dsp in pUc57;</li> | |
- | + | <li>Dsp in PSB1C3;</li> | |
+ | <li>Lyso in PSB1C3;</li> | ||
+ | <li>Prom+Dsp in p23.</li> | ||
+ | </ul> | ||
+ | <li>streaking of 4 clones of the transformed strain NM522/pBK6 on a Cm + LB plate. All of them formed red colonies which shows that the constitutive promotor and the RBS specific to the Bacillus subtilis strain are recognized by the RNA polymerase of <i>E coli</i>.</li> | ||
+ | </ul> | ||
+ | <titre>Stick</titre> | ||
+ | PCR of XylR. Gel electrophoresis: the PCR didn’t work. | ||
- | + | </description> | |
- | + | </jour> | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | </description> | + | |
- | + | ||
- | + | ||
- | + | ||
- | </ | + | </month> |
- | + | </project> | |
+ | </xml> | ||
+ | </div> | ||
- | < | + | <div id="contentPage"> |
- | + | <br> | |
- | < | + | <h1>The Notebooks</h1> |
- | + | <br> | |
- | + | <div id="monthSelection"> | |
- | + | <div class="month">July</div> | |
- | + | <div class="month">August</div> | |
- | + | <div class="month">September</div> | |
- | + | <div class="month">October</div> | |
- | + | </div> | |
- | + | <br> | |
- | + | ||
- | + | ||
- | < | + | |
- | + | ||
- | < | + | |
- | < | + | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | < | + | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | < | + | <!-- MODIF LUCAS --> |
- | + | <div id="monthDays"> | |
- | < | + | <ul> |
- | + | ||
- | <ul> | + | </ul> |
- | + | </div> | |
- | + | <!-- //MODIF LUCAS --> | |
- | + | ||
- | + | <div id="descJour"> | |
- | + | <div id="jourPrecedent"><img src="./igem_files/Precedent.gif" width="30px" height="30px"><br>Previous day</div> | |
- | + | ||
- | + | ||
- | + | ||
- | < | + | |
- | < | + | |
- | < | + | |
- | + | ||
- | + | ||
- | < | + | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | < | + | <div id="noteBookTextContent"> |
- | + | <div class="scrollbar disable" style="height: 300px; "><div class="track" style="height: 300px; "><div class="thumb" style="height: 300px; "><div class="end"></div></div></div></div> | |
- | + | <div class="viewport"> | |
- | + | <div class="overview textContent" style="top: 0px; "> | |
- | + | </div> | |
- | + | </div> | |
- | + | </div> | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | < | + | |
- | </ | + | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | </ | + | |
- | </ | + | |
- | + | ||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | < | + | <div id="jourSuivant"><img style="float:right;" src="./igem_files/Suivant.gif" width="30px" height="30px"><br>Next day</div> |
- | + | <div id="leDiapo"> | |
- | + | <div id="titreDiapo">Watch us in action !</div> | |
- | + | <div class="diapoContent" style="width:320px;height:240px;padding:14px"><object width="320" height="240"><param name="movie" value="http://pf.kizoa.com/sflite.swf?did=3106662&k=3963711"><param name="wmode" value="transparent"><param name="allowFullScreen" value="true"><embed src="http://pf.kizoa.com/sflite.swf?did=3106662&k=3963711" type="application/x-shockwave-flash" wmode="transparent" width="320" height="240" allowfullscreen="true"></object><br></div> | |
- | + | </div> | |
- | < | + | </div> |
- | + | </div> | |
- | < | + | |
- | < | + | |
- | + | ||
- | + | ||
- | + | ||
- | </ | + | |
- | + | ||
- | + | ||
- | + | ||
- | </ | + | |
- | + | ||
- | + | ||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
</body> | </body> |
Revision as of 09:46, 6 September 2012
The Notebooks
July
August
September
October
Previous day
Next day
Watch us in action !