Difference between revisions of "Team:Aalto-Helsinki/InterLabBook"

m (z-index not defined here)
(trying to add responsive navigation, doesn't work yet for some reason..)
Line 35: Line 35:
 
     position: fixed;
 
     position: fixed;
 
     left: 0;
 
     left: 0;
     top: 40%;
+
     bottom: 3%;
 
     width: 10%;
 
     width: 10%;
 
}
 
}
Line 49: Line 49:
 
   padding-bottom: 1px;  
 
   padding-bottom: 1px;  
 
}
 
}
 +
#sidenav a:hover,
 +
#sidenav a.active {
 +
    color: black !important;
 +
}
 +
 
/* styling the background */
 
/* styling the background */
 
.plasmids {
 
.plasmids {
Line 55: Line 60:
 
     background-size: 100%;
 
     background-size: 100%;
 
  }
 
  }
 +
 
</style>
 
</style>
  
 
</p></div>
 
</p></div>
  
       <ul id="sidenav" class="nav nav-stacked"><!-- nav-pills if we want rounded corners -->
+
       <ul id="sidenav" class="nav nav-stacked">
         <li><a href="#week1"><h4>Week 1</h4></a></li>
+
         <li><a href="#" data-scroll="week1"><h4>Week 1</h4></a></li>
         <li><a href="#week2"><h4>Week 2</h4></a></li>
+
         <li><a href="#" data-scroll="week2"><h4>Week 2</h4></a></li>
         <li><a href="#week3"><h4>Week 3</h4></a></li>
+
         <li><a href="#" data-scroll="week3"><h4>Weeks 3 & 4</h4></a></li>
         <li><a href="#week4"><h4>Week 4</h4></a></li>
+
         <li><a href="#" data-scroll="week5"><h4>Week 5</h4></a></li>
         <li><a href="#week5"><h4>Week 5</h4></a></li>
+
         <li><a href="#" data-scroll="week6"><h4>Week 6</h4></a></li>
         <li><a href="#week6"><h4>Week 6</h4></a></li>
+
         <li><a href="#" ><h4 style="border-top:solid;">To the top</h4></a></li>
 
       </ul>
 
       </ul>
 +
  
 
<div class="plasmids" style="margin-bottom:0;">
 
<div class="plasmids" style="margin-bottom:0;">
<div class = "inner-container" >
 
  
  
<h1 style="text-align:center">Interlab Measurement Study Lab Book</h1>
+
<div class = "inner-container" >
  
 +
<h1 style="text-align:center">Interlab Measurement Study Lab Book</h1>
  
 
</div><!-- end inner-container-->
 
</div><!-- end inner-container-->
  
  
 
+
<!-- Week 1 below -->
<h2 id="week1">Week 1</h2>
+
<section id="week1" class="active" data-anchor="week1">
 +
<h2>Week 1</h2>
 
<table >
 
<table >
 
   <tr>
 
   <tr>
Line 119: Line 127:
 
         </td>
 
         </td>
 
   </tr>
 
   </tr>
 
  
 
</table>
 
</table>
  
<h2 id="week2">Week 2</h2>
+
</section>
 +
<!-- Week 1 above -->
 +
 
 +
 
 +
<!-- Week 2 below -->
 +
<section id="week2" data-anchor="week2">
 +
<h2>Week 2</h2>
  
 
<table >
 
<table >
Line 205: Line 218:
 
</table>
 
</table>
  
<h2 id="week3">Week 3 & Week 4</h2>
+
</section>
 +
<!-- Week 2 above -->
 +
 
 +
 
 +
<!-- Weeks 3 and 4 below -->
 +
<section id="week3" data-anchor="week3">
 +
<h2>Week 3 & Week 4</h2>
  
 
<table>
 
<table>
Line 239: Line 258:
 
</table>
 
</table>
  
 +
</section>
 +
<!-- Weeks 3 and 4 above -->
  
<h2 id="week5">Week 5</h2>
+
 
 +
<!-- Week 5 below -->
 +
<section id="week5" data-anchor="week5">
 +
<h2>Week 5</h2>
  
 
<table>
 
<table>
Line 306: Line 330:
 
</table>
 
</table>
  
<h2 id="week6">Week 6</h2>
+
</section>
 +
<!-- Week 5 above -->
 +
 
 +
 
 +
<!-- Week 6 below -->
 +
<section id="week6" data-anchor="week6">
 +
<h2>Week 6</h2>
  
  
Line 369: Line 399:
 
   </tr>
 
   </tr>
 
</table>
 
</table>
 +
 +
</section>
 +
<!-- Week 6 above -->
 +
  
 
<div class="inner-container" style="margin:5% 20% 0% 25%;padding-bottom:10%;">  
 
<div class="inner-container" style="margin:5% 20% 0% 25%;padding-bottom:10%;">  
Line 374: Line 408:
  
 
</div><!-- Background end-->
 
</div><!-- Background end-->
 +
 +
<!-- here scripts to make the site navigation beautiful and responsive. -->
 +
<script>
 +
 +
$('#sidenav a').on('click', function() {
 +
 +
    var scrollAnchor = $(this).attr('data-scroll'),
 +
        scrollPoint = $('section[data-anchor="' + scrollAnchor + '"]').offset().top - 28;
 +
 +
    $('body,html').animate({
 +
        scrollTop: scrollPoint
 +
    }, 500);
 +
 +
    return false;
 +
 +
})
 +
 +
 +
$(window).scroll(function() {
 +
    var windscroll = $(window).scrollTop();
 +
    if (windscroll >= 100) {
 +
        $('.inner-container section').each(function(i) {
 +
            if ($(this).position().top <= windscroll + 20) {
 +
                $('#sidenav a.active').removeClass('active');
 +
                $('#sidenav a').eq(i).addClass('active');
 +
            }
 +
        });
 +
 +
    } else {
 +
 +
        $('#sidenav a.active').removeClass('active');
 +
        $('#sidenav a:first').addClass('active');
 +
    }
 +
 +
}).scroll();
 +
 +
</script>
 +
 +
 +
 +
 
</div></div></body> <!--These are the closing tags for div id="mainContainer" and div id="contentContainer". The corresponding opening tags appear in the template that is {{included}} at the top of this page.-->
 
</div></div></body> <!--These are the closing tags for div id="mainContainer" and div id="contentContainer". The corresponding opening tags appear in the template that is {{included}} at the top of this page.-->
 
<!-- The next starting p is to get rid of the annoying gap at the bottom of the page. There is a closing /p at some kind of ready footer, that can be seen when looking at the page source --><p style="margin:0;">  
 
<!-- The next starting p is to get rid of the annoying gap at the bottom of the page. There is a closing /p at some kind of ready footer, that can be seen when looking at the page source --><p style="margin:0;">  
 +
  
 
</html>
 
</html>

Revision as of 07:23, 25 August 2015

Interlab Measurement Study Lab Book

Week 1

Worked With

WorkFlow

June 22nd -
June 26th

Preparations

Transform
AHD1-AHD4
into TOP10

o/n culture

MinPrep

Use iGEM's
linearized
backbones

Assembly

3A assembly
for D1-D3

Stored
in -20°C

Week 2

Worked With

WorkFlow

June 29th -
July 7th

Preparations

Transform
AHD6 & AHD7
into TOP10

o/n culture

MinPrep

Assembly

Transform
D1-D3
into TOP10

D2
expressing
GFP

Refresh
positive
colonies

No GFP

No colonies
for D1 & D3

Re-assemble
D1-D3

Transform
into TOP10

D2
successful

o/n culture

MiniPrep

No colonies
for D1 & D3

Week 3 & Week 4

Worked With

WorkFlow

June 29th -
July 7th

Checking D2

Transform D2
into TOP10

GFP
expressed

Assembly

Re-restrict
AHD1 & AHD3-AHD5

Stored
in -20°C

Week 5

Worked With

WorkFlow

July 27th -
July 31st

Assembly

Ligations
for D1 & D3

Transform
into TOP10

Checking

Check AHD1
& AHD3-AHD5
restrictions on gel

AHD4 & AHD5
OK

Too little
restriction mix
for new ligation

Re-restrict

Stored
in -20°C

Assembly

Ligations
for D1 & D3

Transform
into TOP10

AHD1 & AHD3
unclear

Re-restrict

Stored
in -20°C

Week 6

Worked With

WorkFlow

August 3rd -
August 7th

Assembly

Ligations
for D1 & D3

Transform
into TOP10

D1
expressing
GFP

o/n culture

MiniPrep

No GFP
expression
in D3

Re-restrict
AHD3-AHD5

Ligate &
transform
into TOP10

No GFP
expression

Checking

Mistake in AHD4
restriction
protocol

Check AHD4
restriction
on gel

Restriction OK

Due to the limited time we had to use for our project, we had to abort the interlab measurement study. We were able to construct two devices and measure the GFP from these. We were unable to build the device with J23106 promoter.