|
|
(7 intermediate revisions not shown) |
Line 1: |
Line 1: |
- | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
| + | <div id="header">{{Template:Team:Virginia_Commonwealth/Templates/Header}}</div> |
- |
| + | |
- | <div id="bodyContent">
| + | |
- | | + | |
- | <h3 id="siteSub">From 2009.igem.org</h3>
| + | |
- | <div id="contentSub"></div>
| + | |
- | <!--
| + | |
- | <div id="jump-to-nav">Jump to: <a href="#column-one">navigation</a>, <a href="#searchInput">search</a></div>-->
| + | |
- | <!-- start content -->
| + | |
- | <div id="header">
| + | |
- | <head>
| + | |
- | <title>Virginia Commonwealth iGEM 2009</title>
| + | |
- | <script type="text/javascript">
| + | |
- | //Drop Down Tabs Menu- Author: Dynamic Drive (http://www.dynamicdrive.com)
| + | |
- | //Created: May 16th, 07'
| + | |
- | | + | |
- | var tabdropdown={
| + | |
- | disappeardelay: 100, //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: bold 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: yellow;
| + | |
- | 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://2009.igem.org/Team:Virginia_Commonwealth" title="Home"><span>Home</span></a></li>
| + | |
- | <li><a href="https://2009.igem.org/Team:Virginia_Commonwealth/Design" title="Project design and background" ><span>Design</span></a></li>
| + | |
- | <li><a href="https://2009.igem.org/Team:Virginia_Commonwealth/Modeling" title="Modeling" rel="dropmenu2_a"><span>Modeling</span></a></li>
| + | |
- | <li><a href="https://2009.igem.org/Team:Virginia_Commonwealth/Results" title="Results" rel="dropmenu1_a"><span>Results</span></a></li>
| + | |
- | <li><a href="https://2009.igem.org/Team:Virginia_Commonwealth/BioBricks" title="Our submitted BioBrick parts" rel="dropmenu1_a"><span>BioBricks</span></a></li>
| + | |
- | | + | |
- | <li><a href="https://2009.igem.org/Team:Virginia_Commonwealth/Notebook" title="Daily eNotebook"><span>Notebook</span></a></li>
| + | |
- | <li><a href="https://2009.igem.org/Team:Virginia_Commonwealth/People" title="Meet the team" ><span>People</span></a></li>
| + | |
- | <li><a href="https://2009.igem.org/Team:Virginia_Commonwealth/Literature" title="Compilation of relevant papers" ><span>Literature Compilation</span></a></li>
| + | |
- | <li><a href="https://2009.igem.org/Team:Virginia_Commonwealth/Acknowledgements" title="Acknowledgements" ><span>Acknowledgements</span></a></li>
| + | |
- | <li><a href="https://2009.igem.org/Team:Virginia_Commonwealth/Internal" title="Brainstorming and discussion" ><span>Internal</span></a></li>
| + | |
- | </ul>
| + | |
- | </div>
| + | |
- | <div class="ddcolortabsline"> </div>
| + | |
- | <div id="dropmenu1_a" class="dropmenudiv_a">
| + | |
- | </div>
| + | |
- | <script type="text/javascript">
| + | |
- | //SYNTAX: tabdropdown.init("menu_id", [integer OR "auto"])
| + | |
- | tabdropdown.init("colortab", 3)
| + | |
- | </script>
| + | |
- | | + | |
- | <div class="center"><div class="floatnone"><span><a href="/Image:Richmond_skyline_at_night_2.jpg" class="image" title="Richmond, VA, USA"><img alt="Richmond, VA, USA" src="/wiki/images/7/71/Richmond_skyline_at_night_2.jpg" width="960" height="238" border="0" /></a></span></div></div></div>
| + | |
| <table> | | <table> |
- | | + | <html> |
| <style type="text/css"> | | <style type="text/css"> |
| table.calendar { margin: 0; padding: 2px; } | | table.calendar { margin: 0; padding: 2px; } |
Line 322: |
Line 22: |
| | | |
| </style> | | </style> |
| + | </html> |
| | | |
| | | |
- | | + | {|style="font color="#ffffff"; "background-color:"#cd0000"; cellpadding="0" cellspacing="4" border="4" bordercolor="#000"; border-spacing:0px; text-align:center" width="250px" |
- | <table cellpadding="0" cellspacing="4" border="4" width="250px">
| + | |
| </table> | | </table> |
- | <table align="center">
| |
| | | |
- | <tr valign="top">
| + | {| align="center" |
- | <td align="center" width="150pt">
| + | |-valign="top" |
- | <table class="month">
| + | |align="center" width="150pt"|{{#calendar: title=Virginia_Commonwealth |year=2009 | month=05}} |
| + | |align="center" width="150pt"|{{#calendar: title=Virginia_Commonwealth |year=2009 | month=06}} |
| + | |align="center" width="150pt"|{{#calendar: title=Virginia_Commonwealth |year=2009 | month=07}} |
| + | |align="center" width="150pt"|{{#calendar: title=Virginia_Commonwealth |year=2009 | month=08}} |
| + | |align="center" width="150pt"|{{#calendar: title=Virginia_Commonwealth |year=2009 | month=09}} |
| + | |align="center" width="150pt"|{{#calendar: title=Virginia_Commonwealth |year=2009 | month=10}} |
| + | |} |
| + | ==Friday 24 July 2009== |
| + | ===Results=== |
| + | ''Craig and Clay'' |
| + | * A single colony was found growing on the plate containing cells transformed with part BBa_I742111. All other plates showed no growth. |
| + | ---- |
| + | ''Kevin & Adam'' |
| + | *PCR went well. |
| + | *Gel showed correct results |
| + | *purification went well, amount of DNA collected will be found Monday before digestion. |
| + | -[[User:Bussingkm|Bussingkm]] 22:03, 24 July 2009 (UTC) |
| | | |
- | <tr class="heading">
| + | ===Tasks=== |
- | <td colspan="7">May
| + | ''Craig and Clay'' |
- | </td></tr>
| + | * The parts displaying no growth will be left over the weekend to grow. The plate with part BBa_I742111 will be left in the refrigerator until Monday, at which time a miniprep will be performed. |
- | | + | ---- |
- | <tr class="dow">
| + | ====Wetlab==== |
- | <td>M</td><td>T</td><td>W</td><td>T</td><td>F</td><td>S</td><td>S
| + | ''Kevin & Adam'' |
- | </td></tr>
| + | *PCR padding regions onto promoters |
- | <tr>
| + | *purify PCR products |
- | <td>
| + | *run gel to test PCR products |
- | </td><td>
| + | |
- | </td><td>
| + | |
- | </td><td>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/1_May_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/1_May_2009&action=edit" rel="nofollow"><span class="day-empty">1</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/2_May_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/2_May_2009&action=edit" rel="nofollow"><span class="day-empty">2</span></a>
| + | |
- | | + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/3_May_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/3_May_2009&action=edit" rel="nofollow"><span class="day-empty">3</span></a>
| + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | <td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/4_May_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/4_May_2009&action=edit" rel="nofollow"><span class="day-empty">4</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/5_May_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/5_May_2009&action=edit" rel="nofollow"><span class="day-empty">5</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/6_May_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/6_May_2009&action=edit" rel="nofollow"><span class="day-empty">6</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/7_May_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/7_May_2009&action=edit" rel="nofollow"><span class="day-empty">7</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/8_May_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/8_May_2009&action=edit" rel="nofollow"><span class="day-empty">8</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/9_May_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/9_May_2009&action=edit" rel="nofollow"><span class="day-empty">9</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/10_May_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/10_May_2009&action=edit" rel="nofollow"><span class="day-empty">10</span></a>
| + | |
- | | + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | <td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/11_May_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/11_May_2009&action=edit" rel="nofollow"><span class="day-empty">11</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/12_May_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/12_May_2009&action=edit" rel="nofollow"><span class="day-empty">12</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/13_May_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/13_May_2009&action=edit" rel="nofollow"><span class="day-empty">13</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/14_May_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/14_May_2009&action=edit" rel="nofollow"><span class="day-empty">14</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/15_May_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/15_May_2009" rel="nofollow"><span class="day-active">15</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/16_May_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/16_May_2009" rel="nofollow"><span class="day-active">16</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/17_May_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/17_May_2009" rel="nofollow"><span class="day-active">17</span></a>
| + | |
- | </td></tr>
| + | |
- | | + | |
- | <tr>
| + | |
- | <td><a href="https://2009.igem.org/Virginia_Commonwealth/18_May_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/18_May_2009" rel="nofollow"><span class="day-active">18</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/19_May_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/19_May_2009" rel="nofollow"><span class="day-active">19</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/20_May_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/20_May_2009" rel="nofollow"><span class="day-active">20</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/21_May_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/21_May_2009" rel="nofollow"><span class="day-active">21</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/22_May_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/22_May_2009" rel="nofollow"><span class="day-active">22</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/23_May_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/23_May_2009&action=edit" rel="nofollow"><span class="day-empty">23</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/24_May_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/24_May_2009" rel="nofollow"><span class="day-active">24</span></a>
| + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | | + | |
- | <td><a href="https://2009.igem.org/Virginia_Commonwealth/25_May_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/25_May_2009" rel="nofollow"><span class="day-active">25</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/26_May_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/26_May_2009" rel="nofollow"><span class="day-active">26</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/27_May_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/27_May_2009" rel="nofollow"><span class="day-active">27</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/28_May_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/28_May_2009" rel="nofollow"><span class="day-active">28</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/29_May_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/29_May_2009" rel="nofollow"><span class="day-active">29</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/30_May_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/30_May_2009" rel="nofollow"><span class="day-active">30</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/31_May_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/31_May_2009&action=edit" rel="nofollow"><span class="day-empty">31</span></a>
| + | |
- | </td></tr></table>
| + | |
- | </td><td align="center" width="150pt">
| + | |
- | <table class="month">
| + | |
- | | + | |
- | <tr class="heading">
| + | |
- | <td colspan="7">June
| + | |
- | </td></tr>
| + | |
- | <tr class="dow">
| + | |
- | <td>M</td><td>T</td><td>W</td><td>T</td><td>F</td><td>S</td><td>S
| + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | <td><a href="https://2009.igem.org/Virginia_Commonwealth/1_June_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/1_June_2009" rel="nofollow"><span class="day-active">1</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/2_June_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/2_June_2009" rel="nofollow"><span class="day-active">2</span></a>
| + | |
- | | + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/3_June_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/3_June_2009" rel="nofollow"><span class="day-active">3</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/4_June_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/4_June_2009" rel="nofollow"><span class="day-active">4</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/5_June_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/5_June_2009" rel="nofollow"><span class="day-active">5</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/6_June_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/6_June_2009" rel="nofollow"><span class="day-active">6</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/7_June_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/7_June_2009" rel="nofollow"><span class="day-active">7</span></a>
| + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | <td><a href="https://2009.igem.org/Virginia_Commonwealth/8_June_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/8_June_2009" rel="nofollow"><span class="day-active">8</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/9_June_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/9_June_2009" rel="nofollow"><span class="day-active">9</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/10_June_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/10_June_2009" rel="nofollow"><span class="day-active">10</span></a>
| + | |
- | | + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/11_June_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/11_June_2009" rel="nofollow"><span class="day-active">11</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/12_June_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/12_June_2009" rel="nofollow"><span class="day-active">12</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/13_June_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/13_June_2009" rel="nofollow"><span class="day-active">13</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/14_June_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/14_June_2009" rel="nofollow"><span class="day-active">14</span></a>
| + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | <td><a href="https://2009.igem.org/Virginia_Commonwealth/15_June_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/15_June_2009" rel="nofollow"><span class="day-active">15</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/16_June_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/16_June_2009" rel="nofollow"><span class="day-active">16</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/17_June_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/17_June_2009" rel="nofollow"><span class="day-active">17</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/18_June_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/18_June_2009" rel="nofollow"><span class="day-active">18</span></a>
| + | |
- | | + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/19_June_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/19_June_2009" rel="nofollow"><span class="day-active">19</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/20_June_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/20_June_2009" rel="nofollow"><span class="day-active">20</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/21_June_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/21_June_2009" rel="nofollow"><span class="day-active">21</span></a>
| + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | <td><a href="https://2009.igem.org/Virginia_Commonwealth/22_June_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/22_June_2009" rel="nofollow"><span class="day-active">22</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/23_June_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/23_June_2009" rel="nofollow"><span class="day-active">23</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/24_June_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/24_June_2009" rel="nofollow"><span class="day-active">24</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/25_June_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/25_June_2009" rel="nofollow"><span class="day-active">25</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/26_June_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/26_June_2009" rel="nofollow"><span class="day-active">26</span></a>
| + | |
- | | + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/27_June_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/27_June_2009" rel="nofollow"><span class="day-active">27</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/28_June_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/28_June_2009" rel="nofollow"><span class="day-active">28</span></a>
| + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | <td><a href="https://2009.igem.org/Virginia_Commonwealth/29_June_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/29_June_2009" rel="nofollow"><span class="day-active">29</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/30_June_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/30_June_2009" rel="nofollow"><span class="day-active">30</span></a>
| + | |
- | </td></tr></table>
| + | |
- | </td><td align="center" width="150pt">
| + | |
- | <table class="month">
| + | |
- | | + | |
- | <tr class="heading">
| + | |
- | <td colspan="7">July
| + | |
- | </td></tr>
| + | |
- | | + | |
- | <tr class="dow">
| + | |
- | <td>M</td><td>T</td><td>W</td><td>T</td><td>F</td><td>S</td><td>S
| + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | <td>
| + | |
- | </td><td>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/1_July_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/1_July_2009" rel="nofollow"><span class="day-active">1</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/2_July_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/2_July_2009" rel="nofollow"><span class="day-active">2</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/3_July_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/3_July_2009" rel="nofollow"><span class="day-active">3</span></a>
| + | |
- | | + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/4_July_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/4_July_2009&action=edit" rel="nofollow"><span class="day-empty">4</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/5_July_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/5_July_2009&action=edit" rel="nofollow"><span class="day-empty">5</span></a>
| + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | <td><a href="https://2009.igem.org/Virginia_Commonwealth/6_July_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/6_July_2009" rel="nofollow"><span class="day-active">6</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/7_July_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/7_July_2009" rel="nofollow"><span class="day-active">7</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/8_July_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/8_July_2009" rel="nofollow"><span class="day-active">8</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/9_July_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/9_July_2009" rel="nofollow"><span class="day-active">9</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/10_July_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/10_July_2009" rel="nofollow"><span class="day-active">10</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/11_July_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/11_July_2009&action=edit" rel="nofollow"><span class="day-empty">11</span></a>
| + | |
- | | + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/12_July_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/12_July_2009&action=edit" rel="nofollow"><span class="day-empty">12</span></a>
| + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | <td><a href="https://2009.igem.org/Virginia_Commonwealth/13_July_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/13_July_2009" rel="nofollow"><span class="day-active">13</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/14_July_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/14_July_2009" rel="nofollow"><span class="day-active">14</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/15_July_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/15_July_2009" rel="nofollow"><span class="day-active">15</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/16_July_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/16_July_2009" rel="nofollow"><span class="day-active">16</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/17_July_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/17_July_2009" rel="nofollow"><span class="day-active">17</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/18_July_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/18_July_2009&action=edit" rel="nofollow"><span class="day-empty">18</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/19_July_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/19_July_2009&action=edit" rel="nofollow"><span class="day-empty">19</span></a>
| + | |
- | | + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | <td><a href="https://2009.igem.org/Virginia_Commonwealth/20_July_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/20_July_2009" rel="nofollow"><span class="day-active">20</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/21_July_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/21_July_2009" rel="nofollow"><span class="day-active">21</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/22_July_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/22_July_2009" rel="nofollow"><span class="day-active">22</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/23_July_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/23_July_2009" rel="nofollow"><span class="day-active">23</span></a>
| + | |
- | </td><td class="today"><a href="https://2009.igem.org/Virginia_Commonwealth/24_July_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/24_July_2009" rel="nofollow"><span class="day-active">24</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/25_July_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/25_July_2009&action=edit" rel="nofollow"><span class="day-empty">25</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/26_July_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/26_July_2009&action=edit" rel="nofollow"><span class="day-empty">26</span></a>
| + | |
- | </td></tr>
| + | |
- | | + | |
- | <tr>
| + | |
- | <td><a href="https://2009.igem.org/Virginia_Commonwealth/27_July_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/27_July_2009" rel="nofollow"><span class="day-active">27</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/Virginia_Commonwealth/28_July_2009" class="external text" title="https://2009.igem.org/Virginia_Commonwealth/28_July_2009" rel="nofollow"><span class="day-active">28</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/29_July_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/29_July_2009&action=edit" rel="nofollow"><span class="day-empty">29</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/30_July_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/30_July_2009&action=edit" rel="nofollow"><span class="day-empty">30</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/31_July_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/31_July_2009&action=edit" rel="nofollow"><span class="day-empty">31</span></a>
| + | |
- | </td></tr></table>
| + | |
- | </td><td align="center" width="150pt">
| + | |
- | <table class="month">
| + | |
- | | + | |
- | <tr class="heading">
| + | |
- | <td colspan="7">August
| + | |
- | | + | |
- | </td></tr>
| + | |
- | <tr class="dow">
| + | |
- | <td>M</td><td>T</td><td>W</td><td>T</td><td>F</td><td>S</td><td>S
| + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | <td>
| + | |
- | </td><td>
| + | |
- | </td><td>
| + | |
- | </td><td>
| + | |
- | </td><td>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/1_August_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/1_August_2009&action=edit" rel="nofollow"><span class="day-empty">1</span></a>
| + | |
- | | + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/2_August_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/2_August_2009&action=edit" rel="nofollow"><span class="day-empty">2</span></a>
| + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | <td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/3_August_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/3_August_2009&action=edit" rel="nofollow"><span class="day-empty">3</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/4_August_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/4_August_2009&action=edit" rel="nofollow"><span class="day-empty">4</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/5_August_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/5_August_2009&action=edit" rel="nofollow"><span class="day-empty">5</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/6_August_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/6_August_2009&action=edit" rel="nofollow"><span class="day-empty">6</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/7_August_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/7_August_2009&action=edit" rel="nofollow"><span class="day-empty">7</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/8_August_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/8_August_2009&action=edit" rel="nofollow"><span class="day-empty">8</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/9_August_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/9_August_2009&action=edit" rel="nofollow"><span class="day-empty">9</span></a>
| + | |
- | | + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | <td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/10_August_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/10_August_2009&action=edit" rel="nofollow"><span class="day-empty">10</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/11_August_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/11_August_2009&action=edit" rel="nofollow"><span class="day-empty">11</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/12_August_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/12_August_2009&action=edit" rel="nofollow"><span class="day-empty">12</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/13_August_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/13_August_2009&action=edit" rel="nofollow"><span class="day-empty">13</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/14_August_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/14_August_2009&action=edit" rel="nofollow"><span class="day-empty">14</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/15_August_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/15_August_2009&action=edit" rel="nofollow"><span class="day-empty">15</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/16_August_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/16_August_2009&action=edit" rel="nofollow"><span class="day-empty">16</span></a>
| + | |
- | </td></tr>
| + | |
- | | + | |
- | <tr>
| + | |
- | <td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/17_August_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/17_August_2009&action=edit" rel="nofollow"><span class="day-empty">17</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/18_August_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/18_August_2009&action=edit" rel="nofollow"><span class="day-empty">18</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/19_August_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/19_August_2009&action=edit" rel="nofollow"><span class="day-empty">19</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/20_August_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/20_August_2009&action=edit" rel="nofollow"><span class="day-empty">20</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/21_August_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/21_August_2009&action=edit" rel="nofollow"><span class="day-empty">21</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/22_August_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/22_August_2009&action=edit" rel="nofollow"><span class="day-empty">22</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/23_August_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/23_August_2009&action=edit" rel="nofollow"><span class="day-empty">23</span></a>
| + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | | + | |
- | <td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/24_August_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/24_August_2009&action=edit" rel="nofollow"><span class="day-empty">24</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/25_August_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/25_August_2009&action=edit" rel="nofollow"><span class="day-empty">25</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/26_August_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/26_August_2009&action=edit" rel="nofollow"><span class="day-empty">26</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/27_August_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/27_August_2009&action=edit" rel="nofollow"><span class="day-empty">27</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/28_August_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/28_August_2009&action=edit" rel="nofollow"><span class="day-empty">28</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/29_August_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/29_August_2009&action=edit" rel="nofollow"><span class="day-empty">29</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/30_August_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/30_August_2009&action=edit" rel="nofollow"><span class="day-empty">30</span></a>
| + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | <td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/31_August_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/31_August_2009&action=edit" rel="nofollow"><span class="day-empty">31</span></a>
| + | |
- | | + | |
- | </td></tr></table>
| + | |
- | </td><td align="center" width="150pt">
| + | |
- | <table class="month">
| + | |
- | | + | |
- | <tr class="heading">
| + | |
- | <td colspan="7">September
| + | |
- | </td></tr>
| + | |
- | <tr class="dow">
| + | |
- | <td>M</td><td>T</td><td>W</td><td>T</td><td>F</td><td>S</td><td>S
| + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | | + | |
- | <td>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/1_September_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/1_September_2009&action=edit" rel="nofollow"><span class="day-empty">1</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/2_September_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/2_September_2009&action=edit" rel="nofollow"><span class="day-empty">2</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/3_September_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/3_September_2009&action=edit" rel="nofollow"><span class="day-empty">3</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/4_September_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/4_September_2009&action=edit" rel="nofollow"><span class="day-empty">4</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/5_September_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/5_September_2009&action=edit" rel="nofollow"><span class="day-empty">5</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/6_September_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/6_September_2009&action=edit" rel="nofollow"><span class="day-empty">6</span></a>
| + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | <td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/7_September_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/7_September_2009&action=edit" rel="nofollow"><span class="day-empty">7</span></a>
| + | |
- | | + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/8_September_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/8_September_2009&action=edit" rel="nofollow"><span class="day-empty">8</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/9_September_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/9_September_2009&action=edit" rel="nofollow"><span class="day-empty">9</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/10_September_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/10_September_2009&action=edit" rel="nofollow"><span class="day-empty">10</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/11_September_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/11_September_2009&action=edit" rel="nofollow"><span class="day-empty">11</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/12_September_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/12_September_2009&action=edit" rel="nofollow"><span class="day-empty">12</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/13_September_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/13_September_2009&action=edit" rel="nofollow"><span class="day-empty">13</span></a>
| + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | <td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/14_September_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/14_September_2009&action=edit" rel="nofollow"><span class="day-empty">14</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/15_September_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/15_September_2009&action=edit" rel="nofollow"><span class="day-empty">15</span></a>
| + | |
- | | + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/16_September_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/16_September_2009&action=edit" rel="nofollow"><span class="day-empty">16</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/17_September_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/17_September_2009&action=edit" rel="nofollow"><span class="day-empty">17</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/18_September_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/18_September_2009&action=edit" rel="nofollow"><span class="day-empty">18</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/19_September_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/19_September_2009&action=edit" rel="nofollow"><span class="day-empty">19</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/20_September_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/20_September_2009&action=edit" rel="nofollow"><span class="day-empty">20</span></a>
| + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | <td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/21_September_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/21_September_2009&action=edit" rel="nofollow"><span class="day-empty">21</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/22_September_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/22_September_2009&action=edit" rel="nofollow"><span class="day-empty">22</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/23_September_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/23_September_2009&action=edit" rel="nofollow"><span class="day-empty">23</span></a>
| + | |
- | | + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/24_September_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/24_September_2009&action=edit" rel="nofollow"><span class="day-empty">24</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/25_September_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/25_September_2009&action=edit" rel="nofollow"><span class="day-empty">25</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/26_September_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/26_September_2009&action=edit" rel="nofollow"><span class="day-empty">26</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/27_September_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/27_September_2009&action=edit" rel="nofollow"><span class="day-empty">27</span></a>
| + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | <td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/28_September_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/28_September_2009&action=edit" rel="nofollow"><span class="day-empty">28</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/29_September_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/29_September_2009&action=edit" rel="nofollow"><span class="day-empty">29</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/30_September_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/30_September_2009&action=edit" rel="nofollow"><span class="day-empty">30</span></a>
| + | |
- | </td></tr></table>
| + | |
- | | + | |
- | </td><td align="center" width="150pt">
| + | |
- | <table class="month">
| + | |
- | | + | |
- | <tr class="heading">
| + | |
- | <td colspan="7">October
| + | |
- | </td></tr>
| + | |
- | <tr class="dow">
| + | |
- | <td>M</td><td>T</td><td>W</td><td>T</td><td>F</td><td>S</td><td>S
| + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | <td>
| + | |
- | | + | |
- | </td><td>
| + | |
- | </td><td>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/1_October_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/1_October_2009&action=edit" rel="nofollow"><span class="day-empty">1</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/2_October_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/2_October_2009&action=edit" rel="nofollow"><span class="day-empty">2</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/3_October_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/3_October_2009&action=edit" rel="nofollow"><span class="day-empty">3</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/4_October_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/4_October_2009&action=edit" rel="nofollow"><span class="day-empty">4</span></a>
| + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | <td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/5_October_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/5_October_2009&action=edit" rel="nofollow"><span class="day-empty">5</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/6_October_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/6_October_2009&action=edit" rel="nofollow"><span class="day-empty">6</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/7_October_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/7_October_2009&action=edit" rel="nofollow"><span class="day-empty">7</span></a>
| + | |
- | | + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/8_October_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/8_October_2009&action=edit" rel="nofollow"><span class="day-empty">8</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/9_October_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/9_October_2009&action=edit" rel="nofollow"><span class="day-empty">9</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/10_October_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/10_October_2009&action=edit" rel="nofollow"><span class="day-empty">10</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/11_October_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/11_October_2009&action=edit" rel="nofollow"><span class="day-empty">11</span></a>
| + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | <td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/12_October_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/12_October_2009&action=edit" rel="nofollow"><span class="day-empty">12</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/13_October_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/13_October_2009&action=edit" rel="nofollow"><span class="day-empty">13</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/14_October_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/14_October_2009&action=edit" rel="nofollow"><span class="day-empty">14</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/15_October_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/15_October_2009&action=edit" rel="nofollow"><span class="day-empty">15</span></a>
| + | |
- | | + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/16_October_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/16_October_2009&action=edit" rel="nofollow"><span class="day-empty">16</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/17_October_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/17_October_2009&action=edit" rel="nofollow"><span class="day-empty">17</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/18_October_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/18_October_2009&action=edit" rel="nofollow"><span class="day-empty">18</span></a>
| + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | <td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/19_October_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/19_October_2009&action=edit" rel="nofollow"><span class="day-empty">19</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/20_October_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/20_October_2009&action=edit" rel="nofollow"><span class="day-empty">20</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/21_October_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/21_October_2009&action=edit" rel="nofollow"><span class="day-empty">21</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/22_October_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/22_October_2009&action=edit" rel="nofollow"><span class="day-empty">22</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/23_October_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/23_October_2009&action=edit" rel="nofollow"><span class="day-empty">23</span></a>
| + | |
- | | + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/24_October_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/24_October_2009&action=edit" rel="nofollow"><span class="day-empty">24</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/25_October_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/25_October_2009&action=edit" rel="nofollow"><span class="day-empty">25</span></a>
| + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | <td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/26_October_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/26_October_2009&action=edit" rel="nofollow"><span class="day-empty">26</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/27_October_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/27_October_2009&action=edit" rel="nofollow"><span class="day-empty">27</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/28_October_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/28_October_2009&action=edit" rel="nofollow"><span class="day-empty">28</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/29_October_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/29_October_2009&action=edit" rel="nofollow"><span class="day-empty">29</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/30_October_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/30_October_2009&action=edit" rel="nofollow"><span class="day-empty">30</span></a>
| + | |
- | </td><td><a href="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/31_October_2009&action=edit" class="external text" title="https://2009.igem.org/wiki/index.php?title=Virginia_Commonwealth/31_October_2009&action=edit" rel="nofollow"><span class="day-empty">31</span></a>
| + | |
- | | + | |
- | </td></tr></table>
| + | |
- | </td></tr></table>
| + | |
- | <table id="toc" class="toc" summary="Contents"><tr><td><div id="toctitle"><h2>Contents</h2></div>
| + | |
- | <ul>
| + | |
- | <li class="toclevel-1"><a href="#Monday_20_July_2009"><span class="tocnumber">1</span> <span class="toctext">Monday 20 July 2009</span></a>
| + | |
- | <ul>
| + | |
- | <li class="toclevel-2"><a href="#Results"><span class="tocnumber">1.1</span> <span class="toctext">Results</span></a></li>
| + | |
- | <li class="toclevel-2"><a href="#Tasks"><span class="tocnumber">1.2</span> <span class="toctext">Tasks</span></a>
| + | |
- | | + | |
- | <ul>
| + | |
- | <li class="toclevel-3"><a href="#Wetlab"><span class="tocnumber">1.2.1</span> <span class="toctext">Wetlab</span></a></li>
| + | |
- | </ul>
| + | |
- | </li>
| + | |
- | </ul>
| + | |
- | </li>
| + | |
- | </ul>
| + | |
- | </td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "show"; var tocHideText = "hide"; showTocToggle(); } </script>
| + | |
- | <a name="Monday_20_July_2009"></a><h2><span class="editsection">[<a href="/wiki/index.php?title=Virginia_Commonwealth/20_July_2009&action=edit&section=1" title="Edit section: Monday 20 July 2009">edit</a>]</span> <span class="mw-headline">Monday 20 July 2009</span></h2>
| + | |
- | | + | |
- | <a name="Results"></a><h3><span class="editsection">[<a href="/wiki/index.php?title=Virginia_Commonwealth/20_July_2009&action=edit&section=2" title="Edit section: Results">edit</a>]</span> <span class="mw-headline">Results</span></h3>
| + | |
- | <ul><li> Results of transformation with pSB4C5 backbone in NEB 10 beta three days after transformation
| + | |
- | <ul><li> Control (+) on LB NEB 10 beta (not shocked) had Lawn growth
| + | |
- | </li><li> Control (-) on Cm NEB 10 beta (not shocked) had No growth
| + | |
- | </li></ul>
| + | |
- | </li></ul>
| + | |
- | <table cellpadding="10" align="center" border="0.9">
| + | |
- | <caption>
| + | |
- | </caption>
| + | |
- | | + | |
- | <tr>
| + | |
- | <th> Promoter</th><th> Reporter </th><th> Resistance/Plate </th><th> Growth Observation </th><th>
| + | |
- | </th></tr>
| + | |
- | <tr>
| + | |
- | <th> J23110
| + | |
- | </th><td> E0240 </td><td> Cm </td><td> 62 colonies </td><td>
| + | |
- | | + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | <th> J23110
| + | |
- | </th><td> J06702 </td><td> Cm </td><td> 56 colonies </td><td>
| + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | <th> J23113
| + | |
- | </th><td> E0240 </td><td> Cm </td><td> 75 colonies </td><td>
| + | |
- | | + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | <th> J23113
| + | |
- | </th><td> J06702 </td><td> Cm </td><td> 33 colonies </td><td>
| + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | <th> J23116
| + | |
- | </th><td> E0240 </td><td> Cm </td><td> 41 colonies </td><td>
| + | |
- | | + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | <th> J23116
| + | |
- | </th><td> J06702 </td><td> Cm </td><td> 65 colonies </td><td>
| + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | <th> R0011
| + | |
- | </th><td> E0240 </td><td> Cm </td><td> hundreds of colonies </td><td>
| + | |
- | | + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | <th> R0011
| + | |
- | </th><td> J06702 </td><td> Cm </td><td> 5 colonies </td><td>
| + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | <th> R0040
| + | |
- | </th><td> E0240 </td><td> Cm </td><td> 20 colonies </td><td>
| + | |
- | | + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | <th> R0040
| + | |
- | </th><td> J06702 </td><td> Cm </td><td> 12 colonies </td><td>
| + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | <th> J23105
| + | |
- | </th><td> E0240 </td><td> Cm </td><td> 26 colonies </td><td>
| + | |
- | | + | |
- | </td></tr>
| + | |
- | <tr>
| + | |
- | <th> J23101
| + | |
- | </th><td> E0240 </td><td> Cm </td><td> 34 colonies </td><td>
| + | |
- | </td></tr></table>
| + | |
- | <p><a href="/wiki/index.php?title=User:Trentay&action=edit&redlink=1" class="new" title="User:Trentay (not yet written)">Trentay</a> 14:17, 20 July 2009 (UTC)
| + | |
- | </p><p><i>Craig and Clay</i>
| + | |
- | | + | |
- | </p>
| + | |
- | <ul><li> The registry did confirm that the correct resistance for the limonene synthesis related parts is ampicillin. New parts will also be sent.
| + | |
- | </li></ul>
| + | |
- | <hr />
| + | |
- | <a name="Tasks"></a><h3><span class="editsection">[<a href="/wiki/index.php?title=Virginia_Commonwealth/20_July_2009&action=edit&section=3" title="Edit section: Tasks">edit</a>]</span> <span class="mw-headline">Tasks</span></h3>
| + | |
- | <p><i>Maria and Afton</i>
| + | |
- | </p>
| + | |
- | <ul><li> Pick colonies for overnight culture from transformations
| + | |
- | </li><li> Ligate J23106 and J23101 with backbone pSB4C5 and RET E0240
| + | |
- | | + | |
- | </li><li> Transform liagated parts into NEB 10 beta
| + | |
- | </li></ul>
| + | |
- | <p><a href="/wiki/index.php?title=User:Trentay&action=edit&redlink=1" class="new" title="User:Trentay (not yet written)">Trentay</a> 18:40, 20 July 2009 (UTC)
| + | |
- | </p>
| + | |
- | <hr />
| + | |
- | <a name="Wetlab"></a><h4><span class="editsection">[<a href="/wiki/index.php?title=Virginia_Commonwealth/20_July_2009&action=edit&section=4" title="Edit section: Wetlab">edit</a>]</span> <span class="mw-headline">Wetlab</span></h4>
| + | |
- | <ul><li>1
| + | |
- | </li><li>2
| + | |
- | </li></ul>
| + | |
- | | + | |
- | <tr><td></td></tr>
| + | |
- | </table>
| + | |
- | | + | |
- | <!--
| + | |
- | NewPP limit report
| + | |
- | Preprocessor node count: 217/1000000
| + | |
- | Post-expand include size: 22404/2097152 bytes
| + | |
- | Template argument size: 0/2097152 bytes
| + | |
- | Expensive parser function count: 0/100
| + | |
- | --> | + | |
- | <div class="printfooter">
| + | |
- | Retrieved from "<a href="https://2009.igem.org/Virginia_Commonwealth/20_July_2009">https://2009.igem.org/Virginia_Commonwealth/20_July_2009</a>"</div>
| + | |
- | <!-- end content -->
| + | |
- | <div class="visualClear"></div>
| + | |
- | </div>
| + | |
- | </div>
| + | |
- | | + | |
- | <!-- PAGE FOOTER -- ITEMS FROM COLUMN ! HAVE BEEN MOVED HERE -- RDR -->
| + | |
- | <div class="visualClear"></div>
| + | |
- | <div id='footer-box'>
| + | |
- | <div id="footer">
| + | |
- | <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/wiki/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> <div id="f-copyrightico"><a href="http://creativecommons.org/licenses/by-sa/3.0/"><img src="http://i.creativecommons.org/l/by-sa/3.0/88x31.png" alt='Attribution-Share Alike 3.0 Unported' /></a></div> <ul id="f-list">
| + | |
- |
| + | |
- | | + | |
- | <!-- Recentchanges is not handles well DEBUG -->
| + | |
- | <li id="t-recentchanges"><a href="/Special:RecentChanges"
| + | |
- | title='Recent changes'>Recent changes</a></li>
| + | |
- | | + | |
- | <li id="t-whatlinkshere"><a href="/Special:WhatLinksHere/Virginia_Commonwealth/20_July_2009"
| + | |
- | title="List of all wiki pages that link here [j]" accesskey="j">What links here</a></li>
| + | |
- | | + | |
- | <li id="t-recentchangeslinked"><a href="/Special:RecentChangesLinked/Virginia_Commonwealth/20_July_2009"
| + | |
- | title="Recent changes in pages linked from this page [k]" accesskey="k">Related changes</a></li>
| + | |
- | | + | |
- | | + | |
- | | + | |
- | <li id="t-upload"><a href="/Special:Upload"
| + | |
- | title="Upload files [u]" accesskey="u">Upload file</a>
| + | |
- | </li>
| + | |
- | <li id="t-specialpages"><a href="/Special:SpecialPages"
| + | |
- | title="List of all special pages [q]" accesskey="q">Special pages</a>
| + | |
- | </li>
| + | |
- | | + | |
- | <li><a href='/Special:Preferences'>My preferences</a></li>
| + | |
- | </ul>
| + | |
- | </div> <!-- close footer -->
| + | |
- | <div id='footer'>
| + | |
- | <ul id="f-list">
| + | |
- | | + | |
- | <li id="t-print"><a href="/wiki/index.php?title=Virginia_Commonwealth/20_July_2009&printable=yes"
| + | |
- | title="Printable version of this page [p]" accesskey="p">Printable version</a>
| + | |
- | </li>
| + | |
- | | + | |
- | <li id="t-permalink"><a href="/wiki/index.php?title=Virginia_Commonwealth/20_July_2009&oldid=27410"
| + | |
- | title="Permanent link to this version of the page">Permanent link</a>
| + | |
- | </li>
| + | |
- | | + | |
- | | + | |
- | <li id="privacy"><a href="/2009.igem.org:Privacy_policy" title="2009.igem.org:Privacy policy">Privacy policy</a></li>
| + | |
- | <li id="disclaimer"><a href="/2009.igem.org:General_disclaimer" title="2009.igem.org:General disclaimer">Disclaimers</a></li>
| + | |
- | </ul>
| + | |
- | </div> <!-- close footer -->
| + | |
- | | + | |
- | </div> <!-- close footer-box -->
| + | |
- |
| + | |
- | <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script>
| + | |
- | </div>
| + | |
- | <!-- Served in 0.469 secs. --></body>
| + | |
- | | + | |
- | </html>
| + | |