Edinburgh/Notebook/Gels

From 2008.igem.org

(Difference between revisions)
(New page: <html> <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 ta...)
 
(12 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={
+
'''[[Team:Edinburgh/Notebook|< Back to Notebook]]'''
-
* 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>
+
 +
== Gels ==
'''Gel 1:''' PCR reactions P1 (''dxs''), P2 (''appY''), P3 (''glgC''). (25.06.08)<br />
'''Gel 1:''' PCR reactions P1 (''dxs''), P2 (''appY''), P3 (''glgC''). (25.06.08)<br />
'''Gel 2:''' EcoRI/PstI digests of M1 to M6 (pSB1A2+''dxs''). (30.06.08)<br />
'''Gel 2:''' EcoRI/PstI digests of M1 to M6 (pSB1A2+''dxs''). (30.06.08)<br />
-
*Gel 3:* minipreps M2, M3, M4, M6, EcoRI, plus L1 and L2
+
'''Gel 3:''' minipreps M2, M3, M4, M6, EcoRI, plus L1 and L2. (01.07.08)<br />
-
*Gel 4:* minipreps M7 to M12, undigested
+
'''Gel 4:''' minipreps M7 (BABEL1+''glgC'') and M8 to M12 (BABEL2+''glgC''), undigested. (01.07.08)<br />
-
*Gel 5:* minipreps M7 to M12, EcoRI/PstI
+
'''Gel 5:''' minipreps M7 to M12, EcoRI/PstI. (01.07.08)<br />
-
*Gel 6:* minipreps M2, M3, M4, M6, HindIII; also P4 and P5 (fusion PCR)
+
'''Gel 6:''' minipreps M2, M3, M4, M6, HindIII; also P4 (BABEL1+''glgC'' fusion PCR)and P5 (BABEL2+''glgC'' fusion PCR). (01.07.08)<br />
-
*Gel 7:* minipreps M10 and M11, EcoRI (two versions of this gel)
+
'''Gel 7:''' minipreps M10 and M11, EcoRI (two versions of this gel). (04.07.08)<br />
-
*Gel 8:* PCR products P6 and P7 (mutagenic PCR on M11)
+
'''Gel 8:''' PCR products P6 and P7 (mutagenic PCR on ''glgC'' [M11]). (04.07.08)<br />
-
*Gel 9:* maxipreps X1 and X2, etc.
+
'''Gel 9:''' digests of maxipreps X1 (J33201) and X2 (pSB1A2+''dxs''). (08.07.08)<br />
-
*Gel 10:* minipreps M13 to M18, E/P digests.
+
'''Gel 10:''' minipreps M13 to M18, EcoRI/PstI digests. (09.07.08)<br />
-
*Gel 11:* minipreps M19 to M24, EcoRI digests, plus PCR P11.
+
'''Gel 11:''' M19 to M24 (BABEL2+''glgC''-mut2) EcoRI digests, plus PCR P11 (rbs+''dxs''). (10.07.08)<br />
-
*Gel 12:* minipreps M25 to M30 of possible rbs+dxs clones: none look right.
+
'''Gel 12:''' SacI/SpeI digests of M25 to M30 (possible rbs+''dxs'' clones): none look right. Also shown is P12 (rbs+''dxs'' fusion PCR product). (13.07.08)<br />
-
*Gel 13:* PCR P13 and P14 to mutated second EcoRI site on glgC clones M19 and M22.
+
'''Gel 13:''' PCR P13 and P14 to mutate out first EcoRI site from BABEL2+''glgC''-mut2 clones M19 and M22. (14.07.08)<br />
-
*Gel 14:* minipreps M31 to M42 (crtB and crtI clones) E/P, and P15 (rbs+appY)
+
'''Gel 14:''' minipreps M31 to M42 (pSB1A2+''crtB'' and pSB1A2+''crtI'' clones) EcoRI/PstI digests, and P15 (rbs+''appY'') (15.07.08)<br />
-
*Gel 15:* redigest of M32, M36 (crtB), M39, M40 (crtI) E/P; unsuccessful.
+
'''Gel 15:''' redigest of M32, M36 (pSB1A2+''crtB''), M39, M40 (pSB1A2+''crtI'') with EcoRI/PstI; unsuccessful. (17.07.08)<br />
-
*Gel 16:* purified PCR products for cenA, cenB, cenC, cex (P16, 17, 18, 19); unsuccessful.
+
'''Gel 16:''' purified PCR products for ''cenA'', ''cenB'', ''cenC'', ''cex'' (P16 to P19); unsuccessful. (18.07.08)<br />
-
*Gel 17:* PCR products for cenA, cenB, cenC, cex (P20, 21, 22, 23) ~ second attempt; unsuccessful.
+
'''Gel 17:''' PCR products for ''cenA'', ''cenB'', ''cenC'', ''cex'' (P20 to P23); unsuccessful. (18.07.08)<br />
-
*Gel 21:* P26 (rrnB from C fimi); unsuccessful.
+
'''Gel 18:''' EcoRI/PstI digests of M43 to M47 (BABEL2+''glgC''-mut1,2) and M48 (pSB1A2+rbs+''dxs''). M43 to M47 all look about right. M48 is ambiguous, could be incomplete deigestion, need to repeat. (19.07.08: CF)<br />
-
*Gel 22:* P27 (crtY ~ unsuccessful), P28, P29 (crtB, crtI ~ successful).
+
'''Gel 19:''' P24 (''cenA''), P25 (''cex'') as well as SacI/SpeI digest of M48 (pSB1A2+rbs+''dxs'') and single (EcoRI) and double (EcoRI/PstI) digests of M36 (pSB1A2+''crtB'') and M42 (pSB1A2+''crtI''). (20.07.08: CF)<br />
-
*Gel 23:* P30 (repeat rrnB from C fimi) and PZNTA. Successful.
+
'''Gel 20:''' L15 (rbs+''dxs'' with Edinbrick1) and L16 (rbs+''appY'' with Edinbrick1) both failed. (22.07.08: OG, Yan)<br />
-
*Gel 25:* P36 (glgC excision ~ successful), P37 (crtY ~ failed).
+
'''Gel 21:''' P26 (''rrnB'' from ''C. fimi''); unsuccessful. (22.07.08: AM)<br />
-
*Gel 26:* P38~43 (cenA, cenB, cenC, cex from heat-killed cell suspension; cenA and cenB from 'impure' DNA solution.
+
'''Gel 22:''' P27 (''crtY'', unsuccessful), P28 (pSB1A2+rbs+''crtB'', successful) and P29 (pSB1A2+rbs+''crtI'', successful). (23.07.08: AM, Yan, OG)<br />
-
*Gel 27:* Repeat of Gel 26 but stained with SYBRsafe; putative cenA and cex fragments cut out.
+
'''Gel 23:''' P30 (repeat ''rrnB'' from ''C. fimi'') and pZntA, both successful. (23.07.08: AM)<br />
-
*Gel 28:* M49~54 (pSB1A2-rbs+crtI) digested with EcoRI.
+
'''Gel 24:''' Shows failure of P32-P35 (''cenA'', ''cenB'', ''cenC'' and ''cex''). (24.07.08: AM)<br />
-
*Gel 29:* M55~60 (PZntA), M61~66 (CrtE+RBS) all digested with EcoRI and PstI.
+
'''Gel 25:''' P36 (''glgC''-mut1,2 excision from BABEL2, successful), P37 (''crtY'', failed). (25.07.08: AH)<br />
-
*Gel 30:* P46 (cenA), P47 (cex) from heat killed cell soln, annealing 65C. Failed. (30/07/08)
+
'''Gel 26:''' P38-41 (cenA, cenB, cenC, cex from heat-killed cell suspension) and P42-43 (cenA and cenB from 'impure' DNA solution). (28.07.08: AM)<br />
-
*Gel 31*: M49 (X,SX,sac/spt), M50(X,SX,sac/spt), M63(E,EP), M67(E/P, sac1/spe1), P38(_cenA_). (30/07/08: OG)
+
'''Gel 27:''' Repeat of Gel 26 but stained with SYBRsafe. Putative cenA and cex fragments cut out. (29.07.08: AM)<br />
-
*Gel 32:* M55 to M60 double digestion with EcorI and PstI, and single digestion with EcoRI only. (30/07/08: Yan)
+
'''Gel 28:''' M49-54 (pSB1A2+rbs+''crtI'') digested with EcoRI. (29.07.08: CF)<br />
-
*Gel 33:* M68~71 (pSB1A2-glgC m1+m2) digested with EcoRI+PstI, M72~75 (pSB1A2-rbs+dxs) digested with EcoRI, M76~79 (Babel2\+_crtE_) digested with EcoRI+PstI. See 01.08.2008 entry for results.
+
'''Gel 29:''' M55-60 (pSB1A2+pZntA), M61-66 (pSB1A2+rbs+''CrtE'') digested with EcoRI/PstI. Shows that ligations L23 and L24 (respectively) failed. (29.07.08: Yan, AM)<br />
-
*Gel 34:* M68~69 (pSB1A2-glgC m1+m2) digested with EcoRI alone and EcoRI+PstI, M72 (pSB1A2-rbs+dxs) digested with EcoRI alone and SacI+SpeI. See 01.08.2008 entry for results.
+
'''Gel 30:''' P46 (''cenA''), P47 (''cex'') from heat killed cell solution, annealing 65C. Gel shows failure of the PCR. (30/07/08)<br />
-
*Gel 35:* P36 and L25. P36 successful, L25 yields clear glgC-length band but faint vector-length band.
+
'''Gel 31:''' P48 (''crtY'') and digests of M49 and M50 (pSB1A2-rbs+''crtI'') with a) XbaI, b) SpeI/XbaI, c) sac/speI, M63 (BABEL2+rbs+''crtE'') with a) EcoRI, b) EcoRI/PstI, M67 (pSB1A2+rbs+''crtB'') with a) EcoRI/PstI, b) sacI/speI. (30/07/08: OG)<br />
-
*Gel 36:* Double digestion of M80 to M96 with EcoRI and PstI, and PCR production of third mutagenesis of glgc mutant 1&2. Results were good for M80-82 (rbs\-_appY_\-pSB1A2), M84-85 (rbs\-_crtB_\-pSB1A2), M92 (_cex_\-pSB1A2) and P50 (_glgC_\-mut1,2+3). Other results were poor. (YAN&OG).
+
'''Gel 32:''' M55-M60 (pSB1A2+pZntA) double digestion with EcoRI/PstI, and single digestion with EcoRI. (30.07.08: Yan)<br />
-
*Gel 37:* Double digestion of M97 to M108 with EcoRI and PstI.
+
'''Gel 33:''' M68-71 (pSB1A2+''glgC''-mut1,2) digested with EcoRI/PstI, M72-75 (pSB1A2+rbs+''dxs'') digested with EcoRI, M76-79 (BABEL2+''crtE'') digested with EcoRI/PstI. (01.08.2008: AM)<br />
-
*Gel 39:* Analytical digests using a) EcoRI and b) EcoRI/PstI of M70, M71 (both pSB1A2\-_glgC_ mut1+2) and M92 (pSB1A2\-_cex_). Results do not look good. Bands are wrong size to correspond to vector and no bands match an expected insert size. (06/08/08: CF)
+
'''Gel 34:''' M68-69 (pSB1A2+''glgC''-mut1,2) digested with EcoRI alone and EcoRI+PstI, M72 (pSB1A2+rbs+''dxs'') digested with EcoRI alone and SacI/SpeI. (01.08.2008: AM)<br />
-
*Gel 40* PCR products of PcstA (P54) (and SOB). Results look promising (fairly prominent band <500bp). (07.08.08: CF)
+
'''Gel 35:''' P36 (''glgC''-mut1,2) and L25 (pSB1A2+''glgC''-mut1,2). P36 successful, L25 yields clear ''glgC''-length band but faint vector-length band. (01.08.2008: AM)<br />
-
*Gel 41:* PCR products of P55 to P58 (11.08.08: YAN)
+
'''Gel 36:''' P50 (''glgC''-mut1,2,3) and double digestion of M80-M96 with EcoRI/PstI. Results were good for M80-M82 (pSB1A2+rbs+''appY''), M84-M85 (pSB1A2+rbs+''crtB''), M92 (pSB1A2+''cex'') and P50. Other results were poor. (04.08.08: Yan, OG).<br />
-
*Gel 42:* _C. fimi_ genomic DNA and PCR products P61~P63 from _C. fimi_ genomic DNA (11.08.08: CF)
+
'''Gel 37:''' Double digestion of M97-M104 (pSB1A2+''cenA'') and M105-M108 (pSB1A2+''cex'') with EcoRI/PstI. Results were very poor apart from M97. (05.08.08: Yan)<br />
-
*Gel 43:* Double digests of BABEL2\-_crtE_ (M79) and Edinbrick1 with EcoRI and PstI, showing a single band at \~3kb for BABEL2\+_crtE_ and bands at \~2.5kb and 800bp for Edinbrick1. (11.08.08: AH)
+
'''Gel 38:''' Re-digestion of M97-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. (06.08.08: Yan)
-
*Gel 44:* Double digests of BABEL1-glgc mut 1+2+3 (M117 to M120),&nbsp;pSB1A2-glgc mut 1+2 (M113-M116) and pSB1A2-CrtBI with EcoRI and PstI.(11.08.08: YAN)
+
'''Gel 39:''' Analytical digests using a) EcoRI, b) EcoRI/PstI of M70-M71 (pSB1A2+''glgC''-mut1,2) and M92 (pSB1A2+''cex''). Results do not look good. Bands are wrong size to correspond to vector and no bands match an expected insert size. (06.08.08: CF)<br />
-
*Gel 45:* P57 (cex from cells) EcoRI/PstI double digest, undigested P64 (cex from genomic DNA), P66 (zm1/ISA1) and P67 (zm2/ISA2). (12.08.08: CF/AM)
+
'''Gel 40''' PCR products of PcstA (P54) (and SOB). Results look promising (fairly prominent band <500bp). (07.08.08: CF)<br />
-
*Gel 46:* Double digests of M121 to M126: M121 to M123 (pSB1A2-CrtY-1 to pSB1A2-CrtY-3), M124 to M126 (pSB1A2-CrtY-RBS-1 to pSB1A2-CrtY-RBS-3) with EcoRI and PstI. (12.08.08: YAN)
+
'''Gel 41:''' PCR products of P55-P58 (''cenA'' and ''cex''): ''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. (11.08.08: Yan)<br />
-
*Gel 47:* P57 and P64 (cex) PstI digests and P65 (cenA) (12.08.08: AM)
+
'''Gel 42:''' PCR products P61-P63 (''rrnB'', ''cenA'', ''cex''): Very clear band for ''rrnB'', no bands for either ''cenA'' or ''cex''. (11.08.08: CF)<br />
-
*Gel 48:* M109 and M110 (_crtBI_) BamHI/EcoRV digest, M115 and M116 (pSB1A2\+_glgC_\-mut1,2) HindIII digest M115 and M116 (pSB1A2\+_glgC_\-mut1,2) EcoRI/HindIII digest. (13.08.08: AH)
+
'''Gel 43:''' Double digests of BABEL2+''crtE'' (M79) and Edinbrick1 with EcoRI/PstI, showing a single band at ~3kb for BABEL2+''crtE'' digestion and bands at ~2.5kb and 800bp for Edinbrick1 digestion. (11.08.08: AH)<br />
-
*Gel 49:* P68 (cenB) and P69 (cenC) from _C. fimi_ genomic DNA. Failed. (13.08.08: AM)
+
'''Gel 44:''' Double digests of M109-M112 (pSB1A2+''crtB''+''crtI''), M113-M116 (pSB1A2+''glgC''-mut1,2) and M117-M120 (pSB1A2+''glgC''-mut1,2,3). M110-M112 (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.(11.08.08: Yan)<br />
-
*Gel 50:* M127~M138? Please confirm. (13.08.2008: OG, I believe, OG: i think this is the one when me andy and yan were loading it and taking pictures for the webpage.)
+
'''Gel 45:''' P57 (cex from cells) EcoRI/PstI double digest, undigested P64 (cex from genomic DNA), P66 (zm1/ISA1) and P67 (zm2/ISA2). (12.08.08: CF/AM)<br />
-
*Gel 51:* Undocumented gel stained with SYBR-safe with bands for purification?
+
'''Gel 46:''' Double digests of M121 to M126: M121 to M123 (pSB1A2-CrtY-1 to pSB1A2-CrtY-3), M124 to M126 (pSB1A2-CrtY-RBS-1 to pSB1A2-CrtY-RBS-3) with EcoRI and PstI. (12.08.08: YAN)<br />
-
*Gel 52:* P70 (glgC mut1+2), P71 (glgC mut 1+2+3). (14.08.2008: AM)
+
'''Gel 47:''' P57 and P64 (cex) PstI digests and P65 (cenA) (12.08.08: AM)<br />
-
*Gel 53:* Minipreps of M139 to M143 (CrtE+PSB1A2) (15.08.08: YAN/OG)
+
'''Gel 48:''' M109 and M110 (_crtBI_) BamHI/EcoRV digest, M115 and M116 (pSB1A2\+_glgC_\-mut1,2) HindIII digest M115 and M116 (pSB1A2\+_glgC_\-mut1,2) EcoRI/HindIII digest. (13.08.08: AH)<br />
-
*Gel 54:* P71A (glgC mut 1+2), P72 (glgC mut 1+2+3), P73~P77 (rrnB from _C. fimi_ genomic DNA) (15.08.08: AM)
+
'''Gel 49:''' P68 (cenB) and P69 (cenC) from _C. fimi_ genomic DNA. Failed. (13.08.08: AM)<br />
-
*Gel 55:* M144-M147 (pSB1A2+cenA), M148-M151 (pSB1A2+cex) and M152-M155 (pSB1A2+dxs+crtE) digested with EcoRI/PstI. (18.08.08: AH)
+
'''Gel 50:''' M127~M138? Please confirm. (13.08.2008: OG, I believe, OG: i think this is the one when me andy and yan were loading it and taking pictures for the webpage.)<br />
 +
'''Gel 51:''' Undocumented gel stained with SYBR-safe with bands for purification?<br />
 +
'''Gel 52:''' P70 (glgC mut1+2), P71 (glgC mut 1+2+3). (14.08.2008: AM)<br />
 +
'''Gel 53:''' Minipreps of M139 to M143 (CrtE+PSB1A2) (15.08.08: YAN/OG)<br />
 +
'''Gel 54:''' P71A (glgC mut 1+2), P72 (glgC mut 1+2+3), P73~P77 (rrnB from _C. fimi_ genomic DNA) (15.08.08: AM)<br />
 +
'''Gel 55:''' M144-M147 (pSB1A2+cenA), M148-M151 (pSB1A2+cex) and M152-M155 (pSB1A2+dxs+crtE) digested with EcoRI/PstI. (18.08.08: AH)<br />
 +
 
 +
Note: Remaining gels will be added when the relevant information is better organised.

Latest revision as of 21:30, 6 October 2008

< Back to Notebook

Gels

Gel 1: PCR reactions P1 (dxs), P2 (appY), P3 (glgC). (25.06.08)
Gel 2: EcoRI/PstI digests of M1 to M6 (pSB1A2+dxs). (30.06.08)
Gel 3: minipreps M2, M3, M4, M6, EcoRI, plus L1 and L2. (01.07.08)
Gel 4: minipreps M7 (BABEL1+glgC) and M8 to M12 (BABEL2+glgC), undigested. (01.07.08)
Gel 5: minipreps M7 to M12, EcoRI/PstI. (01.07.08)
Gel 6: minipreps M2, M3, M4, M6, HindIII; also P4 (BABEL1+glgC fusion PCR)and P5 (BABEL2+glgC fusion PCR). (01.07.08)
Gel 7: minipreps M10 and M11, EcoRI (two versions of this gel). (04.07.08)
Gel 8: PCR products P6 and P7 (mutagenic PCR on glgC [M11]). (04.07.08)
Gel 9: digests of maxipreps X1 (J33201) and X2 (pSB1A2+dxs). (08.07.08)
Gel 10: minipreps M13 to M18, EcoRI/PstI digests. (09.07.08)
Gel 11: M19 to M24 (BABEL2+glgC-mut2) EcoRI digests, plus PCR P11 (rbs+dxs). (10.07.08)
Gel 12: SacI/SpeI digests of M25 to M30 (possible rbs+dxs clones): none look right. Also shown is P12 (rbs+dxs fusion PCR product). (13.07.08)
Gel 13: PCR P13 and P14 to mutate out first EcoRI site from BABEL2+glgC-mut2 clones M19 and M22. (14.07.08)
Gel 14: minipreps M31 to M42 (pSB1A2+crtB and pSB1A2+crtI clones) EcoRI/PstI digests, and P15 (rbs+appY) (15.07.08)
Gel 15: redigest of M32, M36 (pSB1A2+crtB), M39, M40 (pSB1A2+crtI) with EcoRI/PstI; unsuccessful. (17.07.08)
Gel 16: purified PCR products for cenA, cenB, cenC, cex (P16 to P19); unsuccessful. (18.07.08)
Gel 17: PCR products for cenA, cenB, cenC, cex (P20 to P23); unsuccessful. (18.07.08)
Gel 18: EcoRI/PstI digests of M43 to M47 (BABEL2+glgC-mut1,2) and M48 (pSB1A2+rbs+dxs). M43 to M47 all look about right. M48 is ambiguous, could be incomplete deigestion, need to repeat. (19.07.08: CF)
Gel 19: P24 (cenA), P25 (cex) as well as SacI/SpeI digest of M48 (pSB1A2+rbs+dxs) and single (EcoRI) and double (EcoRI/PstI) digests of M36 (pSB1A2+crtB) and M42 (pSB1A2+crtI). (20.07.08: CF)
Gel 20: L15 (rbs+dxs with Edinbrick1) and L16 (rbs+appY with Edinbrick1) both failed. (22.07.08: OG, Yan)
Gel 21: P26 (rrnB from C. fimi); unsuccessful. (22.07.08: AM)
Gel 22: P27 (crtY, unsuccessful), P28 (pSB1A2+rbs+crtB, successful) and P29 (pSB1A2+rbs+crtI, successful). (23.07.08: AM, Yan, OG)
Gel 23: P30 (repeat rrnB from C. fimi) and pZntA, both successful. (23.07.08: AM)
Gel 24: Shows failure of P32-P35 (cenA, cenB, cenC and cex). (24.07.08: AM)
Gel 25: P36 (glgC-mut1,2 excision from BABEL2, successful), P37 (crtY, failed). (25.07.08: AH)
Gel 26: P38-41 (cenA, cenB, cenC, cex from heat-killed cell suspension) and P42-43 (cenA and cenB from 'impure' DNA solution). (28.07.08: AM)
Gel 27: Repeat of Gel 26 but stained with SYBRsafe. Putative cenA and cex fragments cut out. (29.07.08: AM)
Gel 28: M49-54 (pSB1A2+rbs+crtI) digested with EcoRI. (29.07.08: CF)
Gel 29: M55-60 (pSB1A2+pZntA), M61-66 (pSB1A2+rbs+CrtE) digested with EcoRI/PstI. Shows that ligations L23 and L24 (respectively) failed. (29.07.08: Yan, AM)
Gel 30: P46 (cenA), P47 (cex) from heat killed cell solution, annealing 65C. Gel shows failure of the PCR. (30/07/08)
Gel 31: P48 (crtY) and digests of M49 and M50 (pSB1A2-rbs+crtI) with a) XbaI, b) SpeI/XbaI, c) sac/speI, M63 (BABEL2+rbs+crtE) with a) EcoRI, b) EcoRI/PstI, M67 (pSB1A2+rbs+crtB) with a) EcoRI/PstI, b) sacI/speI. (30/07/08: OG)
Gel 32: M55-M60 (pSB1A2+pZntA) double digestion with EcoRI/PstI, and single digestion with EcoRI. (30.07.08: Yan)
Gel 33: M68-71 (pSB1A2+glgC-mut1,2) digested with EcoRI/PstI, M72-75 (pSB1A2+rbs+dxs) digested with EcoRI, M76-79 (BABEL2+crtE) digested with EcoRI/PstI. (01.08.2008: AM)
Gel 34: M68-69 (pSB1A2+glgC-mut1,2) digested with EcoRI alone and EcoRI+PstI, M72 (pSB1A2+rbs+dxs) digested with EcoRI alone and SacI/SpeI. (01.08.2008: AM)
Gel 35: P36 (glgC-mut1,2) and L25 (pSB1A2+glgC-mut1,2). P36 successful, L25 yields clear glgC-length band but faint vector-length band. (01.08.2008: AM)
Gel 36: P50 (glgC-mut1,2,3) and double digestion of M80-M96 with EcoRI/PstI. Results were good for M80-M82 (pSB1A2+rbs+appY), M84-M85 (pSB1A2+rbs+crtB), M92 (pSB1A2+cex) and P50. Other results were poor. (04.08.08: Yan, OG).
Gel 37: Double digestion of M97-M104 (pSB1A2+cenA) and M105-M108 (pSB1A2+cex) with EcoRI/PstI. Results were very poor apart from M97. (05.08.08: Yan)
Gel 38: Re-digestion of M97-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. (06.08.08: Yan) Gel 39: Analytical digests using a) EcoRI, b) EcoRI/PstI of M70-M71 (pSB1A2+glgC-mut1,2) and M92 (pSB1A2+cex). Results do not look good. Bands are wrong size to correspond to vector and no bands match an expected insert size. (06.08.08: CF)
Gel 40 PCR products of PcstA (P54) (and SOB). Results look promising (fairly prominent band <500bp). (07.08.08: CF)
Gel 41: PCR products of P55-P58 (cenA and cex): 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. (11.08.08: Yan)
Gel 42: PCR products P61-P63 (rrnB, cenA, cex): Very clear band for rrnB, no bands for either cenA or cex. (11.08.08: CF)
Gel 43: Double digests of BABEL2+crtE (M79) and Edinbrick1 with EcoRI/PstI, showing a single band at ~3kb for BABEL2+crtE digestion and bands at ~2.5kb and 800bp for Edinbrick1 digestion. (11.08.08: AH)
Gel 44: Double digests of M109-M112 (pSB1A2+crtB+crtI), M113-M116 (pSB1A2+glgC-mut1,2) and M117-M120 (pSB1A2+glgC-mut1,2,3). M110-M112 (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.(11.08.08: Yan)
Gel 45: P57 (cex from cells) EcoRI/PstI double digest, undigested P64 (cex from genomic DNA), P66 (zm1/ISA1) and P67 (zm2/ISA2). (12.08.08: CF/AM)
Gel 46: Double digests of M121 to M126: M121 to M123 (pSB1A2-CrtY-1 to pSB1A2-CrtY-3), M124 to M126 (pSB1A2-CrtY-RBS-1 to pSB1A2-CrtY-RBS-3) with EcoRI and PstI. (12.08.08: YAN)
Gel 47: P57 and P64 (cex) PstI digests and P65 (cenA) (12.08.08: AM)
Gel 48: M109 and M110 (_crtBI_) BamHI/EcoRV digest, M115 and M116 (pSB1A2\+_glgC_\-mut1,2) HindIII digest M115 and M116 (pSB1A2\+_glgC_\-mut1,2) EcoRI/HindIII digest. (13.08.08: AH)
Gel 49: P68 (cenB) and P69 (cenC) from _C. fimi_ genomic DNA. Failed. (13.08.08: AM)
Gel 50: M127~M138? Please confirm. (13.08.2008: OG, I believe, OG: i think this is the one when me andy and yan were loading it and taking pictures for the webpage.)
Gel 51: Undocumented gel stained with SYBR-safe with bands for purification?
Gel 52: P70 (glgC mut1+2), P71 (glgC mut 1+2+3). (14.08.2008: AM)
Gel 53: Minipreps of M139 to M143 (CrtE+PSB1A2) (15.08.08: YAN/OG)
Gel 54: P71A (glgC mut 1+2), P72 (glgC mut 1+2+3), P73~P77 (rrnB from _C. fimi_ genomic DNA) (15.08.08: AM)
Gel 55: M144-M147 (pSB1A2+cenA), M148-M151 (pSB1A2+cex) and M152-M155 (pSB1A2+dxs+crtE) digested with EcoRI/PstI. (18.08.08: AH)

Note: Remaining gels will be added when the relevant information is better organised.