Team:Edinburgh/Notebook

From 2008.igem.org

(Difference between revisions)
 
(35 intermediate revisions not shown)
Line 1: Line 1:
-
<html>
+
<div id="header">{{Template:Team:Edinburgh/Templates/Header}}</div>
-
<head>
+
-
<title>Edinburgh iGem 2008</title>
+
-
<script type="text/javascript">
+
-
//Drop Down Tabs Menu- Author: Dynamic Drive (http://www.dynamicdrive.com)
+
-
//Created: May 16th, 07'
+
-
 
+
-
var tabdropdown={
+
-
* disappeardelay: 200, //set delay in miliseconds before menu disappears onmouseout
+
-
disablemenuclick: false, //when user clicks on a menu item with a drop down menu, disable menu item's link?
+
-
enableiframeshim: 1, //1 or 0, for true or false
+
-
 
+
-
//No need to edit beyond here////////////////////////
+
-
dropmenuobj: null, ie: document.all, firefox: document.getElementById&&!document.all, previousmenuitem:null,
+
-
currentpageurl: window.location.href.replace("http://"+window.location.hostname, "").replace(/^\//, ""), //get current page url (minus hostname, ie: http://www.dynamicdrive.com/)
+
-
 
+
-
getposOffset:function(what, offsettype){
+
-
var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
+
-
var parentEl=what.offsetParent;
+
-
while (parentEl!=null){
+
-
totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
+
-
parentEl=parentEl.offsetParent;
+
-
}
+
-
return totaloffset;
+
-
},
+
-
 
+
-
showhide:function(obj, e, obj2){ //obj refers to drop down menu, obj2 refers to tab menu item mouse is currently over
+
-
if (this.ie || this.firefox)
+
-
this.dropmenuobj.style.left=this.dropmenuobj.style.top="-500px"
+
-
if (e.type=="click" && obj.visibility==hidden || e.type=="mouseover"){
+
-
if (obj2.parentNode.className.indexOf("default")==-1) //if tab isn't a default selected one
+
-
obj2.parentNode.className="selected"
+
-
obj.visibility="visible"
+
-
}
+
-
else if (e.type=="click")
+
-
obj.visibility="hidden"
+
-
},
+
-
 
+
-
iecompattest:function(){
+
-
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
+
-
},
+
-
 
+
-
clearbrowseredge:function(obj, whichedge){
+
-
var edgeoffset=0
+
-
if (whichedge=="rightedge"){
+
-
var windowedge=this.ie && !window.opera? this.standardbody.scrollLeft+this.standardbody.clientWidth-15 : window.pageXOffset+window.innerWidth-15
+
-
this.dropmenuobj.contentmeasure=this.dropmenuobj.offsetWidth
+
-
if (windowedge-this.dropmenuobj.x < this.dropmenuobj.contentmeasure)  //move menu to the left?
+
-
edgeoffset=this.dropmenuobj.contentmeasure-obj.offsetWidth
+
-
}
+
-
else{
+
-
var topedge=this.ie && !window.opera? this.standardbody.scrollTop : window.pageYOffset
+
-
var windowedge=this.ie && !window.opera? this.standardbody.scrollTop+this.standardbody.clientHeight-15 : window.pageYOffset+window.innerHeight-18
+
-
this.dropmenuobj.contentmeasure=this.dropmenuobj.offsetHeight
+
-
if (windowedge-this.dropmenuobj.y < this.dropmenuobj.contentmeasure){ //move up?
+
-
edgeoffset=this.dropmenuobj.contentmeasure+obj.offsetHeight
+
-
if ((this.dropmenuobj.y-topedge)<this.dropmenuobj.contentmeasure) //up no good either?
+
-
edgeoffset=this.dropmenuobj.y+obj.offsetHeight-topedge
+
-
}
+
-
this.dropmenuobj.firstlink.style.borderTopWidth=(edgeoffset==0)? 0 : "1px" //Add 1px top border to menu if dropping up
+
-
}
+
-
return edgeoffset
+
-
},
+
-
 
+
-
dropit:function(obj, e, dropmenuID){
+
-
if (this.dropmenuobj!=null){ //hide previous menu
+
-
this.dropmenuobj.style.visibility="hidden" //hide menu
+
-
if (this.previousmenuitem!=null && this.previousmenuitem!=obj){
+
-
if (this.previousmenuitem.parentNode.className.indexOf("default")==-1) //If the tab isn't a default selected one
+
-
this.previousmenuitem.parentNode.className=""
+
-
}
+
-
}
+
-
this.clearhidemenu()
+
-
if (this.ie||this.firefox){
+
-
obj.onmouseout=function(){tabdropdown.delayhidemenu(obj)}
+
-
obj.onclick=function(){return !tabdropdown.disablemenuclick} //disable main menu item link onclick?
+
-
this.dropmenuobj=document.getElementById(dropmenuID)
+
-
this.dropmenuobj.onmouseover=function(){tabdropdown.clearhidemenu()}
+
-
this.dropmenuobj.onmouseout=function(e){tabdropdown.dynamichide(e, obj)}
+
-
this.dropmenuobj.onclick=function(){tabdropdown.delayhidemenu(obj)}
+
-
this.showhide(this.dropmenuobj.style, e, obj)
+
-
this.dropmenuobj.x=this.getposOffset(obj, "left")
+
-
this.dropmenuobj.y=this.getposOffset(obj, "top")
+
-
this.dropmenuobj.style.left=this.dropmenuobj.x-this.clearbrowseredge(obj, "rightedge")+"px"
+
-
this.dropmenuobj.style.top=this.dropmenuobj.y-this.clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+1+"px"
+
-
this.previousmenuitem=obj //remember main menu item mouse moved out from (and into current menu item)
+
-
this.positionshim() //call iframe shim function
+
-
}
+
-
},
+
-
 
+
-
contains_firefox:function(a, b) {
+
-
while (b.parentNode)
+
-
if ((b = b.parentNode) == a)
+
-
return true;
+
-
return false;
+
-
},
+
-
 
+
-
dynamichide:function(e, obj2){ //obj2 refers to tab menu item mouse is currently over
+
-
var evtobj=window.event? window.event : e
+
-
if (this.ie&&!this.dropmenuobj.contains(evtobj.toElement))
+
-
this.delayhidemenu(obj2)
+
-
else if (this.firefox&&e.currentTarget!= evtobj.relatedTarget&& !this.contains_firefox(evtobj.currentTarget, evtobj.relatedTarget))
+
-
this.delayhidemenu(obj2)
+
-
},
+
-
 
+
-
delayhidemenu:function(obj2){
+
-
this.delayhide=setTimeout(function(){tabdropdown.dropmenuobj.style.visibility='hidden'; if (obj2.parentNode.className.indexOf('default')==-1) obj2.parentNode.className=''},this.disappeardelay) //hide menu
+
-
},
+
-
 
+
-
clearhidemenu:function(){
+
-
if (this.delayhide!="undefined")
+
-
clearTimeout(this.delayhide)
+
-
},
+
-
 
+
-
positionshim:function(){ //display iframe shim function
+
-
if (this.enableiframeshim && typeof this.shimobject!="undefined"){
+
-
if (this.dropmenuobj.style.visibility=="visible"){
+
-
this.shimobject.style.width=this.dropmenuobj.offsetWidth+"px"
+
-
this.shimobject.style.height=this.dropmenuobj.offsetHeight+"px"
+
-
this.shimobject.style.left=this.dropmenuobj.style.left
+
-
this.shimobject.style.top=this.dropmenuobj.style.top
+
-
}
+
-
this.shimobject.style.display=(this.dropmenuobj.style.visibility=="visible")? "block" : "none"
+
-
}
+
-
},
+
-
 
+
-
hideshim:function(){
+
-
if (this.enableiframeshim && typeof this.shimobject!="undefined")
+
-
this.shimobject.style.display='none'
+
-
},
+
-
 
+
-
isSelected:function(menuurl){
+
-
var menuurl=menuurl.replace("http://"+menuurl.hostname, "").replace(/^\//, "")
+
-
return (tabdropdown.currentpageurl==menuurl)
+
-
},
+
-
 
+
-
init:function(menuid, dselected){
+
-
this.standardbody=(document.compatMode=="CSS1Compat")? document.documentElement : document.body //create reference to common "body" across doctypes
+
-
var menuitems=document.getElementById(menuid).getElementsByTagName("a")
+
-
for (var i=0; i<menuitems.length; i++){
+
-
if (menuitems[i].getAttribute("rel")){
+
-
var relvalue=menuitems[i].getAttribute("rel")
+
-
document.getElementById(relvalue).firstlink=document.getElementById(relvalue).getElementsByTagName("a")[0]
+
-
menuitems[i].onmouseover=function(e){
+
-
var event=typeof e!="undefined"? e : window.event
+
-
tabdropdown.dropit(this, event, this.getAttribute("rel"))
+
-
}
+
-
}
+
-
if (dselected=="auto" && typeof setalready=="undefined" && this.isSelected(menuitems[i].href)){
+
-
menuitems[i].parentNode.className+=" selected default"
+
-
var setalready=true
+
-
}
+
-
else if (parseInt(dselected)==i)
+
-
menuitems[i].parentNode.className+=" selected default"
+
-
}
+
-
}
+
-
 
+
-
}
+
-
</script>
+
-
<style>
+
-
.ddcolortabs{
+
-
padding: 0;
+
-
width: 100%;
+
-
background: transparent;
+
-
voice-family: "\"}\"";
+
-
voice-family: inherit;
+
-
}
+
-
 
+
-
.ddcolortabs ul{
+
-
font: normal 11px Arial, Verdana, sans-serif;
+
-
margin:0;
+
-
padding:0;
+
-
list-style:none;
+
-
}
+
-
 
+
-
.ddcolortabs li{
+
-
display:inline;
+
-
margin:0 2px 0 0;
+
-
padding:0;
+
-
text-transform:uppercase;
+
-
}
+
-
 
+
-
 
+
-
.ddcolortabs a{
+
-
float:left;
+
-
color: white;
+
-
background: black url(media/color_tabs_left.gif) no-repeat left top;
+
-
margin:0 2px 0 0;
+
-
padding:0 0 1px 3px;
+
-
text-decoration:none;
+
-
letter-spacing: 1px;
+
-
}
+
-
 
+
-
.ddcolortabs a span{
+
-
float:left;
+
-
display:block;
+
-
background: transparent url(media/color_tabs_right.gif) no-repeat right top;
+
-
padding: 4px 8px 2px 7px;
+
-
}
+
-
 
+
-
.ddcolortabs a span{
+
-
float:none;
+
-
}
+
-
 
+
-
.ddcolortabs a:hover{
+
-
background-color: #591f20;
+
-
}
+
-
 
+
-
.ddcolortabs a:hover span{
+
-
background-color: #591f20;
+
-
}
+
-
 
+
-
.ddcolortabs .selected a, #ddcolortabs .selected a span{ /*currently selected tab*/
+
-
background-color: #591f20;
+
-
}
+
-
 
+
-
.ddcolortabsline{
+
-
clear: both;
+
-
padding: 0;
+
-
width: 100%;
+
-
height: 8px;
+
-
line-height: 8px;
+
-
background: black;
+
-
border-top: 1px solid #fff; /*Remove this to remove border between bar and tabs*/
+
-
}
+
-
 
+
-
/* ######### Style for Drop Down Menu ######### */
+
-
 
+
-
.dropmenudiv_a{
+
-
position:absolute;
+
-
top: 0;
+
-
border: 1px solid black; /*THEME CHANGE HERE*/
+
-
border-top-width: 8px; /*Top border width. Should match height of .ddcolortabsline above*/
+
-
border-bottom-width: 0;
+
-
font:normal 12px Arial;
+
-
line-height:18px;
+
-
z-index:100;
+
-
background-color: white;
+
-
width: 200px;
+
-
visibility: hidden;
+
-
}
+
-
 
+
-
 
+
-
.dropmenudiv_a a{
+
-
width: auto;
+
-
display: block;
+
-
text-indent: 5px;
+
-
border-top: 0 solid #678b3f;
+
-
border-bottom: 1px solid #678b3f; /*THEME CHANGE HERE*/
+
-
padding: 2px 0;
+
-
text-decoration: none;
+
-
color: black;
+
-
}
+
-
 
+
-
* html .dropmenudiv_a a{ /*IE only hack*/
+
-
width: 100%;
+
-
}
+
-
 
+
-
.dropmenudiv_a a:hover{ /*THEME CHANGE HERE*/
+
-
background-color: #8a3c3d;
+
-
color: white;
+
-
}
+
-
</style>
+
-
</head>
+
-
 
+
-
<!-- CSS for Drop Down Tabs Menu #1 -->
+
-
<link rel="stylesheet" type="text/css" href="ddcolortabs.css" />
+
-
 
+
-
<div id="colortab" class="ddcolortabs">
+
-
<ul>
+
-
<li><a href="https://2008.igem.org/Team:Edinburgh" title="Home"><span>Home</span></a></li>
+
-
<li><a href="https://2008.igem.org/Team:Edinburgh/Project" title="Project" rel="dropmenu1_a"><span>The Project</span></a></li>
+
-
<li><a href="https://2008.igem.org/Team:Edinburgh/Team" title="Team" ><span>The Team</span></a></li>
+
-
<li><a href="http://partsregistry.org/cgi/partsdb/pgroup.cgi?pgroup=iGEM2008&group=Edinburgh" title="Project" rel="dropmenu1_a"><span>BioBrick Parts</span></a></li>
+
-
<li><a href="https://2008.igem.org/Team:Edinburgh/Modeling" title="Modelling" rel="dropmenu2_a"><span>Modelling</span></a></li>
+
-
<li><a href="https://2008.igem.org/Team:Edinburgh/Notebook" title="Notebook"><span>Notebook</span></a></li>
+
-
</ul>
+
-
</div>
+
-
<div class="ddcolortabsline">&nbsp;</div>
+
-
<div id="dropmenu1_a" class="dropmenudiv_a">
+
-
<a href="https://2008.igem.org/Team:Edinburgh/Team">Overview</a>
+
-
<a href="https://2008.igem.org/Team:Edinburgh/Team">Step1</a>
+
-
<a href="https://2008.igem.org/Team:Edinburgh/Team">Step2</a>
+
-
</div>
+
-
<script type="text/javascript">
+
-
//SYNTAX: tabdropdown.init("menu_id", [integer OR "auto"])
+
-
tabdropdown.init("colortab", 3)
+
-
</script>
+
-
</html>
+
-
For more information, please see [https://www.wiki.ed.ac.uk/display/iGEM2008/HOME our internal wiki].
+
== Calendar ==
-
= Calender =
+
Click on a date to see a summary of labwork done on that day. Up-to-date to end 12 October. Best viewed with Mozilla Firefox.
<table>
<table>
Line 319: Line 31:
{|style="font color="#ffffff"; "background-color:"#cd0000"; cellpadding="0" cellspacing="4" border="4" bordercolor="#000"; border-spacing:0px; text-align:center" width="250px"
{|style="font color="#ffffff"; "background-color:"#cd0000"; cellpadding="0" cellspacing="4" border="4" bordercolor="#000"; border-spacing:0px; text-align:center" width="250px"
-
<h3>Calendar</h3>
 
-
|-
 
-
|
 
-
<td><td> {{#calendar: title=Edinburgh |year=2008 | month=06}}
 
-
<td><td> {{#calendar: title=Edinburgh |year=2008 | month=07}}
 
-
<td><td> {{#calendar: title=Edinburgh |year=2008 | month=08}}
 
-
</td></tr>
 
-
|-
 
-
|
 
</table>
</table>
 +
{| align="center"
 +
|-valign="top"
 +
|align="center" width="150pt"|{{#calendar: title=Edinburgh |year=2008 | month=06}}
 +
|align="center" width="150pt"|{{#calendar: title=Edinburgh |year=2008 | month=07}}
 +
|align="center" width="150pt"|{{#calendar: title=Edinburgh |year=2008 | month=08}}
 +
|align="center" width="150pt"|{{#calendar: title=Edinburgh |year=2008 | month=09}}
 +
|align="center" width="150pt"|{{#calendar: title=Edinburgh |year=2008 | month=10}}
 +
|}
 +
== Summary of samples ==
-
= Lab Notebook =
+
Up-to-date to end 28 October.
-
=== Week 9 ===
+
-
 
+
-
 
+
-
==== Monday 11 August 08 ====
+
-
 
+
-
* PCR products of P55 to P58 (''cenA'' and ''cex'') were run on '''Gel 41:''' ''cex'' with KOD polymerase (P57) generated a single band of the desired size. However, ''cex'' with Velocity polymerase and ''cenA'' with both KOD or Velocity polymerase failed. (YAN)
+
-
* PCR products P61 to P63 (''rrnB'', ''cenA'', ''cex'') were run on '''Gel 42'''. Very clear band for ''rrnB'', no bands for either ''cenA'' or ''cex''. (CF)
+
-
* Made '''Plate 109/110''' (Transformation of L33: pBS1A2+pCstA), '''111/112''' (transformation of L34: pBS1A2+''dxs''+''crtE'') and Plate '''113/114''' (Transformation of L35: pBS1A2+''dxs''+''lims1''). (Yan)
+
-
* Maxipreps '''X9''' of pSB1A2+rbs+''dxs'' (as for M72) and '''X10''' of pSB1A2P+rbs+''appY'' (as for M82). (AM)
+
-
* Redid PCR (KOD) of ''cex'' from ''C. fimi'' genomic DNA but with 10µl 50% glycerol, denaturing 1 min, annealing 60°C for 30s and extension 30s ('''P64'''). To be run on gel tomorrow. (AM)
+
-
* Digested P57 (''cex'' from KOD PCR) with EcoRI/PstI to confirm identity of the gene. ''cex'' has a PstI restriction site near its midpoint, so this digestion should generate two segments of approximately 750bp. To be run on gel tomorrow. (AM)
+
-
* Digests performed using EcoRI/PstI to move ''crtE'' from BABEL2 (M79) to Edinbrick1. In each case, 3µl of vector was digested in 20µl total volume. The digests were run on a gel ready for excision, but gel showed no band corresponding to ''crtE'' (see '''gel 43''' showing a single band at ~3kb for BABEL2+''crtE'' and bands at ~2.5kb and 800bp for Edinbrick1). (AH)
+
-
* '''M109-M112''' Minipreps of pSB1A2+''crtB''+''crtI'', from plates 102. '''M113-M116''' Minipreps of pSB1A2+''glgC''-mut1,2 from plate 103. '''M117-M120''' Minipreps of pSB1A2+''glgC''-mut1,2,3 from plate 94 (OG)
+
-
* Double digestion of M109 to M120 with EcoRI/PstI, run on '''gel 44'''. M110-102 (pSB1A2+''crtB''+''crtI'') have a band at 2.5kb as expected. M109 (pSB1A2+''crtB''+''crtI'') gave a band at 3kb instead, so should be ignored from now on. (Yan)
+
-
 
+
-
==== Tuesday 12 August 08 ====
+
-
 
+
-
* '''Plate 115''' made with subs from L33 (Pl. 109/110: pSB1A2+pCstA), L34 (Pl. 111/112: pSB1A2+''dxs''+''crtE'') and L35 (Pl. 113/114: pSB1A2+''dxs''+''lims1'') (CF)
+
-
* Over-night cultures of L33 (pSB1A2+pCstA, sub-cloned on Plate 115), L34 (pSB1A2+''dxs''+''crtE'', sub-cloned on Plate 115) and L35 (pSB1A2+''dxs''+''lims1'', subcloned on Plate 115) set up, ready for minipreps tomorrow.
+
-
* '''M121-M123''': Minipreps of pSB1A2+''crtY'' (1,2,3). '''M124-M126''': Minipreps of pSB1A2+rbs+''crtY'' (1,2,3). note: I messed up M121 by adding 200µl instead of 100µl of sol 1. They are in the green box, the orange one is full. (OG)
+
-
* Double digests of M121 to M126, run on '''Gel 46'''. It looks good! M121 is good! (Yan)
+
-
* Purified P61 (''rrnB'') for sequencing. (CF/AM)
+
-
* Re-purified already purified genomic DNA from ''C. fimi''. This meaningless endeavour resulted from a misunderstanding. Hopefully, the doubly-purified DNA will still be useable. (AM)
+
-
* P57 (''cex'' from cells) EcoRI/PstI double digest, undigested P64 (''cex'' from genomic DNA), P66 (''su1'') and P67 (''iso2'') run on '''Gel 45'''. P57 double digest yielded no clear bands; P64 yielded a clear band at 1.5 kb. (CF/AM)
+
-
* Purified P57 (''cex'' from cell suspension) and P64 (''cex'' from genomic DNA). Digested both with PstI. (AM)
+
-
* PCR for ''cenA'' from ''C. fimi'' genomic DNA ('''P65'''): denaturing 1 min, annealing 56°C for 20s, extension 30s, with glycerol. (AM)
+
-
* P57 and P64 (''cex'') PstI digests and P65 (''cenA'') run on '''Gel 47'''. Results indicate success!. (AM)
+
-
* Re-did the excise of ''crtE'' from BABEL2 (M79); cut out the band responsible for ''crtE'' and Edinbrick 1 on the gel, followed by putification of ''crtE'' and Edinbrick1 from the cut-out gel. Finally, ligation of ''crtE'' to Edinbrick1 ('''L38'''). (HX, AH)
+
-
* Analytical digests as follows (AH):
+
-
** M109 and M110 (pSB1A2+''crtB''+''crtI''): BamHI/EcoRV
+
-
** M115 and M116 (pSB1A2+''glgC''-mut1,2): HindIII
+
-
** M115 and M116 (pSB1A2+''glgC''-mut1,2): EcoRI/HindIII
+
-
* Digests of M109, M110, M115 and M116 were run on '''gel 48'''. M109 and M110 should give two bands if both genes are present. HindIII digest of M115/116 should give a single band indicating linearised plasmid with ''glgC''. Double digest of M115/116 should give an insert band of ~1kb and a vector + ~500bp of insert band. Results do not look good. Bands seem to indicate much too large products, but will discuss with Chris tomorrow.(AH)
+
-
* M116 (pSB1A2+''glgC''-mut1,2) and M120 (BABEL2+''glgC''-mut1,2,3) submitted for sequencing. (CF)
+
-
 
+
-
==== Wednesday 13 August 08 ====
+
-
 
+
-
* Submitted M109 (pSb1A2+''crtB''+''crtI'') for sequencing as AH_109F and AH_109R using primers pSB1A2insF2 and pSB1A2insR2 respectively. (AH)
+
-
* '''M127-M130''': Minipreps of pSB1A2+pCstA (1,2,3,4), '''M131-M134''': Minipreps of pSB1A2+''dxs''+''crtE'' (1,2,3,4), '''M135-M138''': Minipreps of pSB1A2+''dxs''+''lims1'' (1,2,3,4). All from plate 115. Note: M132 and M136 might be labelled wrong, the ethanol erased the writing on the tubes. Sorry! (OG)
+
-
* Double digests performed on M127-138 using EcoRI/PstI. (AH, OG)
+
-
* Transformation of L38 (pSB1A2-''crtE'') on '''Plate 116''' (100ml) and '''plate 117''' (900ml). (HX)
+
-
* Ligation of P54 (''cex'') and P65 (''cenA'') into Edinbrick1, to make L39 (pSB1A2+''cex'') and L40 (pSB1A2+''cenA''). (Yan)
+
-
* PCR for ''cenB'' ('''P68''') and ''cenC'' ('''P69''') from ''C. fimi'' genomic DNA: denaturing 1 min, annealing 56°C for 20s, extension 85s, with glycerol. Run on '''Gel 49'''. Results indicate failure. (AM)
+
-
 
+
-
h5. Thursday 14 August 08
+
-
 
+
-
* Subplated from plate 116 (pSB1A2+crtE 100 microlitres) onto *plate 118*. Should be ready to make culture for miniprep later this afternoon. (AH)
+
-
* Submitted M121 (pSB1A2+crtY), M124 (pSB1A2+rbs+crtY), M130 (pSB1A2+pCstA) and M137 (pSB1A2+dxs+lims) for sequencing using pSB1A2insF2 for sequencing of all 4 + pSB1A2insR2 for M137. Also resubmitted M109 (pSB1A2+crtBI) for sequencing using both forward and reverse primers, because I realised that yesterday I circled BigDye rather than "reaction required" on the sequencing form\! (AH)
+
-
* Made culture of pSB1A2+CrtE from plate 118, which was subcloned from plate 116&nbsp;for minipreps (1-4) (YAN & HX).
+
-
* Transformation of L39 (Cex+Edinbrick1) into *plate 121/122;*&nbsp;and L40 (CenA+Edinbrick1) into *Plate 119/120.* (YAN).
+
-
* Digested and ligated M63 (crtE) and M72 (dxs). for M63 i used buffer H, XbaI, and PstI, For M72 i used buffer B,&nbsp;SpeI and PstI. M63 in inserted downstream of M72. the DNA samples of M63 and M72 were&nbsp;taken from the gel after using SYBR-Safe staining. (OG)
+
-
* Purified four preps of _C. fimi_ genomic DNA from bottled cultures made by Dr French (in LB, made from _C. fimi_ NA plates on lab bench). (AM)
+
-
* PCR of M43 (glgC mut 1+2 -->- *{-}P70{-}*\-) and M120 (glgC mut 1+2+3 \--> *P71*) with blunt-ended glgC primers. Run on *Gel 52* (?) . Results: P70 failed; P71 yielded a thick band around 1.5kb (proper size for glgC) and two unexpected bands around 6kb and 12kb. (AM)
+
-
 
+
-
h5. Friday 15 August 08
+
-
 
+
-
* Plates from yesterdays transformations of pSB1A2\+_cex_ and pSB1A2\+_cenA_ (119-122) failed to show any signs of growth. The transformation's being repeated. (AH)
+
-
* Glycogen assay performed: Flooding colonies with Gram's iodine solution yields results after \~5 minutes. Colonies on the (+)glucose plate stained darker than those on the (-)glucose plate (brown compared to no apparent change). The staining seems to grow more apparent up to \~30 minutes and then fades to nothing as the plate dries off. (AH)
+
-
* Transform with L39(cex+Edi), L40(cenA+Edi) & L41(dxs/crtE) on Plate123 to 128.(HX)
+
-
* Minipreps of pSB1A2+CrtE from its corresponding culture 1 to 4, made *M139 to M143*. (M142 and M143 made from the same culture (4). M143 has double quantity of solution 1.) Then, double digeats of M139 to M143 with EcoRI and PstI and the products were run on *Gel 53*. (YAN/OG)
+
-
* PCR of M43 (repeat: glgC mut 1+2 -->- *{-}P71A{-}*\-), M120 (repeat: glgC mut 1+2+3 \--> *P72*), and rrnB from the four _C. fimi_ genomic DNA preps made yesterday plus the original prep as a positive control (*P73~77*). PCR products run on *Gel 54*. Results: P71A and P72 succeeded, producing large quantities of DNA around the length of glgC; P74 yielded a single band around 1.5~2 kbp whilst P73 and P75 yielded gel-length smears and nothing came of P76 and P77 (the control). (AM)
+
-
 
+
-
== Summary of samples: ==
+
-
==== PCR products ====
+
-
 
+
-
'''P1:''' ''dxs'' from ''Eschaerichia coli'' JM109 (or K12?)<br />
+
-
'''P2:''' ''appY'' from ''E. coli'' JM109 (or K12?)<br />
+
-
'''P3:''' ''glgC'' from ''E. coli'' JM109 (or K12?)<br />
+
-
'''P4:''' fusion PCR for BABEL1+''glgC''<br />
+
-
'''P5:''' fusion PCR for BABEL2+''glgC''<br />
+
-
'''P6:''' mutagenic PCR to remove EcoRI site 1 from ''glgC''<br />
+
-
'''P7:''' mutagenic PCR to remove EcoRI site 2 from ''glgC''<br />
+
-
'''P8:''' ''crtB'' (from ''Pantoea ananatis'' cells)<br />
+
-
'''P9:''' ''crtI'' (from Douglas's maxiprep of the mutated ''crtIB'' plasmid)<br />
+
-
'''P10:''' ''crtY'' (from ''P. ananatis'' cells). Failed.<br />
+
-
'''P11:''' fusion PCR for rbs+''dxs''. Failed.<br />
+
-
'''P12:''' repeat fusion PCR for rbs+''dxs'', using L11 and primers rbs2fclon1+pSB1A2insr1.<br />
+
-
'''P13 and P14:''' MABEL mutation of site 1 on ''glgC'' mutant clones M19 and M22.<br />
+
-
'''P15:''' fusion PCR for rbs+''appY''<br />
+
-
'''P16, P17, P18 and P19:''' first attempts at ''cenA'', ''cenB'', ''cenC'' and ''cex''.<br />
+
-
'''P20, P21, P22 and P23:''' second attempts at ''cenA'', ''cenB'', ''cenC'' and ''cex''.<br />
+
-
'''P24, P25:''' repeat PCR for ''cenA'' and ''cex'' using Pfu. Failed.<br />
+
-
'''P26:''' Positive control PCR with primers fd1 and rd1 to amplify 16S rRNA gene ''rrnB'' from ''Cellulomonas fimi''.<br />
+
-
'''P27:''' ''crtY'' from ''P. ananatis'' cells. - Failed<br />
+
-
'''P28, P29:''' ''crtB'' and ''crtI'' from L18 and L19.<br />
+
-
'''P30:''' Repeat positive control ''rrnB'' from ''C. fimi'', annealing 1 minute.<br />
+
-
'''P31:''' pZntA promoter<br />
+
-
'''P32-P35:''' repeat PCR for ''cenA'', ''cenB'', ''cenC'' and ''cex'', annealing 1 minute. Failed.<br />
+
-
'''P36:''' M43 (''glgC''-mut1,2) with primers glgCf2/glgCr2 (25.07.08: AM)<br />
+
-
'''P37:''' ''crtY'' from ''P. ananatis''. (25.07.08: AM) - Failed<br />
+
-
'''P38~P41:''' ''cenA'', ''cenB'', ''cenC'' and ''cex'' from heat-killed cell suspension.<br />
+
-
'''P42~P45:''' ''cenA'', ''cenB'', ''cenC'' and ''cex'' from 'impure' DNA solution.<br />
+
-
'''P46~P47:''' ''cenA'' and ''cex'' from 'impure' DNA solution, annealing 65C. Failed.<br />
+
-
'''P48:''' ''crtY'' (new primer mixture) (previously P38a) (30.07.08: CF) - Failed<br />
+
-
'''P49:''' Recreation of P12 (rbs+''dxs'') (previously P39a) (30.07.08: CF)<br />
+
-
'''P50:''' third mutagenesis of ''glgc''-mut1,2 (04.08.08: YAN)<br />
+
-
'''P51:''' pCstA from ''E. coli'' cells (06.08.08: CF) - Failed<br />
+
-
'''P52:''' ''cenA'' from heat killed ''C. fimi'' (07/08/08: YAN, AM) - Failed<br />
+
-
'''P53:''' ''cex'' from heat killed ''C. fimi'' (07/08/08: YAN, AM) - Failed<br />
+
-
'''P54:''' pCstA from ''E. coli'' cells - Purified (07.08.08: CF)<br />
+
-
 
+
-
==== Ligations ====
+
-
 
+
-
'''L1:''' Edinbrick1+''dxs''<br />
+
-
'''L2:''' Edinbrick1+''appY''<br />
+
-
'''L3:''' Babel1+''glgC''<br />
+
-
'''L4:''' Babel2+''glgC''<br />
+
-
'''L5:''' Edinbrick1+''appY'' repeat (initially labelled L4 in error)<br />
+
-
'''L6:''' Self ligation of mutagenic PCR P6<br />
+
-
'''L7:''' Self ligation of mutagenic PCR P7<br />
+
-
'''L8:''' Ligation of synthetic ribosome binding site to M2 (BBa_K118000)<br />
+
-
'''L9:''' Edinbrick1+''crtB''<br />
+
-
'''L10:''' Edinbrick1+''crtI'' (mutant lacking PstI sites, I hope)<br />
+
-
'''L11:''' repeat ligation of synthetic ribosome binding site to M2 (BBa_K118000)<br />
+
-
'''L12:''' rbs ligated with ''appY''.<br />
+
-
'''L13 and L14:''' self ligations of ''glgC'' mutation reactions P13 and P14.<br />
+
-
'''L15:''' ligation of Edinbrick1 with rbs+''dxs'' fusion PCR product (P12). - Failed<br />
+
-
'''L16:''' Ligation of Edinbrick1 with rbs+''appY'' fusion PCR product (P15) (17/07/08) - Failed<br />
+
-
'''L17:''' Ligation of ''crtB'' (M36) to rbs (22/07/08)<br />
+
-
'''L18:''' Ligation of ''crtI'' (M42) to rbs (22/07/08)<br />
+
-
'''L19:''' pSB1A2+rbs+''dxs'' ligation product (From P12) (25/07/08: Yan/OG)<br />
+
-
'''L20:''' pSB1A2+rbs+''appY'' ligation product (From P15) (25/07/08: Yan/OG)<br />
+
-
'''L21:''' pSB1A2+rbs+''crtB'' ligation product (From P28) (25/07/08: Yan/OG)<br />
+
-
'''L22:''' pSB1A2+rbs+''crtI'' ligation product (From P29) (25/07/08: Yan/OG)<br />
+
-
'''L23:''' PzntA+pSB1A2 ligation product (From P31) (25/07/08: Yan/OG)<br />
+
-
'''L24:''' Ligation of ''crtE'' to pSB1A2 (25/07/08: CF)<br />
+
-
'''L25:''' Ligation of ''glgC'' double mutant (P36) to Edinbrick 1 (28.07.2008: AM)<br />
+
-
'''L26:''' Ligation of Edi+P15 XP - rbs+''appY'' (30.07.2008: HX)<br />
+
-
'''L27:''' Ligation of Edi+P28 XP - rbs+''crtB'' (30.07.2008: HX)<br />
+
-
'''L28:''' Putative ''cenA'' ligated to Edinbrick1 (30.07.08: AM)<br />
+
-
'''L29:''' Putative ''cex'' ligated to Edinbrick1 (30.07.08: AM)<br />
+
-
'''L30:''' Self-ligation of P15 (3rd mutagenesis of ''glgC''-mut1,2) (05.08.08: HX)<br />
+
-
'''L31:''' Ligation of P36 (''glgC''-mut1,2, hopefully, could be P39) to Edinbrick1 (05.08.08: OG)<br />
+
-
'''L32:''' Ligation of rbs+''crtB'' (M67) to rbs+''crtI'' (M50) to create ''crtB''/''crtI'' (07.08.08: AM, Yan)<br />
+
-
'''L33:''' Ligation of PcstA (P54) to Edinbrick1 (08.08.08: OG)<br />
+
-
 
+
-
==== Minipreps ====
+
-
 
+
-
'''M1 to M6:''' pSB1A2+''dxs'' transformants. *M2, M3, M4 and M6* all looked correct on a gel. *M2* was sequenced to confirm identity and was maxiprepped as *X2*.<br />
+
-
'''M7:''' Babel1+''glgC'' transformant. Did not look right on gel.<br />
+
-
'''M8 to M12:''' Babel2+''glgC''_ transformants. *M10 and M11* both looked good on a gel, but sequencing showed that both had the insert in the reverse orientation.<br />
+
-
'''M13 to M18:''' pSB1A2+''appY'' transformants. Gel 10 showed that M15 to M18, and possibly M14, all seemed to have inserts the right size.<br />
+
-
'''M19 to M24:''' Babel2+''glgC'' clones after mutation of EcoRI site 2. EcoRI digests on *Gel 11* suggest that *M19, M21 and M22* may have lost the EcoRI site.<br />
+
-
'''M25 to M30:''' possible rbs+''dxs'' transformants.<br />
+
-
'''M31 to M36:''' ''crtB'' clones.<br />
+
-
'''M37 to M42:''' ''crtI'' clones.<br />
+
-
'''M43 to M47:''' possible ''glgC'' double mutants (both EcoRI sites gone)<br />
+
-
'''M48:''' a possible rbs+''dxs'' clone.<br />
+
-
'''M49 to M54:''' pSB1A2-rbs+''crtI''<br />
+
-
'''M55 to M60:''' PZntA promoter<br />
+
-
'''M61 to M66:''' BABEL2+rbs+''crtE''<br />
+
-
'''M67:''' rbs+''crtB''<br />
+
-
'''M68 to M71:''' pSB1A2+''glgC''-mut1,2 (31.07.08: AM, YAN)<br />
+
-
'''M72 to M75:''' pSB1A2+rbs+''dxs'' (31.07.08: AM, YAN)<br />
+
-
'''M76 to M79:''' BABEL2+''crtE'' (31.07.08: AM, YAN)<br />
+
-
'''M80 to M83:''' pSB1A2+rbs+''appY'' (04/08/08: YAN and OG)<br />
+
-
'''M84 to M85:''' pSB1A2+rbs+''crtB'' (04/08/08: YAN and OG)<br />
+
-
'''M86 to M90:''' pSB1A2+''cenA'' (04/08/08: YAN and OG)<br />
+
-
'''M91 to M96:''' pSB1A2+''cex''(04/08/08: YAN and OG)<br />
+
-
'''M97 to M104:''' pSB1A2+''cenA'' (05.08.08: YAN)<br />
+
-
'''M105 to M108:''' pSB1A2+''cex'' (05.08.08: YAN)<br />
+
-
 
+
-
==== Maxipreps ====
+
-
'''X1:''' BioBrick J33201<br />
+
[[Edinburgh/Notebook/PCR products|PCR products]]<br />
-
'''X2:''' pSB1A2+''dxs'' clone (as M2; BBa_K118000)<br />
+
[[Edinburgh/Notebook/Ligation products|Ligation products]]<br />
-
'''X3:''' pSB1A2+''appY'' (from Plate 21, streak 3) (18 July 2008)<br />
+
[[Edinburgh/Notebook/Minipreps|Minipreps]]<br />
-
'''X4:''' pSB1A2+''crtB'' (as M36; BBa_K118002) (25.07.08: A
+
[[Edinburgh/Notebook/Maxipreps|Maxipreps]]<br />
 +
[[Edinburgh/Notebook/Plates|Plates]]<br />

Latest revision as of 00:26, 30 October 2008

Calendar

Click on a date to see a summary of labwork done on that day. Up-to-date to end 12 October. Best viewed with Mozilla Firefox.

June
MTWTFSS
            [http://2008.igem.org/wiki/index.php?title=Edinburgh/1_June_2008&action=edit 1]
[http://2008.igem.org/wiki/index.php?title=Edinburgh/2_June_2008&action=edit 2] [http://2008.igem.org/wiki/index.php?title=Edinburgh/3_June_2008&action=edit 3] [http://2008.igem.org/wiki/index.php?title=Edinburgh/4_June_2008&action=edit 4] [http://2008.igem.org/wiki/index.php?title=Edinburgh/5_June_2008&action=edit 5] [http://2008.igem.org/wiki/index.php?title=Edinburgh/6_June_2008&action=edit 6] [http://2008.igem.org/wiki/index.php?title=Edinburgh/7_June_2008&action=edit 7] [http://2008.igem.org/wiki/index.php?title=Edinburgh/8_June_2008&action=edit 8]
[http://2008.igem.org/wiki/index.php?title=Edinburgh/9_June_2008&action=edit 9] [http://2008.igem.org/wiki/index.php?title=Edinburgh/10_June_2008&action=edit 10] [http://2008.igem.org/wiki/index.php?title=Edinburgh/11_June_2008&action=edit 11] [http://2008.igem.org/wiki/index.php?title=Edinburgh/12_June_2008&action=edit 12] [http://2008.igem.org/wiki/index.php?title=Edinburgh/13_June_2008&action=edit 13] [http://2008.igem.org/wiki/index.php?title=Edinburgh/14_June_2008&action=edit 14] [http://2008.igem.org/wiki/index.php?title=Edinburgh/15_June_2008&action=edit 15]
[http://2008.igem.org/wiki/index.php?title=Edinburgh/16_June_2008&action=edit 16] [http://2008.igem.org/Edinburgh/17_June_2008 17] [http://2008.igem.org/wiki/index.php?title=Edinburgh/18_June_2008&action=edit 18] [http://2008.igem.org/Edinburgh/19_June_2008 19] [http://2008.igem.org/Edinburgh/20_June_2008 20] [http://2008.igem.org/wiki/index.php?title=Edinburgh/21_June_2008&action=edit 21] [http://2008.igem.org/wiki/index.php?title=Edinburgh/22_June_2008&action=edit 22]
[http://2008.igem.org/wiki/index.php?title=Edinburgh/23_June_2008&action=edit 23] [http://2008.igem.org/Edinburgh/24_June_2008 24] [http://2008.igem.org/Edinburgh/25_June_2008 25] [http://2008.igem.org/Edinburgh/26_June_2008 26] [http://2008.igem.org/Edinburgh/27_June_2008 27] [http://2008.igem.org/Edinburgh/28_June_2008 28] [http://2008.igem.org/Edinburgh/29_June_2008 29]
[http://2008.igem.org/Edinburgh/30_June_2008 30]
July
MTWTFSS
  [http://2008.igem.org/Edinburgh/1_July_2008 1] [http://2008.igem.org/Edinburgh/2_July_2008 2] [http://2008.igem.org/Edinburgh/3_July_2008 3] [http://2008.igem.org/Edinburgh/4_July_2008 4] [http://2008.igem.org/Edinburgh/5_July_2008 5] [http://2008.igem.org/Edinburgh/6_July_2008 6]
[http://2008.igem.org/Edinburgh/7_July_2008 7] [http://2008.igem.org/Edinburgh/8_July_2008 8] [http://2008.igem.org/Edinburgh/9_July_2008 9] [http://2008.igem.org/Edinburgh/10_July_2008 10] [http://2008.igem.org/Edinburgh/11_July_2008 11] [http://2008.igem.org/Edinburgh/12_July_2008 12] [http://2008.igem.org/Edinburgh/13_July_2008 13]
[http://2008.igem.org/Edinburgh/14_July_2008 14] [http://2008.igem.org/Edinburgh/15_July_2008 15] [http://2008.igem.org/Edinburgh/16_July_2008 16] [http://2008.igem.org/Edinburgh/17_July_2008 17] [http://2008.igem.org/Edinburgh/18_July_2008 18] [http://2008.igem.org/Edinburgh/19_July_2008 19] [http://2008.igem.org/Edinburgh/20_July_2008 20]
[http://2008.igem.org/Edinburgh/21_July_2008 21] [http://2008.igem.org/Edinburgh/22_July_2008 22] [http://2008.igem.org/Edinburgh/23_July_2008 23] [http://2008.igem.org/Edinburgh/24_July_2008 24] [http://2008.igem.org/Edinburgh/25_July_2008 25] [http://2008.igem.org/Edinburgh/26_July_2008 26] [http://2008.igem.org/Edinburgh/27_July_2008 27]
[http://2008.igem.org/Edinburgh/28_July_2008 28] [http://2008.igem.org/Edinburgh/29_July_2008 29] [http://2008.igem.org/Edinburgh/30_July_2008 30] [http://2008.igem.org/Edinburgh/31_July_2008 31]
August
MTWTFSS
        [http://2008.igem.org/Edinburgh/1_August_2008 1] [http://2008.igem.org/wiki/index.php?title=Edinburgh/2_August_2008&action=edit 2] [http://2008.igem.org/Edinburgh/3_August_2008 3]
[http://2008.igem.org/Edinburgh/4_August_2008 4] [http://2008.igem.org/Edinburgh/5_August_2008 5] [http://2008.igem.org/Edinburgh/6_August_2008 6] [http://2008.igem.org/Edinburgh/7_August_2008 7] [http://2008.igem.org/Edinburgh/8_August_2008 8] [http://2008.igem.org/Edinburgh/9_August_2008 9] [http://2008.igem.org/Edinburgh/10_August_2008 10]
[http://2008.igem.org/Edinburgh/11_August_2008 11] [http://2008.igem.org/Edinburgh/12_August_2008 12] [http://2008.igem.org/Edinburgh/13_August_2008 13] [http://2008.igem.org/Edinburgh/14_August_2008 14] [http://2008.igem.org/Edinburgh/15_August_2008 15] [http://2008.igem.org/Edinburgh/16_August_2008 16] [http://2008.igem.org/Edinburgh/17_August_2008 17]
[http://2008.igem.org/Edinburgh/18_August_2008 18] [http://2008.igem.org/Edinburgh/19_August_2008 19] [http://2008.igem.org/Edinburgh/20_August_2008 20] [http://2008.igem.org/Edinburgh/21_August_2008 21] [http://2008.igem.org/Edinburgh/22_August_2008 22] [http://2008.igem.org/wiki/index.php?title=Edinburgh/23_August_2008&action=edit 23] [http://2008.igem.org/wiki/index.php?title=Edinburgh/24_August_2008&action=edit 24]
[http://2008.igem.org/Edinburgh/25_August_2008 25] [http://2008.igem.org/Edinburgh/26_August_2008 26] [http://2008.igem.org/Edinburgh/27_August_2008 27] [http://2008.igem.org/Edinburgh/28_August_2008 28] [http://2008.igem.org/Edinburgh/29_August_2008 29] [http://2008.igem.org/wiki/index.php?title=Edinburgh/30_August_2008&action=edit 30] [http://2008.igem.org/wiki/index.php?title=Edinburgh/31_August_2008&action=edit 31]
September
MTWTFSS
[http://2008.igem.org/Edinburgh/1_September_2008 1] [http://2008.igem.org/Edinburgh/2_September_2008 2] [http://2008.igem.org/Edinburgh/3_September_2008 3] [http://2008.igem.org/wiki/index.php?title=Edinburgh/4_September_2008&action=edit 4] [http://2008.igem.org/Edinburgh/5_September_2008 5] [http://2008.igem.org/wiki/index.php?title=Edinburgh/6_September_2008&action=edit 6] [http://2008.igem.org/wiki/index.php?title=Edinburgh/7_September_2008&action=edit 7]
[http://2008.igem.org/wiki/index.php?title=Edinburgh/8_September_2008&action=edit 8] [http://2008.igem.org/Edinburgh/9_September_2008 9] [http://2008.igem.org/Edinburgh/10_September_2008 10] [http://2008.igem.org/Edinburgh/11_September_2008 11] [http://2008.igem.org/Edinburgh/12_September_2008 12] [http://2008.igem.org/wiki/index.php?title=Edinburgh/13_September_2008&action=edit 13] [http://2008.igem.org/wiki/index.php?title=Edinburgh/14_September_2008&action=edit 14]
[http://2008.igem.org/Edinburgh/15_September_2008 15] [http://2008.igem.org/Edinburgh/16_September_2008 16] [http://2008.igem.org/Edinburgh/17_September_2008 17] [http://2008.igem.org/Edinburgh/18_September_2008 18] [http://2008.igem.org/Edinburgh/19_September_2008 19] [http://2008.igem.org/wiki/index.php?title=Edinburgh/20_September_2008&action=edit 20] [http://2008.igem.org/wiki/index.php?title=Edinburgh/21_September_2008&action=edit 21]
[http://2008.igem.org/Edinburgh/22_September_2008 22] [http://2008.igem.org/Edinburgh/23_September_2008 23] [http://2008.igem.org/Edinburgh/24_September_2008 24] [http://2008.igem.org/Edinburgh/25_September_2008 25] [http://2008.igem.org/Edinburgh/26_September_2008 26] [http://2008.igem.org/Edinburgh/27_September_2008 27] [http://2008.igem.org/Edinburgh/28_September_2008 28]
[http://2008.igem.org/Edinburgh/29_September_2008 29] [http://2008.igem.org/Edinburgh/30_September_2008 30]
October
MTWTFSS
    [http://2008.igem.org/Edinburgh/1_October_2008 1] [http://2008.igem.org/Edinburgh/2_October_2008 2] [http://2008.igem.org/Edinburgh/3_October_2008 3] [http://2008.igem.org/Edinburgh/4_October_2008 4] [http://2008.igem.org/Edinburgh/5_October_2008 5]
[http://2008.igem.org/wiki/index.php?title=Edinburgh/6_October_2008&action=edit 6] [http://2008.igem.org/Edinburgh/7_October_2008 7] [http://2008.igem.org/Edinburgh/8_October_2008 8] [http://2008.igem.org/Edinburgh/9_October_2008 9] [http://2008.igem.org/Edinburgh/10_October_2008 10] [http://2008.igem.org/Edinburgh/11_October_2008 11] [http://2008.igem.org/Edinburgh/12_October_2008 12]
[http://2008.igem.org/wiki/index.php?title=Edinburgh/13_October_2008&action=edit 13] [http://2008.igem.org/wiki/index.php?title=Edinburgh/14_October_2008&action=edit 14] [http://2008.igem.org/wiki/index.php?title=Edinburgh/15_October_2008&action=edit 15] [http://2008.igem.org/wiki/index.php?title=Edinburgh/16_October_2008&action=edit 16] [http://2008.igem.org/wiki/index.php?title=Edinburgh/17_October_2008&action=edit 17] [http://2008.igem.org/wiki/index.php?title=Edinburgh/18_October_2008&action=edit 18] [http://2008.igem.org/wiki/index.php?title=Edinburgh/19_October_2008&action=edit 19]
[http://2008.igem.org/wiki/index.php?title=Edinburgh/20_October_2008&action=edit 20] [http://2008.igem.org/wiki/index.php?title=Edinburgh/21_October_2008&action=edit 21] [http://2008.igem.org/wiki/index.php?title=Edinburgh/22_October_2008&action=edit 22] [http://2008.igem.org/wiki/index.php?title=Edinburgh/23_October_2008&action=edit 23] [http://2008.igem.org/wiki/index.php?title=Edinburgh/24_October_2008&action=edit 24] [http://2008.igem.org/wiki/index.php?title=Edinburgh/25_October_2008&action=edit 25] [http://2008.igem.org/wiki/index.php?title=Edinburgh/26_October_2008&action=edit 26]
[http://2008.igem.org/wiki/index.php?title=Edinburgh/27_October_2008&action=edit 27] [http://2008.igem.org/wiki/index.php?title=Edinburgh/28_October_2008&action=edit 28] [http://2008.igem.org/wiki/index.php?title=Edinburgh/29_October_2008&action=edit 29] [http://2008.igem.org/wiki/index.php?title=Edinburgh/30_October_2008&action=edit 30] [http://2008.igem.org/wiki/index.php?title=Edinburgh/31_October_2008&action=edit 31]

Summary of samples

Up-to-date to end 28 October.

PCR products
Ligation products
Minipreps
Maxipreps
Plates