Team:WashU/Week5
From 2012.igem.org
(Difference between revisions)
BrianBasco (Talk | contribs) |
BrianBasco (Talk | contribs) |
||
Line 37: | Line 37: | ||
<html> | <html> | ||
+ | <script type="text/javascript"> | ||
+ | |||
+ | var Event = { | ||
+ | add: function(obj,type,fn) { | ||
+ | if (obj.attachEvent) { | ||
+ | obj['e'+type+fn] = fn; | ||
+ | obj[type+fn] = function() { obj['e'+type+fn](window.event); } | ||
+ | obj.attachEvent('on'+type,obj[type+fn]); | ||
+ | } else | ||
+ | obj.addEventListener(type,fn,false); | ||
+ | }, | ||
+ | remove: function(obj,type,fn) { | ||
+ | if (obj.detachEvent) { | ||
+ | obj.detachEvent('on'+type,obj[type+fn]); | ||
+ | obj[type+fn] = null; | ||
+ | } else | ||
+ | obj.removeEventListener(type,fn,false); | ||
+ | } | ||
+ | } | ||
+ | |||
+ | function $() { | ||
+ | var elements = new Array(); | ||
+ | for (var i=0;i<arguments.length;i++) { | ||
+ | var element = arguments[i]; | ||
+ | if (typeof element == 'string') element = document.getElementById(element); | ||
+ | if (arguments.length == 1) return element; | ||
+ | elements.push(element); | ||
+ | } | ||
+ | return elements; | ||
+ | } | ||
+ | String.prototype.trim = function() { | ||
+ | return this.replace(/^\s+|\s+$/,""); | ||
+ | } | ||
+ | |||
+ | function addClassName(el,className) { | ||
+ | removeClassName(el,className); | ||
+ | el.className = (el.className + " " + className).trim(); | ||
+ | } | ||
+ | |||
+ | function removeClassName(el,className) { | ||
+ | el.className = el.className.replace(className,"").trim(); | ||
+ | } | ||
+ | |||
+ | var ZebraTable = { | ||
+ | |||
+ | bgcolor: '', | ||
+ | classname: '', | ||
+ | stripe: function(el) { | ||
+ | if (!$(el)) return; | ||
+ | var rows = $(el).getElementsByTagName('tr'); | ||
+ | for (var i=1,len=rows.length;i<len;i++) { | ||
+ | if (i % 2 == 0) rows[i].className = 'alt'; | ||
+ | Event.add(rows[i],'mouseover',function() { ZebraTable.mouseover(this); }); | ||
+ | Event.add(rows[i],'mouseout',function() { ZebraTable.mouseout(this); }); | ||
+ | } | ||
+ | }, | ||
+ | mouseover: function(row) { | ||
+ | this.bgcolor = row.style.backgroundColor; | ||
+ | this.classname = row.className; | ||
+ | addClassName(row,'over'); | ||
+ | }, | ||
+ | mouseout: function(row) { | ||
+ | removeClassName(row,'over'); | ||
+ | addClassName(row,this.classname); | ||
+ | row.style.backgroundColor = this.bgcolor; | ||
+ | } | ||
+ | } | ||
+ | |||
+ | window.onload = function() { | ||
+ | ZebraTable.stripe('mytable'); | ||
+ | } | ||
+ | </script> | ||
+ | <style type="text/css"> | ||
+ | |||
+ | table { | ||
+ | border-collapse: collapse; | ||
+ | width: 50%; | ||
+ | margin: 24px; | ||
+ | font-size: 1.1em; | ||
+ | } | ||
+ | |||
+ | th { | ||
+ | background: #8f0222; | ||
+ | color: #fff; | ||
+ | font-weight: bold; | ||
+ | padding: 2px 11px; | ||
+ | text-align: left; | ||
+ | border-right: 1px solid #fff; | ||
+ | line-height: 1.5; | ||
+ | } | ||
+ | |||
+ | td { | ||
+ | padding: 6px 11px; | ||
+ | border-bottom: 1px solid #8f0222; | ||
+ | vertical-align: top; | ||
+ | } | ||
+ | |||
+ | td * { | ||
+ | padding: 6px 11px; | ||
+ | } | ||
+ | |||
+ | tr.alt td { | ||
+ | background: #FFEFD5; | ||
+ | } | ||
+ | |||
+ | tr.over td, tr:hover td { | ||
+ | background: #d66c6c; | ||
+ | } | ||
+ | </style> | ||
<font size = "4"> | <font size = "4"> | ||
<u>Tuesday, June 26</u> | <u>Tuesday, June 26</u> | ||
Line 45: | Line 154: | ||
We decided to figure out what was going wrong with our digests by running two new gels, one for the <i>E. coli</i> part of the project and one for the YLC project. | We decided to figure out what was going wrong with our digests by running two new gels, one for the <i>E. coli</i> part of the project and one for the YLC project. | ||
First, we used the nanodrop to measure how much DNA we had for each of our samples. | First, we used the nanodrop to measure how much DNA we had for each of our samples. | ||
+ | <html> | ||
+ | <body> | ||
+ | <div align = "center"> | ||
+ | <table id="mytable"> | ||
+ | <thead> | ||
+ | <tr> | ||
+ | <th>Sample</th> | ||
+ | <th>nanograms/microliter</th> | ||
+ | </tr> | ||
+ | </thead> | ||
+ | |||
+ | <tbody> | ||
+ | <tr> | ||
+ | <td>1</td> | ||
+ | <td>83.0</td> | ||
+ | </tr> | ||
+ | |||
+ | <tr> | ||
+ | <td>2</td> | ||
+ | <td>121.6</td> | ||
+ | </tr> | ||
+ | |||
+ | <tr> | ||
+ | <td>3</td> | ||
+ | <td>63.8</td> | ||
+ | </tr> | ||
+ | |||
+ | <tr> | ||
+ | <td>4- I</td> | ||
+ | <td>83.9</td> | ||
+ | </tr> | ||
+ | |||
+ | <tr> | ||
+ | <td>4 - II</td> | ||
+ | <td>99.4</td> | ||
+ | </tr> | ||
+ | |||
+ | <tr> | ||
+ | <td>5</td> | ||
+ | <td>127.0</td> | ||
+ | </tr> | ||
+ | |||
+ | <tr> | ||
+ | <td>8</td> | ||
+ | <td>183.4</td> | ||
+ | </tr> | ||
+ | |||
+ | <tr> | ||
+ | <td>9</td> | ||
+ | <td>84.1</td> | ||
+ | </tr> | ||
+ | |||
+ | <tr> | ||
+ | <td>10</td> | ||
+ | <td>37.5</td> | ||
+ | </tr> | ||
+ | |||
+ | <tr> | ||
+ | <td>Promoter J23119</td> | ||
+ | <td>34.5</td> | ||
+ | </tr> | ||
+ | </tbody> | ||
+ | </table> | ||
+ | </html> | ||
+ | |||
+ | <div align = "left"> | ||
Then, we ran digests of 9, 10, 5 and BBa J22119 using controls, DNA cut with the enzymes as stated in the biobrick assembly protocol, and then DNA cut with enzymes and then treated with phosphatase. For the YLC project, we ran 1, 2, 3, 4 and 8. [Gels shown below] | Then, we ran digests of 9, 10, 5 and BBa J22119 using controls, DNA cut with the enzymes as stated in the biobrick assembly protocol, and then DNA cut with enzymes and then treated with phosphatase. For the YLC project, we ran 1, 2, 3, 4 and 8. [Gels shown below] | ||
<br><br> | <br><br> |
Revision as of 16:23, 27 June 2012