-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheaders.tsv
We can make this file beautiful and searchable if this error is corrected: Illegal quoting in line 18.
3780 lines (3780 loc) · 357 KB
/
headers.tsv
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
headers tables
('Reagent type (species) or resource', 'Designation', 'Source or reference', 'Identifiers', 'Additional information') 1788
('Reagent type (species) or resource', 'Designation', 'Source or reference', 'Identifiers') 49
(0, 1) 48
(0, 1, 2) 27
('Reagent type or resource', 'Designation', 'Source or reference', 'Identifiers', 'Additional information') 27
('Reagent type', 'Designation', 'Source or reference', 'Identifiers', 'Additional information') 26
(0, 1, 2, 3) 20
(0, 1, 2, 3, 4) 18
('Reagent', 'Type', 'Manufacturer', 'Catalog #', 'Comments') 17
('Data collection', 'Unnamed: 1') 14
(0,) 13
('Group 1', 'Group 2', 'Effect size d', 'A priori power', 'Group 1 sample size', 'Group 2 sample size') 13
(0, 1, 2, 3, 4, 5, 6, 7, 8) 11
('Parameter', 'Value') 10
(0, 1, 2, 3, 4, 5, 6, 7) 10
('Reagent type (species) or resource', 'Designation', 'Source or reference', 'Identifier', 'Additional information') 10
("Dunn's multiple comparisons test", 'Significant', 'Summary', 'Adjusted P Value') 9
('Element', 'Weight %', 'Atomic %', 'Net int.', 'Error %', 'Kratio', 'Z', 'R', 'A', 'F') 9
('Property', 'Value') 9
(0, 1, 2, 3, 4, 5) 8
('Channel', 'Gmax (S/cm2)') 8
('Reagent type', 'Designation', 'Source', 'Identifiers', 'Additional information') 7
('Designation', 'Source or reference', 'Identifiers', 'Additional information') 7
('Groups', 'F test statistic', 'Partial η2', 'Effect size f', 'A priori power', 'Total sample size') 7
('Reagent type (species) or resource', 'Designation', 'Source or reference', 'Identifiers', 'Additional Information') 6
("Dunn's multiple comparisons test", 'Significant?', 'Summary', 'Adjusted P Value') 6
('Reagent type (species) or resources', 'Designation', 'Source or reference', 'Identifiers', 'Additional information') 6
('Retention volume (mL)', '11 to 16', '16 to 20', '>20', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6') 6
('Fixed effects:', 'Estimate', 'Std. error', 'DF', 't-value', 'p-value') 6
('Primer ID', 'Forward sequence', 'Reverse sequence') 6
('Data collection', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3') 5
('Reagent type (species) or resource', 'Designation', 'Source or reference', 'Identifiers', 'Additional information', 'Unnamed: 5') 5
('Gene', 'Forward primer', 'Reverse primer') 5
('Figure', 'Comparator 1', 'Comparator 2', 'Mean 1', 'Mean 2', 'SE of diff.', 'N 1', 'N 2', 'Summary', 'Adjusted P Value') 5
('Variable', 'Value', 'Unit') 5
('Dataset HeLa', 'Diffusion coefficient (µm2/s)', 'Occupancy (%)', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6') 5
('Primer', 'Sequence') 5
('Unnamed: 0', 'CDMD', 'Phenix', 'Rosetta', 'Refmac') 5
('Unnamed: 0', 'Unnamed: 1', 'Unnamed: 2', 'MNI', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8') 5
('Parameter', 'Description') 5
('Pre type', 'Exp. ref.', 'Hold (mV)', 'Erev (mV)', 'Amp. (pA,mV)', 'Diff. %', 't10\u2005−\u200590 (ms)', 'Diff. %.1', 'τdecay (ms)', 'Diff. %.2') 5
('Post type', 'Exp. ref.', 'Hold (mV)', 'Erev (mV)', 'Amp. (pA,mV)', 'Diff. %', 't10\u2005−\u200590 (ms)', 'Diff. %.1', 'τdecay (ms)', 'Diff. %.2') 5
('Reagent type (species) or resource', 'Designation', 'Source', 'Identifiers', 'Additional information') 4
('Reagent type (species)or resource', 'Designation', 'Source or reference', 'Identifiers', 'Additional information') 4
('Unnamed: 0', 'G1', 'G2', 'Prometaphase', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6') 4
(0, 1, 2, 3, 4, 5, 6) 4
('Reagent type (species) or resource', 'Designation', 'Source or reference', 'Additional information') 4
('Species', 'MotX candidate', 'MotY candidate', 'FlgO candidate', 'FlgP candidate', 'FlgT candidate') 4
('Compound', 'Name', 'Retention time', 'Day 1', 'Day 7', 'Day 14', 'Foraging', 'p-value') 4
('Covariate', 'AOR', 'p-value') 4
('Brain Region Activation', 'Height: p<0.005 Extent: p<0.05', 'Height: p<0.005 Extent: p<0.01', 'Height: p<0.001 Extent: p<0.05', 'Height: p<0.001 Extent: p<0.01') 4
('Data collection', 'Unnamed: 1', 'Unnamed: 2') 4
('Ms', 'SEC', '100kD filter', 'Unnamed: 3', 'Unnamed: 4') 4
('Scaffold', 'Start', 'End', 'Strand', 'Id with PpOMLV', 'E value', 'Coverage', 'FEVE') 4
('Models', 'P(M | Data)', 'BFM', 'BF10', 'Error (%)') 4
('ANOVA; α=0.05', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4') 4
('Substrate', 'Variant', 'Constant (WT)', 'Effect size d', 'A priori power', 'Sample size per group') 4
(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12) 3
('Process type', 'Parameter name', 'Description', 'Range', 'Default') 3
('Item', 'Mean\xa0±\xa0SEM of WT', 'Mean\xa0±\xa0SEM of DKO', 'p Value', 'Unnamed: 4') 3
('Group', 'n', 'mAHP (mV)', 'p-Value', 'sAHP (mV)', 'p-Value.1') 3
('Group', 'n', 'ADP Amplitude (mV)', 'p-Value', 'AUC (mV*ms)', 'p-Value.1') 3
('Dataset', 'C statistic', 'Df', 'p-value', 'ΔAIC', 'No.\xa0of\xa0studies', 'N') 3
('Translation model', 'Input(s)', 'rxy', 'rxz', 'rxyz', 'SSIMxy', 'SSIMxz', 'SSIMxyz') 3
('ssVEP-SNRs:', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4') 3
('Data collection and processing', 'Unnamed: 1') 3
('Gene', 'Forward', 'Reverse') 3
('Metric', 'Term', 'Df', 'Sum Sq.', 'Mean Sq.', 'F stat.', 'R2', 'P') 3
('Unnamed: 0', 'Forward', 'Reverse') 3
('Region', 'MNI coordinates', 'peak', 'cluster', 'Unnamed: 4', 'Unnamed: 5') 3
('Table Analyzed', 'oocytes count 6 hr water/PGN combo set 2 + set 1') 3
('Gene', 'Forward (5’−3’)', 'Reverse (5’−3’)') 3
('Simulation parameter', 'Symbol', 'Value', 'Notes') 3
('Parameter', 'Symbol', 'Value', 'Notes') 3
('Reagent type (species)', 'Designation', 'Source or reference', 'Identifiers', 'Additional information') 3
('Component', 'Effects', 'χ2', 'Df', 'p', 'R2m') 3
('Locus ID', 'Gene name', 'Circadian expression', 'Tissue specific expression', 'Closest homolog', 'Publications (PMID)', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8', 'Unnamed: 9', 'Unnamed: 10', 'Unnamed: 11', 'Unnamed: 12', 'Unnamed: 13', 'Unnamed: 14') 3
('Dynamical regime', 'Parameters', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8') 3
('Unnamed: 0', 'N (Female, Male)', 'Age (range)', 'Approx. IQ (range; SD)', 'AQ (range; SD)') 3
('X-Function', 'Kruskal-Wallis ANOVA', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6') 3
('Gene set name', 'Gene set description', 'FDR q-value', 'Enriched genes') 3
('Allele', 'Molecular lesion', 'Defect in PVD', 'Physical location†') 3
('Reagent type (species) or Resource', 'Designation', 'Source or reference', 'Identifiers', 'Additional information') 3
('Reagent or resource', 'Source', 'Identifier') 3
('Repeat class', 'Family', 'Counts', 'Bases', '% of assembly') 3
('Model', 'DF', '% Deviance Explained', 'AIC') 3
('Parameter', 'Label', 'Value', 'Unnamed: 3') 3
('Reagent type', 'Designation', 'Source or reference', 'Identifiers') 3
('Unnamed: 0', 'Unnamed: 1', 'From', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5') 3
('Subunit', 'Gene') 3
('Cells', 'Group 1', 'Group 2', 'Effect size d', 'A priori power', 'Group 1 sample size', 'Group 2 sample size') 3
('Unnamed: 0', 'Df', 'Sum sq', 'Mean sq', 'F', 'p') 3
('Fixed effects', 'Estimate', 'Std. error', 'z', 'p') 3
('Plasmid', 'Description', 'Source') 2
('ordering', 'Number cases per cluster', 'μ (Tianjin)', 'σ (Tianjin)', 'μ (Singapore)', 'σ (Singapore)') 2
('GOID', 'GO term', 'P-Value', '% Associated Genes', 'Associated genes found') 2
('Gene', 'Sequence') 2
('Group', 'n', '20 Hz, 2 s, 2 mV below (%)', 'p-Value', 'n.1', '20 Hz, 250 ms, 2 mV below (%)', 'p-Value.1', 'n.2', '20 Hz, 250 ms, 5 mV below (%)', 'p-Value.2') 2
('Parameter', 'male', 'female', 'Unnamed: 3', 'Unnamed: 4') 2
(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10) 2
('Parameter', 'Simulation value', 'Physical value') 2
('Unnamed: 0', 'Time', 'Condition (DREADD - SHAM)', 'Time x Condition') 2
('Dataset', 'Response', 'Predictor', 'Std.est.', 'Est.', 'SE', 'Crit.value', 'Df', 'p-value') 2
('Onset', 'Sex', 'Age', 'Pathology', 'Location', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8', 'Unnamed: 9', 'Unnamed: 10', 'Unnamed: 11', 'Unnamed: 12', 'Unnamed: 13') 2
('Year', 'Scenario', 'Median', '95% Cr interval') 2
('Model', 'Integration', 'Extrema detection', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8', 'Unnamed: 9', 'Unnamed: 10', 'Unnamed: 11', 'Unnamed: 12') 2
('Brain region', 'Total number of electrodes', 'Electrodes with state-dependent slope modulation') 2
('Unnamed: 0', 'Index allele', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6') 2
('Unnamed: 0', 'Unnamed: 1', 'Unnamed: 2', 'Index allele', 'Unnamed: 4', 'Unnamed: 5') 2
('Parameter', 'Value', 'Description') 2
('Neuron class', 'Drosophila', 'Locust', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6') 2
('Unnamed: 0', 'Chr./scaffold', 'CEN', 'Core centromere', '% GC genome', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7') 2
('Unnamed: 0', 'Average beta', 'T value', 'P value', 'Standard deviation') 2
('siRNA', 'Mixes of', 'Species', 'Supplier', 'References') 2
('Model', 'Contrast', 'Trait', 't-value', 'p-value') 2
('Parameter', 'Model', 'Contrast', 'T value', 'P value') 2
('Reagent type or resources', 'Designation', 'Source or reference', 'Identifier', 'Additional information') 2
('Gene symbol', 'Gene name', 'Fold change') 2
('Unnamed: 0', 'Ngfr-WT', 'Ngfr-KO', 'Unnamed: 3') 2
('Reagent type', 'Reagent or resource', 'Source', 'Identifier', 'Additional information') 2
('Type', '1', '2', '3', '4') 2
('Genotype', 'Analysis', 'Chlorotic area', 'Intensity of chlorosis', 'Leaf deformation', 'Leaf shunting') 2
('Cell type', 'Phenotype', 'Parameter', 'Weight') 2
('Unnamed: 0', 'Suicide attempters (n\xa0=\xa034)', 'Non-attempters (n\xa0=\xa068)') 2
('Reagent type', 'Designation', 'Source', 'Identifier', 'Additional information') 2
('Unnamed: 0', 'β', 'β(std. Err.)', 'standardised β', 't', 'p') 2
('Main effect/interaction', 'Statistics', 'Further information') 2
('Unnamed: 0', 'Cercopithecoidea', 'Hominidae', 'Hylobatidae', 'Platyrrhini') 2
('Unnamed: 0', 'bgPC1', 'bgPC2', 'bgPC3') 2
('Unnamed: 0', 'Fish 1', 'Fish 2', 'Fish 3', 'Merged') 2
('Parameters', 'Unnamed: 1', 'unit') 2
('Figure 1', 'Unnamed: 1') 2
("Fisher's exact test", 'Significant', 'Summary', 'Adjusted P Value') 2
('Table Analyzed', 'Data 1') 2
('Table Analyzed', 'oocytes count 24 hr water/PGN combo set 2 + set1') 2
('Mann-Whitney test', 'Unnamed: 1') 2
('Reagent type (species) or resource', 'Designation', 'Source reference', 'Identifier', 'Additional information') 2
('Reagent (species) or resource', 'Designation', 'Source or reference', 'Identifiers', 'Additional information') 2
('Jαβ\xa0(µA.\xa0ms.cm-2)', 'Feedforward', 'PC', 'PV', 'SOM', 'VIP') 2
('Unnamed: 0', 'Ka (1/Ms)', 'Kd (1/s)', 'KD (M)') 2
('Sample', 'Total reads', '% Mapped', 'Accession no.') 2
('Property', 'Experiment', 'p', '+/+: Mean\xa0±\xa0SEM, n', '+/-: Mean\xa0±\xa0SEM, n') 2
('Unnamed: 0', 'Embryos with no heat shock', 'Heat shocked embryos', 'Unnamed: 3') 2
('Unnamed: 0', 'B', 'SE', 't-value') 2
('Part', 'Description (link)', 'Company', 'Item number') 2
('Parameter', 'Std. β', 'p') 2
('Age category (years)', 'Women (n\xa0=\xa0491)', 'Men (n\xa0=\xa0524)', 'Total (n\xa0=\xa01,015)', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6') 2
('Parameter', 'Model one outcome: grade 0.5 fracture (borderline)', 'Model two outcome: grade one fracture (mild)', 'Model three outcome: grade two fracture (moderate)', 'Model four outcome: grade three fracture (severe)') 2
('Parameter', 'Model 1', 'Model 2', 'Model 3', 'Model 4', 'Model 5', 'Model 6') 2
('Resource', 'Designation', 'Source or reference', 'Identifiers', 'Additional information') 2
('Reagent type or resource', 'Designation', 'Source of reference', 'Identifiers', 'Additional information') 2
('Characteristic \\ cluster number', 'Cluster 1', 'Cluster 2', 'Cluster 3') 2
('Dataset KRAS4b', 'Diffusion coefficient (µm2/s)', 'Occupancy (%)', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6') 2
('Donor genotype (neutrophil)', 'Recipient genotype (endothelium)', 'Mice', 'Venules', 'Diameter (μm)', 'Leukocyte counts (106 cells/ml)', 'Mean blood velocity (mm/s)', 'Newtonian wall shear rate (s−1)') 2
('Strain name', 'Genotype', 'Reference') 2
('Unnamed: 0', 'Younger (Y)', 'Older (O)', 'Unnamed: 3', 'Unnamed: 4') 2
('Unnamed: 0', 'Amplitude', 'Latency', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8', 'Unnamed: 9', 'Unnamed: 10') 2
('Measure', 'LA (\xa0=\xa017)', 'HA (\xa0=\xa017)', 'Group comparisons', 'Effect size', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7') 2
('Parameter', 'Variable', 'Value') 2
('Characteristic', 'TBDM', 'TB', 'P value') 2
('Sample treatment', 'Asx D/L', 'Glx D/L', 'Ser D/L', 'Ala D/L', 'Val D/L', 'Unnamed: 6') 2
('Primers used for quantitative PCR', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3') 2
('Reagent type (species) Or resource', 'Designation', 'Source or reference', 'Identifiers', 'Additional information') 2
('Song trait', 'One rate', 'Two rates', 'p-value') 2
('Song trait', 'Two rates', 'Three rates', 'p-value') 2
('Reconstruction', 'Unnamed: 1') 2
('Unnamed: 0', 'WT - Mg2+', 'WT\xa0+\xa0CTD Mg2+', 'WT - EDTA', 'WT\xa0+\xa0CTD - EDTA') 2
('Source', 'Target (wij)') 2
('Target', 'Fwd. primer', 'Rev. primer') 2
('Region I → region J', 'Mean ΔI\u2004→\u2004J', 'Se', 'T', 'N', 'P', 'adj. P') 2
('Unnamed: 0', 'Proteins Combinations', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8') 2
('Reagent type', 'Designation', 'Reference', 'Identifier') 2
('Reagent type (species) or resource', 'Designation', 'Source', 'Identifier', 'Additional information') 2
('Unnamed: 0', 'Sum of squares', 'Mean square', 'Numerator DF', 'Denominator DF', 'F', 'p-value', 'Unnamed: 7') 2
('Unnamed: 0', 'True value (ml)', 'Corrected prediction (ml)', 'Difference (ml)', '% difference') 2
('Variable', 'Description') 2
('Gene', 'Hypothesis log-likelihood', 'Unnamed: 2', 'Site class 0', 'Site class 1', 'Site class 2a', 'Site class 2b', 'LRT statistic') 2
('Factor', 'χ2', '-log p-value') 2
('Gene', 'Full name', '-log(p)*', 'Function') 2
('Cic DNA motif', 'Brain region', 'Motif occurrence', 'Down-Regulated', 'Shuffled', 'p-value', 'q-value') 2
('Contrast', 'Brain region', 'Effect size') 2
('Experiment 1', 'Baseline', 'Early clamp', 'Late clamp', 'No feedback') 2
('Gene name', 'Mutations', 'Normalized regrowth (24 hr)', 'N', 'P value', 'Molecular function', 'Closest human Genea') 2
('Parameter', 'Symbol', 'Value') 2
('Reagent type (species) or resource', 'Designation', 'Source or reference') 2
('Strain', 'Genotype') 2
('Fly stock', 'Description') 2
('Unnamed: 0', 'Preparation', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4') 2
('Reaction number', 'Reaction') 2
('Parameter', 'Units', 'Best-fit', 'Lower bound', 'Upper bound') 2
('Meta-analysis', 'K', 'Meta-analytic mean [95% CrI]', 'I2population ID [95% CrI] (%)', 'I2study ID [95% CrI] (%)', 'I2overall [95% CrI] (%)', 'Egger’s regression [95% CrI]') 2
('Meta-regression', 'Estimates', 'Mean [95% CrI]') 2
('Region of sampling', 'Countries (N)', 'Sequences (N, %)') 2
('Region of sampling', 'Monophyletic clusters (N)', 'Clustered sequences (N, %)') 2
('Unnamed: 0', 'SRR 3883773', 'SRR 3883772', 'SRR 3883758', 'SRR 3883771', 'SRR 3883770', 'SRR 3883769', 'SRR 3883768', 'SRR 3883767', 'SRR 3883765', 'SRR 3883764', 'SRR 3883763', 'SRR 3883762') 2
('Construct', 'N', 'Overall Kd (μM)', 'Overall ΔH (kcal/mol)', 'Overall TΔS (kcal/mol)', 'Overall ΔG (kcal/mol)') 2
('Alias', 'Gender', 'Age', 'Handedness') 2
('Deletion mutation', 'Amino acids', 'Primers', 'Sequences') 2
('Model and Foreground†', 'ΔAIC‡', 'lnL', 'Parameters', 'Null', 'P [df]', 'Unnamed: 6', 'Unnamed: 7') 2
('Model', 'lnL', 'Parameters1', 'Null', 'P [df]2', 'Δ AIC§', 'Unnamed: 6', 'Unnamed: 7') 2
('Time window', 'Functional form', 'Coefficient (95% CI)', 'p-value') 2
('Unnamed: 0', '3 months', '9 months', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6') 2
('Change in GS–CS+ representational distance', 'β', 'SE', 't', 'p') 2
('Unnamed: 0', 'EC50 (µM) [conf. int.]*', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6') 2
('Unnamed: 0', '[σE,\u2006x,σE,\u2006y,σE,\u2006z]', 'NE', 'ηE', 'wE,\u2006init', 'NEf') 2
('Unnamed: 0', '[σI,\u2006x,σI,\u2006y,σI,\u2006z]', 'NI', 'ηI', 'wI,\u2006init', 'NIf') 2
('Unnamed: 0', 'tsim', 'L') 2
('Fly #', 'bMD', 'bMR', 'bER', 'bED', 'T0', 'TM', 'TE', 'HM', 'HE', 'Error') 2
('Variables', 'Odds ratio', '95% CI', 'Z value', 'P value', 'Unnamed: 5') 2
('Cell name', 'TV58g', 'TV50a', 'MS14i', 'MS19b', 'AJ50j', 'AJ50h', 'AJ44j', 'MS74b', 'Unnamed: 9') 2
('Construct (plants analysed)', 'No. of plants Nin positive', '% of plants with Nin induction', 'No. of nodulated plants', '% of nodulated plants') 2
('Unnamed: 0', 'Mice injected with AAV-GFAP-mCherry-Cre', 'Mice injected with AAV-hSyn-mCherry-Cre') 2
('ID', 'Species', 'Common name', 'Family', 'Diet type', 'Biomass [gr]', 'References') 2
('Region', 'Z score', 'X', 'Y', 'Z', 'K voxels', 'P') 2
('Probe', 'Sequence (5’ to 3’)', 'Oligo name') 2
('p*', 'k', 'T', 'Z', 'MNI coordinates (mm)', 'Region mask', 'Unnamed: 6', 'Unnamed: 7') 2
('Unnamed: 0', 'Unnamed: 1', 'LD-SP/SP', 'LD-SP/PIP', 'LD-PIP/PIP', 'LD-PIP/SP') 2
('ENSEMBL gene ID', 'ENSEMBL gene name', 'Protein type', 'Fold-change (decrease)', 'Expression domain') 2
('Property', 'Unnamed: 1', 'Motor unit type', 'WT', 'SOD1G93A', 'Diff.') 2
('Property', 'Unnamed: 1', 'Motor unit type', 'FUSWT', 'FUSP525L', 'Diff.') 2
('Design', 'Mutations') 2
('Unnamed: 0', 'AIC', 'BIC', 'Unnamed: 3', 'Unnamed: 4') 2
('Model', 'k', 'Mean r2', 'Median r2', 'BIC', 'BIC-BICmodel1') 2
('Vaccine coverage', 'εS', 'εI', 'Incidence (Herds)') 2
('Term', 'Enrichment Score') 2
('Unnamed: 0', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Frequency (random expectancy x 10–3)', 'Unnamed: 7') 2
('Significance t-test 2-tail', 'wild-type R1', 'wild-type R2', 'wild-type R3', 'wild-type R4', 'wild-type R5', 'wild-type R6') 2
('Country', 'Targeting priority', 'Rationale for targeting priority', 'Key messages', 'Use of mass media', 'Use of IPCs', 'Use of advocates') 2
("Box's Test of Equality of Covariance Matrices", "Box's M", 'F', 'df1', 'df2', 'p-value') 2
("Mauchly's Test of Sphericity", "Mauchly's W", 'df', 'χ²', 'p-value') 2
('pair-wise post-hoc LSD tests', 'p-value') 2
('Unnamed: 0', 'CYD dengue vaccine group', 'Control group', 'Vaccine efficacy Observed', 'Vaccine Efficacy with imputation for missing genotype data', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8', 'Unnamed: 9', 'Unnamed: 10', 'Unnamed: 11') 2
('Unnamed: 0', 'Unnamed: 1', 'Estimated interaction with observed vaccine efficacy', 'Estimated interaction with vaccine efficacy with imputation', 'Unnamed: 4', 'Unnamed: 5') 2
('Microarray replicates', '21 fear-induced miRNAs', '21 random miRNAs') 2
('Trait', 'Type', 'Subcategories') 2
('Variables', 'Patients', 'Unnamed: 2') 2
('Unnamed: 0', 'Geometric mean (95% CI)', 'Unnamed: 2', 'Unnamed: 3') 2
('Sample', 'Mean slope', 'SD', 'N') 2
('Unnamed: 0', 'Unnamed: 1', 'Undulation frequency (Hz)', 'Forward velocity (μm/s)', 'Reverse velocity (μm/s)', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8', 'Unnamed: 9', 'Unnamed: 10') 2
('Group', 'Effect size d', 'A priori power', 'Group 1 sample size') 2
('Cells', 'Group 1 across time', 'Group 2 across time', 'Unnamed: 3', 'Effect size f', 'A priori power', 'Samples per group') 2
('Unnamed: 0', 'Value', 'Std. error', 'DF', 't', 'p', '(Intr)') 2
('Symbol', 'Fold- Change', 'P-Value', 'Gene name') 1
('Gene symbol', 'Fold-change', 'p-Value', 'Gene name') 1
('Symbol', 'Fold-change', 'p-Value', 'Gene name') 1
('Group', 'Statistics', 'Resting membrane potential (mV)', 'Access resistance (mΩ)', 'Input resistance (mΩ)', 'mAHP (mV)', 'sAHP (mV)', 'Action potential amplitude (mV)', 'Action potential half width (ms)', 'Action potential threshold (mV)', 'Sag ratio') 1
('Group', 'Statistics', 'Resting membrane potential (mV)', 'Access resistance (mΩ)', 'Input resistance (mΩ)', 'mAHP (mV)', 'sAHP (mV)', 'Action potential amplitude (mV)', 'Action potential half width (ms)', 'Action potential threshold (mV)') 1
('Unnamed: 0', 'Vps45', 'Vps45–Tlg21-310', 'Vps45–Tlg2', 'Vps45V306D,F335R–Tlg2') 1
('Protein', 'Tag', 'Purification steps') 1
('EtOH treatment:', 'E7.25', 'E7.5', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6') 1
('Treatment', 'Genotype (# embryos with HPE/total (%))*', 'Unnamed: 2', 'Unnamed: 3') 1
('Treatment', 'Genotype (# affected/total (%))*', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4') 1
('Rank', 'Acronym', 'Common meaning(s)', 'Count') 1
('Error', 'Count', 'Average error (%)', 'Upper limit on error (%)') 1
('Reason', 'Titles', 'Abstract') 1
('Unnamed: 0', 'Holocomplex at low [Ca2+] PDB: 6XQN EMDB: EMD-22290', 'Ca2+-bound MICU1-MICU2 PDB: 6XQO EMDB: EMD-22291') 1
('Guideline', 'Examples') 1
('Unnamed: 0', 'ggCLC-7', 'hsCLC-7/OSTM1', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5') 1
('Score', 'Activity', 'General condition', 'Behaviour') 1
('Data collection and processing', 'Unnamed: 1', 'Unnamed: 2') 1
('Role', 'HCW asymptomatic screening arm', 'HCW symptomatic screening arm', 'Total number of hospital employees') 1
('Week commencing', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8') 1
('General', 'ADP (n\xa0=\xa0215)', 'HFF (n\xa0=\xa092)', 'Delayed (n\xa0=\xa085)') 1
('Group', 'Anomalure*', 'Duiker†', 'Squirrel‡') 1
('Coded level', 'Term', 'Estimate', 'SE', '95% CI') 1
('Drug', 'Target', 'Predicted Effect') 1
('Prenatal characteristics', 'Case Diabetes at follow up', 'Control No Diabetes at follow up', 'p-value') 1
('Neurological manifestations', 'Observations', 'Supportive neuro-diagnostic measures', 'Treatment', 'References') 1
('Unnamed: 0', 'Homo sapiens', 'Mus musculus') 1
('Unnamed: 0', 'Unnamed: 1', 'IC50 values (nM)', 'Unnamed: 3') 1
('Unnamed: 0', 'ENaCFL', 'Unnamed: 2', 'Unnamed: 3') 1
('Unnamed: 0', 'MZ (n\xa0=\xa0150)', 'DZ (n\xa0=\xa0110)', 'Statistic', 'p-value') 1
('TG class', 'Number of associated lipids', 'Number of transcript associations') 1
('Biological Pathways', 'Gene Transcripts*', 'Relevance to the CNS') 1
('Lipid', 'Beta', 'SE', 't', 'p-value', 'h2', 'p-value for h2') 1
('Study and cohort details', 'Findings', 'Reference') 1
('Journal specialty', '2019 papers', 'COVID-19 papers', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8') 1
('Age', 'Proportion of cases', 'Pr(hospitalisation | confirmed case)', 'Pr(ICU admission | confirmed case)') 1
('Unnamed: 0', 'Imported cases contributing to transmission', 'Unnamed: 2', 'Unnamed: 3') 1
('Parameter', 'Definition', 'Value/Prior distribution') 1
('COVID-19 probability criteria', 'Unnamed: 1') 1
('Stratification of COVID-19 probability', 'Implications for exclusion from work', 'Unnamed: 2') 1
('Unnamed: 0', 'Clinical area', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5') 1
('Red (high risk)', 'Amber (medium risk)', 'Green (low risk)') 1
('Unnamed: 0', 'PPE ‘Scenarios’', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4') 1
('Patient ID', 'Type', 'HCW_ward', 'Ct value', 'Seq Attempted', 'Seq_ID', '% Sequence Coverage', 'Average Seq Depth', 'PANGOLIN lineage') 1
('Unnamed: 0', 'Distribution of COVID-19 clinical probability scores for individuals with a positive SARS-CoV-2 test result', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4') 1
('Strain + treatment', 'Fluorescent dye', 'Mean emission (AU)', 'SD of emission\xa0(AU)', 'p-value (T-test)', 'Voltage estimates (mV)', 'Voltage estimate variance') 1
('Parasite', 'FTSH1 Peptidase Motif (partial amino acid sequence)', 'Actinonin IC50 (µM)') 1
('Genotype', 'Larvae', 'Dead embryos', 'Total (embryo output)') 1
('Strain name', 'Genotype', 'Purpose') 1
('Unnamed: 0', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3', 'Mendelian Randomization estimates', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7') 1
('Unnamed: 0', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3', 'Mendelian randomization estimates', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7') 1
('Unnamed: 0', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4', 'Mendelian randomization estimates', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8') 1
('Unnamed: 0', 'Therapy', 'Target', 'Outcome', '# SNPs', 'Measure', 'Estimate', '95% CI', 'p-value') 1
('Country', 'Preprints, senior author (proportion)', 'Preprints, any author (proportion)') 1
('Unnamed: 0', 'hFzd5ICL3BRIL/anti-BRIL Fab/anti-Fab Nb (EMD-21927) (PDB ID: 6WW2)') 1
('Primer', '5’-Sequence-3’', 'Source') 1
('Strain', 'Description', 'Source') 1
('Symptom (p-value<1E-10 in gray)', 'COVID+ Count (%) (N\xa0=\xa02317)', 'COVID- Count (%) (N\xa0=\xa074850)', '(COVID+/COVID-) Relative Ratio', 'Relative ratio (95% CI)', '2-tailed p-value', 'BH-corrected p-value') 1
('Symptom', 'COVID-19 (N\xa0=\xa077167)', 'Day = −7', 'Day = −6', 'Day = −5', 'Day = −4', 'Day = −3', 'Day = −2', 'Day = −1') 1
('Unnamed: 0', 'VASH1-SVBP-microtubule') 1
('Mutation', '* FRET %', 'Phenotype') 1
('Enzymes', '5 mM H2O2', '[Enzyme]', 'kobs (min−1)') 1
('Process', 'Cell\xa0cycle\xa0regulation', 'HIF\xa0pathway', 'Immune\xa0response', 'Quality\xa0Control', 'Unnamed: 5') 1
('Assoc score↓', 'Cohen’s d (+)', 'Mann-W U norm. (-)', 'Logistic log loss (-)', 'Logistic Brier score (-)') 1
('Unnamed: 0', 'Mean (mg/dl)', 'Lower 95% confidence interval', 'Upper 95% confidence interval') 1
('Strains or plasmids', 'Relevant genotype or phenotype', 'References') 1
('Unnamed: 0', 'EMC2•EMC9', 'EMC2•EMC9.1') 1
('Unnamed: 0', 'Dataset 1', 'Dataset 2', 'Dataset 3', 'Dataset 4', 'Dataset 5') 1
('Reference', 'Virus', 'Antibody source', 'Number of patients', 'Efficacy', 'Safety') 1
('Species', 'Collection', 'ID', 'Estimated age', 'CRL/Max length') 1
('Aco_ARE_Oligo', 'Sequence') 1
('Receptor', 'Aco', 'Cyp450', 'Strain') 1
('Unnamed: 0', 'SeMet AvaR1', 'AvaR1-avenolide', 'AvaR1-DNA') 1
('Unnamed: 0', 'Complex', 'Subunit', 'Gene', 'Mitochondrial localization', 'Respiratory specific localization', 'Unnamed: 6') 1
('Unnamed: 0', 'Recording site', 'Number of recording sessions', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6') 1
('Behavioral state', 'Slow-Delta', 'Alpha', 'Beta', 'Spindle activity', 'Unnamed: 5') 1
('Normalized V/[E] (min−1)', 'HDAC1', 'CoREST(RCOR1)', 'MiDAC(MiDEAS)', 'NuRD(MTA1)', 'Sin3B(Sin3)', 'SMRT(NCoR2)') 1
('V/[E] (min−1)', 'HDAC1', 'CoREST(RCOR1)', 'MiDAC(MiDEAS)', 'NuRD(MTA1)', 'Sin3B(Sin3)', 'SMRT(NCoR2)') 1
('Design', 'Targeted Antigens', 'Experimental Molecular Weight (kDa)', 'Target Molecular Weight (kDa)', 'SAXS X value', 'Resolution, backbone r.m.s.d. structure (Å, Å)') 1
('Condition', 'Plants tested KM', 'Plants counted KM', 'Plants counted MG') 1
('Dataset', 'PlantSeg (default parameters)', 'PlantSeg (tuned parameters)', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6') 1
('Method', 'Peripodial', 'Proper disc') 1
('Network and resolution', 'Accuracy (%)', 'Precision', 'Recall', 'F 1') 1
('Segmentation', 'ARand', 'VOIsplit', 'VOImerge') 1
('Segmentation', 'ARand', 'VOIsplit', 'VOImerge', 'Accu. (%)', 'ARand.1', 'VOIsplit.1', 'VOImerge.1', 'Accu. (%).1') 1
('Dataset', 'Generic confocal (Default)', 'ds3 confocal', 'ds3 confocal + rescaling', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8', 'Unnamed: 9') 1
('ds3 confocal + rescaling', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8', 'Unnamed: 9') 1
('ds3 confocal + rescaling', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8') 1
('Parasite line', 'No. of MG sporozoites', 'No. of HL sporozoites', 'No. of SG sporozoites', 'SGS pos./total counts', 'SGS/MGS') 1
('Parasite line', 'Route of inoculation', 'Infected Mice‡', 'Prepatency (days)') 1
('Parasite lines', 'Infected mice*') 1
('Coating agent', 'Concentration', 'Protocol') 1
('Unnamed: 0', 'λabs,max (nm)', 'λem,max (nm)', 'QY') 1
('Symbol', 'log2FC (KO/WT)', 'Padj', 'dEJ', 'uORF', "3'UTR length", 'Symbol.1', 'log2FC (KO/WT).1', 'Padj.1', 'dEJ.1', 'uORF.1', "3'UTR length.1") 1
('Patient no.', 'Disease', 'Surgery side', 'Trajectories', 'Gender', 'Age at onset', 'Age at surgery', 'Disease duration (y)') 1
('Unnamed: 0', 'RMP, mV', 'Rin, MΩ', 'N, Cells') 1
('Unnamed: 0', 'mKate2 Frequency, mean ±SEM', 'BIN1-mKate2 Frequency, mean ±SEM', 'mKate2 Amplitude, mean ±SEM', 'BIN1-mKate2 Amplitude, mean ±SEM') 1
('Sample prepared @', 'DHBc 2 weeks', 'DHBc 10 months', 'DHBcR124EΔ 2 weeks', 'DHBc+FkpA 2 weeks', 'DHBcR124E 3 months', 'Unnamed: 6') 1
('Unnamed: 0', 'DHBc', 'DHBcR124E∆') 1
('Mouse', 'Recording sessions', 'Trials/session', 'Go trials/session', 'No-Go trials/session', 'Recorded cells/session') 1
('Mouse', 'Approach cells', 'Odor sampling cells', 'Moving cells', 'Waiting cells', 'Drinking cells', 'Others', '(Total)') 1
('Mouse', 'Recording sessions', 'Trials/session', 'Eating trials/session', 'No-Eating trials/session', 'Recorded cells/session') 1
('Mouse', 'Approach cells', 'Eating cells', 'Removal cells', 'Others', '(Total)') 1
('KD', 'kon, M−1 s−1', 'tequil*', 'Unnamed: 3') 1
('Unnamed: 0', 'Equilibrium*', 'Kinetic', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5') 1
('Unnamed: 0', 'NH4+', 'K+', 'Unnamed: 3', 'Unnamed: 4') 1
('Unnamed: 0', 'Z (Å)', 'Free energy (kJ/mol)', 'Unnamed: 3', 'Unnamed: 4') 1
('Without intermediates', 'Incubation\xa0(days)', 'Serial interval\xa0(days)', 'Mean difference\xa0(days)', 'Portion pre-symptomatic(-)') 1
('Tianjin', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3') 1
('Data', 'Number of\xa0Cases', 'Mean Incubation\xa0Period (days)', 'Mean Serial\xa0Interval (days)', 'Reference') 1
('Residue', 'Residues in other domains within 5 Å', 'Type of interaction', 'Mutation chosen') 1
('Data Collection', 'Phasing data set', 'Refinement data set') 1
('Option', 'Example(s)') 1
('Group/Parameter', 'SD-control', 'SD-TMAO', 'P', 'Unnamed: 4') 1
('Group/ Parameter', 'SHHF-control', 'SHHF-TMAO', 'P', 'Unnamed: 4') 1
('Group/ Parameter', 'ISO-control', 'ISO-TMAO', 'P', 'Unnamed: 4') 1
('Unnamed: 0', 'SO', 'dSP', 'sSP', 'SR', 'SLM', 'All layers') 1
('Unnamed: 0', 'Mean', 'SEM') 1
('Unnamed: 0', 'Spindle count', 'Spindle density (per min)', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6') 1
('Unnamed: 0', 'MNI coordinates', 'Unnamed: 2', 'Unnamed: 3') 1
('Parameter', 'Time point', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5') 1
('Probe set ID', 'Gene symbol', 'Gene title', 'Day 6 vs. baseline (fold change)') 1
('Probe set ID', 'Gene symbol', 'Gene title', 'End of treatment vs. baseline (fold change)') 1
('Probe set ID', 'Gene symbol', 'Gene title', 'Fold change') 1
('Go id', 'GO term', 'P-Value', '% Associated Genes', 'Associated genes found') 1
('Atlas label', 'MNI coordinates', 'Classification % (SEM)', 'Unnamed: 3', 'Unnamed: 4') 1
('Atlas label', 'MNI coordinates', 'Beta (SEM)', 't-value', 'Unnamed: 4', 'Unnamed: 5') 1
('Molecule', 'Abbreviation', 'Function', 'Accession number', 'Reference') 1
('Unnamed: 0', 'Time accuracy', 'Grid accuracy', 'Requirements') 1
('Unnamed: 0', 'PyDDM', 'HDDM', 'EZ-Diffusion', 'CHaRTr', 'DMAT', 'fast-dm') 1
('Gene', 'Description', 'Proposed role', 'Read count', 'Log2 change vs NG2-dsRed+', 'Log2 change vs S100β-GFP+', 'Reference') 1
('Antibody name', 'Immunogen', 'Labeling specificity', 'Source', 'Concentration') 1
('Name', 'dm6 Coordinates', 'Associated genes', 'Length (kb)', 'Nurse cell state', 'Follicle cell state', 'S2 cell state') 1
('RNAi Lines', 'Source', 'Stock number', 'Insertion site', 'Vector:', 'Other info:') 1
('Epitope', 'Species', 'Source/Reference', 'Concentration for IF') 1
('Oligo name', 'Sequence (5’-3’)') 1
('Accession ChIP epitope or Input', 'sample', 'Unnamed: 2', 'citation') 1
('Breast cancer cell line/Patient sample', 'Known mutations', 'Intrinsic subtype', 'Receptor status', 'Responsive to Unacylated Ghrelin') 1
('Parameter', 'Value', 'Units') 1
('Mac I cluster top 35 differentially expressed genes', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3') 1
('Mac II cluster top 35 differentially expressed genes', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3') 1
('Mac III cluster top 35 differentially expressed genes', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3') 1
('Mac IV cluster top 35 differentially expressed genes', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3') 1
('Mac V cluster top 35 differentially expressed genes', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3') 1
('Mig-DC versus cDC2 cluster top 20 differentially expressed genes', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3') 1
('Mig-DC versus cDC1 cluster top 20 differentially expressed genes', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3') 1
('cDC2\xa0versus cDC1 cluster top 20 differentially expressed genes', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3') 1
('Mast cell top 25 differentially expressed genes', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3') 1
('Basophil top 25 differentially expressed genes', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3') 1
('Neutrophil top 25 differentially expressed genes', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3') 1
('Unnamed: 0', 'TthV/A-ATPase', 'V1EGdasol', 'Isolated Vo') 1
('Unnamed: 0', 'Matched twin cohort: twins exposed vs. unexposed to loss of a co-twin', 'Twin-sibling cohort: twins exposed to loss of a co-twin vs. their full siblings', 'Unnamed: 3', 'Unnamed: 4') 1
('Model information', 'Matched twin cohort: twins exposed vs. unexposed to loss of a co-twin', 'Twin-sibling cohort: twins exposed to loss of a co-twin vs. their full siblings', 'Unnamed: 3', 'Unnamed: 4') 1
('Unnamed: 0', 'Twins who lost a monozygotic twin vs. matched unexposed monozygotic twins or their full siblings', 'Twins who lost a dizygotic twin vs. matched unexposed dizygotic twins or their full siblings', 'Unnamed: 3', 'Unnamed: 4') 1
('Purpose', 'Amplifies', 'Primers') 1
('Group', 'n', '100 pA (%)', 'p-value', 'n.1', '150 pA (%)', 'p-value.1', 'n.2', '200 pA (%)', 'p-Value') 1
('Group', 'n', 'Session 1 (% Late CR’s)', 'p-Value', 'Session 5 (% Late CR’s)', 'p-Value.1') 1
('Group', 'n', '100 pA (%)', 'p-Value', 'n.1', '150 pA (%)', 'p-Value.1', 'n.2', '200 pA (%)', 'p-Value.2') 1
('Group', 'n', 'Probability (%)', 'p-Value') 1
('Group', 'n', 'Mean Firing Rate (spikes/sec)', 'p-Value', 'Peak Firing Rate (spikes/sec)', 'Latency to Onset (s)', 'p-Value.1') 1
('Group', 'n', 'Mean Firing Rate (spikes/sec)', 'p-Value', 'Peak Firing Rate (spikes/sec)', 'Firing Rate Across Time p-value', 'Latency to Onset (s)', 'p-Value.1') 1
('Group', 'n', 'Mean firing rate (spikes/sec)', 'p-Value') 1
('Group', 'n', 'ADP Amplitude (mV) pre', 'ADP Amplitude (mV) post', 'Pre-Post p-value', 'AUC (mV*ms) pre', 'AUC (mV*ms) post', 'Pre-Post p-value.1') 1
('Group', 'RMP (mV)', 'Rinput (MΩ)', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5') 1
('Motor coordination (time to fall, s)', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6') 1
('Parameter (general)', 'Description') 1
('(b)', 'IBM (well-mixed)', 'IBM (d\xa0=\xa010)', 'IBM (d\xa0=\xa01)', 'IBM (d\xa0=\xa00)') 1
('Predictor*', 'Estimated effect†', 'Adjusted P-value (α\xa0=\xa00.05)‡', 'Variance explained§', 'Unnamed: 4') 1
('Unnamed: 0', 'Unnamed: 1', 'Unnamed: 2', '37°C*', '25°C*', 'Unnamed: 5', 'Unnamed: 6') 1
('Specificity', 'Positions*') 1
('Parameter', 'male', 'female', 'p values', 'Unnamed: 4', 'Unnamed: 5') 1
('Subunit name', 'Uniprot ID', 'Chain ID', 'Total residues', 'Atomic residues', 'Poly-Ala', 'Un-modeled residues', '% atomic', 'TMH', 'Identified RNA editing sites*', 'Ligands, lipids') 1
('Location', 'Subunit', 'Mammals', 'Y. lipolytica', 'V. radiata') 1
('Subunit 1', 'Subunit 2', 'Inter-subunit interface', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8') 1
('Variable', 'Value', 'Source') 1
('Strain', 'Nuclear genotype', 'mtDNA', 'Source') 1
('Unnamed: 0', 'Gene coding for', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4') 1
('Condition tested', 'CFUs total', 'Num of rep', 'Med td (hrs)', 'IQR td (hrs)', 'Med T-Lag time (hrs)', 'IQR T-Lag time (hrs)', 'Med T-Exp (hrs)', 'IQR T-Exp (hrs)', 'Med Num Dbl', 'IQR Num Dbl') 1
('Total number of sample reads (number of trials)', 'Number of D94G SNPs detected (number of success) p=r', 'Ratio of resistant cells to sensitive cells (probability of trial success)', '95% Confidence interval [Low]-[High]') 1
('Unnamed: 0', 'Unnamed: 1', 'QRDR', 'QRDR.1', 'Unnamed: 4') 1
('Performance measure', 'Relative performance after different alignments') 1
('S. cerevisiae', 'H. sapiens') 1
('Protein complex', 'Plasmid name', 'Names used in this paper', 'Proteins expressed*', 'Vector', 'References') 1
('Case', 'λ', 'γ', 'r') 1
('Case', 'ω̂', 'λ1/λ2') 1
('Unnamed: 0', 'SEC-SAXS+SEC-SANS', 'SAXS', 'Unnamed: 3', 'Unnamed: 4') 1
('Data for integration', 'Srel', 'χ2', 'Unnamed: 3') 1
('ROI', 'Contrast', 'Mean', 'SEM', 't', 'P') 1
('ROI', 'Space', 'Mean', 'SEM', 'P') 1
('Condition', 'tIF (s)', 'tOF (s)') 1
('Unnamed: 0', 'GDP', 'GTP') 1
('Unnamed: 0', 'Pmol/mg protein', 'Unnamed: 2') 1
('Compound', 'RT (min)', 'Quantitation transition (CE)', 'Confirmation transition (CE)') 1
('Hox protein', 'DRG expression', 'pSN expression', 'RC level', 'Hox co-expression') 1
('Dataset', 'Temporal range', 'Nisolates', 'Geographic range', 'Metadata available', 'SRA study ID/Reference') 1
('Variant', 'Unnamed: 1', 'Genetic', 'Phenotypic', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6') 1
('Variant', 'Diagnostic assay', 'Documented association with diagnostic failure', 'Prevalence in dataset', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7') 1
('Variant', 'Reference accession', 'Coordinates of genetic locus in reference entry', 'Position of mutation in reference locus') 1
('Unnamed: 0', 'In Lab', 'Online Version 3', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8') 1
('Unnamed: 0', 'Version 1', 'Version 2', 'Version 3', 'Version 4', 'Version Effect', 'Paranoia Effect', 'Interaction', 'Unnamed: 8', 'Unnamed: 9', 'Unnamed: 10', 'Unnamed: 11', 'Unnamed: 12', 'Unnamed: 13', 'Unnamed: 14') 1
('Unnamed: 0', 'Block effect †', 'Group effect‡', 'Interaction effect', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6') 1
('Unnamed: 0', 'Group effect †', 'Interaction effect‡', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8') 1
('Unnamed: 0', 'Block', 'Group', 'Version', 'Block*group* Version', 'Group*version', 'Block*group', 'Block*version', 'Unnamed: 8', 'Unnamed: 9', 'Unnamed: 10', 'Unnamed: 11', 'Unnamed: 12', 'Unnamed: 13', 'Unnamed: 14') 1
('Unnamed: 0', 'ω3', 'µ30', 'κ', 'ω2', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8', 'Unnamed: 9') 1
('Item', 'Prompt') 1
('Unnamed: 0', 'Win-switch rate', 'U-value', 'Lose-stay rate', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7') 1
('Unnamed: 0', 'Low Paranoia (n=56)†', 'High Paranoia (n=16)†', 'Paranoia Group Effect‡', 'Paranoia x Block Effect‡', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8', 'Unnamed: 9', 'Unnamed: 10', 'Unnamed: 11') 1
('Unnamed: 0', 'In lab', 'Online', 'Rats') 1
('Questionnaire/subscale', 'Experiment 1', 'Experiment 2') 1
('Discipline', 'Journal A', 'Journal B', 'Journal C', 'Journal D') 1
('Cluster', 'Location', 'Size (Mb)', '# of KRAB-ZFPs*', 'ChIP-seq data') 1
('Virus characterization', 'Pair 1 viruses', 'Pair 2 viruses', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5') 1
('HSA21p', 'gene start', 'HSA21q Paralog', 'gene start.1') 1
('Issues', 'TcMAC21', 'Tc1', 'Ts65Dn', 'Ts1Cje', 'Dp(16)1Yey/+ or Dp1Tyb', 'Dp(10)1Yey/+; Dp(16)1Yey/+; Dp(17)1Yey/+') 1
('Unnamed: 0', 'Experiment', 'Genetic background', 'Age', 'Eu', 'TcMAC21') 1
('Unnamed: 0', 'Gene or aim', 'Primer name (forward)', "Forward primer(5'−3')", 'Primer name (reverse)', "Reverse primer(5'−3')", 'Product size') 1
('Group', 'Age (years)', 'Chronicity (years)', 'LHPC volume (mm3)', 'RHPC volume (mm3)', 'LHPC % volume loss relative to CTLa', 'RHPC % volume loss relative to CTLa', 'WASI') 1
('Unnamed: 0', 'HPC', 'CTL', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'HPC1', 'HPC2', 'HPC3', 'HPC4') 1
('Unnamed: 0', 'Wild type (EMDB-10429) (PDB 6TAX)', 'R4753K (EMDB-10430) (PDB 6TAY)') 1
('Unnamed: 0', 'Nucleosome-CHD4 complex (EMD-10058) (PDB 6RYR)', 'Nucleosome-CHD42 complex (EMDB-10059) (PDB 6RYU)') 1
('Unnamed: 0', 'Mutated Residue', 'Location', 'Predicted effect based on structure', 'Biochemical observations') 1
('Notation/Terminology', 'Physical Interpretation', 'Definition') 1
('Unnamed: 0', 'AII #1', 'AII #2', 'AII #3', 'Mean\xa0±SD') 1
('Unnamed: 0', 'Axons\xa0(Figure 3C2)', 'Cell 1 (Figure 4)', 'Cell 2 (Figure 4)') 1
('Name', 'Relevant characteristics', 'Source*/reference') 1
('Name', 'Sequence (5´→3´)') 1
('Unnamed: 0', 'Chr coor (bp)', 'Size (kb)', 'Size compared to native centromere (%)', 'GC%', 'Genes spanned by neocentromere', 'Gene ID', '% covered by Neocentromere', 'Exons inside neocentromere') 1
('Target name', 'Primer name', "Sequence (5'>3')", 'Description', 'Reference') 1
('Unnamed: 0', 'Unnamed: 1', 'AMPA', 'Kainate', 'NMDA', 'GABAA', 'GABAB', 'GABAA/BZ', 'M₁', 'M₂', 'M₃', 'α₁', 'α₂', '5-HT₁A', '5-HT₂', 'A₁', 'D₁') 1
('Transmitter', 'Receptor', 'Ligand (nM)', 'Property', 'Displacer', 'Incubation buffer', 'Pre-incubation', 'Main incubation', 'Final rinsing') 1
('Exp.', 'Test type', 'Mean agreement', 'Chance') 1
('B56γ12-380', 'Titrant', 'KD (µM)*', 'ΔH (kcal/mol)', 'TΔS (kcal/mol)') 1
('Unnamed: 0', 'B56:KIF4ALE,PE*,†', 'B56:AIM1*,‡') 1
('Male Mice Facility trained 24/7', 'Group', 'Days under headfix protocol', 'Days with head-fixation', 'Total head-fixes', 'Total hours head-fixed', 'Head-fixes /day', 'Minutes head-fixed /day', 'Success rate GO trials of last 5 days [%]', 'Number of trials daily average based on 5 days at max success, all outcomes') 1
('Description', '#', 'Manufacturer', 'Part Number') 1
('Unnamed: 0', 'sample', '#dyes', '#NLSs', 'A', 'IMAX', 'τ', 'J', 'ΔG') 1
('Capsid', 'Diameter [nm]', 'F(R) [kBT]', 'ϵ [kBT]') 1
('Community', 'Intra-organizational activities', 'Inter-organizational activities') 1
('Key element', 'Teaching and learning principle') 1
('Unnamed: 0', 'Dataset 1', 'Dataset 2', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7') 1
('Unnamed: 0', 'Dataset 3 CALHM6_Ca2+', 'Dataset 4 CALHM2_Ca2+', 'Unnamed: 3') 1
('(A)', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4') 1
('Data set', 'Reference', 'Pathway', 'Pre/post', 'Freq.', 'Npulses', 'Experiment', '10 min', '15 min', '20 min', 'SD') 1
('(A)', 'Unnamed: 1', 'Forw.', 'Backw.', 'Unnamed: 4', 'Unnamed: 5', 'Forw..1', 'Backw..1') 1
('(B)', 'Unnamed: 1') 1
('Species', 'Unnamed: 1', 'Conc. (nM)', 'Species.1', 'Unnamed: 4', 'Conc. (nM).1', 'Species.2', 'Unnamed: 7', 'Conc. (nM).2') 1
('Specific NAIVE BDQ genes', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6') 1
('hk-MTB + PZA', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6') 1
('NDMM', 'Class', 'Conservation Pattern', 'fitMk model', 'SIMMAP changes', 'D', 'P (Ho: D\xa0=\xa00)', 'P (Ho: D\xa0=\xa01)', 'Phylogenetic interpretation') 1
('Unnamed: 0', 'TD males (N\xa0=\xa029)', 'Autistic males (N\xa0=\xa023)', 'TD females (N\xa0=\xa033)', 'Autistic females (N\xa0=\xa025)', 'Sex', 'Diagnosis', 'Sex* diagnosis') 1
('A: Neuron model', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3') 1
('Values of model parameters', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3') 1
('Parameter', 'Value used to generate data', 'Mean of inferred values', 'Std of inferred values') 1
('System', 'Chemical or nutrient', 'Unit1', 'Unit2', 'Quality criteria', 'Citation') 1
('Dataset', 'Variable', 'Publication bias p', 'Publication bias', 'Intercept', 'SE') 1
('Response', 'QM', 'Df', 'N', 'p-value') 1
('Dataset', 'Response', 'Predictor', 'Estimate', 'SE', 'Crit.value', 'Df', 'p-Value') 1
('Dataset', 'Response', 'Predictor', 'QM', 'p-value') 1
('Dataset', 'Response', 'Predictor', 'Std.est', 'Est.', 'SE', 'Crit.value', 'Df', 'p-value') 1
('Unnamed: 0', 'CSS', 'TGACv1', 'RefSeqv1.0', 'Durum wheat', 'Wild emmer wheat') 1
('Collection', 'Short description', 'Number of accessions', 'Genotyping', 'Data/seed availability', 'More information/Reference') 1
('Variety', 'Habit', 'Origin', 'Availability †') 1
('Onset', 'Unnamed: 1') 1
('Unnamed: 0', 'Unanimous', '2/3 agree', 'No consensus', 'P value') 1
('A.Reviewer agreement on human data', 'Unnamed: 1', 'Unnamed: 2') 1
('Year', 'Scenario', '95% CrI low', '50% CrI low', 'Median', '50% CrI high', '95% CrI high') 1
('Covariate', 'Interpretation') 1
('Scenario', 'Temperature rise (°C) [range]', 'CO2 concentrations (ppm)') 1
('Location', 'Sample size', 'Year', 'Reference') 1
('Parameter', '95% CrI low', 'Median', '95% CrI high', 'Meaning') 1
('Unnamed: 0', 'PKIACCEPTOR3', 'PKIACCEPTOR28', 'PKIACCEPTOR59', 'PKIDONOR-ACCEPTOR') 1
('Mutation', 'Sequence', 'V0.5 (mV)', 'Unnamed: 3', 'Unnamed: 4') 1
('Parameter', 'Best estimate (Used in Figure 2)', 'Plausible range (Used in Figure 3)', 'References and notes') 1
('GWAS trait', 'Number of eQTLs genes (background) with at least one GWAS hit', 'Number of MMnet genes with at least one GWAS hit', 'Frequency (%) eQTLs genes (background) with at least one GWAS hit', 'Frequency (%) MMnet genes with at least one GWAS hit', 'P-value MMnet enrichment over background (hypergeometric test)') 1
('Flight phase', 'Search', 'Approach', 'Buzz', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6') 1
('Translation model', 'Input(s)', 'rxy', 'SSIMxy') 1
('Gene', 'Description', 'Assay', 'Notes') 1
('Genome', 'Medium', 'Mean copy number', 'Minimum copy number*', 'Maximum copy number*') 1
('Genome', 'Medium', 'Gene', 'Mean copy number', 'Minimum number*', 'Maximum number*', 'Adjusted p-value†') 1
('Species', '#Tandem runs', 'Behavioral pattern', 'Sampling period (s)', '#Time steps', 'History length k') 1
('Species', 'Behavioral pattern', 'TL\u2004→\u2004F', 'TL\u2004→\u2004Fs', 'TF\u2004→\u2004L', 'TF\u2004→\u2004Ls', '${\\overset{\\sim}{T}}_{L\\rightarrow F}({\\overset{\\sim}{T}}_{F\\rightarrow L})$') 1
('Species', 'Behavioral pattern', 'H1:\xa0TL\u2004→\u2004F\u2004>\u2004TL\u2004→\u2004Fs', 'H1:\xa0TF\u2004→\u2004L\u2004>\u2004TF\u2004→\u2004Ls', 'H1:\xa0TL\u2004→\u2004F\u2004>\u2004TF\u2004→\u2004L', 'H1:\xa0TF\u2004→\u2004L\u2004>\u2004TL\u2004→\u2004F') 1
('Figure', 'Source', 'd.f.', 'Sum of squares', 'F-score', 'p-value') 1
('Unnamed: 0', 'Unnamed: 1', 'Spiking neurons P3-P10', 'Non-spiking P3-P10', 'Spiking plus non-spiking P3-P5', 'Spiking plus non-spiking P6-P8', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8', 'Unnamed: 9') 1
('Figure', 'Variable', 'ß', 'SE', 'Df', '/t/', 'VIF', 'RMSE', 'p-value') 1
('Figure', 'Term', 'Estimate', 'Standard error', 'T', 'p-value') 1
('Unnamed: 0', 'Frequency of spontaneous excitatory synaptic currents (Hz)', 'Frequency of spontaneous inhibitory synaptic currents (Hz)', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6') 1
('Unnamed: 0', 'Frequency of spontaneous excitatory synaptic currents', 'Unnamed: 2', 'Frequency of spontaneous inhibitory synaptic currents') 1
('Gene name', 'Oligo name', 'Sequence', 'forward/reverse') 1
('Variables', 'Unnamed: 1', 'Unnamed: 2') 1
('Biological parameters', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3') 1
('Numerical parameters', 'Unnamed: 1', 'Unnamed: 2') 1
('Parameters', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3') 1
('Unnamed: 0', 'Model parameters', 'Unnamed: 2', 'Unnamed: 3') 1
('Target', 'Species', 'Catalog #') 1
('Measure', 'Mean (SD)', 'Range') 1
('Unnamed: 0', 'Variable', 'β', 'SE', 'p', 'Adjusted R2') 1
('Sample name', 'Cell count when sampling', 'Cell count after thaw and wash in PBS', 'TARGET conc. of cells', 'Cell count after extra dilution in PBS', 'Number of cells expected', 'Number of cells identified after sequencing') 1
('Cell line', 'HEK293T', 'NCI-H1703', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5') 1
('Receptor', 'LRP6-mCherry', 'LRP6-tdTomato', 'LRP6-tdTomato.1', 'xKremen2-mCherry', 'xKremen2- mCherry, LRP6') 1
('Model parameter', 'Value', 'Description') 1
('Figure number', 'Conditions', 'NSyn', 'NDishes', 'NCultures', 'Mean\xa0±\xa0SEM', 'Statistical test', 'Pval') 1
('Run ID', 'Patient ID', 'Sample type', 'Collection site', 'Sequencing platform', 'Total UTD', 'Passed UTDs', 'Validation rate*', 'AUC') 1
('Patient ID', 'Sample type', 'Collection site', 'Analysis performed', 'Unnamed: 4') 1
('BFM/0', 'Model', 'Lateral inhibition', 'Quadratic trend', 'Linear trend', 'Unnamed: 5', 'Inhibition vs quadratic', 'Inhibition vs Linear') 1
('Component of the TME', 'Impact on T Cell Metabolism', 'Effect on Anti-Tumor Immunity') 1
('Sorting algorithm', 'Language', 'Notes') 1
('Study set', '# Rec. / # Elec. / Dur.', 'Source lab.', 'Description') 1
('Strain', 'String', 'Log null-fitness', 'Non-epistatic', 'Log MIC', 'Non-epistatic.1') 1
('Journal (articles with imaging/total articles, percentage)', 'Imaging figures (%)', 'Imaging methods (%)', 'Pass methods quality (%)') 1
('Gene', 'Protein name', 'Construct', 'Species', 'Template', 'Agg. sim [µs]') 1
('Motor', 'Duty Ratio', 'ADP Release Rate [s-1]', 'Citation') 1
('Simulation set', 'No. of states', 'Cluster radius [nm2]', 'Lag time [ns]') 1
('Scalp EEG', 'original', 'new') 1
('Compounds', 'MRM transition', 'RT (min)', 'Collision energy (V)', 'Unnamed: 4') 1
('Compound', 'Comment', 'Precursor ion', 'MS1 resolution', 'Product ion', 'MS2 resolution', 'RT', 'RT delta min (total)') 1
('Construct', 'Concentration injected (μM)', 'Concentration at detector* (μM)', 'Absolute mass (kDa)', 'Protomers/oligomer†') 1
('Highest-order term included', 'KD') 1
('Unnamed: 0', 'Unnamed: 1', 'Success in three-leg rubbing', 'Success in climbing, time to climb§ (in seconds)', 'Unnamed: 4', 'Unnamed: 5') 1
('Miller, 1950', 'Rajashekhar and Singh, 1994', 'Flood et al., 2013', 'Schwarz et al., 2017', 'Muscle location', 'Split GAL4', 'AD split half', 'DBD split half', 'MNs in # proboscis sides', 'Dend- rites', 'Soma', 'Nerve') 1
('GAL4 line', 'Motor neurons in proboscis', 'GAL4 line.1', 'Motor neurons in proboscis.1', 'GAL4 line.2', 'Motor neurons in proboscis.2') 1
('mn', 'Activation phenotypes', 'Silencing phenotypes') 1
('Model ID', 'Citation', 'CPU(s)', 'Ram(MB)', 'File(MB)') 1
('Cell type', 'ℓ [µm]', 'vT [µm/min]', 'vτ [µm/min]') 1
('Unnamed: 0', 'Myosin peak position', 'Anterior-posterior myosin', 'Chiral flow properties') 1
('Measured vel.', 'wt', 'ect-2', 'rga-3', 'Equations S13–S16', 'wt.1', 'ect-2.1', 'rga-3.1') 1
('Condition', 'Angular skew velocity ω\u2009[°/s]\xa0from\xa0theory', 'Measured average\xa0spindle\xa0skew rate [°/s]') 1
('Species', 'Synonymous', 'Missense', 'Nonsense') 1
('Channel name', 'Fluorophore', 'Fortessa HTS (1)', 'Fortessa', 'Fortessa HTS (2)') 1
('Unnamed: 0', 'Variations of word ABCDE', 'four letter words', 'five letter words', 'six letter words', 'Total') 1
('Alignment', 'Letter model correlation', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4') 1
('Middle Letter Transposition', 'Edge Letter Transposition', 'Middle Letter Substitution', 'Edge Letter Substitution', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7') 1
('ROI', 'Definition', '#voxels (mean ± sd)', 'ROI peak location') 1
('Genotype of breeding pairs', 'Ubiad1 genotype of offspring', 'Unnamed: 2', 'Unnamed: 3') 1
('Unnamed: 0', 'Independent variable', 'Df', 'Micro- arthropod', 'Acari', 'Orib_', 'Meso_', 'Pros_', 'Collem- bola', 'Isot_', 'Ento_', 'Smin_', 'Kati_', 'Hypo_', 'Onyc_') 1
('Compound', 'cLogP', 'cLogD (pH7.4)', 'Molecular weight (g/mol)', 'Topological polar surface area (Å2)', 'No. hydrogen bond donors', 'Strongest basic pKa calculation', 'CNS MPO score') 1
('Donor ID', 'Age', 'Sex', 'Cause of death') 1
('Donor ID', 'Discs', 'Thompson grade and Degeneration', 'Cell type', 'Type of culture', 'Type of assays', 'Results') 1
('Unnamed: 0', 'Donor ID', '9', '11', '13', '14') 1
('IMS', 'Inf. lip', 'Sup. lip', 'Nose', 'Eyebrows', 'Forehead', 'R. cheek', 'L. cheek', 'Sup. R. eyelid', 'Inf. R. eyelid', 'Sup. L. eyelid', 'Inf. L. eyelid') 1
('Unnamed: 0', 'Vision', 'Reported best corrected acuity', 'Strabismus', 'Eye movements', 'Mid-level perception* (modified t-test)2') 1
('Unnamed: 0', 'frPanx- ΔLC (EMD-21150) (PDB: 6VD7)') 1
('Experiment 1', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8', 'Unnamed: 9') 1
('Time', 'Procedures') 1
('external_gene_name', 'description', 'TdTOSX+CD45- logFC', 'TdTOSX+CD45- linearFC') 1
('external_gene_ name', 'description', 'TdTOSX+CD45+ logFC', 'TdTOSX+CD45+ linearFC') 1
('Substrate (concentration)', 'kobs* (U/mg)', 'Enantiomeric excess product (ee)') 1
('Single mutants', 'kobs* (U/mg)', 'Tm\xa0app (°C)', 'ΔTm (°C)') 1
('Enzyme', 'Tm (°C)', 'kcat (s−1)', 'KM,NADP+ (µM)', 'kcat/KM,NADP+ (s−1 mM−1)', 'Conversion and ee (COBA)', 'Conversion and ee (4-CAP)') 1
('Cosolvent', 'Tm (°C)', 'ΔTm (°C)') 1
('Enzyme', 'Abbreviation', 'Size (aa)', 'Quaternary structure', 'ΔTm', 'Reference') 1
('Cryo-EM data collection, refinement and validation statistics', 'Unnamed: 1', 'Unnamed: 2') 1
('Unnamed: 0', 'RMP (mV)', 'AP threshold (mV)', 'AP amplitude (mV)', 'AP half-width (μs)', 'AHP (mV)', 'ADP (mV)') 1
('Symbols', 'Description', 'DLD-1', 'RPE-1 p53-/-', 'Range for data fitting (both models)', 'Reason/Source of information') 1
('Unnamed: 0', 'Index allele', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5') 1
('Unnamed: 0', 'Index allele', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4') 1
('Infection', 'Outcome', 'Covariates') 1
('Unnamed: 0', 'Risk of HAM/TSP', 'N', 'Unnamed: 3', 'Unnamed: 4') 1
('Unnamed: 0', 'Early viral load set point', 'Time to low CD4 cell count', 'N', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7') 1
('Unnamed: 0', 'Coefficient', 'P value', 'N in group') 1
('Unnamed: 0', 'Odds of spontaneous clearance', 'N', 'Unnamed: 3', 'Unnamed: 4') 1
('Unnamed: 0', 'Odds of poor prognosis', 'N', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6') 1
('Mouse/Body Part', 'Body', 'Ears', 'Nose', 'Hands') 1
('Monkeys', 'Beta', 'SEM', 't-statistics', 'p-value', '95% confidence interval Lower\xa0Upper', 'Unnamed: 6') 1
('Monkeys', 'Stage 1', 'Stage 2', 'Stage 3', 'Stage 4', 'Stage 5') 1
('Time (s) (post-docking)', 'vSUV', 'vSUV + Cpx', 'Syt1-vSUV', 'Syt1-vSUV + Cpx') 1
('Unnamed: 0', 'vSUV', 'vSUV + cpx', 'Syt1-vSUV', 'Syt1-vSUV + cpx') 1
('Time (s) (post-docking)', 'vSUV', 'Syt1WT', 'Syt1F349A', 'Syt13DA', 'Syt1Q', 'Syt1LLQQ') 1
('Unnamed: 0', 'vSUV', 'Syt1WT', 'Syt1F349A', 'Syt13DA', 'Syt1Q', 'Syt1LLQQ') 1
('Time (s) (post-docking)', 'vSUV', 'Syt1WT', 'Syt1F349A', 'Syt1Q', 'Syt1LLQQ') 1
('Unnamed: 0', 'vSUV', 'Syt1WT', 'Syt1F349A', 'Syt1Q', 'Syt1LLQQ') 1
('<5 Years', '5–10 Years', '>10 Years') 1
('<5Years', '5–10 Years', '>10 Years') 1
('Characteristics', 'Phases one and two', 'Phase three (workshop)') 1
('(a)', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8', 'Unnamed: 9') 1
('Unnamed: 0', 'EE-MCB\xa0(mol%)', 'PC/PS/CH/PI(3)P/SM-MCB (mol%)', 'PC/PS/CH/PI(3)P/PlasmPE-MCB (mol%)', 'PC/PS/CH-MCB (mol%)', 'PC/PS-MCB\xa0(mol%)') 1
('Unnamed: 0', '10 nM GFP-Rab5/GDI', '10 nM GFP-Rab5/GDI, 100 nM Rabex5/Rabaptin5, 1 µM GDI, 1 mM GDP', '10 nM GFP-Rab5/GDI, 100 nM Rabex5/Rabaptin5, 1 µM GDI, 1 mM GTP') 1
('Unnamed: 0', '10 nM GFP-Rab5/GDI, 1 µM GDI, 1 mM GTP', '10 nM GFP-Rab5/GDI, 50 nM Rabex5/Rabaptin5, 1 µM GDI, 1 mM GTP', '10 nM GFP-Rab5/GDI, 100 nM Rabex5/Rabaptin5, 1 µM GDI, 1 mM GTP') 1
('Unnamed: 0', 'PC/PS (0% PI(3)P)', 'PC/PS (1% PI(3)P)', 'EE (0% PI(3)P)', 'EE (1% PI(3)P)') 1
('Unnamed: 0', 'PC/PS (1% PI(3)P)', 'PC/PS/CH (1% PI(3)P)', 'PC/PS/CH/PlasmPE (1% PI(3)P)', 'PC/PS/CH/SM (1% PI(3)P)', 'EE (1% PI(3)P)') 1
('Unnamed: 0', 'Expected theoretical outcome (100% flipping)', 'Expected theoretical outcome (70% flipping)', 'Expected theoretical outcome (50% flipping)', 'Actual outcome from imaging and manual counting', 'Actual outcome measured by flow cytometry (~70% labelled)') 1
('Sample and assay', 'Level', 'Reference Range*') 1
('PDB entry, Septin•nucleotide (oligomeric state)', 'Residues within 5 Å (capitalized) of position corresponding to ScCdc3 Thr302*', 'Residues within 5 Å (capitalized) of His corresponding to ScCdc3 His262') 1
('Species', 'Amino acid at position corresponding to ScCdc3 Lys181', 'Amino acid at position corresponding to ScCdc10 Lys155', 'Amino acid at position corresponding to ScCdc10 Gln265') 1
('Subject', 'Age', 'Gender', 'Amputation characteristics', 'Implant duration (days)', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7') 1
('Naturalness', 'Depth', 'Mechanical', 'Tingle', 'Movement', 'Temperature') 1
('Unnamed: 0', 'Single', 'Multi', 'Total', 'Unnamed: 4', 'Unnamed: 5') 1
('Parameter', 'All Cells (n=26)', 'Males (n=15)', 'Females (n=11)', 'p value') 1
('Parameter', 'All Cells (n=28)', 'Males (n=15)', 'Females (n=13)', 'p value') 1
('Model', 'Genotype', 'Cre field', 'Organismal/behavioral phenotype', 'Histologic findings', 'Rationale for use', 'Impact of torsinB modulation') 1
('Gene', 'Primer name', 'Cycle', 'Band sizes') 1
('Patient', 'Age', 'Sex', 'Education', 'Laterality', 'Time since stroke', 'Lesion site', 'Lesion\xa0size (cm3)', '% overlap with AG', '% overlap with SMG', 'AAT') 1
('Task/condition', 'RTs ± SEM (in ms)', 'ERs ± SEM (in %)') 1
('Region', 'Side', 'MNI coordinates (x, y, z)', 'T', 'Cluster size', 'Unnamed: 5', 'Unnamed: 6') 1
('Parameter', 'Orexin neuron-ablated mice', 'Orexin and MCH-ablated mice', '- fold Difference (OXMC/OX)', 'P value') 1
('Parameter', 'DT sleep', 'Cataplexy') 1
('Cytokines (pg/ml)', 'Control (n\xa0=\xa0104)', 'age-related macular degeneration (n\xa0=\xa0234)', 'P value') 1
('Unnamed: 0', 'Unnamed: 1', 'Relative risk ratio', 'Relative risk ratio.1', 'Unnamed: 4', 'Unnamed: 5') 1
('Group', 'Clone #', 'Period (hr)*', 'STDEV', 'Group.1', 'Clone #.1', 'Period (hr)*.1', 'STDEV.1') 1
('Gene', 'DE gene (SP vs LP)', 'Fold change (LP/SP)', 'Adjusted P-Value', 'DE gene (SSP vs LSP)', 'DE gene (SLP vs LLP)', 'Coding mutation', 'DMR (SP vs LP)') 1
('Description', 'Genotype', 'Use', 'Figures') 1
('Description', 'Number of recording sessions', 'Total fly count', 'Stimulus duration', 'Interleave duration') 1
('Unnamed: 0', 'hM3Dq', 'Pitx2::Cre; hM3Dq') 1
('Unnamed: 0', 'Pitx2::Cre;tdTomato', 'Pitx2::Cre;tdTomato;hM4Di', 'Pitx2::Cre;tdTomato;hM3Dq') 1
('Unnamed: 0', 'hM4Di', 'Pitx2::Cre;hM4Di') 1
('Small molecule', 'Bioactivity', 'MIC 50 (mM)', 'MIC 90 (mM)', 'Result') 1
('Unnamed: 0', 'M48', 'M49', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8') 1
('Unnamed: 0', 'M48', 'M49', 'Total') 1
('Unnamed: 0', 'Total number', 'IG1', 'IG2-90', 'Unnamed: 4', 'Unnamed: 5') 1
('Tier', 'Core SNPs', 'Accessory genes') 1
('Protein', 'Function', 'Domain', 'Reference') 1
('Year', 'Study deaths from snakebite/all causes', 'Standardized death rate /100,000 (all ages) and age-specific rates /100,000*', 'Snakebite mortality risk†', 'Estimated national deaths (000)‡', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7') 1
('Age range', 'Male\xa0(LL, UL)', 'Female\xa0(LL, UL)', 'Both\xa0(LL, UL)') 1
('Unnamed: 0', 'Unnamed: 1', 'Study deaths in MDS', 'Annual average standardized death rate /100,000', 'Estimated deaths for 2001-14 (000)', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7') 1
('Unnamed: 0', 'Government reporting*', 'MDS estimates', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6') 1
('Age group/Year', '2001', '2002', '2003', '2004', '2005', '2006', '2007', '2008', '2009', '2010', '2011', '2012', '2013', '2014', '2001-14') 1
('In- hospital case-fatality rate/100 bites', "Out-of-hospital to in-hospital hypothetical ratio K = I(h')/I(h)", 'Hypothetical % who sought hospital treatment 1/(k+1)', 'Expected no. of snakebites in 000', 'No. of envenomations in 000', 'No. of dry bites in 000', 'Unnamed: 6', 'Unnamed: 7') 1
('Source of study', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6') 1
('Unnamed: 0', 'Unnamed: 1', 'No. of studies', 'Total no. of snakebites', 'Total no. of snakebite deaths', 'Sources of studies', 'Publication year/number of studies', 'Unnamed: 7', 'Unnamed: 8', 'Unnamed: 9', 'Unnamed: 10', 'Unnamed: 11', 'Unnamed: 12', 'Unnamed: 13', 'Unnamed: 14', 'Unnamed: 15', 'Unnamed: 16', 'Unnamed: 17', 'Unnamed: 18', 'Unnamed: 19', 'Unnamed: 20', 'Unnamed: 21', 'Unnamed: 22', 'Unnamed: 23', 'Unnamed: 24', 'Unnamed: 25', 'Unnamed: 26') 1
('Unnamed: 0', 'Relative risk of snakebite mortality', 'Unnamed: 2', 'Unnamed: 3') 1
('Mouse strain/genotype', 'Body weight (+ / - SD)') 1
('Name', 'Low', 'δ', 'θ', 'α', 'β1', 'β2', 'γ1', 'γ2', 'γ3') 1
('#', 'Modality', 'Family', 'Input', 'Feature', 'Variants', 'Spatial selection') 1
('Modality', 'MEG sensor', 'MEG source', 'MRI', 'fMRI', 'Common cases') 1
('ID', 'Family', 'Input', 'Feature', 'Variant', 'Importance', 'MAE') 1
('#', 'Name', 'Type', 'Variables (38)') 1
('Para.', 'Visual homing', 'Optimal integration tuning PI', 'Optimal integration tuning VH', 'Route following', 'Whole model ZV', 'Whole model FV') 1
('Name', 'Function', 'Num', 'Network', 'Brain region', 'Neuron in species(e.g.)', 'Reference') 1
('Category', 'Behaviour', 'Sex', 'Description', 'Reference') 1
('Proposed mechanism', 'Cooperative behaviour', 'Sex of test subjects', 'Origins of test subjects', 'Task', 'References') 1
('Unnamed: 0', 'Follow-up round 1 (N =\xa0253)', 'Follow-up round 2 (N =\xa0125)', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6') 1
('Unnamed: 0', 'Model 1: univariable (n =\xa0378)', 'Model 2: multivariable (n =\xa0378)', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6') 1
('Unnamed: 0', '1', '2', '3', '4', '5', '6', '7', '8', '9') 1
('Unnamed: 0', 'GP', 'GPa', 'PhK', 'GSa/GS', 'GDE', 'GLUT4', 'Glycogen', 'Serca 1', 'Unnamed: 9', 'Unnamed: 10', 'Unnamed: 11', 'Unnamed: 12') 1
('GDE', 'Patient ID', 'unique peptide count', 'protein sequence coverage (%)') 1
('Unnamed: 0', 'MHN', 'MHS', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8', 'Unnamed: 9', 'Unnamed: 10') 1
('GPa whm', 'GPa mic', 'PhK mic', 'GDE mic', 'GLUT4 mic', 'Glycogen mic') 1
('Model', 'Drosophila', 'Locust', 'Unnamed: 3') 1
('Genomic target', 'Exon', '5’/3’ Homology arm length', 'Reporter expression', 'Number of germline transmitting adults', 'Percentage of germline transmitting adults') 1
('Genomic target', '# of germline transmitting adults', '# of precise 5’ junctions by PCR', '# of precise 3’ junctions by PCR', '# of precise integrations by Southern') 1
('GnRH proximal dendrites', 'Unnamed: 1') 1
('Chromosome number', 'Core centromere', 'Full-length centromere', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7') 1
('Clade C', 'Clade B1', 'Clade B2', 'Clade A', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8') 1
('Protein name', 'Score', 'Spi %', 'Sequence') 1
('BBSome subunit A', 'BBSome subunit B', 'Interface area (A-B) [Å2]', 'ΔiG (A-B) [kcal/mol]') 1
('BBS gene', 'mutation', 'phenotype', 'Reference') 1
('Unnamed: 0', 'F-statistic', 'Unnamed: 2', 'Unnamed: 3') 1
('Variable', 'Treatment cohort', 'Intact', 'Reinnervated', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8', 'Unnamed: 9') 1
('Structure restraints', 'XPLOR-NIH*', 'PDB 6MIE†') 1
('Unnamed: 0', 'Unnamed: 1', 'Task', 'Stimulus', 'Response') 1
('Genus', 'Isolation media', 'TTX-producing isolates', 'Replicates above LOD', 'Replicates above LLOQ', 'TTX (ng mL−1)±\xa0SEM', 'TTX symbiont in other animals') 1
('Construct', 'N', 'IC50', 'IC50 Ratio') 1
('Name', 'Forward', 'Reverse', 'Usage') 1
('Unnamed: 0', 'All isolates', 'Shared sequence isolates', 'p-value†') 1
('MGE*', 'Length (kb)', '% GC', 'Replicons†', 'MOB Family‡', 'Antibiotic resistance Genes§', 'Metal interaction Genes¶') 1
('Unnamed: 0', 'Cryo-EM structure of the StOAD βγ sub-complex (PDB 6IWW)') 1
('Measurement', 'DNA', 'DNA.1', 'DRNA/RNA', 'RNA', 'RNA.1') 1
('Measurement', 'Technology', 'Strengths', 'Weaknesses', 'Single-cell version?') 1
('Strengths and weaknesses of the ever-evolving compendium of scRNA-seq technologies and analysis packages have been evaluated reviewed extensively in Ziegenhain et al., 2017; Chen et al., 2019a; Haque et al., 2017. Here, we provide a basic overview of the strengths of the general approaches.', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3') 1
('Antigen', 'Reactivity', 'Host Species', 'Origin') 1
('Gene', 'Species', 'Company', 'Reference (Sequence)') 1
('Evolutionary Conserved Region (ECR)', 'Forward', 'Reverse') 1
('Unnamed: 0', 'MT1', 'MT2', 'MT2/MT1', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8', 'Unnamed: 9', 'Unnamed: 10', 'Unnamed: 11', 'Unnamed: 12') 1
('Concentration of complexes [average number of complexes per square micrometer]', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7') 1
('Locus', 'M1', 'P30') 1
('EAP', 'Movie number', 'Initiation', 'Stabilization', 'Initiation+Stabilization', 'Maturation', 'Biochemical measurements of CME', 'Unnamed: 7') 1
('Protein', 'Mol. weight', 'Putative localization in spirochete filaments', 'Gene names Leptospira biflexa (Uniprot ID)', 'Gene names Leptospira interrogans (Uniprot ID)', 'Protein copies per cell in L. interrogans (Malmström et al., 2009)', 'Sequence homologies') 1
('Unnamed: 0', 'FcpA_1', 'FcpA_2', 'FcpA_3', 'FcpB') 1
('Leptospira strain', 'Inner Curvature*', 'Outer Curvature†', 'Both‡', 'Total # Images') 1
('Sample name', 'Organism', 'Conclusion') 1
('Unnamed: 0', 'Anterior arch of the atlas*', 'Ribs†', 'Sternum attachment‡', 'Lumbar§', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8') 1
('Unnamed: 0', 'Strain', 'Genotype') 1
('Strain', 'Genotype', 'Description', 'Sequence name', 'Sequence 5′−3′', 'PAM') 1
('WdiE type', 'Total carbon chain length and degree of unsaturation', 'FA composition (%)', 'The most abundant molecular species predicted', 'Unnamed: 4', 'Unnamed: 5') 1
('Name in this study', 'Location', 'IMPC abbreviation') 1
('Unnamed: 0', 'Pure 1-sided', '2- sided', '1-sided + 2-sided mix', 'Semi- diffusive', '1-sided + loading bias', 'Switching', '1-sided with traversal', '1-sided + 3D attraction') 1
('Unnamed: 0', 'Activated mature B cells', 'FrB pro-B cells') 1
('Seed', 'Region of interest', 'F(1,87)', 'p') 1
('strain', 'genotype', 'notes') 1
('Unnamed: 0', 'GSA activity (ProA)', 'NAGSA activity (neo-ArgC)', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6') 1
('Enzyme', 'KM, ATP (mM)', 'kcat (s−1)', 'kcat/KM,ATP (M−1 s−1)', 'UMP Kd (µM)', 'UMP a', 'ornithine Kd (µM)', 'ornithine a') 1
('Figure 2B\xa0- Region 1', 'p value', 'Figure 2B - Region 2', 'p value.1') 1
('Figure 2B', 'Region 1 N', 'Region 2 N') 1
('Figure 5D- Chirality', 'p value', 'Figure 5D - Rotation', 'p value.1') 1
('Figure 5D', 'Chirality - N', 'Rotation - N') 1
('Figure 5—figure supplement 1B - Chirality', 'p value', 'Figure 5—figure supplement 1B - Rotation', 'p value.1') 1
('Figure 5—figure supplement 1B', 'Chirality - N', 'Rotation - N') 1
('Unnamed: 0', 'Dark', 'one ps', '10 ps') 1
('Object', 'Label', '1ps', '1ps.1', '10ps', '10ps.1') 1
('Full name', 'Abbr.', 'Full name.1', 'Abbr..1', 'Full name.2', 'Abbr..2') 1
('Unnamed: 0', 'Sharing incentive', 'Open access', 'Stable false positive rate') 1
('Unnamed: 0', 'QQQ') 1
('Buffer R', 'Buffer F', 'Ion flux monitored', 'Protein-lipid ratio (µg/mg)', 'Protein per assay (µg)') 1
('Ferret', 'Stimulus duration (ms)', 'Repetitions', 'Interstimulus interval (s)', 'Frequency range (Hz)') 1
('Unnamed: 0', 'Number of events') 1
('Unnamed: 0', 'UKB', 'Ukbbn') 1
('Phenotype', 'Sex', 'Coef', 'Ci (2.5%)', 'Ci (97.5%)', 'p-value', 'N', 'Events') 1
('Variant effect', 'Number of variants') 1
('Reagent type (Species or Source)', 'Designation', 'Source', 'Identifier', 'Add. info') 1
('Bacterial plasmids (all constructs are in the pTrcHis6A expression vector and start with the sequence MGGSHHHHHHGMASHHHHHARALEVLFQGPM)', 'Unnamed: 1') 1
('Mutation', 'Forward primer', 'Reverse primer') 1
('Neuron type', 'Initial AIS L (μm)', 'Initial AIS x1/2 (μm)', 'Final AIS L (μm)', 'Final AIS x1/2 (μm)', 'ΔVs (mV)', 'ΔVs theory (mV)', 'Reference') 1
('Reagent type (species) or\xa0resource', 'Designation', 'Source or\xa0reference', 'Identifiers', 'Additional\xa0information') 1
('Unnamed: 0', 'Number of EdU-retaining cells in…', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4') 1
('Gene', 'Forward Primer', 'Reverse Primer') 1
('Age', 'csf1a', 'csf1b', 'il34') 1
('Line', 'Hatched', 'Unhatched', 'Total') 1
('Line', 'Fertile1', 'Sterile', 'Censored2', 'Total') 1
('% of ↓ contained in →', 'Cognitive Atlas (895)', 'MeSH (21287)', 'NeuroNames (7146)', 'NIF (6912)', 'NeuroSynth (1310)', 'NeuroQuery(7547)') 1
('Unnamed: 0', 'False positives', 'False negatives') 1
('Unnamed: 0', 'NeuroSynth', 'NeuroQuery') 1
('Name', 'Url') 1
('Dataset', 'Type', 'Count', 'Citations') 1
('Template Brain', 'Description', 'Resources', 'DOI', 'Citation') 1
('Unnamed: 0', 'BBSome (EMD-21144) (PDB 6VBU)', 'BBSome:ARL6:GTP (EMD-21145) (PDB 6VBV)') 1
('Protein', 'NCBI accession', 'Protein length (residues)', 'Molecular mass (kDa)', 'Total built residues (BBSome)', 'Total built residues (BBSome: ARL6:GTP)') 1
('Gene', 'Protein mutation', 'Phenotype', 'Reference') 1
('Unnamed: 0', 'TRPC6-AM-1473 EMD-20954 PDB 6UZA', 'TRPC6-AM-0883 EMD-20953 PDB\xa06UZ8') 1
('Unnamed: 0', 'No. of neurons', 'No. of 100 s epochs', 'Stimulus presentations in 100 s epochs', 'No. of neuronal ensembles (Q)') 1
('Unnamed: 0', 'H37Rv (4,411,532 bp)', 'MT-0080_PB (4,426,525 bp)', 'P value') 1
('Specimen code', 'HLA-A', 'HLA-B', 'HLA-C', 'Shared antigenic epitopes', '% of multimer-positive CD8+ TILs', 'IFN-γ ELISPOT analysis', 'Number of cloned TCRs', 'Tumor reactivity') 1
('Variable', 'Parameter', 'Wavelength', 'Value', 'Units') 1
('Unnamed: 0', '920 nm', '1320 nm', '1280 nm') 1
('Variable', 'Parameter', 'Value', 'Units') 1
('Unnamed: 0', 'Objective lens focal length (mm)', '1/e2beam diameter at the back aperture (mm)', 'Effective NA', 'Pulse duration τ (fs)', 'gp(n)') 1
('Acronym', 'Meaning') 1
('Unnamed: 0', 'Complex between COMPASS and the H2B-Ub nucleosome (EMDB-21157) (PDB 6VEN)') 1
('Model', 'Region', 'Cluster size', 'X', 'Y', 'Z') 1
('Unnamed: 0', 'Subcellular localization', 'N reactive proteins', 'Baseline reactivity', 'Post-Immz reactivity', 'Baseline reactivity (protected)', 'Post-Immz reactivity (protected)', 'Baseline reactivity (unprotected)', 'Post-Immz reactivity (unprotected)') 1
('Gene name', 'Average log fold change', 'Fraction of Cd34-high, Car4-high cells expressing this gene', 'Fraction of other ECs expressing this gene') 1
('Gene name', 'Average log fold change', 'Fraction of proliferating ECs expressing this gene', 'Fraction of all cells expressing this gene') 1
('Gene name', 'Average log fold change', 'Fraction of Car4-high ECs expressing this gene', 'Fraction of all cells expressing this gene') 1
('Receptor', 'Ligand', 'Evidence', 'Receptor cluster', 'Ligand cluster') 1
('Gene', 'Primer type', 'Forward sequence (5’ to 3’)', 'Reverse sequence (5’ to 3’)') 1
('Genotype', 'Total', 'No scar', 'Interspersed scar', 'Transmural scar') 1
('Parameter', 'Comparison', 'Statistical test', 'Multiple testing correction', 'p value') 1
('Reagent type (species) or resource', 'Designation', 'Source or reference', 'Identifiers (RRID_AB)', 'Additional information (dilution)') 1
('Protein', 'Concentration', 'Species', 'Clone', 'Company', 'RRID_AB:') 1
('Algorithm 1. Algorithm to generate a representative line for the top of stripe X0 (lt)', 'Unnamed: 1') 1
('Algorithm 2. Algorithm to calculate the tortuosity (tort) of line L generated from a simulated X0', 'Unnamed: 1') 1
('Algorithm 3. Algorithm to calculate the tortuosity (tort) of line L generated from a real fish', 'Unnamed: 1') 1
('Ambulatory skills', 'Score') 1
('Data Collection', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4') 1
('Symptom Category', 'Test/observation', 'Result') 1
('Gene symbol', 'Annotation symbol', 'RNAi line', 'Migration defect (c306-Gal4)', 'Expression level in ovary (modENCODE)') 1
('Figure', 'Panel', 'Genotype') 1
('Term', 'Estimated coefficient', 'SE', 't-statistic', 'p-value') 1
('Unnamed: 0', 'PCa/PNa', 'Sr/PNa', 'PK/PNa', 'PCs/PNa') 1
('Systematics', 'Unnamed: 1', 'Unnamed: 2') 1
('Reagent (species)', 'Designation', 'Source', 'Additional info') 1
('Region', 'Number of introductions or translocations') 1
('Collection', 'Number of specimens') 1
('Target', 'Forward', 'Reverse', 'Size bp') 1
('Genotype', 'Normal germline, %', 'Tum, %', 'Pro, %', 'N') 1
('Genotype', 'PLA density in SPC zone (/um^2) x 10−2', 'P value,vs. control', 'N') 1
('Genotype', 'PLA density in SPC zone (/um^2) x 10−1', 'p value,vs. control', 'N') 1
('Transgene', 'Mutated variable region (VR) sequence', 'Rescues fbf-1(lf)?', 'Rescues fbf-2(lf)?', 'Dependent on CCR4-NOT') 1
('Metric', 'Term', 'Df', 'Sum sq.', 'Mean sq.', 'F stat.', 'P') 1
('Metric', 'Group', 'Term', 'Df', 'Sum Sq.', 'Mean Sq.', 'F stat.', 'R2', 'P') 1
('Plasmid Name', 'Fungal Bioluminescent Pathway Components', 'Plasmid Type') 1
('Component', 'Source', 'Unnamed: 2', 'Cost') 1
('Fluorescence quenching', 'Construct', 'Term', 'Estimate', 'Standard error') 1
('Current inhibition', 'Construct', 'Term', 'Estimate', 'Standard error') 1
('Full MWC', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4') 1
('Lever', 'End lever-press training', 'Conditioned punishment') 1
('Names', 'Mol. weight (kDa)', 'p-values (WT vs FAP52)', 'Exclusive unique peptide counts in WT (quantitative values after normalization)') 1
('Name', 'Molecular Weight in kDa (MW)', 'Average quantitative Value (AQV)', 'Rough Stoichiometric Peptide Abundance (RSPA)*', 'T.\xa0thermophila Homologs**', 'Human homologs***', 'Localization in C. reinhardtii') 1
('Description', 'Type', 'Symbol', 'Figure 2', 'Figure 2—figure supplement 2', 'Figure 2—figure supplement 1', 'Figure 3, 4') 1
('Description', 'Type', 'Symbol', 'Figure 5', 'Figures 6–8') 1
('Coenocytic organism', 'Length scale', 'Wave time', 'Wave speed', 'Nuclear division', 'Synchrony index', 'References') 1
('Plasmid creation', 'Target amplicon (Source DNA)', 'Primer name', 'Primer sequence (5’→ 3’)') 1
('Request ID', 'Strain name', 'Plasmid', 'Integrated gene(s)') 1
('Protein', 'Amino acid sequence') 1
('FIGURE', 'PANEL', 'ABBREVIATED GENOTYPE', 'COMPLETE GENOTYPE (‘Y’ represents the Y chromosome)') 1
('Figure', 'Panel', 'Abbreviated genotype', 'COMPLETE GENOTYPE (‘Y’ represents the Y chromosome)') 1
('System', 'total #', 'multicellular #', 'P') 1
('(A) Downregulated protein class', 'Unnamed: 1') 1
('PANTHER pathway', 'PANTHER accession', 'Gene list') 1
('Reagent type (species) or resource', 'Unnamed: 1', 'Source or reference', 'Identifiers', 'Additional information') 1
('Unnamed: 0', 'Discovery', 'Validation', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6') 1
('VPM amplitude', 'EXC', 'PV', 'SST', 'VIP') 1
('VPM slope', 'EXC', 'PV', 'SST', 'VIP') 1
('POm amplitude', 'EXC', 'PV', 'SST', 'VIP') 1
('POm slope', 'EXC', 'PV', 'SST', 'VIP') 1
('Unnamed: 0', 'PL Innervation vs.', 'IL Innervation vs.', 'Unnamed: 3', 'Unnamed: 4') 1
('Unnamed: 0', 'Unnamed: 1', 'rsFC BLA-PL vs.Time in Open', 'rsFC BLA-IL vs.Time in Open', 'Unnamed: 4', 'Unnamed: 5') 1
('PD28 rsFC BLA-PL', 'PD28 rsFC BLA-IL', 'Unnamed: 2', 'Unnamed: 3') 1
('FJC fits', 'Contour length (nm/nt)', 'Persistence length (nm)', 'Elastic modulus (pN)') 1
('Metric', 'Article-level variable', 'Coef.', 'Std. error', '95% CI (lower)', '95% CI (upper)', 'p-value', 'Adj. p-value') 1
('Metric', 'Journal-level variable', 'Coef.', 'Std. error', '95% CI (lower)', '95% CI (upper)', 't-statistic', 'p-value', 'Adj. p-value') 1
('Figure 5D: animal number of each group and each time point', 'Unnamed: 1', 'Figure 6A: animal number of each group and each time point (Please note that these cohorts were different from Figure 5D)', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6') 1
('Figure 7A: animal number of each group and each time point', 'Unnamed: 1', 'Figure 7C: animal number of each group and each time point', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8', 'Unnamed: 9', 'Unnamed: 10', 'Unnamed: 11', 'Unnamed: 12') 1
('Figure 7—figure supplement 1B: Animal number of each group and each time point', 'Unnamed: 1', 'Figure 7—figure supplement 1D: Animal number of each group and each time point', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8') 1
('Virus', 'T-number', 'Diameter\xa0(nm)', 'Thickness h (nm)', 'E (Gpa)', 'Y\xa0(N/m)', 'σ\xa0(nm)', 'Scaled line tension λ', 'Föppl-von Karman γ') 1
('Muropeptide (non-reduced)', 'Theoretical neutral mass', 'MurNAc-alk labeled H. pylori', 'Control H. pylori', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7') 1
('Strain', 'Genotype/description', 'Construction', 'Reference') 1
('Primer name', 'Sequence (5’ to 3’)') 1
('Antibody', 'Company and clone', 'Dilution') 1
('Antibody', 'Supplier (Clone)', 'Dilution') 1
('Cell\xa0type', 'Delay-active', 'Delay-suppressed', 'Other', 'Total') 1
('Test conditions', 'Delay responsiveness', 'Neuron number') 1
('Delay responsibility', 'Side-dependency', 'Cell types', 'N', '%') 1
('Test conditions', 'Delay responsiveness', 'Neurons', 'Unnamed: 3') 1
('Genotype', 'Animal ID', 'Age at surgery', 'Age at experiments ended') 1
('Reference', '% excluded participants (‘non-learners’)', 'CS+/CS– cut-off (in µS) for ‘non-learners’', 'N trialsacq total CS+/CS–', 'N trialsacq considered CS+/CS–', 'Trials phase (unless otherwise stated, this refers to fear acquisition training)', 'Additional criteria/notes') 1
('Record', '% excluded participants (‘non-responders’)', 'Cut-off (in µS) for a valid SCR', 'Valid responses in at least % of trials', 'Stimulus type (also referred to as ‘trial’) on which the exclusion is based', 'Additional criteria/notes') 1
('A) t-tests: CS+/CS– discrimination based on raw values', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6') 1
('Exclusion group (cumulative)', 'CS+ M (SD)', 'CS– M (SD)', 'df', 't', 'pbonf_corr', 'd') 1
('Reference', 'N', 'Minimum amplitude cutoff (in µS) for valid SCRs', 'Scoring details', 'Number of…', '‘Non-responses’ towards…', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8', 'Unnamed: 9', 'Unnamed: 10', 'Unnamed: 11', 'Unnamed: 12', 'Unnamed: 13') 1
('Reference', 'a) n (%) of individuals with 0, 1, 2, 3, 4, 5, 6, 7, and 8 SCRs towards the US. b) M (%)\xa0of valid CS responses for these individuals.', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8', 'Unnamed: 9') 1
('Engagement type', 'General description') 1
('Unnamed: 0', 'WPM', 'W') 1
('Unnamed: 0', 'WPM\xa0(%)', 'W (%)') 1
('Event type', 'WPM', 'W', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6') 1
('Pageviews/event', 'WPM', 'W', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6') 1
('Unnamed: 0', 'WPM pages', 'W pages', 'WPM pages, compared to other W pages,...') 1
('Character', 'Hexapoda (Dicondylia)', 'Eumalacostraca and Remipedia', 'Correspondence') 1
('Unnamed: 0', 'Patient 013', 'Patient 020') 1
('Unnamed: 0', 'Unstimulated PBMCs', 'Stimulated PBMCs') 1
('Clonal family (antibodies)', 'Germline', 'Isotype', 'Reads for all clonotypes', 'Unnamed: 4') 1
('Block (Direction)', 'Target', 'Cursor', 'Perturbation', '# of trials') 1
('Target', 'Cursor', 'Perturbation', '# of trials') 1
('Session', 'Block (randomized in each session)') 1
('MP/Target jump', '# of trials (randomized in each block)') 1
('Panel', 'Graph type', 'N value', 'Statistical test used', 'Precision', 'p-value') 1
('Name', 'Median, sec', 'Mean, sec', 'S.D., sec*', '95%ile, sec', 'N tracks', 'N samples') 1
('Name', 'Lifetime Median, sec', 'Lifetime Mean, sec', 'Lifetime S.D., sec*', 'Lifetime 95%ile, sec', 'End-to-end distance Median, nm', 'n tracks', 'N movies (datasets with\xa0>\xa040 tracks)', 'N samples', 'D, nm2/sec †') 1
('Name', 'Median, sec', 'Mean, sec', 'S.D., sec *', '95%ile, sec', 'N tracks', 'N movies (datasets with\xa0>\xa040 tracks)', 'N samples', 'D, nm2/sec †') 1
('Data collection', '5A6-CD81 LEL') 1
('Cell line', 'Background', 'Response to PD-1 blockade therapy', 'Particulars', 'Source') 1
('Background', 'Name of tumor', 'Releasing suppressive factor (related to Figure 3)', 'Activation of acquired immunity (related to Figure 5)') 1
('Variable', 'Definition', 'Source') 1
('Session', 'Sample Type', 'Rough Milling', 'Rough Milling Success', 'Polishing', 'Polishing Success', 'Instrument #') 1
('Strain', 'Identifier', 'Genotype', 'Source or reference') 1
('Milling\xa0Pattern\xa0#', 'Pattern\xa0Attributes') 1
('35S::RFP-DA1', '35S::DA2-FLAG', 'p35S::GFP-UBP12', 'pUBQ10::HA-BB', 'Cleaving inhibition') 1
('35S::HA-DA1', '35S::DA2-FLAG', 'pUBP10::UBP12-BFP', 'pUBP10::NLS-GFP-TCP14-mCherry', 'Cleaving inhibition, FRET') 1
('Feature', 'Slope', 'P (slope)', 'Marginal R2', 'Conditional R2', 'Slope (min)', 'Slope (max)', 'P (vs linear)') 1
('Replication (SGR)', 'IC50 (μM)', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4') 1
('Unnamed: 0', 'Unnamed: 1', 'Rab5', 'SNX1', 'Lyso') 1
('Reagent type or resource', 'Designation', 'Source', 'Identifiers', 'Additional information') 1
('Rab5 data', 'Survival function Ψ(t)', 'Fit parameters for Figure 4') 1
('Receptor', 'Ligand', 'Bound na+', 'Number of OPLS3e trajectories', 'Number of CHARMM36 trajectories', 'Accumulated simulation time (ns)') 1
('Unnamed: 0', '[3H]spiperone saturation binding', '[3H]spiperone competition binding', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6') 1
('Unnamed: 0', 'Spiperone-d2 saturation binding', 'Spiperone-d2\xa0competition binding', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8', 'Unnamed: 9', 'Unnamed: 10', 'Unnamed: 11', 'Unnamed: 12') 1
('Cluster ID', 'Percentage (%)', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8') 1
('Unnamed: 0', 'RNAP-Ocr', 'Unnamed: 2') 1
('Unnamed: 0', 'Unnamed: 1', 'Mismatch', 'Unnamed: 3', 'Unnamed: 4', 'Match', 'Unnamed: 6') 1
('Unnamed: 0', 'Unnamed: 1', 'Unnamed: 2', 'Pre fixation', 'Unnamed: 4', 'Unnamed: 5', 'Post fixation', 'Unnamed: 7') 1
('Unnamed: 0', 'N', 'Retrieval', 'Associative novelty', 'Subsequent memory') 1
('Unnamed: 0', 'N', 'Power', 'Sin(θ)', 'Cos(θ)', 'Speak', 'STrough', 'Asym', 'Full') 1
('Unnamed: 0', 'N', 'Power', 'Sin(θ)', 'Cos(θ)', 'SPeak', 'STrough', 'Asym', 'Full') 1
('Unnamed: 0', 'S1', 'S2', 'S3', 'S4', 'S5') 1
('Reagent type (species) or resource', 'Designation', 'Source or reference', 'Identifier(s)', 'Additional information') 1
('Species', 'Occurrence records', 'AUC ensemble models') 1
('Unnamed: 0', 'Emotional (Median (IQR))', 'Neutral (Median (IQR))', 'Z', 'p-value') 1
('Unnamed: 0', 'Unnamed: 1', '(+,+)', '(+,0)', '(0,+)', '(0,0)') 1
('Unnamed: 0', '(+,+)', '(+,0)', '(0,+)', '(0,0)') 1
('Unnamed: 0', 'Revenge (mean\xa0±\xa0SD)', 'Control (mean\xa0±\xa0SD)', 'F', 'p', 'η2p') 1
('Relative and absolute quantification of PBP1b', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8') 1
('Active/Passive Membrane Properties', 'VGluT3+ BCs (mean\xa0±\xa0SEM, n\xa0=\xa030–37 observations/parameter, from 37 cells)', 'VGluT3+ DTIs (mean\xa0±\xa0SEM, n\xa0=\xa024–26 observations/parameter, from 26 cells)') 1
('Figure', 'Question', 'Finding') 1
('Unnamed: 0', 'Unnamed: 1', 'MMSE', 'Tremor', 'Rest tremor', 'Postural tremor of hands', 'Finger tapping', 'Hand movement', 'RAM', 'Unnamed: 9', 'Total', 'Unnamed: 11', 'Unnamed: 12', 'Unnamed: 13', 'Nr. of units: contralateral +', 'Unnamed: 15', 'Unnamed: 16', 'Unnamed: 17', 'Unnamed: 18') 1
('Protein', 'Inhibitor', 'KM (µM)', 'vmax*', 'Ki (µM)', 'α') 1
('Unnamed: 0', 'EcoDMT-Br-BIT complex') 1
('EcoDMT-Br-BIT complexes', '1', '2', '3', '4', '5') 1
('Unnamed: 0', 'TEBIT', 'TMBIT', 'Br-BIT', 'Br-DBFIT') 1
('Compound', 'Smile', 'IC50 (hDMT1) (µM)', 'IC50 (hDMT1-S476V) (µM)', 'IC50 (hDMT1-N520L) (µM)', 'IC50 (hDMT1-F523A) (µM)') 1
('Compound', 'Retention time', 'Purity [%]', 'HPLC method*') 1
('Group', 'Recording area', 'Single units', 'Multi units', 'Awake total mice', 'Awake total units', 'Anesthetized total mice', 'Anesthetized total units', 'Total units') 1
('Reagent type (species) or resource', 'Designation', 'Source or reference', 'Identifiers', 'Additional i nformation') 1
('Drug', 'Predicted target pathway', 'Developed for', 'Concentration (µM)') 1
('Unnamed: 0', 'Target gene', 'Life stage expression (FPKM)', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8', 'Unnamed: 9', 'Unnamed: 10', 'Unnamed: 11') 1
('Unnamed: 0', 'Red', 'Green', 'IR', 'dL5**-MG2I (minor)', 'dL5**-MG2I (major)') 1
('Unnamed: 0', 'Red x dL5**-MG2I', 'Green x dL5**-MG2I') 1
('Service', 'Database size (millions)', 'Individuals shown', 'IBS/IBD Segments Reported') 1
('Strategy', 'Prevents IBS tiling', 'Prevents IBS probing', 'Prevents IBS baiting') 1
('Matching pairs', 'Unnamed: 1', 'Target 1', 'Target 2', 'Target 3', 'Target 4') 1
('Spatial muscle group', 'Nerve', 'Motor neurons (synonyms)', 'Target muscles (synonyms)', 'Synapse Type') 1
('Forward', 'Co-activated muscles') 1
('Muscle position', 'Motor Neurons', 'Pre-Motor Neurons') 1
('Factor', 'Meaning', 'Values') 1
('#', 'Name', 'Description', 'Value', 'Reference') 1
('DIV', 'No.\u2009of', 'Regular ladder', 'Ladder in patches', 'No visible ladder', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7') 1
('Unnamed: 0', 'Model', 'Strain-softening of steady state moduli', 'Solid-like steady state', 'Peak in relaxation time vs strain') 1
('Unnamed: 0', 'Humpback whale', 'Humpback juvenile', 'Minke whale', 'Bryde’s whale', 'Gray whale', 'Sperm whale', 'Right whale') 1
('Trajectory', 'Starting location', 'Characteristics', 'Species', '# events') 1
('Length (m)', 'Mass (kg)', 'Emergence (%)', 'Duration (secs)', 'Final velocity (m/s)', 'Stroke freq (Hz)', 'Energy (MJ)', 'Max power (kW)', 'Unnamed: 8', 'Unnamed: 9', 'Unnamed: 10', 'Unnamed: 11', 'Unnamed: 12') 1
('Antibody', 'Fluorochrome', 'Catalogue #', 'Clone', 'Dilution', 'Supplier') 1
('Antibody', 'Catalogue#', 'Supplier') 1
('Unnamed: 0', 'Patient', 'Sex', 'Age (years)', 'MS type', 'Disease duration (years)', 'Time to post mortem (h)', 'Number of lesions', 'Active', 'Chronic active', 'Chronic inactive', 'Remyeli-nating') 1
('Unnamed: 0', 'v0.9', 'v1.2 pseudomolecules and contigs', 'v1.2 pseudomolecules only') 1
('Plant trait', 'K statistics', 'p-value (10,000 simulations)') 1
('Unnamed: 0', 'Nd-pgls', 'Nd-sim', 'Es-pgls', 'Es-sim') 1
('Name', 'Efficiency of cleavage', 'SaCas9 sgRNA + PAM (g was added as needed)', 'Target sequences (GenBank: KT899744)') 1
('DNA sequences used in the EMSA assays', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3') 1
('Theoretical Rg (Å)', 'Unnamed: 1') 1
('Type', 'Upregulated in axons', 'Downregulated in axons', 'Enriched in axons, not regulated') 1
('Unnamed: 0', 'Checkerboard', 'Side-by-Side', 'Isolated', 'Both', 'Tomograms', 'Tetramers', 'Rats') 1
('Unnamed: 0', 'Median Cluster Area (nm2 x 103)', 'Mean Cluster Area (nm2 x 103)', 'Number of Clusters Examined') 1
('Unnamed: 0', 'Tomograms', 'dSTORM Images', 'Unnamed: 3', 'Unnamed: 4') 1
('Unnamed: 0', 'Checkerboard', 'Unnamed: 2', 'Side-by-Side', 'Unnamed: 4', 'Unnamed: 5') 1
('Strain', 'Phage', 'Plasmid', '% Lysogens') 1
('Unnamed: 0', 'Suicide attempters (n\xa0=\xa034)', 'Non-attempters (n\xa0=\xa068)', 'p') 1
('Location', 'MNI Coordinates', 'Peak t', 'Volume (mm3)', 'Unnamed: 4', 'Unnamed: 5') 1
('Unnamed: 0', 'Attempter (n\xa0=\xa034)', 'Non-attempter (n\xa0=\xa068)', 'Unnamed: 3', 'Unnamed: 4') 1
('Quantity', 'Meaning', 'Definition') 1
('Parameter', 'Value', 'Source') 1
('Bead sequence number', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3') 1
('Organelle', 'Fly protein', 'clones obtained', 'population imaged', 'clones imaged', 'insertion sequence verified', 'Immunostained', 'Correct GFP localization', 'DGRC stock#', 'S2R+ expression (modENCODE RPKM)') 1
('Unnamed: 0', 'Individuals', 'Measurements', 'Included IPTs') 1
('Unnamed: 0', 'Component elements', 'Measurement', 'Statistical methods') 1
('Unnamed: 0', 'Baseline measurements in all individuals', 'Baseline measurements in individuals with corresponding BAs', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7') 1
('BAs', 'Number of individuals', 'Number of deaths', 'Median follow-up time (year)', 'Model 1', 'Model 2') 1
('BA residuals', 'Model 1', 'Model 2') 1
('Motif name/TF', 'Representative CNN filter logo', 'Motif logo', 'CNNs with filter match q\xa0<\xa00.05', 'Similar TF motifs discovered') 1
('Sample', 'Unnamed: 1', 'In UDM', 'In C8E4', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8', 'Unnamed: 9', 'Unnamed: 10', 'Unnamed: 11') 1
('W1118', '24 hr 5.0°', '28 hr 28.4°') 1
('Genotype', 'Time', 'Grand Mean Vector (GM)', 'Length of Grand Mean Vector (r)', 'Number of means (wings)', 'Mean CSD') 1
('32 hr angles', 'W1118 54.6°', 'pksple1 59.3°', 'pkpk-sple13 47.6°', 'pkpk30 348.5°') 1
('PUFA Analogue', 'IKs I/I0 (7 μM) (mean\xa0±\xa0SEM)', 'Km IKs (μM) (mean\xa0±\xa0SEM)', 'Adj R2 of Hill Fit', 'ICa I/I0 (7 μM) (mean\xa0±\xa0SEM)', 'Km ICa (μM) (mean\xa0±\xa0SEM)', 'Adj R2 of Hill Fit.1', 'INa I/I0 (7 μM) (mean\xa0±\xa0SEM)', 'Km INa (μM) (mean\xa0±\xa0SEM)', 'Adj R2 of Hill Fit.2') 1
('PUFA Analogue', 'Control', '0.2 mM', '0.7 mM', '2 mM', '7 mM', '20 mM') 1
('Unnamed: 0', 'Social', 'Non-social', 'Unnamed: 3') 1
('Unnamed: 0', 'Unnamed: 1', 'Group 1 PLA Day 1', 'Group 2 MPH Day 1', 'Unnamed: 4') 1
('LyNa-VAs', 'Chemical name', 'Structure', 'EC50 (μM)*', 'ITPC2\xa0(pA)**') 1
('Genotype', 'Silenced (S)', 'Expressed (E)', 'S → E (kon, gen−1)', 'E → S (koff, gen−1)', 'E/S', 'kon/koff') 1
('Unnamed: 0', 'HypD with glycerol bound', 'HypD with Hyp bound') 1
('HypD', 'Radical per monomer (%)', 'Activity detected by quantification of proline', 'Km (mM)', 'Un-normalized kcat (s−1)', 'Glycyl radical- normalized kcat (s−1)', 'Catalytic efficiency using normalized kcat (M−1 s−1)') 1
('Primer', 'Sequence (5′ to 3′)', 'Annealing temperature\xa0used, °C') 1
('Symbol', 'Definition') 1
('Species', 'Subfamily', 'Family', 'Length (cm)', 'Max width (cm)', 'Mass (g)') 1
('Individual', 'Length (cm)', 'Max width (cm)', 'Mass (g)') 1
('Z (mm)', 'a0', 'a1', 'b1', 'a2', 'b2', 'W') 1
('Unnamed: 0', 'hsSlo1 + β4 Open', 'hsSlo1 + β4 Closed', 'hsSlo1 Open', 'hsSlo1 Closed') 1
('ShortName', 'β4 sequence', 'β1 sequence', 'Unnamed: 3', 'ShortName.1', 'β4 sequence.1', 'β1 sequence.1') 1
('strain', 'CRO\xa0MIC (μg/mL)', 'penA (PBP2)', 'ponA (PBP1)', 'PorB 120/121', 'RpoB', 'RpoD') 1
('Strain', 'MIC (μg/ml)', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8') 1
('Protein name', 'Gene', 'Reference', 'TMD', 'Cluster') 1
('Protein name', 'Gene name', 'OMIM#', 'Gene locus', 'Neuropathy') 1
('Unnamed: 0', 'Rin (MΩ)', 'Cm (pF)', 'gGABAAR (pS)', 'gGABAAR/Cm (MΩ/pS)', 'N', 'N.1') 1
('Alcohol Devaluation', 'Unnamed: 1', 'Unnamed: 2', 'Unnamed: 3', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7') 1
('Figure 4a, b', 'Drinking paradigm IA20%−2BC 24h-withdrawal', 'Rat number', 'Last four drinking session (g/kg /24 )') 1
('Unnamed: 0', 'II.1', 'II.2', 'II.4', 'II.5') 1
('Unnamed: 0', 'Tobacco consumption', 'Tobacco consumption - heavy smokers (≥20 cigs/day)', 'Tobacco consumption - light smokers (<20 cigs/day)', 'Smoking cessation', 'Unnamed: 5', 'Unnamed: 6', 'Unnamed: 7', 'Unnamed: 8', 'Unnamed: 9', 'Unnamed: 10', 'Unnamed: 11', 'Unnamed: 12', 'Unnamed: 13', 'Unnamed: 14', 'Unnamed: 15', 'Unnamed: 16', 'Unnamed: 17') 1
('Unnamed: 0', 'Unnamed: 1', 'Unnamed: 2', 'DSM-IV ND diagnosis', 'DSM-IV ND symptoms', 'FTND (≥4)', 'FTND score', 'Unnamed: 7', 'Unnamed: 8', 'Unnamed: 9', 'Unnamed: 10', 'Unnamed: 11', 'Unnamed: 12', 'Unnamed: 13', 'Unnamed: 14', 'Unnamed: 15') 1
('Unnamed: 0', 'Hoolock', 'Hylobates', 'Symphalangus', 'Pongo', 'Gorilla', 'Pan', 'Homo') 1
('Unnamed: 0', 'R2', 'p', 'slope', 'SE', '95% CI', 'intercept', 'SE.1', '95% CI.1', 'Unnamed: 9', 'Unnamed: 10') 1
('Hominidae', 'Hylobatidae', 'Cercopithecoidae', 'Platyrrhini') 1
('Character #', 'Character definition', 'Character statesa', 'Synapomorphic for') 1
('Family', 'Species', 'n', 'M', 'F', '?') 1
('Unnamed: 0', 'Delta rule', 'Bayes learner rule', 'Unnamed: 3', 'Unnamed: 4') 1
('% explorations', 'β', 'ϕ', 'ρ') 1
('Unnamed: 0', 'Μφ', 'Λφ', 'Unnamed: 3', 'Unnamed: 4') 1
('Unnamed: 0', 'LooLM - LooQM', 'ß2 estimate', 'ß2p-value', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6') 1
('Unnamed: 0', 'R²', 'ß1 estimate', 'ß1p-value', 'Unnamed: 4', 'Unnamed: 5', 'Unnamed: 6') 1
('region of', 'peak voxel (mm)', 'reference for', 'Unnamed: 3', 'Unnamed: 4') 1
('Growth condition', 'Abbrv.', 'Nitrogen source', 'Carbon source') 1