| Line 658: | Line 658: | ||
@media only screen and (max-width: 1199.98px) {} | @media only screen and (max-width: 1199.98px) {} | ||
| + | |||
| + | |||
| + | /* 下面是表格方面的布局 有冲突再调整 */ | ||
| + | |||
</style> | </style> | ||
| Line 672: | Line 676: | ||
</div> | </div> | ||
| − | + | ||
| − | |||
| + | <body> | ||
| + | <script src="https://2019.igem.org/Template:CAU_China/JS/CAUjquery?action=raw&ctype=text/javascript"></script> | ||
| + | |||
| + | <script> | ||
| + | var inactiveJuly, inactiveAugust, inactiveSeptember, inactiveOctober, activeContent, firstMonth, firstInactive, firstEmpty; | ||
| + | function calenderlink(sss){ | ||
| + | $("#day"+sss).click(); | ||
| + | }; | ||
| + | function tablink(ssss){ | ||
| + | $("#tab"+ssss).click(); | ||
| + | } | ||
| + | function changeContent(selector) { | ||
| + | |||
| + | $(".monthHeader").hide(); | ||
| + | $("button").removeClass("active"); | ||
| + | if(selector == 1){ | ||
| + | activeContent = 'I'; | ||
| + | firstMonth = 'A'; | ||
| + | inactiveJuly = []; | ||
| + | inactiveAugust = [1,2,3,4,5,6,7,]; | ||
| + | inactiveSeptember = [15, 16, 19]; | ||
| + | firstInactive = inactiveAugust; | ||
| + | firstEmpty = 2; | ||
| + | } | ||
| + | else if(selector == 2){ | ||
| + | monthNum_initial = 31; | ||
| + | activeContent = 'R'; | ||
| + | firstMonth = 'M'; | ||
| + | inactiveMay = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,23,24,25,26,27,30,31]; | ||
| + | inactiveJune = [1,2,7,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,28,31]; | ||
| + | inactiveJuly = [1,4,6,7,8,9,10,11,12,14,15,19,22,23,24,25,26,27,28,29,30,31]; | ||
| + | inactiveAugust = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31]; | ||
| + | inactiveSeptember = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31]; | ||
| + | inactiveOctober = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31]; | ||
| + | firstInactive = inactiveMay; | ||
| + | firstEmpty = 3; | ||
| + | } | ||
| + | else if(selector == 3){ | ||
| + | monthNum_initial = 30; | ||
| + | activeContent = 'B'; | ||
| + | firstMonth = 'J1'; | ||
| + | inactiveJune = [1,2,3,4,5,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31] | ||
| + | inactiveJuly = [3,4,5,6,7,12,13,14,15,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31]; | ||
| + | inactiveAugust = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31]; | ||
| + | inactiveSeptember = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31]; | ||
| + | inactiveOctober = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31]; | ||
| + | firstInactive = inactiveJune; | ||
| + | firstEmpty = 6; | ||
| + | } | ||
| + | |||
| + | // Show the current tab, and add an "active" class to the button that opened the tab | ||
| + | $("#monthHeader"+ activeContent).show(); | ||
| + | $("#tab"+activeContent).addClass("active"); | ||
| + | createMonth(monthNum_initial, firstEmpty, firstInactive, firstMonth); | ||
| + | } | ||
| + | |||
| + | function createMonth(lengthMonth, emptyDays, inactiveDays, m){ | ||
| + | var j = 1; | ||
| + | var cont = $(".monthContainer"); | ||
| + | cont.empty(); | ||
| + | for(i = 1; i < lengthMonth+1;i++){ | ||
| + | for(var i = 0; i < emptyDays; i++){ | ||
| + | cont.append('<div class = "emptyDay"></div>'); | ||
| + | j++; | ||
| + | } | ||
| + | |||
| + | for(i = 1; i < lengthMonth+1;i++){ | ||
| + | if(inactiveDays.indexOf(i) == -1){ | ||
| + | cont.append('<div class = "day" id = "day'+ activeContent + m + i + '">'+ i + '</div>'); | ||
| + | } | ||
| + | else{ | ||
| + | cont.append('<div class = "inactiveDay" id = "day'+ activeContent + m + i + '">'+ i + ' </div>'); | ||
| + | } | ||
| + | |||
| + | } | ||
| + | } | ||
| + | $('.month').hide(); | ||
| + | $('#month'+ activeContent + m).show(); | ||
| + | resetCalender(); | ||
| + | } | ||
| + | |||
| + | function resetCalender(){ | ||
| + | $(".day").click(function() { | ||
| + | // Declare all variables | ||
| + | var i, entryday; | ||
| + | |||
| + | entryday = $(this).attr('id'); | ||
| + | |||
| + | // Get all elements with class="tablinks" and remove the class "active" | ||
| + | $(".day").removeClass("active"); | ||
| + | $(".customelementM5B").hide(); | ||
| + | |||
| + | // Show the current tab, and add an "active" class to the button that opened the tab | ||
| + | $(this).addClass("active"); | ||
| + | $("#entry"+entryday).show(); | ||
| + | |||
| + | }); | ||
| + | } | ||
| + | |||
| + | $(document).ready(function(){ | ||
| + | changeContent(2); | ||
| + | resetCalender(); | ||
| + | }); | ||
| + | |||
| + | |||
| + | </script> | ||
| + | |||
| + | |||
| + | <div class="anotherWrapper"> | ||
| + | <!-- Tab links --> | ||
| + | <div class="tab"> | ||
| + | <button id = "tabR" onclick='changeContent(2)'>Astaxanthin</button> | ||
| + | <button id = "tabB" onclick='changeContent(3)'>Cellulose</button> | ||
</div> | </div> | ||
| + | </div> | ||
| + | <div class="calenderContainer"> | ||
| − | < | + | <!-- 虾青素的分组显示-------------------------------------------------------------- |
| − | + | ---------------------------------------------------------------------------------------------> | |
| − | <div class=" | + | <div id="monthHeaderR" class="monthHeader"> |
| + | <h1> Astaxanthin </h1> | ||
| + | |||
| + | <div class="month" id = "monthRM"> | ||
| + | <div onclick="createMonth(30, 6, inactiveJune, 'J1');" class="next">❯</div> | ||
| + | <div>May</div> | ||
</div> | </div> | ||
| + | <div class="month" id = "monthRJ1"> | ||
| + | <div onclick="createMonth(31, 3, inactiveMay, 'M');" class="prev">❮</div> | ||
| + | <div onclick="createMonth(31, 1, inactiveJuly, 'J2');" class="next">❯</div> | ||
| + | <div>June</div> | ||
</div> | </div> | ||
| + | <div class="month" id = "monthRJ2"> | ||
| + | <div onclick="createMonth(30, 6, inactiveJune, 'J1');" class="prev">❮</div> | ||
| + | <div onclick="createMonth(31, 4, inactiveAugust, 'A');" class="next">❯</div> | ||
| + | <div>July</div> | ||
| + | </div> | ||
| + | |||
| + | <div class="month" id = "monthRA"> | ||
| + | <div onclick="createMonth(31, 1, inactiveJuly, 'J2');" class="prev">❮</div> | ||
| + | <div onclick="createMonth(30, 0, inactiveSeptember, 'S');" class="next">❯</div> | ||
| + | <div>August</div> | ||
| + | </div> | ||
| + | |||
| + | <div class="month" id = "monthRS"> | ||
| + | <div onclick="createMonth(31, 4, inactiveAugust,'A');" class="prev">❮</div> | ||
| + | <div onclick="createMonth(31, 2, inactiveOctober, 'O');" class="next">❯</div> | ||
| + | <div>September</div> | ||
| + | </div> | ||
| + | |||
| + | |||
| + | <div class="month" id = "monthRO"> | ||
| + | <div onclick="createMonth(30, 0, inactiveSeptember,'S');" class="prev">❮</div> | ||
| + | <div>October</div> | ||
| + | </div> | ||
| + | |||
| + | |||
| + | </div> | ||
| + | |||
| + | <!-- 纤维素的月份格式--------------------------------------------------------------------- | ||
| + | ---------------------------------------------------------------------------------------------> | ||
| + | |||
| + | <div id="monthHeaderB" class="monthHeader"> | ||
| + | <h1> Cellulose</h1> | ||
| + | <div class="month" id = "monthBJ1"> | ||
| + | <div onclick="createMonth(31, 1, inactiveJuly, 'J2');" class="next">❯</div> | ||
| + | <div>June</div> | ||
| + | </div> | ||
| + | <div class="month" id = "monthBJ2"> | ||
| + | <div onclick="createMonth(30, 6, inactiveJune, 'J1');" class="prev">❮</div> | ||
| + | <div onclick="createMonth(31, 4, inactiveAugust, 'A');" class="next">❯</div> | ||
| + | <div>July</div> | ||
| + | </div> | ||
| + | |||
| + | <div class="month" id = "monthBA"> | ||
| + | <div onclick="createMonth(31, 1, inactiveJuly, 'J2');" class="prev">❮</div> | ||
| + | <div onclick="createMonth(30, 0, inactiveSeptember, 'S');" class="next">❯</div> | ||
| + | <div>August</div> | ||
| + | </div> | ||
| + | |||
| + | <div class="month" id = "monthBS"> | ||
| + | <div onclick="createMonth(31, 4, inactiveAugust, 'A');" class="prev">❮</div> | ||
| + | <div onclick="createMonth(31, 2, inactiveOctober, 'O');" class="next">❯</div> | ||
| + | <div>September</div> | ||
| + | </div> | ||
| + | |||
| + | <div class="month" id = "monthBO"> | ||
| + | <div onclick="createMonth(30, 0, inactiveSeptember,'S');" class="prev">❮</div> | ||
| + | <div>October</div> | ||
| + | </div> | ||
| + | |||
| + | </div> | ||
| + | |||
| + | |||
| + | <!-- Calender Methylation Assay -------------------------------------------------------------- | ||
| + | ---------------------------------------------------------------------------------------------> | ||
| + | |||
| + | |||
| + | <div class="weekdays"> | ||
| + | <div class="weekday">Mo</div> | ||
| + | <div class="weekday">Tu</div> | ||
| + | <div class="weekday">We</div> | ||
| + | <div class="weekday">Th</div> | ||
| + | <div class="weekday">Fr</div> | ||
| + | <div class="weekday">Sa</div> | ||
| + | <div class="weekday">Su</div> | ||
| + | </div> | ||
| + | |||
| + | <div class="monthContainer"></div> | ||
| + | </div> | ||
| + | |||
| + | </div> | ||
| + | |||
| + | <!-- Notebook Interlab ----------------------------------------------------------------------- | ||
| + | ---------------------------------------------------------------------------------------------> | ||
| + | |||
| + | <div class = "notebookContainer"> | ||
| + | |||
| + | <div class="customelementM5B" id = "entrydayIA8"> | ||
| + | |||
| + | <h3> Morning </h3> | ||
| + | |||
| + | <p>Performed Calibration 1, 2, and 3 according to protocol. All measurements were performed using the plate reader of Seino. </p> | ||
| + | |||
| + | <table class="InterlabTable" style = "width: 20%"> | ||
| + | <caption style = "font-size: 1.5em;background-color: #A4C2F4">Table 1. content 96 wells plate cal.1 and cal.2 | ||
| + | </caption> | ||
| + | <tr><th></th><th>1</th><th>2</th><th>3</th><th>4</th><th>5</th><th>6</th><th>7</th><th>8</th><th>9</th><th>10</th><th>11</th><th>12</th></tr> | ||
| + | <tr><td>A</td><td>L</td><td>dd</td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td></tr> | ||
| + | <tr><td>B</td><td>L</td><td>dd</td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td></tr> | ||
| + | <tr><td>C</td><td>L</td><td>dd</td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td></tr> | ||
| + | <tr><td>D</td><td>L</td><td>dd</td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td></tr> | ||
| + | <tr><td>E</td><td style="color: green"> MS</td><td style="color: green">dd</td><td style="color: green">dd</td><td style="color: green">dd</td><td style="color: green">dd</td><td style="color: green">dd</td><td style="color: green">dd</td><td style="color: green"> dd</td><td style="color: green">dd</td><td style="color: green">dd</td><td style="color: green">dd</td><td>dd</td></tr><tr> | ||
| + | <td>F</td><td style="color: green">MS</td><td style="color: green">dd</td><td style="color: green">dd</td><td style="color: green">dd</td><td style="color: green">dd</td><td style="color: green">dd</td><td style="color: green">dd</td><td style="color: green"> dd</td><td style="color: green">dd</td><td style="color: green">dd</td><td style="color: green">dd</td><td>dd</td></tr> | ||
| + | <tr><td>G</td><td style="color: green"> MS</td><td style="color: green">dd</td><td style="color: green">dd</td><td style="color: green">dd</td><td style="color: green">dd</td><td style="color: green">dd</td><td style="color: green">dd</td><td style="color: green">dd</td><td style="color: green">dd</td><td style="color: green">dd</td><td style="color: green">dd</td><td>dd</td></tr> | ||
| + | <tr><td>H</td><td style="color: green"> MS</td><td style="color: green">dd</td><td style="color: green">dd</td><td style="color: green">dd</td><td style="color: green">dd</td><td style="color: green">dd</td><td style="color: green">dd</td><td style="color: green">dd</td><td style="color: green">dd</td><td style="color: green">dd</td><td style="color: green">dd</td><td>dd</td></tr> | ||
| + | </table> | ||
| + | |||
| + | |||
| + | <h5> Calibration 1 </h5> | ||
| + | <ul> | ||
| + | <li>L= 100 uL Ludox CL-X (stored at 4C)</li> | ||
| + | <li>dd= 100 uL ddH20</li> | ||
| + | <li>Measurement: Abs600, turn off pathlength correction</li> | ||
| + | </ul> | ||
| + | |||
| + | <h5>Calibration 2 </h5> | ||
| + | <ul> | ||
| + | <li>MS= 200 ul Microsphere Stock Solution</li> | ||
| + | <li>dd= 100 uL ddH20</li> | ||
| + | <li>green= serial dilution was performed with a micropipet from E1,F1,G1,H1 - E11,F11,G11,H11 by a volume of 100uL. Before every transfer solution was pipetted up and down 3x, after every transfer tips were discharged.</li> | ||
| + | <li>Measurement: Abs600, re-mix befor putting in plate reader and prevent bubbles, path length correction off</li> | ||
| + | </ul> | ||
| + | |||
| + | <h5>Calibration 3</h5> | ||
| + | <ul> | ||
| + | <li>1xFC= 200 mL 1xFC (100uL 10x fluorescein + 900ul 1x PBS pH 7.4, tube was covered with foil</li> | ||
| + | <li>P= 100 uL 1x PBS pH 7.4</li> | ||
| + | <li>green= serial dilution was performed with a micropipet from A1,B1,C1,D1 - A11,B11,C11,D11 by a volume of 100uL. Before every transfer solution was pipetted up and down 3x, after every transfer tips were discharged. </li> | ||
| + | <li>Measurement: FL, 530nm/30nm bandpass, 25-30nm with recommened excitation of 485nm, emission 520-530nm of the filter. Path length correction was turned off</li> | ||
| + | </ul> | ||
| + | |||
| + | <table class="InterlabTable" style = "width: 20%"> | ||
| + | <caption style = "font-size: 1.5em;background-color: #A4C2F4">Table 2. content 96 wells plate cal.3</caption> | ||
| + | <tr><th></th><th>1</th><th>2</th><th>3</th><th>4</th><th>5</th><th>6</th><th>7</th><th>8</th><th>9</th><th>10</th><th>11</th><th>12</th></tr> | ||
| + | <tr><td>A</td><td>1xFC</td><td>P</td><td>P</td><td>P</td><td>P</td><td>P</td><td>P</td><td>P</td><td>P</td><td>P</td><td>P</td><td>P</td></tr> | ||
| + | <tr><td>B</td><td>1xFC</td><td>P</td><td>P</td><td>P</td><td>P</td><td>P</td><td>P</td><td>P</td><td>P</td><td>P</td><td>P</td><td>P</td></tr> | ||
| + | <tr><td>C</td><td>1xFC</td><td>P</td><td>P</td><td>P</td><td>P</td><td>P</td><td>P</td><td>P</td><td>P</td><td>P</td><td>P</td><td>P</td></tr> | ||
| + | <tr><td>D</td><td>1xFC</td><td>P</td><td>P</td><td>P</td><td>P</td><td>P</td><td>P</td><td>P</td><td>P</td><td>P</td><td>P</td><td>P</td></tr> | ||
| + | <tr><td>E</td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td></tr> | ||
| + | <tr><td>F</td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td></tr> | ||
| + | <tr><td>G</td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td></tr> | ||
| + | <tr><td>H</td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td></tr> | ||
| + | </table> | ||
| + | |||
| + | <h3> Afternoon </h3> | ||
| + | |||
| + | <h5>LBC plates were made according to the protocol used on the wall</h5> | ||
| + | <ul> | ||
| + | <li>250ml LB 2x added to melted 250 ml WA 2x using a microwave </li> | ||
| + | <li>0.5ml was added to final solution</li> | ||
| + | <li>plates were dried in 37C incubator</li> | ||
| + | </ul> | ||
| + | |||
| + | <h5>Transformation device 3 + negative control interlab study</h5> | ||
| + | <ul> | ||
| + | <li>Device 3 (number 5) showed a low GFP expression, so it was tried to re-preform the tranformation. Negative control of the interlab (number 1) was not performed last time due to lack of LBC plates so was also performed. </li> | ||
| + | <li><a href = "http://2018.igem.org/Team:Utrecht/Protocol#Transformation">Protocol Transformation</a></li> | ||
| + | </ul> | ||
| + | </div> | ||
| + | |||
| + | <div class="customelementM5B" id = "entrydayIJ2"> | ||
| + | lskdfjslkjgdlkdfjgldkjlakmflsvmclkxmfklmgdmlkcvmblcmkb | ||
| + | </div> | ||
| + | |||
| + | </div> | ||
| + | |||
| + | <!-- Notebook Astaxanthin -------------------------------------------------------------- | ||
| + | ---------------------------------------------------------------------------------------------> | ||
| + | <div class="customelementM5B" id = "entrydayRM22"> | ||
| + | <h2>22/05/19</h2> | ||
| + | <b>Name</b> | ||
| + | </div> | ||
| + | |||
| + | <div class="customelementM5B" id = "entrydayRM28"> | ||
| + | <h2>28/05/19</h2> | ||
| + | <b>Name</b> | ||
| + | |||
| + | </div> | ||
| + | |||
| + | <div class="customelementM5B" id = "entrydayRM29"> | ||
| + | <h2>29/05/19</h2> | ||
| + | <b>Name</b> | ||
| + | |||
| + | </div> | ||
| + | |||
| + | <div class="customelementM5B" id = "entrydayRM29"> | ||
| + | <h2>29/05/19</h2> | ||
| + | <b>Name</b> | ||
| + | |||
| + | </div> | ||
| + | |||
| + | <div class="customelementM5B" id = "entrydayRJ103"> | ||
| + | <h2>03/06/19</h2> | ||
| + | <b>Name</b> | ||
| + | |||
| + | </div> | ||
| + | |||
| + | <div class="customelementM5B" id = "entrydayRJ104"> | ||
| + | <h2>04/06/19</h2> | ||
| + | <b>Name</b> | ||
| + | |||
| + | </div> | ||
| + | |||
| + | <div class="customelementM5B" id = "entrydayRJ105"> | ||
| + | <h2>05/06/19</h2> | ||
| + | <b>Name</b> | ||
| + | |||
| + | </div> | ||
| + | <div class="customelementM5B" id = "entrydayRJ106"> | ||
| + | <h2>06/06/19</h2> | ||
| + | <b>Name</b> | ||
| + | |||
| + | </div> | ||
| + | |||
| + | <div class="customelementM5B" id = "entrydayRJ108"> | ||
| + | <h2>08/06/19</h2> | ||
| + | <b>Name</b> | ||
| + | |||
| + | </div> | ||
| + | |||
| + | <div class="customelementM5B" id = "entrydayRJ127"> | ||
| + | <h2>27/06/19</h2> | ||
| + | <b>Name</b> | ||
| + | |||
| + | </div> | ||
| + | |||
| + | <div class="customelementM5B" id = "entrydayRJ129"> | ||
| + | <h2>29/06/19</h2> | ||
| + | <b>Name</b> | ||
| + | |||
| + | </div> | ||
| + | |||
| + | <div class="customelementM5B" id = "entrydayRJ130"> | ||
| + | <h2>30/06/19</h2> | ||
| + | <b>Name</b> | ||
| + | |||
| + | </div> | ||
| + | |||
| + | <!--- 目前还没有加入进表格的记录 ---> | ||
| + | <div class="customelementM5B" id = "entrydayRJ2"> | ||
| + | <h2>/07/19</h2> | ||
| + | <b>Name</b> | ||
| + | |||
| + | </div> | ||
| + | |||
| + | |||
| + | <div class="customelementM5B" id = "entrydayRA"> | ||
| + | <h2>/08/19</h2> | ||
| + | <b>Name</b> | ||
| + | |||
| + | </div> | ||
| + | |||
| + | |||
| + | <div class="customelementM5B" id = "entrydayRS"> | ||
| + | <h2>/09/19</h2> | ||
| + | <b>Name</b> | ||
| + | |||
| + | </div> | ||
| + | |||
| + | |||
| + | |||
| + | <div class="customelementM5B" id = "entrydayRO"> | ||
| + | <h2>/10/19</h2> | ||
| + | <b>Name</b> | ||
| + | |||
| + | </div> | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | <!-- Notebook Cellulose -------------------------------------------------------------- | ||
| + | ---------------------------------------------------------------------------------------------> | ||
| + | <div class="customelementM5B" id = "entrydayBJ16"> | ||
| + | <h2>06/06/18</h2> | ||
| + | <b>Name</b> | ||
| + | |||
| + | </div> | ||
| + | <div class="customelementM5B" id = "entrydayBJ21"> | ||
| + | <h2>01/07/18</h2> | ||
| + | <b>Name</b> | ||
| + | </div> | ||
| + | |||
| + | |||
| + | <div class="customelementM5B" id = "entrydayBJ22"> | ||
| + | <h2>02/07/18</h2> | ||
| + | <b>Name</b> | ||
| + | </div> | ||
| + | |||
| + | |||
| + | <div class="customelementM5B" id = "entrydayBJ28"> | ||
| + | <h2>08/07/18</h2> | ||
| + | <b>Name</b> | ||
| + | </div> | ||
| + | |||
| + | <div class="customelementM5B" id = "entrydayBJ29"> | ||
| + | <h2>09/07/18</h2> | ||
| + | <b>Name</b> | ||
| + | </div> | ||
| + | |||
| + | <div class="customelementM5B" id = "entrydayBJ210"> | ||
| + | <h2>10/07/18</h2> | ||
| + | <b>Name</b> | ||
| + | </div> | ||
| + | |||
| + | <div class="customelementM5B" id = "entrydayBJ211"> | ||
| + | <h2>11/07/18</h2> | ||
| + | <b>Name</b> | ||
| + | </div> | ||
| + | |||
| + | <div class="customelementM5B" id = "entrydayBJ216"> | ||
| + | <h2>16/07/18</h2> | ||
| + | <b>Name</b> | ||
| + | </div> | ||
| + | |||
| + | |||
| + | |||
| + | </body> | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | |||
| + | |||
| + | |||
<script> | <script> | ||
Revision as of 07:44, 8 August 2019
Notebook
Astaxanthin
❯
May
❮
❯
June
❮
❯
July
❮
❯
August
❮
❯
September
❮
October
Cellulose
❯
June
❮
❯
July
❮
❯
August
❮
❯
September
❮
October
Mo
Tu
We
Th
Fr
Sa
Su
Morning
Performed Calibration 1, 2, and 3 according to protocol. All measurements were performed using the plate reader of Seino.
| 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| A | L | dd | ||||||||||
| B | L | dd | ||||||||||
| C | L | dd | ||||||||||
| D | L | dd | ||||||||||
| E | MS | dd | dd | dd | dd | dd | dd | dd | dd | dd | dd | dd |
| F | MS | dd | dd | dd | dd | dd | dd | dd | dd | dd | dd | dd |
| G | MS | dd | dd | dd | dd | dd | dd | dd | dd | dd | dd | dd |
| H | MS | dd | dd | dd | dd | dd | dd | dd | dd | dd | dd | dd |
Calibration 1
- L= 100 uL Ludox CL-X (stored at 4C)
- dd= 100 uL ddH20
- Measurement: Abs600, turn off pathlength correction
Calibration 2
- MS= 200 ul Microsphere Stock Solution
- dd= 100 uL ddH20
- green= serial dilution was performed with a micropipet from E1,F1,G1,H1 - E11,F11,G11,H11 by a volume of 100uL. Before every transfer solution was pipetted up and down 3x, after every transfer tips were discharged.
- Measurement: Abs600, re-mix befor putting in plate reader and prevent bubbles, path length correction off
Calibration 3
- 1xFC= 200 mL 1xFC (100uL 10x fluorescein + 900ul 1x PBS pH 7.4, tube was covered with foil
- P= 100 uL 1x PBS pH 7.4
- green= serial dilution was performed with a micropipet from A1,B1,C1,D1 - A11,B11,C11,D11 by a volume of 100uL. Before every transfer solution was pipetted up and down 3x, after every transfer tips were discharged.
- Measurement: FL, 530nm/30nm bandpass, 25-30nm with recommened excitation of 485nm, emission 520-530nm of the filter. Path length correction was turned off
| 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| A | 1xFC | P | P | P | P | P | P | P | P | P | P | P |
| B | 1xFC | P | P | P | P | P | P | P | P | P | P | P |
| C | 1xFC | P | P | P | P | P | P | P | P | P | P | P |
| D | 1xFC | P | P | P | P | P | P | P | P | P | P | P |
| E | ||||||||||||
| F | ||||||||||||
| G | ||||||||||||
| H |
Afternoon
LBC plates were made according to the protocol used on the wall
- 250ml LB 2x added to melted 250 ml WA 2x using a microwave
- 0.5ml was added to final solution
- plates were dried in 37C incubator
Transformation device 3 + negative control interlab study
- Device 3 (number 5) showed a low GFP expression, so it was tried to re-preform the tranformation. Negative control of the interlab (number 1) was not performed last time due to lack of LBC plates so was also performed.
- Protocol Transformation
lskdfjslkjgdlkdfjgldkjlakmflsvmclkxmfklmgdmlkcvmblcmkb
22/05/19
Name28/05/19
Name29/05/19
Name29/05/19
Name03/06/19
Name04/06/19
Name05/06/19
Name06/06/19
Name08/06/19
Name27/06/19
Name29/06/19
Name30/06/19
Name/07/19
Name/08/19
Name/09/19
Name/10/19
Name06/06/18
Name01/07/18
Name02/07/18
Name08/07/18
Name09/07/18
Name10/07/18
Name11/07/18
Name16/07/18
Name