Difference between revisions of "Team:Paris Bettencourt/Protocols"
(32 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
{{Paris_Bettencourt/header}} | {{Paris_Bettencourt/header}} | ||
{{Paris_Bettencourt/menu}} | {{Paris_Bettencourt/menu}} | ||
− | {{Paris_Bettencourt/ | + | {{Paris_Bettencourt/banner|page_id=protocols|page_name=Protocols}} |
<html> | <html> | ||
+ | <!-- Gallery JS (animation) --> | ||
+ | <script type="text/javascript"> | ||
+ | /** | ||
+ | * Add hash to url without scrolling | ||
+ | * | ||
+ | * @param String $url - it could be hash or url with hash | ||
+ | * | ||
+ | * @return void | ||
+ | */ | ||
+ | function addHashToUrl($url) | ||
+ | { | ||
+ | if ('' == $url || undefined == $url) { | ||
+ | $url = '_'; // it is empty hash because if put empty string here then browser will scroll to top of page | ||
+ | } | ||
+ | $hash = $url.replace(/^.*#/, ''); | ||
+ | var $fx, $node = jQuery('#' + $hash); | ||
+ | if ($node.length) { | ||
+ | $fx = jQuery('<div></div>') | ||
+ | .css({ | ||
+ | position:'absolute', | ||
+ | visibility:'hidden', | ||
+ | top: jQuery(window).scrollTop() + 'px' | ||
+ | }) | ||
+ | .attr('id', $hash) | ||
+ | .appendTo(document.body); | ||
+ | $node.attr('id', ''); | ||
+ | } | ||
+ | document.location.hash = $hash; | ||
+ | if ($node.length) { | ||
+ | $fx.remove(); | ||
+ | $node.attr('id', $hash); | ||
+ | } | ||
+ | } | ||
+ | $(document).ready(function() { | ||
+ | // Make the list of all protocols | ||
+ | var proto = $('.textBox').map(function(index) { | ||
+ | return this.id; | ||
+ | }); | ||
+ | proto = jQuery.makeArray(proto); | ||
− | <div class="textBox" id=" | + | // Make the hash change: |
+ | // Escape removes the hash | ||
+ | $(document).keyup(function(e) { | ||
+ | if (e.keyCode == 27) { | ||
+ | addHashToUrl(""); | ||
+ | }; | ||
+ | }); | ||
+ | |||
+ | |||
+ | |||
+ | // Triggers: hashchange, when page loads with specified hash | ||
+ | // Page is loaded | ||
+ | var hash = window.location.hash.slice(1); | ||
+ | if (/FS/i.test(hash)) { | ||
+ | var hash = window.location.hash.slice(3); | ||
+ | if (jQuery.inArray(hash, proto) != -1) { | ||
+ | $("#"+hash).addClass("show FS"); | ||
+ | $("#bg").addClass("show FS"); | ||
+ | }; | ||
+ | } else { | ||
+ | if (jQuery.inArray(hash, proto) != -1) { | ||
+ | $("#"+hash).addClass("show"); | ||
+ | $("#bg").addClass("show"); | ||
+ | }; | ||
+ | }; | ||
+ | |||
+ | // Hash changes | ||
+ | $(window).bind('hashchange', function() { // when hash changes | ||
+ | var hash = window.location.hash.slice(1); | ||
+ | if (/FS/i.test(hash)) { | ||
+ | hash = window.location.hash.slice(3); | ||
+ | $(".textBox").removeClass("show FS"); | ||
+ | $("#bg").removeClass("show FS"); | ||
+ | if (jQuery.inArray(hash, proto) != -1) { | ||
+ | $("#"+hash).addClass("show FS"); | ||
+ | $("#bg").addClass("show FS"); | ||
+ | }; | ||
+ | } else { | ||
+ | $(".textBox").removeClass("show FS"); | ||
+ | $("#bg").removeClass("show FS"); | ||
+ | if (jQuery.inArray(hash, proto) != -1) { | ||
+ | $("#"+hash).addClass("show"); | ||
+ | $("#bg").addClass("show"); | ||
+ | }; | ||
+ | }; | ||
+ | }); | ||
+ | |||
+ | // Close window when click outside of it | ||
+ | $("body").click(function(event) { | ||
+ | if(!$(event.target).closest(".textBox").length) { | ||
+ | $(".textBox").removeClass("show FS"); | ||
+ | $("#bg").removeClass("show FS"); | ||
+ | addHashToUrl(""); | ||
+ | }; | ||
+ | }); | ||
+ | |||
+ | }); | ||
+ | </script> | ||
+ | |||
+ | <div id="bg"></div> | ||
+ | |||
+ | |||
+ | <div class="textBox" id="YeastDNAextractiondneasybloodandtissuekit"> | ||
+ | <h3>Yeast DNA extraction using Blood and tissue kit</h3> | ||
+ | |||
+ | <b>Yeast DNA extraction using DNeasy® Blood & Tissue Kit</b><br /> | ||
+ | <ul> | ||
+ | <li>Centrifuge a maximum of cells for 5 minutes at 300g (190rpm). Resuspend in 200µL PBS. Add 20µL zymolyase.</li> | ||
+ | <li>Add 200µL Buffer AL. Mix thoroughly by vortexing.</li> | ||
+ | <li>Add 200µL ethanol (96%). Mix thoroughly by vortexing.</li> | ||
+ | <li>Pipet the mixture into a DNeasy Mini spin column placed in a 2mL collection tube. Centrifuge at 6000g (8000rpm) for 1 minute. Discard the flow-through and collection tube.</li> | ||
+ | <li>Place the spin column in a new 2mL collection tube. Add 500µL Buffer AW1. Centrifuge for 1 minute at 6000g. Discard the flow-through and collection tube.</li> | ||
+ | <li>Place the spin column in a new 2mL collection tube. Add 500µL Buffer AW2. Centrifuge for 3 minutes at 20,000g. Discard the flow-through and collection tube.</li> | ||
+ | <li>Transfer the spin column to a new 1.5mL or 2mL microcentrifuge tube.</li> | ||
+ | <li>Elute the DNA by adding 200µL Buffer AE or sterile water to the center of the spin column membrane. Incubate for 1 minute at room temperature. Centrifuge for 1 minute at 6000g.</li> | ||
+ | <li>Repeat this step for increased DNA yield.</li> | ||
+ | </ul> | ||
+ | |||
+ | </div> | ||
+ | |||
+ | |||
+ | <div class="textBox" id="PCR"> | ||
+ | <h3>PCR protocol</h3> | ||
+ | |||
+ | <b>PCR protocol (Phusion)</b><br /> | ||
+ | <ul> | ||
+ | <li>Prepare the following mix | ||
+ | <ul> | ||
+ | <li>2µL primer Forward (10 µM)</li> | ||
+ | <li>2µL primer Reverse (10 µM)</li> | ||
+ | <li>0.1 to 1 ng of template DNA</li> | ||
+ | <li>25µL of <i>Life Technologies</i> Phusion High-Fidelity PCR Master Mix with HF Buffer</li> | ||
+ | <li>complete to 50µL of DNase/RNase-free water</li> | ||
+ | </ul> | ||
+ | <li>Launch 30 to 35 PCR cycles using the following parameters:<br> | ||
+ | |||
+ | <table style="width:25%"> | ||
+ | |||
+ | <tr> | ||
+ | <th>time (min)</th> | ||
+ | <th>temperature (°C)</th> | ||
+ | <th>function</th> | ||
+ | </tr> | ||
+ | |||
+ | <tr> | ||
+ | <td>3:00</td> | ||
+ | <td>98</td> | ||
+ | <td>melting</td> | ||
+ | </tr> | ||
+ | |||
+ | <tr> | ||
+ | <td> </td> | ||
+ | </tr> | ||
+ | |||
+ | <tr> | ||
+ | <td>0:30</td> | ||
+ | <td>98</td> | ||
+ | <td>melting</td> | ||
+ | </tr> | ||
+ | |||
+ | <tr> | ||
+ | <td>0:30</td> | ||
+ | <td>XX°C</td> | ||
+ | <td>annealing</td> | ||
+ | </tr> | ||
+ | |||
+ | <tr> | ||
+ | <td>1 minute/kb</td> | ||
+ | <td>72</td> | ||
+ | <td>extension</td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td>10:00</td> | ||
+ | <td>72</td> | ||
+ | <td>extension</td> | ||
+ | </tr> | ||
+ | |||
+ | <tr> | ||
+ | <td>infinite hold</td> | ||
+ | <td>12</td> | ||
+ | <td>storage</td> | ||
+ | </tr> | ||
+ | </table> | ||
+ | </ul> | ||
+ | </ul> | ||
+ | |||
+ | </div> | ||
+ | |||
+ | <div class="textBox" id="GelPurification"> | ||
+ | <h3>Gel purification with the QIAquick® Gel Extraction Kit</h3> | ||
+ | |||
+ | <b>Gel-Purification protocol with the QIAquick® Gel Extraction Kit</b><br /> | ||
+ | <ul> | ||
+ | <li>Excise the DNA band from the gel as precisely as possible and put it in a micro-centrifuge tube. | ||
+ | <li>Add 3 volume of QG buffer (100mg of gel ~ 100ul) in the tube and incubate for 10 min at 50°C (or 10 min on a vortex). | ||
+ | <li>Add one volume of isopropanol and mix. | ||
+ | <li>Centrifugate the tube for 2 min at 14 000 rpm. | ||
+ | <li>Carefully pipette the supernanant in a QIAquick column. | ||
+ | <li>Put the column in a 2ml microcentrifuge tube and centrifuge it for 1 min at 14 000 rpm. | ||
+ | <li>Discard the flow-through. | ||
+ | <li>Add 750 uL of PE buffer in the column and centrifuge for 1 min and discard flow-through. | ||
+ | <li>Centrifuge again for 2 min and put the column in a new 1.5uL microcentrifuge tube. | ||
+ | <li>Elute the DNA by putting 50uL of water in the middle of the column and let it stand for 2 min. | ||
+ | <li>Centrifugate for 2min at 10 000 rpm | ||
+ | </ul> | ||
+ | |||
+ | </div> | ||
+ | |||
+ | <div class="textBox" id="Electrophoresis"> | ||
<h3>Gel Electrophoresis with SYBR safe</h3> | <h3>Gel Electrophoresis with SYBR safe</h3> | ||
Line 29: | Line 239: | ||
<li>After the desired migration time turn off the machine, remove the lid and put the gel inside the gel visualizer.</li> | <li>After the desired migration time turn off the machine, remove the lid and put the gel inside the gel visualizer.</li> | ||
</ul> | </ul> | ||
− | + | </ul> | |
</div> | </div> | ||
+ | |||
<div class="textBox" id="Titrationacidphytic"> | <div class="textBox" id="Titrationacidphytic"> | ||
<h3>Titration of phytic acid</h3> | <h3>Titration of phytic acid</h3> | ||
− | |||
<b>Titration of phytic acid using Megazyme© Kit</b><br /> | <b>Titration of phytic acid using Megazyme© Kit</b><br /> | ||
<ul> | <ul> | ||
Line 109: | Line 319: | ||
</ul> | </ul> | ||
− | |||
</div> | </div> | ||
− | <div class="textBox" id=" | + | <div class="textBox" id="TitrationofVitaminB12bySpectrophotometer"> |
− | <h3> | + | <h3>Vitamin B12 titration</h3> |
+ | <li> Disrupt the microorganisms in a 0.1 N phosphate buffer solution containing 0.01% KCN at pH 5.5 for 20 min at 100°C.</li> | ||
+ | <li> Vitamin B12 formed intracellularly is determined spectrophotometrically in the dicyano-form at wavelength of 367 nm. </li> | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
</div> | </div> | ||
Line 228: | Line 333: | ||
<ul> | <ul> | ||
− | + | ||
− | <li>Add 5 volumes of resuspension buffer to 1 volume of PCR product in an 1.5mL microcentrifuge tube, mix by pipetting up and down | + | <li>Add 5 volumes of resuspension buffer to 1 volume of PCR product in an 1.5mL microcentrifuge tube, mix by pipetting up and down |
− | <li>Transfer in a centrifugation column | + | <li>Transfer in a centrifugation column</li> |
− | <li>Centrifuge 1 min at 14000 rpm | + | <li>Centrifuge 1 min at 14000 rpm</li> |
− | <li>Throw the filtration product | + | <li>Throw the filtration product</li> |
− | <li>Add 700μL of washing solution | + | <li>Add 700μL of washing solution</li> |
− | <li>Centrifuge 1 min at 14000 rpm | + | <li>Centrifuge 1 min at 14000 rpm</li> |
− | <li>Throw the filtration product | + | <li>Throw the filtration product</li> |
− | <li>Add 500μL of washing solution | + | <li>Add 500μL of washing solution</li> |
− | <li>Centrifuge 1 min at 14000 rpm | + | <li>Centrifuge 1 min at 14000 rpm</li> |
− | <li>Throw the filtration product | + | <li>Throw the filtration product</li> |
− | <li>Centrifuge 1 min at 14000 rpm | + | <li>Centrifuge 1 min at 14000 rpm</li> |
− | <li>Throw the filtration product | + | <li>Throw the filtration product</li> |
− | <li>Put the column in a sterile 1.5mL microcentrifuge tube | + | <li>Put the column in a sterile 1.5mL microcentrifuge tube</li> |
− | <li>Add 45μL of DNAse/RNAse free water on the membrane | + | <li>Add 45μL of DNAse/RNAse free water on the membrane</li> |
− | <li>Wait 2 minutes | + | <li>Wait 2 minutes</li> |
− | <li>Centrifuge 2min at 10000rpm | + | <li>Centrifuge 2min at 10000rpm</li> |
− | <li>Discard the column, DNA is saved in water | + | <li>Discard the column, DNA is saved in water</li> |
− | </ul> | + | </ul> |
</div> | </div> | ||
Line 562: | Line 667: | ||
<div class="textBox" id="VitaminB2TitrationHPLC"> | <div class="textBox" id="VitaminB2TitrationHPLC"> | ||
<h3>Vitamin B2 Titration using HPLC</h3> | <h3>Vitamin B2 Titration using HPLC</h3> | ||
+ | |||
+ | <b>Titration protocols for vitamin A </b> | ||
+ | |||
+ | Here, I find 2 different protocols to determine the quantity of B2 using HPLC.<br/><br/> | ||
+ | |||
+ | I°) In a 250 ml conical flask, put 5g of food sample and 65 ml of 0.1M HCl.<br/> | ||
+ | Put it in 100°C for 30 minutes.<br/> | ||
+ | Cooling, then adjuste Ph to 4.5 with 2.5M sodium acetate.<br/> | ||
+ | Add 50ml Beta amylase, 500ml Takadiastase in water (small quantity). Put it at 37°C for 18h.<br/> | ||
+ | Dilutate with 125ml water.<br/> | ||
+ | Fitred with cellulose paper. And do a 2nd filtration with 0.2µm filter paper.<br/><br/> | ||
+ | |||
+ | II°) Take Xg of food sample and add 15ml of 0.1M HCl.<br/> | ||
+ | Incubate at 100°C for 30 minutes.<br/> | ||
+ | Cooling, then add 2.5M sodium acetate (to have a Ph4.5) and add 10mg of Takadiastase. | ||
+ | Incubate it at 50°C during 3h.<br/> | ||
+ | Filtred with Albert No 135.<br/> | ||
+ | Made up to 25ml with milli Q water.<br/> | ||
+ | Filtered with 0.2µm nylon filter.<br/><br/> | ||
</div> | </div> | ||
Line 617: | Line 741: | ||
</div> | </div> | ||
− | |||
− | |||
− | |||
− | |||
Line 640: | Line 760: | ||
<a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols#Annealing"> | <a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols#Annealing"> | ||
<div class="ptext"><p>Annealing</p></div> | <div class="ptext"><p>Annealing</p></div> | ||
− | <img src=""> | + | <img src="https://static.igem.org/mediawiki/2015/f/fc/ParisBettencourt_protocolsMicro.jpg"> |
</a> | </a> | ||
</div> | </div> | ||
Line 648: | Line 768: | ||
<a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols#ChemicalTestCompetentCells"> | <a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols#ChemicalTestCompetentCells"> | ||
<div class="ptext"><p>Chemical Test for Competent Cell</p></div> | <div class="ptext"><p>Chemical Test for Competent Cell</p></div> | ||
− | <img src=""> | + | <img src="https://static.igem.org/mediawiki/2015/0/08/ParisBettencourt_fluoPlate.jpg"> |
</a> | </a> | ||
</div> | </div> | ||
Line 654: | Line 774: | ||
<div class="box"> | <div class="box"> | ||
<div class="innerBox magenta"> | <div class="innerBox magenta"> | ||
+ | <a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols#Digestion"> | ||
+ | <div class="ptext"><p>Digestion</p></div> | ||
+ | <img src="https://static.igem.org/mediawiki/2015/e/ec/ParisBettencourt_protocolsFrozenEnzymes.JPG"> | ||
+ | </a> | ||
+ | </div> | ||
+ | </div> | ||
+ | <div class="box"> | ||
+ | <div class="innerBox cyan"> | ||
<a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols#Electroporation"> | <a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols#Electroporation"> | ||
<div class="ptext"><p>Electroporation</p></div> | <div class="ptext"><p>Electroporation</p></div> | ||
− | <img src=""> | + | <img src="https://static.igem.org/mediawiki/2015/1/11/ParisBettencourt_protocolsGel.JPG"> |
</a> | </a> | ||
</div> | </div> | ||
Line 669: | Line 797: | ||
</div> | </div> | ||
<div class="box"> | <div class="box"> | ||
− | <div class="innerBox | + | <div class="innerBox cyan"> |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
<a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols#ElectrocompetentLactobacillus"> | <a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols#ElectrocompetentLactobacillus"> | ||
<div class="ptext"><p><i>L. plantarum</i> Electrocompetent Cells</p></div> | <div class="ptext"><p><i>L. plantarum</i> Electrocompetent Cells</p></div> | ||
− | <img src=""> | + | <img src="https://static.igem.org/mediawiki/2015/6/6a/ParisBettencourt_protocolsTubesOnIce.JPG"> |
</a> | </a> | ||
</div> | </div> | ||
Line 686: | Line 806: | ||
<div class="box"> | <div class="box"> | ||
<div class="innerBox cyan"> | <div class="innerBox cyan"> | ||
− | <a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols# | + | <a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols#Electrophoresis"> |
− | <div class="ptext"><p> | + | <div class="ptext"><p>Gel Electrophoresis with SYBR safe</p></div> |
− | <img src="https://static.igem.org/mediawiki/2015/ | + | <img src="https://static.igem.org/mediawiki/2015/f/f1/ParisBettencourt_protocolsPlateFluo.jpg"> |
</a> | </a> | ||
</div> | </div> | ||
Line 694: | Line 814: | ||
<div class="box"> | <div class="box"> | ||
<div class="innerBox cyan"> | <div class="innerBox cyan"> | ||
− | <a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols# | + | <a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols#GelPurification"> |
− | <div class="ptext"><p> | + | <div class="ptext"><p>Gel purification</p></div> |
− | <img src=""> | + | <img src="https://static.igem.org/mediawiki/2015/1/11/ParisBettencourt_protocolsGel.JPG"> |
</a> | </a> | ||
</div> | </div> | ||
</div> | </div> | ||
− | + | <div class="box"> | |
<div class="innerBox cyan"> | <div class="innerBox cyan"> | ||
− | <a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols# | + | <a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols#HeatShockTransformation"> |
− | <div class="ptext"><p> | + | <div class="ptext"><p>Heat Shock Transformation</p></div> |
− | <img src=""> | + | <img src="https://static.igem.org/mediawiki/2015/6/6a/ParisBettencourt_protocolsTubesOnIce.JPG"> |
</a> | </a> | ||
</div> | </div> | ||
</div> | </div> | ||
<div class="box"> | <div class="box"> | ||
− | <div class="innerBox | + | <div class="innerBox cyan"> |
− | <a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols# | + | <a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols#HeatShockYeast"> |
− | <div class="ptext"><p> | + | <div class="ptext"><p>Heat shock transformation for yeast</p></div> |
− | <img src="https://static.igem.org/mediawiki/2015/ | + | <img src="https://static.igem.org/mediawiki/2015/e/ec/ParisBettencourt_protocolsHeatBlock.JPG"> |
</a> | </a> | ||
</div> | </div> | ||
Line 718: | Line 838: | ||
<div class="box"> | <div class="box"> | ||
<div class="innerBox yellow"> | <div class="innerBox yellow"> | ||
− | <a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols# | + | <a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols#Idli"> |
− | <div class="ptext"><p> | + | <div class="ptext"><p>Idli Recipe</p></div> |
− | <img src="https://static.igem.org/mediawiki/2015/ | + | <img src="https://static.igem.org/mediawiki/2015/5/55/ParisBettencourt_protocolsIdli.JPG"> |
</a> | </a> | ||
</div> | </div> | ||
</div> | </div> | ||
− | |||
<div class="box"> | <div class="box"> | ||
<div class="innerBox yellow"> | <div class="innerBox yellow"> | ||
Line 734: | Line 853: | ||
</div> | </div> | ||
<div class="box"> | <div class="box"> | ||
− | <div class="innerBox | + | <div class="innerBox cyan"> |
− | <a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols# | + | <a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols#MiniprepprotocolQIAGENkit"> |
− | <div class="ptext"><p> | + | <div class="ptext"><p>Miniprep protocol</p></div> |
− | <img src=""> | + | <img src="https://static.igem.org/mediawiki/2015/e/ec/ParisBettencourt_protocolsQiagen.JPG"> |
</a> | </a> | ||
</div> | </div> | ||
Line 743: | Line 862: | ||
<div class="box"> | <div class="box"> | ||
<div class="innerBox yellow"> | <div class="innerBox yellow"> | ||
− | <a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols# | + | <a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols#PCR"> |
− | <div class="ptext"><p> | + | <div class="ptext"><p>PCR</p></div> |
− | <img src="https://static.igem.org/mediawiki/2015/ | + | <img src="https://static.igem.org/mediawiki/2015/3/34/ParisBettencourt_protocolsPCR.JPG"> |
</a> | </a> | ||
</div> | </div> | ||
</div> | </div> | ||
<div class="box"> | <div class="box"> | ||
− | <div class="innerBox | + | <div class="innerBox yellow"> |
− | <a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols# | + | <a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols#PCRpurification"> |
− | <div class="ptext"><p> | + | <div class="ptext"><p>PCR purification</p></div> |
− | <img src="https://static.igem.org/mediawiki/2015/ | + | <img src="https://static.igem.org/mediawiki/2015/5/5f/ParisBettencourt_protocolsPCRtubes.JPG"> |
</a> | </a> | ||
</div> | </div> | ||
Line 759: | Line 878: | ||
<div class="box"> | <div class="box"> | ||
<div class="innerBox cyan"> | <div class="innerBox cyan"> | ||
− | <a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols# | + | <a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols#Titrationacidphytic"> |
− | <div class="ptext"><p> | + | <div class="ptext"><p>Titration of phytic acid</p></div> |
− | <img src="https://static.igem.org/mediawiki/2015/ | + | <img src="https://static.igem.org/mediawiki/2015/1/11/ParisBettencourt_protocolsGel.JPG"> |
</a> | </a> | ||
</div> | </div> | ||
Line 767: | Line 886: | ||
<div class="box"> | <div class="box"> | ||
<div class="innerBox cyan"> | <div class="innerBox cyan"> | ||
− | <a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols# | + | <a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols#VitaminATitration"> |
− | <div class="ptext"><p> | + | <div class="ptext"><p>Vitamin A Titration</p></div> |
− | <img src="https://static.igem.org/mediawiki/2015/ | + | <img src="https://static.igem.org/mediawiki/2015/f/fc/ParisBettencourt_protocolsMicro.jpg"> |
+ | </a> | ||
+ | </div> | ||
+ | </div> | ||
+ | <div class="box"> | ||
+ | <div class="innerBox magenta"> | ||
+ | <a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols#VitaminATitrationHPLC"> | ||
+ | <div class="ptext"><p>Vitamin A Titration using HPLC</p></div> | ||
+ | <img src="https://static.igem.org/mediawiki/2015/0/08/ParisBettencourt_fluoPlate.jpg"> | ||
</a> | </a> | ||
</div> | </div> | ||
</div> | </div> | ||
<div class="box"> | <div class="box"> | ||
− | <div class="innerBox | + | <div class="innerBox yellow"> |
− | <a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols# | + | <a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols#VitaminB2TitrationHPLC"> |
− | <div class="ptext"><p> | + | <div class="ptext"><p>Vitamin B2 Titration using HPLC</p></div> |
− | <img src="https://static.igem.org/mediawiki/2015/ | + | <img src="https://static.igem.org/mediawiki/2015/d/da/ParisBettencourt_protocolsErlen.JPG"> |
</a> | </a> | ||
</div> | </div> | ||
</div> | </div> | ||
<div class="box"> | <div class="box"> | ||
− | <div class="innerBox | + | <div class="innerBox magenta"> |
− | <a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols# | + | <a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols#TitrationofVitaminB12bySpectrophotometer"> |
− | <div class="ptext"><p> | + | <div class="ptext"><p>Vitamin B12 Titration using spectrophotry</p></div> |
− | <img src=""> | + | <img src="https://static.igem.org/mediawiki/2015/0/08/ParisBettencourt_fluoPlate.jpg"> |
</a> | </a> | ||
</div> | </div> | ||
</div> | </div> | ||
<div class="box"> | <div class="box"> | ||
− | <div class="innerBox | + | <div class="innerBox magenta"> |
− | <a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols# | + | <a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols#YeastDNAextractiondneasybloodandtissuekit"> |
− | <div class="ptext"><p> | + | <div class="ptext"><p>Yeast DNA extraction </p></div> |
− | <img src="https://static.igem.org/mediawiki/2015/ | + | <img src="https://static.igem.org/mediawiki/2015/e/ec/ParisBettencourt_protocolsFrozenEnzymes.JPG"> |
</a> | </a> | ||
</div> | </div> | ||
</div> | </div> | ||
<div class="box"> | <div class="box"> | ||
− | <div class="innerBox | + | <div class="innerBox magenta"> |
− | <a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols# | + | <a href="https://2015.igem.org/Team:Paris_Bettencourt/Protocols#YeastLysisNaOH"> |
− | <div class="ptext"><p> | + | <div class="ptext"><p>Yeast Lysis with NaOH</p></div> |
− | <img src="https://static.igem.org/mediawiki/2015/ | + | <img src="https://static.igem.org/mediawiki/2015/2/24/ParisBettencourt_protocolsCentrifuge.JPG"> |
</a> | </a> | ||
</div> | </div> | ||
</div> | </div> | ||
+ | </div> | ||
+ | |||
+ | <br> | ||
+ | <br><br><br> | ||
+ | <div style="clear:both"></div> | ||
+ | |||
+ | <h2 style="color: white"> Miscellaneous </h2> | ||
+ | <br> | ||
+ | |||
+ | <div id="protocolsGallerie"> | ||
<div class="box"> | <div class="box"> | ||
<div class="innerBox cyan"> | <div class="innerBox cyan"> | ||
Line 814: | Line 951: | ||
</div> | </div> | ||
</div> | </div> | ||
+ | |||
<div style="clear: both;"></div> | <div style="clear: both;"></div> | ||
− | |||
− | |||
− | |||
− | |||
− | |||
</html> | </html> | ||
{{Paris_Bettencourt/footer}} | {{Paris_Bettencourt/footer}} |
Latest revision as of 10:32, 19 November 2015