Edinburgh/Notebook/Ligation products

From 2008.igem.org

(Difference between revisions)
 
(11 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////////////////////////
+
== Ligation Products ==
-
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>
+
'''L1:''' Edinbrick1+''dxs'' (26.08.08)<br />
'''L1:''' Edinbrick1+''dxs'' (26.08.08)<br />
Line 304: Line 20:
'''L15:''' ligation of Edinbrick1 with rbs+''dxs'' fusion PCR product (P12). (14.07.08) - Failed<br />
'''L15:''' ligation of Edinbrick1 with rbs+''dxs'' fusion PCR product (P12). (14.07.08) - Failed<br />
'''L16:''' Ligation of Edinbrick1 with rbs+''appY'' fusion PCR product (P15) (17.07.08) - 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 />
+
'''L17:''' Ligation of rbs to pSB1A2+''crtB'' (M36) (22.07.08: OG, Yan)<br />
-
'''L18:''' Ligation of ''crtI'' (M42) to rbs (22/07/08)<br />
+
'''L18:''' Ligation of rbs to pSB1A2+''crtI'' (M42) (22.07.08: OG, Yan)<br />
-
'''L19:''' pSB1A2+rbs+''dxs'' ligation product (From P12) (25/07/08: Yan/OG)<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 />
+
'''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 />
+
'''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 />
+
'''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 />
+
'''L23:''' pSB1A2+pZntA ligation product (From P31) (25.07.08: Yan, OG)<br />
-
'''L24:''' Ligation of ''crtE'' to pSB1A2 (25/07/08: CF)<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 />
+
'''L25:''' Ligation of ''glgC''-mut1,2 (P36) to Edinbrick1, (28.07.2008: AM)<br />
-
'''L26:''' Ligation of Edi+P15 XP - rbs+''appY'' (30.07.2008: HX)<br />
+
'''L26:''' Ligation of P15 (rbs+''appY'') to Edinbrick1. (30.07.2008: HX)<br />
-
'''L27:''' Ligation of Edi+P28 XP - rbs+''crtB'' (30.07.2008: HX)<br />
+
'''L27:''' Ligation of P28 (rbs+''crtB'') to Edinbrick1. (30.07.2008: HX)<br />
-
'''L28:''' Putative ''cenA'' ligated to Edinbrick1 (30.07.08: AM)<br />
+
'''L28:''' Putative ''cenA'' ligated to Edinbrick1. (30.07.08: AM)<br />
-
'''L29:''' Putative ''cex'' 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 />
+
'''L30:''' Self-ligation of P50 (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 />
'''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 />
+
'''L32:''' Ligation of rbs+''crtB'' (M67) to rbs+''crtI''+pSB1A2 (M50) to create pSB1A2+''crtB''+''crtI'' (07.08.08: AM, Yan)<br />
-
'''L33:''' Ligation of PcstA (P54) to Edinbrick1 (08.08.08: OG)<br />
+
'''L33:''' Ligation of PcstA (P54) to Edinbrick1. (08.08.08: OG)<br />
-
'''L34''': Combined dxs biobrick with CrtE biobrick (08.08.08: YAN)<br />
+
'''L34:''' Ligation of pSB1A2+rbs+''dxs'' with rbs+''crtE'' to make pSB1A2+''dxs''+''crtE''. (08.08.08: Yan)<br />
-
'''L35''': Combined dxs biobrick with Lims biobrick (08.08.08: YAN)<br />
+
'''L35:''' Ligation of pSB1A2+rbs+''dxs'' with rbs+''LIMS1'' to make pSB1A2+''dxs''+''crtE''.(08.08.08: Yan)<br />
-
'''L36''': crtY+pSB1A2 (P59 self-ligation) (09.08.08: CF)<br />
+
'''L36:''' pSB1A2+''crtY'' (P59 self-ligation). (09.08.08: CF)<br />
-
'''L37''': rbs+crtY+pSB1A2 (P60 self-ligation) (09.08.08: CF)<br />
+
'''L37:''' pSB1A2+rbs+''crtY'' (P60 self-ligation). (09.08.08: CF)<br />
-
'''L38''': crtE+pSB1A2 (M79 into Edinbrick1) (12.08.08: AH)<br />
+
'''L38''': ''crtE''+pSB1A2 (M79 into Edinbrick1) (12.08.08: AH)<br />
-
'''L39''': CeX into Edinbrick1 (13.08.08:YAN)<br />
+
'''L39''': ''cex'' into Edinbrick1 (13.08.08:YAN)<br />
-
'''L40''': CenA into Edinbrick1 (13.08.08:YAN)<br />
+
'''L40''': ''cenA'' into Edinbrick1 (13.08.08:YAN)<br />
-
'''L42''': dxs+lims (M137) to appY (M82). (18.08.08: YAN)<br />
+
'''L42''': ''dxs+LIMS'' (M137) to ''appY'' (M82). (18.08.08: YAN)<br />
-
'''L43''': crtB+crtI (M109) to appY (M82). (18.08.08: YAN)<br />
+
'''L43''': ''crtB+crtI'' (M109) to ''appY'' (M82). (18.08.08: YAN)<br />
-
'''L44''': pstA (M130) to lacB. (18.08.08: YAN)<br />
+
'''L44''': P''cstA'' (M130) to ''lacZ''. (18.08.08: YAN)<br />
-
'''L45''': glgC mut 1+2 (M71A) to SOB2 (18.08.08: AM)<br />
+
'''L45''': ''glgC'' mut 1+2 (M71A) to SOB2 (18.08.08: AM)<br />
-
'''L46''': glgC mut 1+2+3 (M71) to SOB2 (18.08.08: AM)<br />
+
'''L46''': ''glgC'' mut 1+2+3 (M71) to SOB2 (18.08.08: AM)<br />
-
'''L47''': glgC mut 1+2+3 (M72) to SOB2 (18.08.08: AM)<br />
+
'''L47''': ''glgC'' mut 1+2+3, a.k.a. ''glgC16'' (M72) to SOB2 (18.08.08: AM)<br />
-
'''L48''': Appy into dxs+lims (19.08.08 YAN)<br />
+
'''L48''': ''appY'' into ''dxs+LIMS'' (19.08.08 YAN)<br />
-
'''L49''': Appy into CrtBI (19.08.08 YAN)<br />
+
'''L49''': ''appY'' into ''crtBI'' (19.08.08 YAN)<br />
-
'''L50''': Self-ligation of P78 (SOB2-glgC mut 1+2) (20.08.08 AM)<br />
+
'''L50''': Self-ligation of P78 (SOB2-''glgC'' mut 1+2) (20.08.08 AM)<br />
-
'''L51''': Self-ligation of P79 (SOB2-glgC mut 1+2+3) (20.08.08 AM)<br />
+
'''L51''': Self-ligation of P79 (SOB2-''glgC'' mut 1+2+3) (20.08.08 AM)<br />
-
'''L52''': Self-ligation of P80 (SOB2-glgC mut 1+2+3) (20.08.08 AM)<br />
+
'''L52''': Self-ligation of P80 (SOB2-''glgC'' mut 1+2+3) (20.08.08 AM)<br />
-
'''L53''': Self-ligation of P81 (SOB2-rbs-glgC mut 1+2) (20.08.08 AM)<br />
+
'''L53''': Self-ligation of P81 (SOB2-rbs-''glgC'' mut 1+2) (20.08.08 AM)<br />
-
'''L54''': Self-ligation of P82 (SOB2-rbs-glgC mut 1+2+3) (20.08.08 AM)<br />
+
'''L54''': Self-ligation of P82 (SOB2-rbs-''glgC'' mut 1+2+3) (20.08.08 AM)<br />
-
'''L55''': Self-ligation of P83 (SOB2-rbs-glgC mut 1+2+3) (20.08.08 AM)<br />
+
'''L55''': Self-ligation of P83 (SOB2-rbs-''glgC'' mut 1+2+3) (20.08.08 AM)<br />
-
'''L56''': LacZ into PcstA (20.08.08 YAN)<br />
+
'''L56''': ''lacZ'' into P''cstA'' (20.08.08 YAN)<br />
 +
'''L57''': ''appY'' into ''crtBI'' (28.08.08 YAN)<br/>
 +
'''L58''': Self-ligation of P91 (03.09.08: YAN)<br/>
 +
'''L59''': Self-ligation of P92 (03.09.08: YAN)<br/>
 +
'''L60''': Self-ligation of P93 (03.09.08: YAN)<br/>
 +
'''L61''': Self-ligation of P94 (03.09.08: YAN)<br/>
 +
'''L62''': ''dxs+crtE'' into ''crtBI'' (09.09.08: YAN)<br/>
 +
'''L63''': P90 (''bglX'') + Edinbrick 1 (09.09.08: AM)<br/>
 +
'''L64''': P64 (''cenA'') + Edinbrick 1 (09.09.08: AM)<br/>
 +
'''L65''': P''lac''+ ''dxs+LIMS+appY'' (CF)<br/>
 +
'''L66''': P''cstA''+''lacZ'' (CF)<br/>
 +
'''L68''': self-ligation of P91 (sob-''SU1'')(CF, 22-9-8)<br/>
 +
'''L69''': self-ligation of P93 (sob-''ISO2'')(CF, 23-9-8)<br/>
 +
'''L70''': self-ligation of P96 (mutagenesis of ''cex'')(CF, 23-9-8)<br/>
 +
'''L73''': ligation of P65 (''cenA'') to Edinbrick1. (CF, 24-9-8)<br/>
 +
'''L74''': ligation of P90 (''bglX'') to Edinbrick1. (CF, 24-9-8)<br/>
 +
'''L75''': ligation of P99 (rbs+''glgC'') to Edinbrick1. (CF, 25-9-8)<br/>
 +
'''L76''': ligation of P100 (rbs+''glgC16'') to Edinbrick1. (CF, 25-9-8)<br/>
 +
'''L77''': ligation of ''crtBI'' to ''dxs.crtE''. (CF, 26-9-8)<br/>
 +
'''L78''': ligation of ''xylE'' (BBa_J33204) to ''PcstA''. (CF, 29-9-8)<br/>
 +
'''L79''': ligation of P''lac+lacZ' '' (BBa_J33207) to rbs+''glgC''. (CF, 29-9-8)<br/>
 +
'''L80''': ligation of P''lac+lacZ' '' (BBa_J33207) to rbs+''glgC16''. (CF, 29-9-8)<br/>
 +
'''L81''': ligation of rbs to ''cex''. (CF, 30-9-8)<br/>
 +
'''L82''': ligation of rbs to ''cenA''. (CF, 30-9-8)<br/>
 +
'''L83''': ligation of P''lac+lacZ' '' (BBa_J33207) to ''crtBI''. (CF, 30-9-8)<br/>
 +
'''L84''': ligation of P''lac+lacZ' '' (BBa_J33207) to ''dxs.crtE''. (CF 30-9-8)<br/>
 +
'''L87''': ligation of ''bglX'' to Edinbrick2. (CF, 7-10-8)<br/>
 +
'''L88''': ligation of P105 (''bglX'' with complete suffix) to Edinbrick1. (CF, 10-10-8)<br/>
 +
'''L89''': ligation of P105 (''bglX'' with complete suffix) to Edinbrick2. (CF, 10-10-8)<br/>
 +
'''L90''': self-ligation of P107, mutagenesis of ''SU1''. (CF, 10-10-8)<br/>
 +
'''L91''': self-ligation of P107, mutagenesis of ''ISO2''. (CF, 11-10-8)<br/>
 +
'''L92''': repeat L83 (CF, 12-10-8)<br/>
 +
'''L93''': repeat L84 (CF, 12-10-8)<br/>
 +
'''L94''': ligation of P''lac+lacZ' '' (BBa_J33207) to rbs+''cenA'' (later turned out to be wrong clone). (CF, 29-9-8)<br/>
 +
'''L95''': ligation of P''lac+lacZ' '' (BBa_J33207) to rbs+''cex'' (later turned out to be wrong clone). (CF, 29-9-8)<br/>
 +
'''L96''': ligation of P''lac+crtBI'' to ''dxs.crtE''. (CF, 16-10-8)<br/>
 +
'''L97''': ligation of P''lac+dxs.crtE'' to ''crtBI''. (CF, 16-10-8)<br/>
 +
'''L98''': repeat of L90. (CF, 16-10-8)<br/>
 +
'''L99''': repeat of L91. (CF, 16-10-8)<br/>
 +
'''L100''': ligation of rbs to ''bglX''. (CF, 22-10-8)<br/>
 +
'''L101''': ligation of P110 (rbs+''cex'') to Edinbrick1. (CF, 23-10-8).<br/>
 +
'''L102''': ligation of P111 (rbs+''cenA'') to Edinbrick1. (CF, 23-10-8).<br/>
 +
'''L103''': ligation of P112 (rbs+''bglX'') to Edinbrick1. (CF, 23-10-8).<br/>
 +
'''L104''': ligation of P113 (''dxs.crtEBI'') to Edinbrick1. (CF, 27-10-8).<br/>

Latest revision as of 23:39, 29 October 2008

< Back to Notebook

Ligation Products

L1: Edinbrick1+dxs (26.08.08)
L2: Edinbrick1+appY (26.08.08)
L3: Babel1+glgC (26.08.08)
L4: Babel2+glgC (26.08.08)
L5: Edinbrick1+appY repeat (initially labelled L4 in error) (04.07.08)
L6: Self ligation of mutagenic PCR P6 (BABEL2+glgC-mut1). (07.07.08)
L7: Self ligation of mutagenic PCR P7 (BABEL2+glgC-mut2). (07.07.08)
L8: Ligation of synthetic ribosome binding site to M2 (pSB1A2+dxs, BBa_K118000). (09.07.08)
L9: Ligation of Edinbrick1 with crtB. (10.07.08)
L10: Ligation of Edinbrick1 with crtI (mutant lacking PstI sites, I hope). (10.07.08)
L11: repeat ligation of synthetic ribosome binding site to M2 (pSB1A2+dxs, BBa_K118000). (11.07.08: Yan, HX)
L12: rbs ligated with pSB1A2+appY (M15). (14.07.08)
L13 and L14: self ligations of P13 and P14 (BABEL2+glgC-mut1,2). (14.07.08)
L15: ligation of Edinbrick1 with rbs+dxs fusion PCR product (P12). (14.07.08) - Failed
L16: Ligation of Edinbrick1 with rbs+appY fusion PCR product (P15) (17.07.08) - Failed
L17: Ligation of rbs to pSB1A2+crtB (M36) (22.07.08: OG, Yan)
L18: Ligation of rbs to pSB1A2+crtI (M42) (22.07.08: OG, Yan)
L19: pSB1A2+rbs+dxs ligation product (From P12) (25.07.08: Yan, OG)
L20: pSB1A2+rbs+appY ligation product (From P15) (25.07.08: Yan, OG)
L21: pSB1A2+rbs+crtB ligation product (From P28) (25.07.08: Yan, OG)
L22: pSB1A2+rbs+crtI ligation product (From P29) (25.07.08: Yan, OG)
L23: pSB1A2+pZntA ligation product (From P31) (25.07.08: Yan, OG)
L24: Ligation of crtE to pSB1A2 (25.07.08: CF)
L25: Ligation of glgC-mut1,2 (P36) to Edinbrick1, (28.07.2008: AM)
L26: Ligation of P15 (rbs+appY) to Edinbrick1. (30.07.2008: HX)
L27: Ligation of P28 (rbs+crtB) to Edinbrick1. (30.07.2008: HX)
L28: Putative cenA ligated to Edinbrick1. (30.07.08: AM)
L29: Putative cex ligated to Edinbrick1. (30.07.08: AM)
L30: Self-ligation of P50 (3rd mutagenesis of glgC-mut1,2) (05.08.08: HX)
L31: Ligation of P36 (glgC-mut1,2, hopefully, could be P39) to Edinbrick1 (05.08.08: OG)
L32: Ligation of rbs+crtB (M67) to rbs+crtI+pSB1A2 (M50) to create pSB1A2+crtB+crtI (07.08.08: AM, Yan)
L33: Ligation of PcstA (P54) to Edinbrick1. (08.08.08: OG)
L34: Ligation of pSB1A2+rbs+dxs with rbs+crtE to make pSB1A2+dxs+crtE. (08.08.08: Yan)
L35: Ligation of pSB1A2+rbs+dxs with rbs+LIMS1 to make pSB1A2+dxs+crtE.(08.08.08: Yan)
L36: pSB1A2+crtY (P59 self-ligation). (09.08.08: CF)
L37: pSB1A2+rbs+crtY (P60 self-ligation). (09.08.08: CF)
L38: crtE+pSB1A2 (M79 into Edinbrick1) (12.08.08: AH)
L39: cex into Edinbrick1 (13.08.08:YAN)
L40: cenA into Edinbrick1 (13.08.08:YAN)
L42: dxs+LIMS (M137) to appY (M82). (18.08.08: YAN)
L43: crtB+crtI (M109) to appY (M82). (18.08.08: YAN)
L44: PcstA (M130) to lacZ. (18.08.08: YAN)
L45: glgC mut 1+2 (M71A) to SOB2 (18.08.08: AM)
L46: glgC mut 1+2+3 (M71) to SOB2 (18.08.08: AM)
L47: glgC mut 1+2+3, a.k.a. glgC16 (M72) to SOB2 (18.08.08: AM)
L48: appY into dxs+LIMS (19.08.08 YAN)
L49: appY into crtBI (19.08.08 YAN)
L50: Self-ligation of P78 (SOB2-glgC mut 1+2) (20.08.08 AM)
L51: Self-ligation of P79 (SOB2-glgC mut 1+2+3) (20.08.08 AM)
L52: Self-ligation of P80 (SOB2-glgC mut 1+2+3) (20.08.08 AM)
L53: Self-ligation of P81 (SOB2-rbs-glgC mut 1+2) (20.08.08 AM)
L54: Self-ligation of P82 (SOB2-rbs-glgC mut 1+2+3) (20.08.08 AM)
L55: Self-ligation of P83 (SOB2-rbs-glgC mut 1+2+3) (20.08.08 AM)
L56: lacZ into PcstA (20.08.08 YAN)
L57: appY into crtBI (28.08.08 YAN)
L58: Self-ligation of P91 (03.09.08: YAN)
L59: Self-ligation of P92 (03.09.08: YAN)
L60: Self-ligation of P93 (03.09.08: YAN)
L61: Self-ligation of P94 (03.09.08: YAN)
L62: dxs+crtE into crtBI (09.09.08: YAN)
L63: P90 (bglX) + Edinbrick 1 (09.09.08: AM)
L64: P64 (cenA) + Edinbrick 1 (09.09.08: AM)
L65: Plac+ dxs+LIMS+appY (CF)
L66: PcstA+lacZ (CF)
L68: self-ligation of P91 (sob-SU1)(CF, 22-9-8)
L69: self-ligation of P93 (sob-ISO2)(CF, 23-9-8)
L70: self-ligation of P96 (mutagenesis of cex)(CF, 23-9-8)
L73: ligation of P65 (cenA) to Edinbrick1. (CF, 24-9-8)
L74: ligation of P90 (bglX) to Edinbrick1. (CF, 24-9-8)
L75: ligation of P99 (rbs+glgC) to Edinbrick1. (CF, 25-9-8)
L76: ligation of P100 (rbs+glgC16) to Edinbrick1. (CF, 25-9-8)
L77: ligation of crtBI to dxs.crtE. (CF, 26-9-8)
L78: ligation of xylE (BBa_J33204) to PcstA. (CF, 29-9-8)
L79: ligation of Plac+lacZ' (BBa_J33207) to rbs+glgC. (CF, 29-9-8)
L80: ligation of Plac+lacZ' (BBa_J33207) to rbs+glgC16. (CF, 29-9-8)
L81: ligation of rbs to cex. (CF, 30-9-8)
L82: ligation of rbs to cenA. (CF, 30-9-8)
L83: ligation of Plac+lacZ' (BBa_J33207) to crtBI. (CF, 30-9-8)
L84: ligation of Plac+lacZ' (BBa_J33207) to dxs.crtE. (CF 30-9-8)
L87: ligation of bglX to Edinbrick2. (CF, 7-10-8)
L88: ligation of P105 (bglX with complete suffix) to Edinbrick1. (CF, 10-10-8)
L89: ligation of P105 (bglX with complete suffix) to Edinbrick2. (CF, 10-10-8)
L90: self-ligation of P107, mutagenesis of SU1. (CF, 10-10-8)
L91: self-ligation of P107, mutagenesis of ISO2. (CF, 11-10-8)
L92: repeat L83 (CF, 12-10-8)
L93: repeat L84 (CF, 12-10-8)
L94: ligation of Plac+lacZ' (BBa_J33207) to rbs+cenA (later turned out to be wrong clone). (CF, 29-9-8)
L95: ligation of Plac+lacZ' (BBa_J33207) to rbs+cex (later turned out to be wrong clone). (CF, 29-9-8)
L96: ligation of Plac+crtBI to dxs.crtE. (CF, 16-10-8)
L97: ligation of Plac+dxs.crtE to crtBI. (CF, 16-10-8)
L98: repeat of L90. (CF, 16-10-8)
L99: repeat of L91. (CF, 16-10-8)
L100: ligation of rbs to bglX. (CF, 22-10-8)
L101: ligation of P110 (rbs+cex) to Edinbrick1. (CF, 23-10-8).
L102: ligation of P111 (rbs+cenA) to Edinbrick1. (CF, 23-10-8).
L103: ligation of P112 (rbs+bglX) to Edinbrick1. (CF, 23-10-8).
L104: ligation of P113 (dxs.crtEBI) to Edinbrick1. (CF, 27-10-8).