-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgold-standard.html
More file actions
1541 lines (1530 loc) · 58.7 KB
/
gold-standard.html
File metadata and controls
1541 lines (1530 loc) · 58.7 KB
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
---
layout: page
title: Gold Standard
permalink: /gold-standard/
---
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/v/dt/jq-3.3.1/jszip-2.5.0/dt-1.10.18/b-1.5.4/b-colvis-1.5.4/b-html5-1.5.4/b-print-1.5.4/rg-1.1.0/datatables.min.css"/>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.36/pdfmake.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.36/vfs_fonts.js"></script>
<script type="text/javascript" src="https://cdn.datatables.net/v/dt/jq-3.3.1/jszip-2.5.0/dt-1.10.18/b-1.5.4/b-colvis-1.5.4/b-html5-1.5.4/b-print-1.5.4/rg-1.1.0/datatables.min.js"></script>
<p>Here is presented the first version of a fully annotated corpus of experimental protocols in life sciences. We are working in improving this annotated corpus to serve as a research resource for the biomedical natural language processing community.</p>
<h2>Corpus Characteristics</h2>
<ul>
<li>58 fully annotated protocols,</li>
<li>1769 concepts related to Samples, Instruments and Reagents. These concepts were mapped to concepts represented in ontologies</li>
</ul>
<h2>Corpus Annotation</h2>
<ul>
<li>Thirty four annotators. The skills of the annotators was diverse, from students to university professors their areas of expertise were related to the content of the protocols.</li>
<li>Three-annotators per document (randomly chosen)</li>
<li>Two annotation phases</li>
</ul>
<h2>Download</h2>
<ul>
<li><a href="https://zenodo.org/record/1204838#.XEIjms9KjnU" target="_blank">Corpus of protocols</a></li>
<li><a href="https://zenodo.org/record/2171281#.XCO7R89KjnV" target="_blank">Annotation guidelines</a></li>
<li>Guidelines to use BioH tool (an extension of <a href="https://web.hypothes.is/" target="_blank">Hypothesis</a> annotation tool)</li>
</ul>
<h2>Explore Annotation Results</h2>
<script>
$( document ).ready(function() {
$('#goldStandard').DataTable({});
});
</script>
<table id="goldStandard">
<thead>
<tr>
<th>Journal</th>
<th>#</th>
<th>Title</th>
<th>DOI</th>
<th>URL</th>
</tr>
</thead>
<tbody>
<tr>
<td>bio-protocols</td>
<td>1</td>
<td>Generation of Non-typeable Haemophilus influenzae Directed Gene Deletion Mutants</td>
<td>10.21769/BioProtoc.1066</td>
<td>https://bio-protocol.org/e1066</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>2</td>
<td>Mouse Retinal Whole Mounts and Quantification of Vasculature Protocol</td>
<td>10.21769/BioProtoc.1546</td>
<td>https://bio-protocol.org/e1546</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>3</td>
<td>Electroporation of Embryonic Chick Eyes</td>
<td>10.21769/BioProtoc.1498</td>
<td>https://bio-protocol.org/e1498</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>4</td>
<td>In vitro Migration Assays for Neural Stem Cells, Intermediate Neurogenic Progenitors and Immature Neurons</td>
<td>10.21769/BioProtoc.1371</td>
<td>https://bio-protocol.org/e1371</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>5</td>
<td>In utero Electroporation of the Embryonic Mouse Retina</td>
<td>10.21769/BioProtoc.1255</td>
<td>https://bio-protocol.org/e1255</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>6</td>
<td>In situ Chemotaxis Assay in Caenorhabditis elegans (for the Study of Circadian Rhythms)</td>
<td>10.21769/BioProtoc.1040</td>
<td>https://bio-protocol.org/e1040</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>7</td>
<td>Fluorescence Microscopy for Cilia in Cultured Cells and Zebrafish Embryos</td>
<td>10.21769/BioProtoc.1188</td>
<td>https://bio-protocol.org/e1188</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>8</td>
<td>Wnt Reporter Activity Assay</td>
<td>10.21769/BioProtoc.1183</td>
<td>https://bio-protocol.org/e1183</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>9</td>
<td>Hedgehog (Hh) Reporter Activity Assay</td>
<td>10.21769/BioProtoc.1182</td>
<td>https://bio-protocol.org/e1182</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>10</td>
<td>Open-book Preparations from Chick Embryos and DiI Labeling of Commissural Axons</td>
<td>10.21769/BioProtoc.1176</td>
<td>https://bio-protocol.org/e1176</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>11</td>
<td>Barrier Function Assay</td>
<td>10.21769/BioProtoc.1133</td>
<td>https://bio-protocol.org/e1133</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>12</td>
<td>DNA Fragmentation Analysis</td>
<td>10.21769/BioProtoc.1203</td>
<td>https://bio-protocol.org/e1203</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>13</td>
<td>Chloroform-ethanol Isolation of Genomic DNA from Mouse Tail</td>
<td>10.21769/BioProtoc.131</td>
<td>https://bio-protocol.org/bio101/e131</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>14</td>
<td>Extraction of Genomic DNA from Arabidopsis leaves (can be used for other tissues as well)</td>
<td>10.21769/BioProtoc.90</td>
<td>https://bio-protocol.org/bio101/e90</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>15</td>
<td>Yeast Genomic DNA Miniprep Using A FastPrep Cell Lyser</td>
<td>10.21769/BioProtoc.64</td>
<td>https://bio-protocol.org/bio101/e64</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>16</td>
<td>Zebrafish Embryo DNA Preparation</td>
<td>10.21769/BioProtoc.184</td>
<td>https://bio-protocol.org/bio101/e184</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>17</td>
<td>Determination of Mutation Frequency During Viral DNA Replication</td>
<td>10.21769/BioProtoc.1076</td>
<td>https://bio-protocol.org/e1076</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>18</td>
<td>Genotyping for Single Zebrafish (Fin Clip) or Zebrafish Embryo</td>
<td>10.21769/BioProtoc.182</td>
<td>https://bio-protocol.org/bio101/e182</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>19</td>
<td>Genotyping Transgenic Zebrafish Using Genomic DNA Extracted from Clutch of Embryos</td>
<td>10.21769/BioProtoc.181</td>
<td>https://bio-protocol.org/bio101/e181</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>20</td>
<td>PCR-RFLP Genotyping of Point Mutations in Caenorhabditis elegans</td>
<td>10.21769/BioProtoc.128</td>
<td>https://bio-protocol.org/e128</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>21</td>
<td>Detection of piggyBac-mediated Transposition by Splinkerette PCR in Transgenic Lines of Strongyloides ratti</td>
<td>10.21769/BioProtoc.1015</td>
<td>https://bio-protocol.org/e1015</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>22</td>
<td>DNA PCR Assays for Igh Rearrangement</td>
<td>10.21769/BioProtoc.1046</td>
<td>https://bio-protocol.org/e1046</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>23</td>
<td>Promoter Orientation of Prokaryotic Phase-variable Genes by PCR</td>
<td>10.21769/BioProtoc.274</td>
<td>https://bio-protocol.org/e274</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>24</td>
<td>Pulsed-field Gel Electrophoresis Typing of Gram-negative Bacteria (E. coli)</td>
<td>10.21769/BioProtoc.103</td>
<td>https://bio-protocol.org/bio101/e103</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>25</td>
<td>Purification and Sequencing of DNA Guides from Prokaryotic Argonaute</td>
<td>10.21769/BioProtoc.1293</td>
<td>https://bio-protocol.org/e1293</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>26</td>
<td>Yeast DNA Replication 2D Gel Protocol</td>
<td>10.21769/BioProtoc.213</td>
<td>https://bio-protocol.org/e213</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>27</td>
<td>A Quick, No Frills Approach to Mouse Genotyping</td>
<td>10.21769/BioProtoc.244</td>
<td>https://bio-protocol.org/e244</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>28</td>
<td>Total RNA Extraction from Formalin-Fixed, Paraffin-Embedded (FFPE) Blocks</td>
<td>10.21769/BioProtoc.161</td>
<td>https://bio-protocol.org/e161</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>29</td>
<td>RNA Isolation from Synechocystis</td>
<td>10.21769/BioProtoc.1428</td>
<td>https://bio-protocol.org/e1428</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>30</td>
<td>Polysome Preparation, RNA Isolation and Analysis</td>
<td>10.21769/BioProtoc.286</td>
<td>https://bio-protocol.org/e286</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>31</td>
<td>RNA Isolation from Arabidopsis Pollen Grains</td>
<td>10.21769/BioProtoc.67</td>
<td>https://bio-protocol.org/bio101/e67</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>32</td>
<td>RNA Isolation and Northern Blot Analysis</td>
<td>10.21769/BioProtoc.1077</td>
<td>https://bio-protocol.org/e1077</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>33</td>
<td>RNA Extraction from RNase-Rich Senescing Leaf Samples</td>
<td>10.21769/BioProtoc.248</td>
<td>https://bio-protocol.org/e248</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>34</td>
<td>Phenol-chloroform Based RNA Extraction from Yeast</td>
<td>10.21769/BioProtoc.138</td>
<td>https://bio-protocol.org/bio101/e138</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>35</td>
<td>Separation of Microspores from Anthers of Lilium longiflorum (Lily) and Subsequent RNA Extraction</td>
<td>10.21769/BioProtoc.1400</td>
<td>https://bio-protocol.org/e1400</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>36</td>
<td>Total RNA Isolation after Laser-capture Microdissection of Human Cervical Squamous Epithelial Cells from Fresh Frozen Tissue</td>
<td>10.21769/BioProtoc.848</td>
<td>https://bio-protocol.org/e848</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>37</td>
<td>Extraction of Small RNA and qPCR Validation of miRNAs in Vigna mungo</td>
<td>10.21769/BioProtoc.1417</td>
<td>https://bio-protocol.org/e1417</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>38</td>
<td>RNA Isolation From Meloidogyne Spp. Galls</td>
<td>10.21769/BioProtoc.879</td>
<td>https://bio-protocol.org/e879</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>39</td>
<td>Isolating RNA from the Soil</td>
<td>10.21769/BioProtoc.903</td>
<td>https://bio-protocol.org/e903</td>
</tr>
<tr>
<td>bio-protocols</td>
<td>40</td>
<td>Site-Directed Mutagenesis Using Dpn1</td>
<td>10.21769/BioProtoc.29</td>
<td>https://bio-protocol.org/bio101/e29</td>
</tr>
<tr>
<td>Biotechniques</td>
<td>1</td>
<td>Easy and efficient protocol for oomycete DNA extraction suitable for population genetic analysis</td>
<td>10.1007/s10529-010-0478-3</td>
<td>https://link.springer.com/article/10.1007/s10529-010-0478-3</td>
</tr>
<tr>
<td>Biotechniques</td>
<td>2</td>
<td>A single protocol for extraction of gDNA from bacteria and yeast</td>
<td>10.2144/000114263</td>
<td>https://www.ncbi.nlm.nih.gov/pubmed/25757544</td>
</tr>
<tr>
<td>Biotechniques</td>
<td>3</td>
<td>Extraction of nucleic acids from yeast cells and plant tissues using ethanol as medium for sample preservation and cell disruption</td>
<td>10.2144/000113476</td>
<td>https://www.ncbi.nlm.nih.gov/pubmed/20854267</td>
</tr>
<tr>
<td>Biotechniques</td>
<td>4</td>
<td>Comparison and optimization of ancient DNA extraction</td>
<td>10.2144/000112383</td>
<td>https://www.biotechniques.com/BiotechniquesJournal/2007/March/Comparison-and-optimization-of-ancient-DNA-extraction/biotechniques-41414.html</td>
</tr>
<tr>
<td>Biotechniques</td>
<td>5</td>
<td>Rapid method for the isolation of mammalian sperm DNA</td>
<td>10.2144/000114280</td>
<td>https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4486329/</td>
</tr>
<tr>
<td>Biotechniques</td>
<td>6</td>
<td>Ultra High Purification of Oligonucleotides-DNA and siRNA</td>
<td></td>
<td>https://www.biotechniques.com/protocols/Electrophoresis/DNARNA_Analysis_and_Purificatio/Ultra-High-Purification-of-Oligonucleotides-DNA-and-siRNA/biotechniques-115451.html</td>
</tr>
<tr>
<td>Biotechniques</td>
<td>7</td>
<td>Simplified DGS procedure for large-scale genome structural study</td>
<td>10.2144/00013307</td>
<td>https://www.biotechniques.com/multimedia/archive/00075/Practical_DGS_protoc_75203a.pdf</td>
</tr>
<tr>
<td>Biotechniques</td>
<td>8</td>
<td>Alkaline polyethylene glycol-based method for direct PCR from bacteria, eukaryotic tissue samples, and whole blood</td>
<td>10.2144/000112149</td>
<td>https://www.biotechniques.com/BiotechniquesJournal/2006/April/Alkaline-polyethylene-glycol-based-method-for-direct-PCR-from-bacteria-eukaryotic-tissue-samples-and-whole-blood/biotechniques-45688.html</td>
</tr>
<tr>
<td>Biotechniques</td>
<td>9</td>
<td>Rare allele enrichment and detection by allele-specific PCR, competitive probe blocking and melting analysis</td>
<td>10.2144/000113783</td>
<td>https://www.biotechniques.com/protocols/2012_Protocol_Guide/Rare-allele-enrichment-and-detection-by-allele-specific-PCR-competitive-probe----blocking-and-melting-analysis/biotechniques-324732.html?service=print</td>
</tr>
<tr>
<td>Biotechniques</td>
<td>10</td>
<td>Extraction of total RNA from fresh/frozen tissue (FT)</td>
<td>10.2144/000113260</td>
<td>https://www.biotechniques.com/protocols/Peer-Reviewed_Protocols/Extraction-of-total-RNA-from-freshfrozen-tissue-FT/biotechniques-181792.html?service=print</td>
</tr>
<tr>
<td>Biotechniques</td>
<td>11</td>
<td>Preparation of formalin-fixed paraffin-embedded (FFPE) tissues for RNA extraction</td>
<td>10.2144/000113261</td>
<td>https://www.biotechniques.com/protocols/Peer-Reviewed_Protocols/Preparation-of-formalin-fixed-paraffin-embedded-FFPE-tissues-for-RNA----extraction/biotechniques-181793.html</td>
</tr>
<tr>
<td>Biotechniques</td>
<td>12</td>
<td>Improving sequencing quality from PCR products containing long mononucleotide repeats.</td>
<td>10.2144/000113369</td>
<td>https://www.ncbi.nlm.nih.gov/pubmed/20569204</td>
</tr>
<tr>
<td>Biotechniques</td>
<td>13</td>
<td>Practical SA-cloning protocol</td>
<td>10.2144/000113781</td>
<td>https://www.biotechniques.com/multimedia/archive/00170/BTN_A_000113781_O_170495a.pdf</td>
</tr>
<tr>
<td>Biotechniques</td>
<td>14</td>
<td>Quantitation of proteins expressed on the plasma membrane using cold-adapted proteases</td>
<td>10.2144/000113784</td>
<td>https://www.biotechniques.com/protocols/2012_Protocol_Guide/Quantitation-of-proteins-expressed-on-the-plasma-membrane-using-cold-adapted----proteases/biotechniques-324728.html</td>
</tr>
<tr>
<td>Biotechniques</td>
<td>15</td>
<td>Yeast genomic DNA extraction with LiOAc-SDS</td>
<td>10.2144/000113785</td>
<td>https://www.biotechniques.com/protocols/2012_Protocol_Guide/Yeast-genomic-DNA-extraction-with-LiOAc-SDS/biotechniques-324723.html</td>
</tr>
<tr>
<td>Biotechniques</td>
<td>16</td>
<td>Protocol for intelligent high-content screening of zebrafish embryos on a standard widefield screening microscope</td>
<td>10.2144/000113782</td>
<td>https://www.biotechniques.com/protocols/2012_Protocol_Guide/Protocol-for-intelligent-high-content-screening-of-zebrafish-embryos-on-a----standard-widefield-screening-microscope/biotechniques-324719.html</td>
</tr>
<tr>
<td>Cold Spring Harbor Protocols</td>
<td>1</td>
<td>Molecular Cloning: A Laboratory Manual (Fourth Edition)</td>
<td></td>
<td>https://cshlpress.com/default.tpl?action=full&src=pdf&--eqskudatarq=934</td>
</tr>
<tr>
<td>Cold Spring Harbor Protocols</td>
<td>2</td>
<td>Analysis of RNA-Protein Complexes by RNA Coimmunoprecipitation and RT-PCR Analysis from Caenorhabditis elegans</td>
<td>10.1101/pdb.prot5300</td>
<td>http://cshprotocols.cshlp.org/content/2009/10/pdb.prot5300.abstract</td>
</tr>
<tr>
<td>Cold Spring Harbor Protocols</td>
<td>3</td>
<td>RNAi in Cultured Mammalian Cells Using Synthetic siRNAs</td>
<td>10.1101/pdb.prot071076</td>
<td>http://cshprotocols.cshlp.org/content/2012/9/pdb.prot071076.abstract</td>
</tr>
<tr>
<td>Cold Spring Harbor Protocols</td>
<td>4</td>
<td>An Agar Mount for Observation of Caenorhabditis elegans Embryos</td>
<td>10.1101/pdb.prot5540</td>
<td>http://cshprotocols.cshlp.org/content/2010/12/pdb.prot5540.abstract</td>
</tr>
<tr>
<td>Cold Spring Harbor Protocols</td>
<td>5</td>
<td>Culturing Human Embryonic Stem Cells in Feeder-Free Conditions</td>
<td>10.1101/pdb.prot5044</td>
<td>http://cshprotocols.cshlp.org/content/2008/9/pdb.prot5044.abstract</td>
</tr>
<tr>
<td>Cold Spring Harbor Protocols</td>
<td>6</td>
<td>Design and Cloning of an shRNA into a Lentiviral Silencing Vector: Version A</td>
<td>10.1101/pdb.prot5009</td>
<td>http://cshprotocols.cshlp.org/content/2008/8/pdb.prot5009.short</td>
</tr>
<tr>
<td>Cold Spring Harbor Protocols</td>
<td>7</td>
<td>In Ovo Live Imaging of Avian Embryos</td>
<td>10.1101/pdb.prot5446</td>
<td>http://cshprotocols.cshlp.org/content/2010/6/pdb.prot5446.short</td>
</tr>
<tr>
<td>Cold Spring Harbor Protocols</td>
<td>8</td>
<td>Use of the Sleeping Beauty Transposon System for Stable Gene Expression in Mouse Embryonic Stem Cells</td>
<td>10.1101/pdb.prot5270</td>
<td>http://cshprotocols.cshlp.org/content/2009/8/pdb.prot5270.full</td>
</tr>
<tr>
<td>Cold Spring Harbor Protocols</td>
<td>9</td>
<td>Embedding Embryos for High-Resolution Episcopic Microscopy (HREM)</td>
<td>10.1101/pdb.prot069583</td>
<td>http://cshprotocols.cshlp.org/content/2012/6/pdb.prot069583.abstract</td>
</tr>
<tr>
<td>Cold Spring Harbor Protocols</td>
<td>10</td>
<td>FAST Technique for Agrobacterium-Mediated Transient Gene Expression in Seedlings of Arabidopsis and Other Plant Species</td>
<td>10.1101/pdb.prot5428</td>
<td>http://cshprotocols.cshlp.org/content/2010/5/pdb.prot5428.abstract</td>
</tr>
<tr>
<td>Cold Spring Harbor Protocols</td>
<td>11</td>
<td>Isolation and Whole-Cell Patch Clamping of Arabidopsis Guard Cell Protoplasts</td>
<td>10.1101/pdb.prot5014</td>
<td>http://cshprotocols.cshlp.org/content/2008/6/pdb.prot5014.full</td>
</tr>
<tr>
<td>Cold Spring Harbor Protocols</td>
<td>12</td>
<td>Polyacrylamide Gel Electrophoresis of RNA</td>
<td>10.1101/pdb.prot5444</td>
<td>http://cshprotocols.cshlp.org/content/2010/6/pdb.prot5444.full</td>
</tr>
<tr>
<td>Cold Spring Harbor Protocols</td>
<td>13</td>
<td>Preparation of Small RNA Libraries for High-Throughput Sequencing</td>
<td>10.1101/pdb.prot071431</td>
<td>http://cshprotocols.cshlp.org/content/2012/10/pdb.prot071431.short</td>
</tr>
<tr>
<td>Cold Spring Harbor Protocols</td>
<td>14</td>
<td>Mapping Protein–Protein Interactions Using Yeast Two-Hybrid Assays</td>
<td>10.1101/pdb.prot086157</td>
<td>http://cshprotocols.cshlp.org/content/2015/5/pdb.prot086157</td>
</tr>
<tr>
<td>Cold Spring Harbor Protocols</td>
<td>15</td>
<td>Bimolecular Affinity Purification (BAP): Tandem Affinity Purification Using Two Protein Baits</td>
<td>10.1101/pdb.prot5318</td>
<td>http://cshprotocols.cshlp.org/content/2009/11/pdb.prot5318.abstract</td>
</tr>
<tr>
<td>Cold Spring Harbor Protocols</td>
<td>16</td>
<td>Chromatin Immunoprecipitation (ChIP)</td>
<td>10.1101/pdb.prot5279</td>
<td>http://cshprotocols.cshlp.org/content/2009/9/pdb.prot5279.abstract</td>
</tr>
<tr>
<td>Cold Spring Harbor Protocols</td>
<td>17</td>
<td>Combined 3C-ChIP-Cloning (6C) Assay: A Tool to Unravel Protein-Mediated Genome Architecture</td>
<td>10.1101/pdb.prot5168</td>
<td>http://cshprotocols.cshlp.org/content/2009/3/pdb.prot5168.short</td>
</tr>
<tr>
<td>Cold Spring Harbor Protocols</td>
<td>18</td>
<td>Creation of Baculovirus Display Libraries</td>
<td>10.1101/pdb.prot5393</td>
<td>http://cshprotocols.cshlp.org/content/2010/3/pdb.prot5393.full</td>
</tr>
<tr>
<td>Cold Spring Harbor Protocols</td>
<td>19</td>
<td>Development of Mammalian Cell Lines with lac Operator-Tagged Chromosomes</td>
<td>10.1101/pdb.prot4903</td>
<td>http://cshprotocols.cshlp.org/content/2008/1/pdb.prot4903.abstract</td>
</tr>
<tr>
<td>Cold Spring Harbor Protocols</td>
<td>20</td>
<td>Preparation of Peptides from Yeast Cells for iTRAQ Analysis</td>
<td>10.1101/pdb.prot5616</td>
<td>http://cshprotocols.cshlp.org/content/2011/6/pdb.prot5616.abstract</td>
</tr>
<tr>
<td>Cold Spring Harbor Protocols</td>
<td>21</td>
<td>Injection of dsRNA into DrosophilaEmbryos for RNA Interference (RNAi)</td>
<td>10.1101/pdb.prot4918</td>
<td>http://cshprotocols.cshlp.org/content/2008/2/pdb.prot4918.abstract</td>
</tr>
<tr>
<td>Cold Spring Harbor Protocols</td>
<td>22</td>
<td>SNP Mining from Maize 454 EST Sequences</td>
<td>10.1101/pdb.prot4786</td>
<td>http://cshprotocols.cshlp.org/content/2007/7/pdb.prot4786.full</td>
</tr>
<tr>
<td>Cold Spring Harbor Protocols</td>
<td>23</td>
<td>Virus-Induced Gene Silencing as a Tool for Delivery of dsRNA into Plants</td>
<td>10.1101/pdb.prot5139</td>
<td>http://cshprotocols.cshlp.org/content/2009/2/pdb.prot5139.full</td>
</tr>
<tr>
<td>Cold Spring Harbor Protocols</td>
<td>24</td>
<td>Whole-Mount In Situ Hybridization of RNA Probes to Plant Tissues</td>
<td>10.1101/pdb.prot4944</td>
<td>http://cshprotocols.cshlp.org/content/2008/2/pdb.prot4944.abstract</td>
</tr>
<tr>
<td>current protocols</td>
<td>1</td>
<td>CRISPR‐Cas9 Genome Editing in Drosophila</td>
<td>10.1002/0471142727.mb3102s111</td>
<td>https://currentprotocols.onlinelibrary.wiley.com/doi/10.1002/0471142727.mb3102s111</td>
</tr>
<tr>
<td>current protocols</td>
<td>2</td>
<td>Interpretation of genomic copy number variants using DECIPHER</td>
<td>10.1002/0471142905.hg0814s72</td>
<td>https://www.ncbi.nlm.nih.gov/pubmed/22241657</td>
</tr>
<tr>
<td>current protocols</td>
<td>3</td>
<td>Assessment of metabolic stability using the rainbow trout (Oncorhynchus mykiss) liver S9 fraction.</td>
<td>10.1002/0471140856.tx1410s53</td>
<td>https://www.ncbi.nlm.nih.gov/m/pubmed/22896006/</td>
</tr>
<tr>
<td>current protocols</td>
<td>4</td>
<td>Bioremediation of Turbid Surface Water Using Seed Extract from Moringa oleifera Lam. (Drumstick) Tree</td>
<td>10.1002/9780471729259.mc01g02s16</td>
<td>https://currentprotocols.onlinelibrary.wiley.com/doi/10.1002/9780471729259.mc01g02s16</td>
</tr>
<tr>
<td>current protocols</td>
<td>5</td>
<td>Biological Sand Filters: Low-Cost Bioremediation Technique for Production of Clean Drinking Water</td>
<td>10.1002/9780471729259.mc01g01s9</td>
<td></td>
</tr>
<tr>
<td>current protocols</td>
<td>6</td>
<td>Characterization and Validation of Cre-Driver Mouse Lines</td>
<td>10.1002/9780470942390.mo100103</td>
<td>https://www.ncbi.nlm.nih.gov/m/pubmed/26068985/</td>
</tr>
<tr>
<td>current protocols</td>
<td>7</td>
<td>Assaying Cell Cycle Status Using Flow Cytometry</td>
<td>10.1002/0471142727.mb2806s111</td>
<td>https://currentprotocols.onlinelibrary.wiley.com/doi/abs/10.1002/0471142727.mb2806s111</td>
</tr>
<tr>
<td>current protocols</td>
<td>8</td>
<td>Cytometry in malaria-A practical replacement for microscopy?</td>
<td>10.1002/0471142956.cy1120s65</td>
<td>https://cwru.pure.elsevier.com/en/publications/cytometry-in-malaria-a-practical-replacement-for-microscopy-4</td>
</tr>
<tr>
<td>current protocols</td>
<td>9</td>
<td>Fluorescence Polarization (FP) Assays for Monitoring Peptide‐Protein or Nucleic Acid‐Protein Binding</td>
<td>10.1002/9780470559277.ch090102</td>
<td>https://currentprotocols.onlinelibrary.wiley.com/doi/10.1002/9780470559277.ch090102</td>
</tr>
<tr>
<td>current protocols</td>
<td>10</td>
<td>Fluorescent speckle microscopy (FSM) of microtubules and actin in living cells</td>
<td></td>
<td>https://www.ncbi.nlm.nih.gov/m/pubmed/18228403/</td>
</tr>
<tr>
<td>current protocols</td>
<td>11</td>
<td>Genotyping of apolipoprotein E: comparative evaluation of different protocols</td>
<td>10.1002/0471142905.hg0914s38</td>
<td>https://www.ncbi.nlm.nih.gov/pubmed/18428347</td>
</tr>
<tr>
<td>current protocols</td>
<td>12</td>
<td>Growing and Analyzing Static Biofilms</td>
<td>10.1002/9780471729259.mc01b01s22</td>
<td></td>
</tr>
<tr>
<td>current protocols</td>
<td>13</td>
<td>In vivo measurement of blood-brain barrier permeability</td>
<td>10.1002/0471142301.ns0719s15</td>
<td>https://www.ncbi.nlm.nih.gov/pubmed/18428529</td>
</tr>
<tr>
<td>current protocols</td>
<td>14</td>
<td>The Polymerase Chain Reaction</td>
<td>10.1002/0471142727.mb1500s88</td>
<td>https://currentprotocols.onlinelibrary.wiley.com/doi/10.1002/0471142727.mb1500s88</td>
</tr>
<tr>
<td>current protocols</td>
<td>15</td>
<td>Measurement of bacterial ingestion and killing by macrophages</td>
<td>10.1002/0471142735.im1406s12</td>
<td>https://www.ncbi.nlm.nih.gov/pubmed/18432724</td>
</tr>
<tr>
<td>current protocols</td>
<td>16</td>
<td>Measurement of glutathione transport</td>
<td>10.1002/0471140856.tx0603s00</td>
<td>https://www.ncbi.nlm.nih.gov/pubmed/23045055</td>
</tr>
<tr>
<td>current protocols</td>
<td>17</td>
<td>Models of inflammation: measuring gastrointestinal ulceration in the rat</td>
<td>10.1002/0471141755.ph1002s00</td>
<td>https://www.ncbi.nlm.nih.gov/pubmed/21971793</td>
</tr>
<tr>
<td>current protocols</td>
<td>18</td>
<td>Oligonucleotide Microarrays for Clinical Diagnosis of Copy Number Variation and Zygosity Status</td>
<td>10.1002/0471142905.hg0812s74</td>
<td></td>
</tr>
<tr>
<td>current protocols</td>
<td>19</td>
<td>Preparing a Minimum Information about a Flow Cytometry Experiment (MIFlowCyt) Compliant Manuscript Using the International Society for Advancement of Cytometry (ISAC) FCS File Repository (FlowRepository.org)</td>
<td>10.1002/0471142956.cy1018s61</td>
<td>https://currentprotocols.onlinelibrary.wiley.com/doi/full/10.1002/0471142956.cy1018s61</td>
</tr>
<tr>
<td>current protocols</td>
<td>20</td>
<td>Purification of sequence-specific DNA-binding proteins by affinity chromatography</td>
<td>10.1002/0471140864.ps0906s11</td>
<td>https://www.ncbi.nlm.nih.gov/pubmed/18429215</td>
</tr>
<tr>
<td>current protocols</td>
<td>21</td>
<td>Searching NCBI Databases Using Entrez</td>
<td>10.1002/0471142905.hg0610s71</td>
<td>https://www.ncbi.nlm.nih.gov/pubmed/21975942</td>
</tr>
<tr>
<td>current protocols</td>
<td>22</td>
<td>Some Phenotype Association Tools in Galaxy: Looking for Disease SNPs in a Full Genome</td>
<td>10.1002/0471250953.bi1502s39</td>
<td>https://currentprotocols.onlinelibrary.wiley.com/doi/10.1002/0471250953.bi1502s39</td>
</tr>
<tr>
<td>current protocols</td>
<td>23</td>
<td>Uridine 2'-carbamates: facile tools for oligonucleotide 2'-functionalization</td>
<td>10.1002/0471142700.nc0421s15</td>
<td>https://www.ncbi.nlm.nih.gov/pubmed/18428928</td>
</tr>
<tr>
<td>current protocols</td>
<td>24</td>
<td>Using Cloud Computing Infrastructure with CloudBioLinux, CloudMan, and Galaxy</td>
<td>10.1002/0471250953.bi1109s38</td>
<td>https://currentprotocols.onlinelibrary.wiley.com/doi/10.1002/0471250953.bi1109s38</td>
</tr>
<tr>
<td>current protocols</td>
<td>25</td>
<td>Using Galaxy to perform large-scale interactive data analyses</td>
<td>10.1002/0471250953.bi1005s38</td>
<td>https://www.ncbi.nlm.nih.gov/pubmed/22700312</td>
</tr>
<tr>
<td>current protocols</td>
<td>26</td>
<td>Using OrthoMCL to Assign Proteins to OrthoMCL‐DB Groups or to Cluster Proteomes Into New Ortholog Groups</td>
<td>10.1002/0471250953.bi0612s35</td>
<td>https://currentprotocols.onlinelibrary.wiley.com/doi/full/10.1002/0471250953.bi0612s35</td>
</tr>
<tr>
<td>current protocols</td>
<td>27</td>
<td>CRISPR/Cas9-Directed Genome Editing of Cultured Cells</td>
<td>10.1002/0471142727.mb3101s107</td>
<td>https://currentprotocols.onlinelibrary.wiley.com/doi/full/10.1002/0471142727.mb3101s107</td>
</tr>
<tr>
<td>current protocols</td>
<td>28</td>
<td>Cell‐Free Expression of G Protein–Coupled Receptors</td>
<td>10.1002/0471140864.ps2914s81</td>
<td>https://currentprotocols.onlinelibrary.wiley.com/doi/10.1002/0471140864.ps2914s81</td>
</tr>
<tr>
<td>current protocols</td>
<td>29</td>
<td>Using Single Lectins to Enrich Glycoproteins in Conditioned Media</td>
<td>10.1002/0471140864.ps2406s81</td>
<td>https://www.ncbi.nlm.nih.gov/pubmed/26237673</td>
</tr>
<tr>
<td>current protocols</td>
<td>30</td>
<td>Detergent Analysis in Protein Samples Using Mid‐Infrared (MIR) Spectroscopy</td>
<td>10.1002/0471140864.ps2912s81</td>
<td>https://currentprotocols.onlinelibrary.wiley.com/doi/abs/10.1002/0471140864.ps2912s81</td>
</tr>
<tr>
<td>current protocols</td>
<td>31</td>
<td>Applications of Lipid Nanodiscs for the Study of Membrane Proteins by Surface Plasmon Resonance</td>
<td>10.1002/0471140864.ps2913s81</td>
<td>https://currentprotocols.onlinelibrary.wiley.com/doi/abs/10.1002/0471140864.ps2913s81</td>
</tr>
<tr>
<td>Genentic and molecular research</td>
<td>1</td>
<td>A protocol for high-quality genomic DNA extraction from legumes</td>
<td>http://dx.doi.org/10.4238/2012.September.14.1</td>
<td>http://www.funpecrp.com.br/gmr/year2012/vol11-4/pdf/gmr2263.pdf</td>
</tr>
<tr>
<td>Genentic and molecular research</td>
<td>2</td>
<td>A simplified universal genomic DNA extraction protocol suitable for PCR</td>
<td>10.4238/vol10-1gmr1055</td>
<td>https://www.ncbi.nlm.nih.gov/pubmed/21476197</td>
</tr>
<tr>
<td>Genentic and molecular research</td>
<td>3</td>
<td>An inexpensive and rapid method for extracting papilionoid genomic DNA from herbarium specimens</td>
<td>10.4238/vol9-3gmr839</td>
<td>https://www.ncbi.nlm.nih.gov/m/pubmed/20645258/</td>
</tr>
<tr>
<td>Genentic and molecular research</td>
<td>4</td>
<td>Isolation of retro-transcribed RNA from in vitro Mycosphaerella fijiensis-infected banana leaves</td>
<td>10.4238/vol9-3gmr865</td>
<td>https://www.ncbi.nlm.nih.gov/pubmed/20677135</td>
</tr>
<tr>
<td>Genentic and molecular research</td>
<td>5</td>
<td>Optimization of DNA extraction from seeds and fresh leaf tissues of wild marigold (Tagetes minuta) for polymerase chain reaction analysis</td>
<td>10.4238/vol9-1gmr747</td>
<td>https://www.ncbi.nlm.nih.gov/pubmed/20309824</td>
</tr>
<tr>
<td>Journal of visualized experiments</td>
<td>1</td>
<td>Isolation of Protoplasts from Tissues of 14-day-old Seedlings of Arabidopsis thaliana</td>
<td>10.3791/1149</td>
<td>http://www.jove.com/details.php?id=1149</td>
</tr>
<tr>
<td>Journal of visualized experiments</td>
<td>2</td>
<td>Denaturing Urea Polyacrylamide Gel Electrophoresis (Urea PAGE)</td>
<td>10.3791/1485</td>
<td>http://www.jove.com/video/1485/</td>
</tr>
<tr>
<td>Journal of visualized experiments</td>
<td>3</td>
<td>Choice and No-Choice Assays for Testing the Resistance of A. thaliana to Chewing Insects</td>
<td>10.3791/683</td>
<td>http://www.jove.com/video/683</td>
</tr>
<tr>
<td>Journal of visualized experiments</td>
<td>4</td>
<td>Protocols for Oral Infection of Lepidopteran Larvae with Baculovirus</td>
<td>10.3791/888</td>
<td>http://www.jove.com/video/888</td>
</tr>
<tr>
<td>Journal of visualized experiments</td>
<td>5</td>
<td>Non-radioactive in situ Hybridization Protocol Applicable for Norway Spruce and a Range of Plant Species</td>
<td>10.3791/1205</td>
<td>http://www.jove.com/video/1205</td>
</tr>
<tr>
<td>Journal of visualized experiments</td>
<td>6</td>
<td>Assay for Pathogen-Associated Molecular Pattern (PAMP)-Triggered Immunity (PTI) in Plants</td>
<td>10.3791/1442</td>
<td>http://www.jove.com/video/1442</td>
</tr>
<tr>
<td>Journal of visualized experiments</td>
<td>7</td>
<td>Robotics and Dynamic Image Analysis for Studies of Gene Expression in Plant Tissues</td>
<td>10.3791/1733</td>
<td>http://www.jove.com/video/1733</td>
</tr>
<tr>
<td>Journal of visualized experiments</td>
<td>8</td>
<td>Comprehensive Compositional Analysis of Plant Cell Walls (Lignocellulosic biomass) Part I: Lignin</td>
<td>10.3791/1745</td>
<td>http://www.jove.com/video/1745</td>
</tr>
<tr>
<td>Journal of visualized experiments</td>
<td>9</td>
<td>Comprehensive Compositional Analysis of Plant Cell Walls (Lignocellulosic biomass) Part II: Carbohydrates</td>
<td>10.3791/1837</td>
<td>http://www.jove.com/video/1837</td>
</tr>
<tr>
<td>Journal of visualized experiments</td>
<td>10</td>
<td>Assessing Stomatal Response to Live Bacterial Cells using Whole Leaf Imaging Imaging</td>
<td>10.3791/2185</td>
<td>http://www.jove.com/video/2185</td>
</tr>
<tr>
<td>Journal of visualized experiments</td>
<td>11</td>
<td>Environmentally Induced Heritable Changes in Flax</td>
<td>10.3791/2332</td>
<td>http://www.jove.com/video/2332</td>
</tr>
<tr>
<td>Journal of visualized experiments</td>
<td>12</td>
<td>Generation of Composite Plants in Medicago truncatula used for Nodulation Assays</td>
<td>10.3791/2633</td>
<td>http://www.jove.com/video/2633</td>
</tr>
<tr>
<td>Journal of visualized experiments</td>
<td>13</td>
<td>Microwave Assisted Rapid Diagnosis of Plant Virus Diseases by Transmission Electron Microscopy</td>
<td>10.3791/2950</td>
<td>http://www.jove.com/video/2950</td>
</tr>
<tr>
<td>Journal of visualized experiments</td>
<td>14</td>
<td>Characterizing Herbivore Resistance Mechanisms: Spittlebugs on Brachiaria spp. as an Example</td>
<td>10.3791/3047</td>
<td>http://www.jove.com/video/3047</td>
</tr>
<tr>
<td>Journal of visualized experiments</td>
<td>15</td>
<td>Single Cell Fate Mapping in Zebrafish</td>
<td>10.3791/3172</td>
<td>http://www.jove.com/video/3172</td>
</tr>
<tr>
<td>Journal of visualized experiments</td>
<td>16</td>
<td>A PCR-based Genotyping Method to Distinguish Between Wild-type and Ornamental Varieties of Imperata cylindrica</td>
<td>10.3791/3265</td>
<td>http://www.jove.com/video/3265</td>
</tr>
<tr>
<td>Journal of visualized experiments</td>
<td>17</td>
<td>Ice-Cap: A Method for Growing Arabidopsis and Tomato Plants in 96-well Plates for High-Throughput Genotyping</td>
<td>10.3791/3280</td>
<td>http://www.jove.com/video/3280</td>
</tr>
<tr>
<td>Journal of visualized experiments</td>
<td>18</td>
<td>In Situ Hybridization for the Precise Localization of Transcripts in Plants</td>
<td>10.3791/3328</td>
<td>http://www.jove.com/video/3328</td>
</tr>
<tr>
<td>Journal of visualized experiments</td>
<td>19</td>
<td>Isolation and Biophysical Study of Fruit Cuticles</td>
<td>10.3791/3529</td>
<td>http://www.jove.com/video/3529</td>
</tr>