Difference between revisions of "Team:HebrewU/InterLab"

Line 1: Line 1:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<html xmlns="http://www.w3.org/1999/xhtml">
 
 
 
 
 
 
  <!--- Chart script --->
 
  <!--- Chart script --->
 
  <script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
 
  <script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>

Revision as of 20:19, 6 September 2018

<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>

<script> google.charts.load('current', {'packages':['corechart', 'line']});

   google.charts.setOnLoadCallback(drawChart1);

google.charts.setOnLoadCallback(drawChart2);


   function drawChart1() {
     var data = new google.visualization.DataTable();
     data.addColumn('number', 'Pcounts');
     data.addColumn('number', 'Abs');
     data.addRows([
         [ 2.35E+08, 0.977],
         [ 1.18E+08, 0.568],
         [ 5.88E+07, 0.305],
         [ 2.94E+07, 0.195],
         [ 1.47E+07, 0.139],
         [ 7.35E+06, 0.113],
         [ 3.68E+06, 0.098],
         [ 1.84E+06, 0.092],
         [ 9.19E+05, 0.086],
         [ 4.60E+05, 0.087],
         [ 2.30E+05, 0.086],
     ]);
     var linearOptions = {
       title: 'Particle Standard Curve (Linear Scale)',
       legend: 'none',

showR2: true,

       width: 350,
       height: 300,

pointSize: 12,

       dataOpacity: 0.3,
       colors: ['black'],
       backgroundColor: '#edeadc',
       hAxis: {
         title: 'Particle Count / 100 uL',

format: 'scientific'

       },
       vAxis: {
         title: 'Abs 600',
         ticks: [0, 0.2, 0.4, 0.6, 0.8, 1, 1.2]
       }
     };
     var logOptions = {
       title: 'Particle Standard Curve (Log Scale)',
       legend: 'none',
       width: 350,
       height: 300,

pointSize: 12,

       dataOpacity: 0.3,
       colors: ['black'],
       backgroundColor: '#edeadc',
        hAxis: {
         title: 'Particle Count / 100 uL',

format: 'scientific',

         ticks: [1E5, 1E6, 1E7, 1E8]
       },
       vAxis: {
         title: 'Abs 600',
         scaleType: 'log',
         ticks: [0.01, 0.1, 1]
       }
     };
     var linearChart = new google.visualization.LineChart(document.getElementById('linear_div'));
      linearChart.draw(data, linearOptions);
     var logChart = new google.visualization.LineChart(document.getElementById('log_div'));
     logChart.draw(data, logOptions);
   }


function drawChart2() {

     var data = new google.visualization.DataTable();
     data.addColumn('number', 'Pcounts');
     data.addColumn('number', 'Abs');
     data.addRows([
         [10.00, 6.461E+06],
         [5.00, 3.551E+06],
         [ 2.5, 1.900E+06],
         [ 1.25, 9.253E+05],
         [ 0.625, 4.844E+05],
         [ 0.313, 2.420E+05],
         [ 0.156, 1.162E+05],
         [ 0.078, 5.755E+04],
         [ 0.039, 3.016E+04],
         [ 0.0195,1.527E+04],
         [ 0.0098,7.731E+03],
     ]);



     var linearOptions2 = {
       title: 'Particle Standard Curve (Linear Scale)',
       legend: 'none',
       width: 350,
       height: 300,

pointSize: 12,

       dataOpacity: 0.3,
       colors: ['black'],
       backgroundColor: '#edeadc',
       hAxis: {
         title: 'Fluorescein Concentration (uM)',

ticks: [0,2,4,6,8,10]

       },
       vAxis: {
         title: 'Fluorescence',

ticks: [1E5, 2E6, 3E7, 4E8, 5E8, 6E8, 7E8, 8E8]

       }
     };
     var logOptions2 = {
       title: 'Particle Standard Curve (Log Scale)',
       legend: 'none',
       width: 350,
       height: 300,

pointSize: 12,

       dataOpacity: 0.3,
       colors: ['black'],
       backgroundColor: '#edeadc',
       hAxis: {
       title: 'Fluorescein Concentration (uM)',

ticks: [0.00, 0.01, 0.1, 1, 10]


       },
       vAxis: {
         title: 'Fluorescence',
         scaleType: 'log',

format: 'scientific', ticks: [1E5, 2E6, 3E7, 4E8, 5E8, 6E8, 7E8, 8E8]

       }
     };
     var linearChart2 = new google.visualization.LineChart(document.getElementById('linear_div2'));
      linearChart2.draw(data, linearOptions2);
     var logChart2 = new google.visualization.LineChart(document.getElementById('log_div2'));
     logChart2.draw(data, logOptions2);
   }


</script>

<head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> </head>


<script>

   var timeout    = 500;
   var closetimer = 0;
   var ddmenuitem = 0;
        
   function ddmenu_open(){
       ddmenu_canceltimer();
          ddmenu_close();
          ddmenuitem = $(this).find('ul').css('visibility', 'visible');
   }
        
   function ddmenu_close(){ 
       if(ddmenuitem) ddmenuitem.css('visibility', 'hidden');
   }
        
   function ddmenu_timer(){
       closetimer = window.setTimeout(ddmenu_close, timeout);
   }
        
   function ddmenu_canceltimer(){  
       if(closetimer){  
           window.clearTimeout(closetimer);
               closetimer = null;
   }}
        
   $(document).ready(function(){  
       $('#ddmenu_hebrewu > li').bind('mouseover', ddmenu_open)
       $('#ddmenu_hebrewu > li').bind('mouseout',  ddmenu_timer)
   });
        
   document.onclick = ddmenu_close;

</script>


<style>

           #sideMenu, #top_title {display:none;}
           #sideMenu, #sideMenu *, #top_menu_inside, #top_menu_inside *{box-sizing: initial; -webkit-box-sizing: initial;}
           #content { padding:0px; width:100%; margin-top:-7px; margin-left:0px;}
           body {background-color:white; }
           #bodyContent h1, #bodyContent h2, #bodyContent h3, #bodyContent h4, #bodyContent h5 { margin-bottom: 0px; }
  1. ddmenu_hebrewu {
   background:#262d2e;
   margin: 0;
   padding: 0;
   height:35px;
   font: 15px Calibri, Calibri;}
    
  1. ddmenu_hebrewu li {
   float: left;
   list-style: none;
   font: 20px Calibri, Calibri;}

  1. ddmenu_hebrewu li a {
   background:#262d2e;
   display: block;
   padding: 5px 20px;
   text-decoration: none;
   color: white;

}


  1. ddmenu_hebrewu li a:hover {
   background: #2c3635;

}

  1. ddmenu_hebrewu li ul {
   margin: 3px 0 0 10px;
   padding: 0;
   position: absolute;
   visibility: hidden;

}

  1. ddmenu_hebrewu li ul li {
   display:inline;

}

  1. ddmenu_hebrewu li ul li a {
   width: auto;    
   background: none;
   display: inline;
   color: black; 
   font: 20px Calibri, Calibri;
   padding: 2px 10px;

}

  1. ddmenu_hebrewu li ul li a:hover {
   background: none;
   color: #106375; 
   padding: 2px 10px;

}

/* Homebutton 10% space */ .huji_homebutton {

   float: left;
   width: 13%;

}

/* Create three unequal columns that floats next to each other */ .columnhuji {

   float: left;
   padding: 10px;

}

/* Left and right column */ .columnhuji.side {

   width: 12%;

}

/* Middle column */ .columnhuji.middle {

   width: 70%;
   background-color:#edeadc;
   padding: 10px;
   
   
   

}

/* Clear floats after the columns */ .rowhuji:after {

   content: "";
   display: table;
   clear: both;

}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */ @media screen and (max-width: 600px) {

   .columnhuji.side, .columnhuji.middle {
       width: 100%;
   }

}

h2.ahuji {

   font: 50px Calibri, Calibri;
   text-align: center;

}

h2.chuji {

   font: 20px Calibri, Calibri;
   text-align: center;

}

p.ahuji {

   font: 18px Calibri, Calibri;

margin-left:5%; margin-right:5%; text-align:justify; }

p.bhuji {

   font: 18px Calibri, Calibri;

text-align:center; }


.buttonhuji { font: 18px Calibri, Calibri;

   border: none;
   color: white;
   padding: 10px 32px;
   text-align: center;
   display: inline-block;
   font-size: 15px;
   margin: 2px 2px;
   -webkit-transition-duration: 0.4s; /* Safari */
   transition-duration: 0.4s;
   cursor: pointer;

}

.buttonhuji1 {

   background-color: #fdfaf2;
   color: black;
   border: 2px solid #829c8c;

}

.buttonhuji1:hover {

   background-color: #829c8c;
   color: white;

}

.centerhujiimg {

   margin: auto;
   width: 10%;

text-align: center; }


.hujigem_showdata_button {

 background-color:#829c8c;
 border: none;
 color: white;
 padding: 10px 10px;
 text-align: center;
 font-size: 16px;
 margin: 4px 2px;
 opacity: 0.6;
 transition: 0.3s;
 text-decoration: none;
 cursor: pointer;
 
 

}

.hujigem_showdata_button:hover {opacity: 1}


  1. hujigem_display_data{
   width: 100%;
   padding: 50px 0;
   text-align: center;
   background-color: lightblue;
   margin-top: 20px;

}

  1. hujigem_showdata1,#hujigem_showdata2 {

display:none; }

table_huji {

   border-collapse: collapse;

text-align: center; font-size-adjust:inherit; font-family:Calibri

}

th_huji, td_huji {

   text-align: center;

border: 1px solid #829c8c;

   padding: 2px;
   font-size-adjust:inherit;

font-family:Calibri;

}

  1. tablevalues_hujigem {

background-color:white; font-family:Calibri; text-align: center; border: 1px solid #829c8c;


}


</style> <body>

  • <a href="#">HebrewU</a>
  • <a href="#">Project</a>
  • <a href="#">Team</a>
  • <a href="#">Human Practice</a>
    • <a href="#">Citizen Survey</a>
    • <a href="#">Expert Interviews</a>
    • <a href="#">Community</a>
    • <a href="#">Industry</a>
  • <a href="#">Our Lab</a>
    • <a href="#">Protocols</a>
    • <a href="#">Notebooks</a>
    • <a href="#">Inter-lab</a>
    • <a href="#">Safety</a>
    • <a href="#">Media Criteria</a>




Inter-Lab

Universal and Standardized units are important in all disciplines of science, and especially in engineering. One important issue biology, and specifically genetic engineering faces today is a lack of standardized units. In synthetic biology we often employ marker proteins to assist in both real time assessment and in depth result interpretation. For these results to be consistent both between experiments, and between labs it is of paramount importance to create a standardized unit for said markers. Such a unit would also allow for the comparison of results from different labs and machines.
</br> The InterLab Study utilizes the wide access that iGEM has to biology teams all over the world. Taking advantage of this rare opportunity, the InterLab aims to improve the measurement tools available to both the iGEM community and the synthetic biology community as a whole. By measuring the fluorescence on a wide range of machines, in a wide range of labs, and regulating the results to a single control group, we hope to gather enough data to create this standard unit. As GFP is one of the most used markers today, this has been the focus of the InterLab studies over the past 5 years.
</br> Our team too believes in the need for a standardization of units with in the world of biology. We want to help make progress towards quantitative measurements between labs, and not be constrained to relative compassions. As such, were excited to take part in such a project and hope are data will support the progress of synthetic biology and genetic engineering.

<button onclick="myFunction()" class="hujigem_showdata_button">Raw data 1</button>



N. of Particles 2.35E8 1.18E8 5.88E7 2.94E7 1.47E7 7.35E6 3.68E6 1.84E6 9.19E5 4.60E5 2.30E5
Abs mean 0.977 0.568 0.305 0.195 0.139 0.113 0.098 0.092 0.087 0.086 0.086


</div>

 

<script> function myFunction() {

   var x = document.getElementById("hujigem_showdata1");
   if (x.style.display === "block") {
       x.style.display = "none";
   } else {
       x.style.display = "block";
   }

} </script>



<script> function myFunction2() {

   var x = document.getElementById("hujigem_showdata2");
   if (x.style.display === "block") {
       x.style.display = "none";
   } else {
       x.style.display = "block";
   }

} </script>


<button onclick="myFunction2()" class="hujigem_showdata_button">Raw data 2</button>




Fluorescein (uM) 10.00 5.00 2.5 1.25 0.625 0.313 0.156 0.078 0.039 0.0195 0.0098
Abs mean 6.461E6 3.551E6 1.900E6 9.253E5 4.844E5 2.420E5 1.162E5 5.755E4 3.016E4 1.527E4 7.731E3

</div>


</body> </html>