-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlab-notebook.html
2468 lines (1934 loc) · 87 KB
/
lab-notebook.html
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/swiper-bundle.min.css" />
<link rel="stylesheet" type="text/css" href="css/main.css" />
<link rel="stylesheet" type="text/css" href="css/team.css" />
<script src="bootstrap/js/jquery.min.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/swiper-bundle.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<title>ED-NAU Lab Notebook</title>
<link rel="icon" href="./images/2021IDEClogo设计.png" type="image/x-icon">
</head>
<body>
<div class="nav col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="logo_container col-lg-3 col-md-3 col-sm-3 col-xs-3">
<a href="./">
<img class="homepage_logo" src="./images/2021IDEClogo设计.png" alt="">
</a>
</div>
<div class="nav_cells col-lg-9 col-md-9 hidden-sm hidden-xs">
<ul>
<li class='nav_one hover_underline'>
<a href="./">HOME</a>
</li>
<li class='nav_one hover_underline'>
<a href="project-description">PROJECT</a>
<ul class="nav_two">
<li>
<a href="project-description" class="hover_underline">Description</a>
</li>
<li>
<a href="project-design" class="hover_underline">Design</a>
</li>
<li>
<a href="project-protocol" class="hover_underline">Protocol</a>
</li>
</ul>
</li>
<li class='nav_one hover_underline'>
<a href="results">RESULTS</a>
</li>
<li class='nav_one hover_underline'>
<a href="team-members">TEAM </a>
<ul class="nav_two">
<li>
<a href="team-members" class="hover_underline">Members</a>
</li>
<li>
<a href="team-collaborations" class="hover_underline">Collaborations</a>
</li>
<li>
<a href="team-attributions" class="hover_underline">Attributions</a>
</li>
<li>
<a href="team-notebook" class="hover_underline">Notebook</a>
</li>
</ul>
</li>
<li class='nav_one hover_underline'>
<a href="lab-notebook">LAB NOTEBOOK</a>
</li>
</ul>
</div>
<div class="nav_hidden nav_cells hidden-lg hidden-md col-sm-9 col-xs-9">
<ul>
<li class="nav_one"><img src="images/nav_little.png" alt="" style='width:7vw'>
<ul class="nav_two">
<li class="hover_underline">
<a href="./">HOME</a>
</li>
<li class="hover_underline">
<a href="project-description">PROJECT</a>
</li>
<li class="hover_underline">
<a href="results">RESULTS</a>
</li>
<li class="hover_underline">
<a href="team-members">TEAM</a>
</li>
<li class="hover_underline">
<a href="lab-notebook">LAB NOTEBOOK</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- body -->
<div id="teambody">
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide" style="background-image: url(images/team.jpg);">
</div>
<div class="swiper-slide" style="background-image: url(images/team2.jpg);">
</div>
<div class="swiper-slide" style="background-image: url(images/team3.jpg);">
</div>
<div class="swiper-slide" style="background-image: url(images/team4.jpg);">
</div>
</div>
<!-- Add Arrows -->
<div class="swiper-scrollbar"></div>
</div>
<div class="col-lg-10 col-md-10 col-sm-12 col-xs-12" style="background-color: white;padding-bottom: 10vh;">
<div class="col-lg-10 col-md-10 col-sm-10 col-xs-10 col-lg-offset-1 col-md-offset-1 col-sm-offset-1 col-xs-offset-1" style="overflow: hidden;">
<img src="images/酵母.png" alt="" class="jiaomu" style="animation: move_jiaomu 7s linear;animation-iteration-count: infinite;">
<img src="images/酵母.png" alt="" class="jiaomu" style="animation: move_jiaomu 7s linear 3.5s;animation-iteration-count: infinite;">
<div style="background-image: url(images/轨道.png);height: 3vh;background-position: center;background-size:contain;background-repeat:repeat-x;margin-top: 23vh;">
</div>
</div>
<div class="notebook_container col-lg-10 col-md-10 col-sm-10 col-xs-10 col-lg-offset-1 col-md-offset-1 col-sm-offset-1 col-xs-offset-1" ">
<div class=" notebook ">
<div class="notebook_cell ">
<table border="1 " >
<tr>
<th colspan="4 ">Experiment log of 7. 13 & 7. 20, 7. 21 & 7. 23-7. 25 & 7. 26</th>
</tr>
<tr>
<th style="width: 10vw !important;">Date</th>
<th>Member</th>
<th>Experiment</th>
<th>Result</th>
</tr>
<tr>
<td>7. 13</td>
<td>Shi and Tao</td>
<td>Design primer of plasmid linearization and target gene amplification.</td>
<td>Sequence is in the <a href="results#download ">Supplementary Information-1</a>.</td>
</tr>
<tr>
<td>7. 20</td>
<td>Lin , Zheng and Tao</td>
<td>Confect solid YPD medium of 300 mL (detailed prescription is in the <a href="project-PROTOCOL ">protocol</a>).</td>
<td></td>
</tr>
<tr>
<td>7. 21</td>
<td>Lin , Zheng and Tao</td>
<td>Make twenty solid YPD medium.</td>
<td></td>
</tr>
<tr>
<td>7. 23</td>
<td>Tao</td>
<td>Confect solid and liquid LB medium with ampicillin of 300 mL (detailed prescription is in the <a href="project-PROTOCOL ">protocol</a>).<br>
Make 20 medium.<br>
Transformation of DH5α (detailed information is in the <a href="project-PROTOCOL ">protocol</a>. The same below): pFL61 and pFL61-OsNramp5. Breed at constant temperature of 37℃ for 12 h. </td>
<td></td>
</tr>
<tr>
<td>7. 24</td>
<td>Tao</td>
<td>Confect liquid YPD medium of 200 mL. Inoculate <i>△ycf1</i>> on the medium. Bred in shaker at 200 rpm/min, 30 ℃ overnight. <br>
Inoculate DH5α(pFL61 and pFL61-OsNramp5)in the liquid LB amp medium of 140 mL. Bred in shaker at 200 rpm/min, 30 ℃ overnight. </td>
<td></td>
</tr>
<tr>
<td rowspan="2 ">7. 25</td>
<td>Xu, Zhu and Lin
</td>
<td>Confect solid LB medium of 500 mL and liquid LB medium of 1500 mL.
</td>
<td></td>
</tr>
<tr>
<td>Zheng, Liu and Tao</td>
<td>Culture collection: five tubes of DH5α (pFL61) and five tubes of DH5α (pFL61-OsNramp5).<br>
Plasmid Extraction (7. 24) (detailed information is in the <a href="project-PROTOCOL ">protocol</a>, the same below): DH5α (pFL61 and pFL61-OsNramp5).<br> Transformation of DH5α: pFL61 and pFL61-OsNramp5. Bred at constant temperature
of 37 ℃ for 12 h.
</td>
<td></td>
</tr>
<tr>
<td>7. 26</td>
<td>Tao and Liu</td>
<td>Pick transformants in the liquid YPD medium, Bred in shaker at 200 rpm/min, 30℃ for 12 h. <br> Plasmid Extraction: DH5α (pFL61 and pFL61-OsNramp5). <br> PCR: Linearization of pF61 plasmid (model is pF61, primer is L-F/L-R, the same
below).
<br> PCR: Clone of OsNramp5 target section (model is pF61, primer is HR-F/HR-R, the same below. Detailed information is in the <a href="project-PROTOCOL ">protocol</a>)." </td>
<td></td>
</tr>
<tr>
<td></td>
<td>Liu
</td>
<td>"Homologous recombination (linearized pFL61+<i>OsNramp5</i>) ——>pFL61-OsNramp5-HR plasmid. <br> Transformation of DH5α: pFL61-OsNramp5-HR. Bred at constant temperature of 37 ℃ for 12 h. "
</td>
<td></td>
</tr>
</table>
</div>
<br>
<br>
<div class="notebook_cell ">
<table border='1'>
<tr>
<th colspan="4">Experiment log of 7. 27, 7. 28 & 8. 02-8. 06</th>
</tr>
<tr>
<th>Date</th>
<th>Member</th>
<th>Experiment</th>
<th>Result</th>
</tr>
<tr>
<td>7. 27</td>
<td>Tao and Zheng</td>
<td>Confect liquid YPD medium of 200 mL. Inoculate <i>△ycf1</i> on the medium. Bred in shaker at 200 rpm/min, 30 ℃ overnight. PCR: Clone of OsNramp5 target section (detailed information is in the <a href="project-PROTOCOL ">protocol</a>).
Agarose gel (1%) electrophoresis (200V, 25min) .</td>
<td>Two lanes: one lane with normal strip of around 1600bp, another one with a strip of only 100bp——>we supposed that there were problems with primer HR-F/HR-R. Primers formed too many dimers.
</td>
</tr>
<tr>
<td>7. 28</td>
<td>Tao and Zheng
</td>
<td>"Culture collection: 5 tubes of △smf1.<br> PCR: Clone of OsNramp5 target section (Detailed information is in the <a href="project-PROTOCOL ">protocol</a> ). Agarose gel (1%)electrophoresis (200V, 25min)."
</td>
<td>There were too many dimers. We supposed something was wrong with primer HR-F/HR-R and planned to change primers L-F/L-R and HR-F/HR-R.
</td>
</tr>
<tr>
<td>8. 02</td>
<td>Tao and Liu
</td>
<td>"Homologous recombination (linearized pFL61+<i>OsNramp5</i>)..<br> Transformation of DH5α: pFL61-OsNramp5-HR. Bred at constant temperature of 37 ℃ for 12 h. "
</td>
<td></td>
</tr>
<tr>
<td rowspan="3">8. 03</td>
<td>Liu and Zheng
</td>
<td>Pick transformants in the liquid YPD medium, Bred in shaker at 200 rpm/min, 30 ℃ for 12 h.
</td>
<td></td>
</tr>
<tr>
<td rowspan="2">Tao </td>
<td>Plasmid Extraction: DH5α (pFL61-OsNramp5-HR).
</td>
<td></td>
</tr>
<tr>
<td>Product of PCR (7. 27) are sent to sequence by TsingKe.
</td>
<td>We got the result of sequencing on August, 4th. It was the same as the sequence(LOC43422859) in NCBI.
</td>
</tr>
<tr>
<td rowspan="2">8. 04</td>
<td>Zheng
</td>
<td>"Activate DH5α (pFL61 and pFL61-OsNramp5-HR). Three zone marking on the LB amp medium."
</td>
<td></td>
</tr>
<tr>
<td>Tao
</td>
<td>Design primers of plasmid linearization and target gene amplification: pFL61-HR-F/pFL61-HR-R;Os-HR-F/Os-HR-R;short-F/short-R.
</td>
<td></td>
</tr>
<tr>
<td>8. 05
</td>
<td>Lin, Geng. Liu and Tao
</td>
<td>"Pick DH5α (pFL61 and pFL61-OsNramp5-HR) into liquid LB medium. Bred in shaker at 220 rpm/min, 30 ℃ for 12 h. <br> Plasmid Extraction: DH5α (pFL61-OsNramp5-HR). <br> PCR: Linearization of plasmid (model is pF61, primers are pFL61-HR-F/pFL61-HR-R,
the same below)<br> PCR: Clone of OsNramp5 target section (pFL61-OsNramp5-HR).<br> Homologous recombination (linearized pFL61+<i>OsNramp5</i>)."
</td>
<td></td>
</tr>
<tr>
<td rowspan="2">8. 06
</td>
<td>Liu and Geng
</td>
<td>"Confect solid YPD medium of 300 mL.<br> PCR: linearizationp the plasmid pFL61.<br> Clone of OsNramp5 target gene section. <br> Homologous recombination (linearized pFL61+<i>OsNramp5</i>).<br> Transformation of DH5α: pFL61-OsNramp5-HR.<br> Pick transformants. Bred at constant temperature of 37 ℃ for 12 h. "
</td>
<td></td>
</tr>
<tr>
<td>Lin and Tao
</td>
<td>"Plasmid Extraction: DH5α (pFL61). <br> <i>△ycf1</i> are bred in liquid YPD medium , in shaker at 200 rpm/min, 30 ℃ for 24 h.<br> Transformation of <i>△ycf1</i> (Detailed information is in <a href="project-PROTOCOL ">protocol</a>,
the same below): pFL61, pFL61-OsNramp5 and pFL61-OsNramp5-HR."
</td>
<td></td>
</tr>
</table>
</div>
<br>
<br>
<div class="notebook_cell ">
<table border="1">
<tr>
<th colspan="4">Experiment log of 8. 07-8. 13
</th>
</tr>
<tr>
<th>Date</th>
<th>Member</th>
<th>Experiment</th>
<th>Result</th>
</tr>
<tr>
<td rowspan="3">8. 07
</td>
<td>Lin and Tao
</td>
<td>"Confect solid SD-Ura medium of 150 mL (detailed prescription is in the <a href="project-PROTOCOL ">protocol</a>).<br> Make 10 medium."
</td>
<td></td>
</tr>
<tr>
<td>Liu
</td>
<td>Pick transformant (pFL61-OsNramp5-HR, 8. 06) into liquid LB medium. Bred in shaker at 220 rpm/min, 37 ℃ for 12 h.
</td>
<td></td>
</tr>
<tr>
<td>Geng
</td>
<td>Confect solid YPD medium of 150 mL.<br> Make 9 medium. Take <i>△ycf1</i> (8. 06) to spread on two medium. <br> Culture collection: 5 tubes of <i>△ycf1</i>. "
</td>
<td>The density of colonies was too high and there was no single colony. We need to streak.
</td>
</tr>
<tr>
<td rowspan="2">8. 08</td>
<td>Liu and Tao
</td>
<td>"<i>△ycf1</i> is streaked on the medium.<br> PCR(detailed information is in the <a href="project-PROTOCOL ">protocol</a>): Divide OsNramp5 into two parts and clone them respectively, to get ready for error-prone PCR (model
is pFL61-OsNramp5, primers are short-F/Os-HR-F;Os-HR-R/short-R)."
</td>
<td>There was nonspecific amplification happening in strip of 800 bp . Strips in all parts were in light color. We supposed something was wrong with anealing temperature.
</td>
</tr>
<tr>
<td>Geng
</td>
<td> PCR: Set gradient of anealing temperature (63 ℃; 65 ℃; 68 ℃) to PCR (model is pFL61-OsNramp5, primers are short-F/Os-HR-F;Os-HR-R/short-R).
</td>
<td></td>
</tr>
<tr>
<td rowspan="3">8. 09
</td>
<td rowspan='2'>Geng
</td>
<td>Agarose gel (1%) electrophoresis (200 V, 25 min) (product of PCR on August 8th).
</td>
<td>Strip was still not clear, and was in light color; we supposed there was comlementary pairing between primer and other area except target section of reconbinant plasmid.
</td>
</tr>
<tr>
<td>"PCR: Divide OsNramp5 into two parts and clone them respectively (model is cloned target section of OsNramp5, primer is short-F/Os-HR-F;Os-HR-R/short-R). Agarose gel (1%) electrophoresis (200 V, 25 min)."
</td>
<td>Strip was still not clear, and was in light color. Phenomenon of dimer is serious. We supposed somrthing was wrong with primer , and planned to change primer.
</td>
</tr>
<tr>
<td>Tao
</td>
<td>Design new primers for gene amplification: newshort-F/newshort-R.
</td>
<td></td>
</tr>
<tr>
<td rowspan="3">8. 10
</td>
<td>Tao
</td>
<td>Confect TE(aq) and LiAc(aq) of 50 mL respectively. <br> Transformation of <i>△ycf1</i>: pFL61-OsNramp5."
</td>
<td></td>
</tr>
<tr>
<td>Lin
</td>
<td>"Confect solid SD-Ura medium of 150 mL .<br> Make 10 medium. "
</td>
<td></td>
</tr>
<tr>
<td>Chen
</td>
<td>Transformation of DH5α: Pcada (from iGEM kit).
</td>
<td></td>
</tr>
<tr>
<td rowspan="2">8. 11
</td>
<td>Zheng
</td>
<td>"PCR: Divide OsNramp5 into two parts and clone them respectively(model is cloned target section of OsNramp5, primers are short-F/Os-HR-F;newshort-F/Os-HR-R). <br> PCR: Clone of target OsNramp5 section(model is pFL61-OsNramp5, primers
are Os-HR-F/Os-HR-R). <br> Agarose gel (1%)electrophoresis (200 V, 25 min). "
</td>
<td>"Strip of 800 bp was not clear. There was nonspecific amplification happening in strip of 800 bp and we can't seperate them. We supposed there was comlementary pairing between primer and other area except target section of reconbinant
plasmid ;<br> Strip of 1600bp was clear and obvious. Therefore, we planned to use long-section primers Os-HR-F/Os-HR-R to finish our following experiment. "
</td>
</tr>
<tr>
<td>Chen
</td>
<td>Pick transformants (Pcada) (8.10) into liquid LB medium. Bred in shaker at 220 rpm/min, 37 ℃ for 12 h.
</td>
<td></td>
</tr>
<tr>
<td rowspan="4">8. 12
</td>
<td>Liu
</td>
<td>Confect liquid SD-Ura medium of 100 mL .
</td>
<td></td>
</tr>
<tr>
<td rowspan="3">Lin , Geng and Tao
</td>
<td>"ep-PCR (KALANG kit, detailed information is in the <a href="project-PROTOCOL ">protocol</a>): Batches no. 1 and 2, 12 tubes (mdoel is cloned target section of OsNramp5 , primers are Os-HR-F/Os-HR-R).<br> Agarose gel (1%)
electrophoresis (200V, 25min)."
</td>
<td>There were only two strips in light color of 1600bp. The other lanes didn't have any strips. Then, we built a library labeled as ep1.We failed to build library labeled as ep2.
</td>
</tr>
<tr>
<td>Homologous recombination (linearized pFL61+<i>OsNramp5-mut</i>) ——>pFL61-OsNramp5-mut plasmid.<br> Transformation of <i>△ycf1</i>: pFL61-OsNramp5-mut.
</td>
<td></td>
</tr>
<tr>
<td>ep-PCR: Batch no. 3, 4 tubes (mdoel is cloned target section of OsNramp5 , primers are Os-HR-F/Os-HR-R).
</td>
<td></td>
</tr>
<tr>
<td>Chen
</td>
<td>Plasmid Extraction: DH5α (Pcada) (8.11).
</td>
<td></td>
</tr>
<tr>
<td rowspan="4">8. 13
</td>
<td>Geng
</td>
<td>Agarose gel (1%) electrophoresis (the second batch of OsNramp5-mut on 8. 12).
</td>
<td>Two results of agarose gel (1%) electrophoresis were similar. We didn't get obvious strips. We supposed this was related to reaction conditions of errpr-prone PCR and planned to change the conditions. We failed to build library
labeled as ep3.
</td>
</tr>
<tr>
<td>Lin and Tao
</td>
<td>"Confect solid SD-Ura medium of 300 mL .<br> Make 19 medium. "
</td>
<td></td>
</tr>
<tr>
<td>Liu and Geng
</td>
<td>"ep-PCR: Batch no. 4, use undiluted model (236 ng/μL) to react (mdoel is cloned target section of OsNramp5 , primers are Os-HR-F/Os-HR-R).<br> Agarose gel (1%) electrophoresis (200 V, 25 min)."
</td>
<td>There was no obvious strips. We failed to build library labeled as ep4.
</td>
</tr>
<tr>
<td>Tao
</td>
<td>"Transformation of DH5α: pFL61-OsNramp5-HR.<br> PCR: linearizationp the plasmid FL61 (model is pFL61, primers are pFL61-HR-F/pFL61-HR-R)."
</td>
<td></td>
</tr>
</table>
</div>
<br>
<br>
<div class="notebook_cell ">
<table border="1">
<tr>
<th colspan="4">
Experiment log of 8. 14-8. 20
</th>
</tr>
<tr>
<th>Date</th>
<th>Member</th>
<th>Experiment</th>
<th>Result</th>
</tr>
<tr>
<td rowspan="3">8. 14
</td>
<td>Zhu
</td>
<td>Configurate agar culture-medium and liquid YPD medium for 300 mL each.
</td>
<td></td>
</tr>
<tr>
<td>Liu and Zheng
</td>
<td>"Pick transformants (8. 13) into liquid LB medium. Bred in shaker at 220 rpm/min, 37 ℃ for 12 h.<br> Plasmid: pFL61-OsNramp5-HR."
</td>
<td></td>
</tr>
<tr>
<td>Geng
</td>
<td><i>△ycf1</i> (pFL61-OsNramp5-HR) are bred in liquid YPD medium. Bred in shaker at 200 rpm/min, 30 ℃ for 12 h.<br> <i>△ycf1</i> (pFL61-OsNramp5-HR) are bred in liquid SD-Ura medium. Bred in shaker at 200 rpm/min, 30 ℃ for 24 h.<br> Agarose gel (1%) electrophoresis (200 V, 25 min) (OsNramp5-mut on 8. 13).
</td>
<td>There was no obvious strip. We supposde this was related to KALANG kit.
</td>
</tr>
<tr>
<td rowspan="6">8. 15
</td>
<td>Zheng
</td>
<td>PCR: Test the result of homologous recombination (model is pFL61-OsNramp5-HR, primers are Os-HR-F/Os-HR-R).
</td>
<td>Strip of 1600 bp was clear and obvious , which meant we have suceeded in homologous recombination.
</td>
</tr>
<tr>
<td>Tao
</td>
<td>"ep-PCR (GenStar kit , detailed information is in the <a href="project-PROTOCOL ">protocol</a>) : Batch no. 5, set gradient of anealing temperature (55. 0 ℃, 57. 7 ℃, 59. 5 ℃, 61. 4 ℃ 63. 2 ℃), to test if the result of agarose
gel (1%) electrophoresis (on August 14th) is related to KALANG kit (model is pFL61-OsNramp5-HR, primers are Os-HR-F/Os-HR-R).<br> Agarose gel (1%) electrophoresis (200 V, 25 min)."
</td>
<td>There were obvious strips in all lanes of 1600bp. The degree of dispersion decreases with higher temperature. We made sure there was somerthing wrong with KALANG kit. We suceeded in building library labeled as ep5.
</td>
</tr>
<tr>
<td>Geng</td>
<td>"Homologous recombination (linearized pFL61+<i>OsNramp5-mut</i>) ——>pFL61-OsNramp5-mut plasmid.<br> Transformation of <i>△ycf1</i>: pFL61-OsNramp5-mut."
</td>
<td></td>
</tr>
<tr>
<td>Liu
</td>
<td>Transformation of DH5α: pFL61-OsNramp5-mut.
</td>
<td></td>
</tr>
<tr>
<td>Tao
</td>
<td>Transformation of <i>△ycf1</i>: pFL61-OsNramp5-mut.
</td>
<td></td>
</tr>
<tr>
<td>Chen
</td>
<td>Design primers for every cadmium-responding components:CadR-F/CadR-R; Plasmid-Linear-F/Plasmid-Linear-R; Pcada-sense/Pcada-antisense.
</td>
<td></td>
</tr>
<tr>
<td rowspan="2">8. 16
</td>
<td>Liu
</td>
<td>"Pick transformants (8. 16) into liquid LB medium. Bred in shaker at 220 rpm/min, 37 ℃ for 12 h.<br> E.coli fluid is sent to be sequenced."
</td>
<td>We got the sequencing result on August 18th. The results showed no signal.
</td>
</tr>
<tr>
<td>Lin
</td>
<td>Bacteria Liquid PCR.
</td>
<td>Strip of 1600 bp was clear and obvious , which meant we have suceeded in homologous recombination.
</td>
</tr>
<tr>
<td rowspan="2">8. 17
</td>
<td>Geng
</td>
<td>ep-PCR: Batch no. 5, 12 tubes (mdoel is cloned target section of OsNramp5 , primers are Os-HR-F/Os-HR-R).
</td>
<td></td>
</tr>
<tr>
<td>Liu
</td>
<td>"Homologous recombination (linearized pFL61+<i>OsNramp5-mut</i>). Transformation of <i>△ycf1</i>: pFL61-OsNramp5-mut."
</td>
<td></td>
</tr>
<tr>
<td rowspan="2">8. 18
</td>
<td>Lin
</td>
<td>Configurate agar culture-medium for 400 mL and liquid YPD medium for 150 mL .
</td>
<td></td>
</tr>
<tr>
<td>Chen
</td>
<td>"PCR: Clone of gene of <i>gfp</i> (model is plasmid K608011,primers are Plasmid-Linear-F/Plasmid-Linear-R).<br> Pick <i>Pseudomonas aeruginosa</i> into liquid LB medium. Bred in shaker at 200 rpm/min, 37 ℃ for 12 h."
</td>
<td>The liquid medium is not cloudy (8.19).
</td>
</tr>
<tr>
<td rowspan="5">8. 19
</td>
<td>Zheng
</td>
<td>"ep-PCR: Batch no. 6, 5 tubes (mdoel is cloned target section of OsNramp5 , primers are Os-HR-F/Os-HR-R).<br> Homologous recombination (linearized pFL61+<i>OsNramp5-mut</i>)."
</td>
<td>The degree of dispersion of strips was serious, which meant we failed to build the library labeled as ep6.
</td>
</tr>
<tr>
<td>Liu
</td>
<td>Plasmid (8. 16) Extraction: pFL61-OsNramp5-mut.
</td>
<td></td>
</tr>
<tr>
<td>Geng
</td>
<td>Agarose gel (1%) electrophoresis (200 V, 25 min) (pFL61-OsNramp5-mut and pFL61).
</td>
<td>pFL61-OsNramp5-mut showed clear and obvious stips in the area of 7000 bp, and pFL61 showed clear and obvious stips in the area of 5000 bp, which meant we have suceeded in homologous recombination.
</td>
</tr>
<tr>
<td>Tao
</td>
<td>"Transformation of <i>△ycf1</i>: pFL61-OsNramp5-mut. Pick 7 transformants that grow well into liquid SD-Ura medium. Bred in shaker at 200 rpm/min, 30℃ for 24 h . Label as ep1-1 - ep1-7."
</td>
<td></td>
</tr>
<tr>
<td>Chen
</td>
<td>"Pick Pseudomonas aeruginosa into liquid LB medium. Bred in shaker at 200 rpm/min, 37 ℃ for 12 h.<br> Bacterial fluid PCR: Clone of <i>cadR</i>> (take one of the single colony on the medium into PCR system as model,primers are
CadR-F/CadR-R).
<br>
<i>PcadA</i> obtaining:DNA double strands are obtained by annealing of two single strands (Pcada-sense/Pcada-antisense)<br> Homologous recombination (<i>gfp</i>+<i>PcadA</i>>+<i>cadR</i>+PSB1C3). Transformation of DH5α: cadR-PcadA-GFP."
</td>
<td></td>
</tr>
<tr>
<td rowspan="3">8. 20
</td>
<td>Tao and Lin
</td>
<td>"Confect solid SD-Ura (Cd, 30 μM) medium of 150 mL.<br> <i>△ycf1</i> (pFL61 and pFL61-OsNramp5-HR) are bred in liquid SD-Ura medium. Bred in shaker at 200 rpm/min , 30 ℃ for 24 h. "
</td>
<td>After 4 days, there was no transformants growing on the medium, which meant we failed to build library labeled as ep7.
</td>
</tr>
<tr>
<td>Geng and Liu
</td>
<td>ep-PCR: Batch no. 7, 4 tubes (mdoel is cloned target section of OsNramp5 , primers are Os-HR-F/Os-HR-R, anealing temperature is set as 60 ℃).
</td>
<td></td>
</tr>
<tr>
<td>Chen
</td>
<td>Pick transformants (cadR-PcadA-GFP) (8.19) into liquid LB medium. Bred in shaker at 220 rpm/min, 37 ℃ for 12 h.
</td>
<td></td>
</tr>
</table>
</div>
<br>
<br>
<div class="notebook_cell ">
<table border="1">
<tr>
<th colspan="4">
Experiment log of 8. 21-8. 26
</th>
</tr>
<tr>
<td>Date</td>
<td>Member</td>
<td>Experiment</td>
<td>Result</td>
</tr>
<tr>
<td rowspan="3">8. 21
</td>
<td>Zheng</td>
<td>PCR: Linearizationp the plasmid pFL61.
</td>
<td>No strips, which meant we failed to linearize the plasmid, and we planned to do it again.
</td>
</tr>
<tr>
<td>Lin
</td>
<td>Pick transformants. Streak on SD-Ura medium to build library (ep5).
</td>
<td></td>
</tr>
<tr>
<td>Chen
</td>
<td>"Culture collection: DH5α (cadR-PcadA-GFP) (8.20).<br> 5 tubes of DH5α (cadR-PcadA-GFP) fluid are sent to be sequenced."
</td>
<td>We got the result of sequencing on August 22th. One of four tubes of bacteria fluid is plasmid that were reconbinated successfully.
</td>
</tr>
<tr>
<td rowspan="2">8. 22
</td>
<td>Zheng
</td>
<td>PCR: Linearizationp the plasmid FL61.
</td>
<td>No strips, which meant we failed to linearize the plasmid, and we planned to do it again.
</td>
</tr>
<tr>
<td>Zhu
</td>
<td>Confect solid SD-Ura medium of 800 mL .
</td>
<td></td>
</tr>
<tr>
<td rowspan="6">8. 23
</td>
<td>Liu
</td>
<td>"Confect liquid SD-Ura medium of 300 mL .<br> PCR: Linearizationp the plasmid pFL61.<br> Agarose gel (1%) electrophoresis (200 V, 25 min)."
</td>
<td>There showed strips, which meant we suceeded in plamid linearization. We supposed there was something with pF61 model.
</td>
</tr>
<tr>
<td>Zhu
</td>
<td>"<i>△ycf1</i> are bred in liquid YPD mediumBred in shaker at 200 rpm/min, 30 ℃ for 12 h.<br> Streak on the medium. "
</td>
<td></td>
</tr>
<tr>
<td>Tao
</td>
<td>"DH5α (pFL61) are bred in liquid LB medium. Bred at 220 rpm/min, 37 ℃ for 12 h.<br> Streak on LB amp medium."
</td>
<td></td>
</tr>
<tr>
<td>Zheng
</td>
<td>Agarose gel (1%) electrophoresis (200 V, 25 min) (pFL61).
</td>
<td>There was no obvious strips. We made sure pF61 have degraded.
</td>
</tr>
<tr>
<td>Lin
</td>
<td>Measure OD<sub>600</sub> of <i>△ycf1</i> (ep1-1 - ep1-7 and pFL62, pFL61-OsNramp5-HR).
</td>
<td>Maximum of OD<sub>600</sub> was around 0. 4. We supposed the time of yeast fluid shkaing was too short.
</td>
</tr>
<tr>
<td>Chen
</td>
<td>Plasmid (8.20) Extraction: DH5α (cadR-PcadA-GFP).
</td>
<td></td>
</tr>
<tr>
<td rowspan="3">8. 24
</td>
<td>Liu
</td>
<td>Plasmid (8.23) Extraction: pFL61.
</td>
<td></td>
</tr>
<tr>
<td>Tao
</td>
<td>"ep-PCR: Batch no. 8, 5 tubes (mdoel is cloned target section of OsNramp5 , primers are Os-HR-F/Os-HR-R).<br> Homologous recombination (plasmid linearization of pFL61+<i>OsNramp5-mut</i>). <br> Transformation of <i>△ycf1</i>: pFL61-OsNramp5-mut.<br> <i>△ycf1</i> (pFL61, pFL61-OsNramp5-HR and ep5-1 - ep5-8) are bred in liqiuid SD-Ura medium. Bred at 200 rpm/min, 30 ℃ for 24 h."
</td>
<td>After 4 days, there was no transformants growing on the medium, which meant we fail to build library labeled as ep8.
</td>
</tr>
<tr>
<td>Chen
</td>
<td>Transformation of BL21: cadR-PcadA-GFP.
</td>
<td></td>
</tr>
<tr>
<td rowspan="4">8. 25
</td>
<td>Zheng
</td>
<td>PCR: Linearization of the plasmid pFL61.
</td>
<td>Strips were not clear.There was nonspecific amplification happening. We supposed the concentration of reaction model was too high.
</td>
</tr>
<tr>
<td>Liu
</td>
<td>ep-PCR: Batch no. 8, 5 tubes (mdoel is cloned target section of OsNramp5 , primers are Os-HR-F/Os-HR-R, enhancer in the reaction system is added to 10 μL).
</td>
<td></td>
</tr>
<tr>
<td>Tao
</td>
<td>Measure OD<sub>600</sub> of <i>△ycf1</i> (ep5-1 - ep5-8 and pFL62, pFL61-OsNramp5-HR).
</td>
<td>Maximum of OD<sub>600</sub> was around 0. 6.
</td>
</tr>
<tr>
<td>Chen
</td>
<td>Characterization pre-experiment of cadmium ion concentration responding biosenser.
</td>
<td>Detailed information is in the <a href="results#download">Supplementary Information-2</a>.
</td>
</tr>
<tr>
<td rowspan="4">8. 26
</td>
<td>Zheng
</td>
<td>PCR: Linearization of the plasmid pFL61 (change the PCR equipment).
</td>
<td>Strips were clear and obvious. We supposed the bad results of plasmid linearization was caused by PCR amplifier.
</td>
</tr>
<tr>
<td>Tao
</td>
<td>"Homologous recombination (linearized pFL61+<i>OsNramp5</i> or <i>OsNramp5-mut</i>).<br> Transformation of <i>△ycf1</i>: pFL61-OsNramp5-HR or pFL61-OsNramp5-mut.<br> Measure OD<sub>600</sub> of <i>△ycf1</i> (ep5-1 - ep5-8 and pFL62,
pFL61-OsNramp5-HR)."
</td>
<td>OD<sub>600</sub> were all over 0. 6.
</td>
</tr>
<tr>
<td>Lin
</td>
<td>Spot (detailed information is in the <a href="project-PROTOCOL ">protocol</a>).
</td>
<td></td>
</tr>
<tr>
<td>Chen
</td>
<td>Characterization experiment of cadmium ion concentration responding biosenser.
</td>
<td>Detailed information is in the <a href="results#download ">Supplementary Information-2</a>.
</td>
</tr>
</table>
</div>
<br>
<br>
<div class="notebook_cell ">
<table border="1">
<tr>
<th colspan="3">Experiment log of 8.26-9.25
</th>
</tr>
<tr>
<td rowspan="3">8.26-9.25
</td>
<td>Geng
</td>
<td>ep-PCR (mdoel is cloned target section of OsNramp5, primers are Os-HR-F/Os-HR-R), five batches in total. Twenty tubes of homologous recombination (linearized pFL61+<i>OsNramp5-mut</i>).
</td>
</tr>
<tr>
<td>Liu and Zhu
</td>
<td>"Transformation of <i>△ycf1</i>:pFL61-OsNramp5-HR or pFL61-OsNramp5-mut . <br> Pick transformants, streak on the SD-Ura medium to build library (ep4-1 - ep3‘-33) (detailed timetable is as following)."
</td>
</tr>
<tr>
<td>Lin, Geng, Liu and Tao
</td>
<td><i>△ycf1</i> (pFL61, pFL61-OsNramp5-HR and pFL61-OsNramp5-mut) are bred in liquid SD-Ura medium. Bred in shaker at 200 rpm/min, 30 ℃ for 24 h . Measure OD<sub>600</sub> of <i>△ycf1</i> (pFL61, pFL61-OsNramp5-HR and pFL61-OsNramp5-mut).
Spot (detailed timetable is as following)."
</td>
</tr>
</table>
</div>
<br>
<br>
<div class="notebook_cell ">
<table border='1'>
<tr>
<th colspan="3">Timetable</th>
</tr>
<tr>
<th>Number</th>
<th>Time of Culturing</th>
<th>Time of Spotting</th>
</tr>
<tr>
<td>ep4-1</td>
<td class='x25'>8.27 a.m.</td>
<td class='x27'>8.28 p.m.</td>
</tr>
<tr class='x32'>
<td>ep4-2</td>
<td class='x25'>8.27 a.m.</td>
<td class='x27'>8.28 p.m.</td>
</tr>
<tr>
<td>ep5-1</td>
<td class='x25'>8.24 p.m.</td>
<td class='x27'>8.26 p.m.</td>
</tr>
<tr>
<td>ep5-2</td>
<td class='x25'>8.24 p.m.</td>
<td class='x27'>8.26 p.m.</td>
</tr>
<tr>
<td>ep5-3</td>
<td class='x25'>8.24 p.m.</td>
<td class='x27'>8.26 p.m.</td>
</tr>
<tr>
<td>ep5-4</td>
<td class='x25'>8.24 p.m.</td>
<td class='x27'>8.26 p.m.</td>
</tr>
<tr>
<td>ep5-5</td>
<td class='x25'>8.24 p.m.</td>
<td class='x27'>8.26 p.m.</td>
</tr>
<tr>
<td>ep5-6</td>
<td class='x25'>8.24 p.m.</td>
<td class='x27'>8.26 p.m.</td>
</tr>
<tr>
<td>ep5-7</td>
<td class='x25'>8.24 p.m.</td>
<td class='x27'>8.26 p.m.</td>
</tr>
<tr>
<td>ep5-8</td>
<td class='x25'>8.24 p.m.</td>
<td class='x27'>8.26 p.m.</td>
</tr>