Team:Edinburgh/Notebook

From 2008.igem.org

(Difference between revisions)
 
(36 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 7 ===
+
-
==== Monday 28 July 08 ====
+
-
 
+
-
* Repeated transformation of L20 (pSB1A2+rbs+''appY'') and L21 (pSB1A2+rbs+''crtB''), and plated on ''plates 63 to 66''. (YAN and Omar).
+
-
* PCR of ''cenA'', ''cenB'', ''cenC'' and ''cex'' from cell suspension ('''P38-41'''; cell solution incubated at 73-80°C for 8 minutes to kill cells/inactivate DNAse) and DNA solution 'purified' from contaminated cell culture ('''P42-45'''). Denaturing 95°C for 1 min, annealing 55°C for 10s, extension 70°C for 90s. PCR products run on '''Gel 26'''. (AM)
+
-
* Prepared '''L25''' of P36 (''glgC''-mut1,2 PCRed with primers f2 and r2) and Edinbrick 1. (AM)
+
-
* Minipreps '''M49 to M54''' of pSB1A2+rbs+''crtI'' transformants. (CF)
+
-
 
+
-
==== Tuesday 29 July 08 ====
+
-
 
+
-
* Transformation of L20 and L21 failed.
+
-
* Transformation of ''glgC''-mut1,2 ligation product, made '''plate 67 & 68''' (Yan)
+
-
* Cut out putative ''cenA'' and ''cex'' (both ~1.5kb) fragments from '''gel 27''' (repeat of Gel 26 but stained with SYBRsafe). Purified DNA from gel fragments: '''F1''' (putative ''cenA'') and '''F2''' (putative ''cex''). (AM)
+
-
* Digests of M49 to M54 (pSB1A2+rbs+''crtI'') with EcoRI alone. This should generate a single 4 kb band (doing an EcoRI/PstI double digest would give a vector and insert band both around 2 kb, which would probably run at the same place, making it hard to tell whether there was an insert). These were run on '''Gel 28'''. All showed a single band at the expected place. (CF)
+
-
* Minipreps of pSB1A2+pZntA ('''M55 to M60''') from L23 (Yan, Nimisha)
+
-
* Minipreps of pSB1A2+rbs+''crtE'' ('''M61 to M66''') from L22 (Yan, Nimisha)
+
-
** Double digests of M55 to M60 and M61 to M66 with EcoRI/PstI. This should generate the following bands: ~2.2 kb for pZntA (M55 to M60), ~1.1 kb for rbs+''crtE'' (M61 to M66), and ~2 kb for the pSB1A2 vector. These were run on '''Gel 29'''. M55 to M60 unsuccessful; M61 to M66 showed a band at the expected location for rbs+''crtE'' but seemed to be indicate that L22 was still ligated into BABEL2 instead of pSB1A2. (Yan & AM)
+
-
 
+
-
==== Wednesday 30 July 08 ====
+
-
 
+
-
* '''P48''' (''crtY'') and '''P49''' (Recreation of P12, rbs+''dxs'') created (30.07.08: CF)
+
-
* Ligated F1 (putative ''cenA'') and F2 (putative ''cex'') to Edinbrick 1 ('''L28''' and '''L29''' respectively). All were digested with EcoRI/SpeI, purified and stored overnight in the 16°C water bath. (AM)
+
-
* Repeated PCR for ''cenA'' and ''cex'' ('''P46''', '''P47''') from heat killed cell solution. Denaturing 95°C for 1 min, annealing 65°C for 10s, extension 70°C for 40s. Run on '''Gel 30'''. Unsuccessful, perhaps because annealing temperature was too high (temperature was decided based on stock solution label, which took the prefix/suffix into consideration). (AM)
+
-
* '''Gel 31''': M49 and M50 (pSB1A2-rbs+''crtI'' digested with a) XbaI, b) SpeI/XbaI, c) sac/speI), M63 (BABEL2+rbs+''crtE'' digested with a) EcoRI, b) EcoRI/PstI), M67 (pSB1A2+rbs+''crtB'' digested with a) EcoRI/PstI, b) sacI/speI) and P48 (''crtY''). (OG)
+
-
* Re-digested M55 to M60 (pSB1A2+pZntA) with a) EcoRI and b) EcoRI/PstI. (This time, the amount of DNA for digestion is increased). (Yan)
+
-
** '''Gel 32''' results look promising for M57, but not for the others. (Yan)
+
-
* Purified P15 (rbs+''appY'') and P28 (''crtB''), digested each with EdinbrickI using XbaI/PstI and set-up for ligations ('''L26''' and '''L27'''). Stored overnight in the 16°C water bath.(HX)
+
-
 
+
-
==== Thursday 31 July 08 ====
+
-
 
+
-
* M50 (pSB1A2+rbs+''crtI''), M63 (BABEL2+rbs+''crtE'') and M67 (rbs+''crtB'') submitted for sequencing. (CF)
+
-
* Transformation of L26 (pSB1A2+rbs+''appY'') to '''Plates 75 and 76''', L27 (pSB1A2+''crtB'') to '''Plates 77 and 78''', L28 (pSB1A2+''cenA'') to '''plates 79 and 80''' and L29 (pSB1A2+''cex'') to '''plates 81 and 82'''. (HX)
+
-
* Minipreps of '''M68-M71''' (pSB1A2+''glgC''-mut1,2), '''M72-M75''' (pSB1A2+rbs+''dxs'') and *M76-M79* (BABEL2+''crtE''). (YAN, AM)
+
-
 
+
-
==== Friday 1 August 08 ====
+
-
 
+
-
* Primers for pCstA ordered. (CF)
+
-
* White colonies from Thursday's transformations were subplated as follows...
+
-
** Plate 76 (L26: pSB1A2+rbs+''appY'') to '''Plate 83'''
+
-
** Plate 77 (L27: pSB1A2+rbs+''crtB'') to '''Plate 84'''
+
-
** Plate 80 (L28: pSB1A2+''cenA'') to '''Plate 85'''
+
-
** Plates 81/82 (L29: pSB1A2+''cex'') to '''Plate 86'''. (AM/HX/OG)
+
-
* ''First digestion'': M68 to M71 (pSB1A2+''glgC''-mut1,2) with EcoRI/PstI, M72 to M75 (pSB1A2+rbs+''dxs'') with EcoRI, M76 to M79 (BABEL2+''crtE'') with EcoRI/PstI. Run on '''Gel 33'''. Results: M68, 69, 71: vector band around 2 kb, no ''glgC'' band; M72, 73, 74: single band around 4 kb, expected length for vector+gene; M76-79: ''crtE'' band <1 kb, vector band ~2 kb. It is not clear into which vector ''crtE'' (M76~79) is inserted, so sequencing will be necessary.
+
-
* ''Second digestion'': M68 and M69 with a) EcoRI, b) EcoRI/PstI; M72 with a) EcoRI b) SacI/SpeI. Run on '''Gel 34'''. Results: Single and double digests of M68 and M69 yielded similar results, hence pSB1A2+''glgC''-mut1,2 ligation or transformation failed; digests of M72 yielded expected bands, hence pSB1A2+rbs+''dxs'' successful. (AM)
+
-
* P36 (''glgC''-mut1,2 excision from BABEL2) and L25 (P36 + Edinbrick1) were run again on '''Gel 35'''. Results: P36 viewed at lower illumination yields one band of the desired length (1.5kb); L25 yields two bands around 1.5kb, a thick band at 3kb and several fainter bands including one at 2kb (length of pSB1A2). (AM)
+
-
 
+
-
=== Week 8 ===
+
-
==== Monday 4 August 08 ====
+
-
 
+
-
* Made 17 minipreps from transformations of L26, L27, L28, L29: '''M80-83''' (L26: rbs+''appY'' in Edinbrick1), '''M84-85''' (L27: rbs+''crtB'' in Edinbrick1), '''M86-90''' (L28: ''cenA'' in Edinbrick1) and '''M91-96''' (L29: ''cex'' in Edinbrick1). This was followed by double digestion of all the miniprep products (M80-96) with EcoRI/PstI. (Yan, OG)
+
-
* Third ''glgC'' mutagenesis made by MABEL on BABEL2+''glgC''-mut1,2 (since pSB1A2+''glgC''-mut1,2 appears to have failed) performed: '''P50''' (Yan)
+
-
* Double digestions of M80 to M96 and P50 were run on '''gel 36'''. Results were good for M80-82 (pSB1A2+rbs+''appY''), M84-85 (pSB1A2+rbs+''crtB''), M92 (pSB1A2+''cex'') and P50 (''glgC''-mut1,2,3). Other results were poor, with bands in the wrong position for M86-M90 (pSB1A2+''cenA''). (Yan, OG)
+
-
* Sequencing results back today indicate that M50 = pSB1A2+rbs+''crtI'', M63 = pSB1A2+rbs+''crtE'' and M67 = pSB1A2+rbs+''crtB''. (AH)
+
-
 
+
-
==== Tuesday 5 August 08 ====
+
-
 
+
-
* M72 (pSB1A2+rbs+''dxs''), M79 (BABEL2+''crtE'') and M82 (pSB1A2+rbs+''appY'') submitted for seqencing. (CF)
+
-
* Minipreps '''M97-104''' of pSB1A2 ''cenA'' (2, 7-13) and '''M105-108''' Minipreps '''M105-108''' of pSB1A2+''cex''. (Yan)
+
-
* M97-108 were double-digested with EcoRI/PstI and run on '''gel 37'''. (Yan)
+
-
* Purification and self-ligation of P50 (3rd mutagenesis of ''glgc''-mut1,2) ('''L30'''). (HX)
+
-
* M68-69 (''glgc''-mut1,2 in pSB1A2) and M92 (pSB1A2+''cex'') were digested with a) PstI and b) EcoRI/PstI, but gel leaked. Entire process needs repeating tomorrow! (CF, OG)
+
-
* Digested P36 (''glgC''-mut1,2) with Edinbrick1 using Spe1/EcoR1 - to be continued tomorrow. (OG)
+
-
* '''Plate 93''' created from subculture of plate 56 (M67, pSB1A2+rbs+''crtB'')
+
-
 
+
-
==== Wednesday 6 August 08 ====
+
-
 
+
-
* '''L31''' ligation of P36 (glgC-mut1,2, hopefully, could be P39) to Edinbrick1 completed. (OG)
+
-
* Primers have arrived for pCstA. Chris carried out the PCR (that would be '''P51'''). Unsuccessful. (CF)
+
-
* Digestion of M67 (pSB1A2+rbs+''crtB'') with EcoRI/SpeI and M50 (pSB1A2+rbs+''crtI'') with EcoRI/XbaI, in preparation for combining the two with the former as insert and the latter as vector. (CF)
+
-
** Not enough time to purify/ligate due to high demand for agarose gel following lunchtime. Shall do tomorrow morning at 9. (AM)
+
-
* Re-digestion of M97, M98, M99 and M101 (all pSB1A2+''cenA'') and M105 and M108 (pSB1A2+''cex'') with a) EcoRI, b) EcoRI/PstI, and M92 (pSB1A2+''cex'') with a) PstI, b) EcoRI/PstI. All run on '''gel 38''' (because gel 37 did not look good). (Yan)
+
-
* Transformation of L30 (Self-ligation of BABEL2+''glgC''-mut1,2,3) ('''plates 89 and 90''') and L31 (''glgC''-mut1,2 to Edinbrick1) ('''plates 91 and 92''') onto B/W plates. (HX)
+
-
* Maxipreps '''X6''' (as M50, pSB1A2+rbs+''crtI'') and '''X7''' (as M63: pSB1A2-+rbs+''crtE'') made. (AM)
+
-
* Overnight culture made from plate 93 (pSB1A2+rbs+''crtB'') ready for maxiprep tomorrow. (AM, AH)
+
-
* Analytical digests using a) EcoRI, b) EcoRI/PstI of M70, M71 (both pSB1A2+''glgC''-mut1,2) and M92 (pSB1A2
+
-
+''cex''). Run on '''gel 39'''. Results do not look good. Bands are wrong size to correspond to vector and no bands match an expected insert size. (CF)
+
-
 
+
-
==== Thursday 7 August 08 ====
+
-
 
+
-
* Subcultured from Plates 89 and 90 (BABEL2+''glgC''-mut1,2,3) to '''Plate 94'''. Plate 91 (pSB1A2+''glgC''-mut1,2) showed no growth, so was discarded. Plate 92 (pSB1A2+''glgC''-mut1,2) had a blue smear and two white colonies. These colonies were subbed to '''Plate 95'''. (HX)
+
-
* Maxiprep '''X8''' (as M67: pSB1A2+rbs+''crtB'') made. Slight hiccup after step 6. (Cold solution 3 was added and incubation on ice was skipped. Centrifugation continued for 2 minutes before mistake was realised, after which the solution was mixed and incubated on ice for ten minutes (continuing with step 7). (AM, AH)
+
-
* Combination (Ligation) of rbs+''crtB'' (from M67) and rbs+''crtI'' (from M50): rbs+''crtB'' as an insert cut with EcoRI/SpeI; rbs+''crtI'' as a vector cut with EcoRI/XbaI ('''L32'''). (Yan, AM)
+
-
* Double digestion of three biobricks: 2 of rbs+''dxs'' (from M72), rbs+''crtE'' (from M63) and rbs+''lims1'' (from 0713536 in iGEM 07 box): rbs+''dxs'' as a vector cut with SpeI/PstI; rbs+''crtE'' as an insert cut with XbaI/PstI; rbs+''lims1'' as an insert cut with XbaI/PstI.
+
-
* Made PCR of ''cenA'' and ''cex'' again, stored in '''P52''' (''cenA'') and '''P53''' (cex). The PCR products were checked on gel, but failed again! (Yan, AM)
+
-
* PCR '''P54''' of pCstA. Run on '''gel 40'''. Results look promising (fairly prominent band <500bp). Purified. (CF)
+
-
* Plates made for testing glycogen assay. 2x LB agar, ampicillin; 2x LB agar, ampicillin, 2% glucose ready for spreading with ''E. coli''. (SK)
+
-
* '''Plates 96 and 97''' (glycogen assay) were spread with subcultures from Plate 43. Plate 96 = (-)glucose, plate 97 = (+)glucose. (HX)
+
-
 
+
-
==== Friday 8 August 08 ====
+
-
 
+
-
* Plate 94 (BABEL2+''glgC''-mut1,2,3) has white cultures, so can be prepped for minipreps. Plate 95 (pSB1A2+''glgC''-mut1,2) has blue cultures. Therefore transformation of L31 (''glgC''-mut1,2 to Edinbrick1) has been repeated on '''plates 100 and 101'''. (HX)
+
-
* Transformation of L32 (pSB1A2+''crtB''+''crtI'') on '''plates 98 and 99'''. (HX)
+
-
* Digested pCstA (P54) and Edinbrick1 using Spe1/EcoR1. Ligated as '''L33''' to be transformed tomorrow (OG)
+
-
* ''Arabidopsis'' ''isa1'' and ''isa2'' cDNAs have arrived as well as ''Zea mays'' ''su1'', ''iso2'' and ''iso3''. The ''Arabidopsis'' genes are full of forbidden restriction sites, so it would be best to use the maize genes. Primers will need to be designed. (AH)
+
-
* PCRed ''cenA'' and ''cex'' with a) KOD polymerase, b) Velocity polymerase separately to make '''P55''' (''cenA'' by KOD), '''P56''' (''cenA'' by Velocity), '''P57''' (''cex'' by KOD) and '''P58''' (''cex'' by Velocity). (Yan)
+
-
* Combined rbs+''dxs'' with rbs+''crtE'' as '''L34''', and rbs+''dxs'' with rbs+''lims1'' as '''L35'''. L34 and L35 ligation is being allowed to occur at 16°C overnight. (Yan)
+
-
* M79 sequencing results indicate that M79 is BABEL2+''crtE''. (AH)
+
-
 
+
-
==== Sunday 10 August 08 ====
+
-
 
+
-
* Extracted ''C. fimi'' genomic DNA, followed by PCR of ''rrnB'' ('''P61'''), ''cenA'' ('''P62''') and ''cex'' ('''P63''') from genomic DNA. (CF)
+
-
* Made subcultures...
+
-
** Patches from Plate 99 (L32, ''crtB''+''crtI'') to '''Plate 102'''.
+
-
** Patches from Plate 101 (L31, glgC double mutant+pSB1A2) to '''Plate 103'''.
+
-
** Patches from Plates 105 (pSB1A2+''crtY'') and 106 (pSB1A2+rbs+''crtY'') to '''Plate 108'''. (CF)
+
-
* Transformed competent cells with '''L36''' pSB1A2+''crtY'' ('''Plates 104/105''') and '''L37''' pSB1A2+rbs+''crtY'' ('''Plates 106/107'''). (CF)
+
-
 
+
-
=== 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