-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemsl_header.json
executable file
·1586 lines (1586 loc) · 75 KB
/
emsl_header.json
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
{
"GUID Source": {
"1": "Indicate the source of the GUID that you have provided for your samples.",
"2": "enumeration",
"header": "guid_source",
"sub_port_mapping": "guid_source"
},
"Other GUID Source": {
"1": "Please specify if \"other\"",
"2": "{text}",
"header": "other_guid_source",
"sub_port_mapping": "other_guid_source"
},
"Unique ID": {
"1": "Field REQUIRED for ALL sample submission. Options: IGSN- http://www.geosamples.org/getigsn ; UUID- https://www.uuidgenerator.net/",
"2": "{text}",
"header": "unique_ID",
"sub_port_mapping": "source_mat_id"
},
"Sample Name": {
"1": "ID that is present on the shipped sample. Human readable.",
"2": "{text}",
"header": "sample_name",
"sub_port_mapping": "samp_name"
},
"Analysis/Data Type": {
"1": "This field is constrained to contain only a set of limited terms that indicate the types of data that were generated. Include all the data types, this field can have multiple values separated by a ;",
"2": "enumeration",
"header": "analysis_type",
"sub_port_mapping": "analysis_type"
},
"Number Technical Replicate": {
"1": "If sending multiple technical replicates of the same sample, indicate how many replicates are being sent",
"2": "{integer}",
"header": "technical_reps",
"sub_port_mapping": "technical_reps"
},
"Replicate Number": {
"1": "If sending biological replicates, indicate the rep number here.",
"2": "{integer}",
"header": "replicate_number",
"sub_port_mapping": "replicate_number"
},
"Source Material ID": {
"1": "A unique identifier assigned to an original material sample collected or to any derived sub-samples. The source material should be listed as a sample to inform details about parent material relationship.",
"2": "{origin}:{text}",
"header": "source_mat_ID",
"sub_port_mapping": "source_mat_id"
},
"sample linkage": {
"1": "A unique identifier to assign parent-child, subsample, or sibling samples. This is relevant when a sample or other material was used to generate the new sample. This field allows multiple entries separated by ; (Examples: Soil collected from the field will link with the soil used in an incubation. The soil a plant was grown in links to the plant sample. An original culture sample was transferred to a new vial and generated a new sample)",
"2": "{origin}:{text}",
"header": "sample_link",
"sub_port_mapping": "sample_link"
},
"Growth Facility": {
"1": "Type of facility where the sample was collected or grown",
"2": "enumeration",
"header": "growth_facil",
"sub_port_mapping": "growth_facil"
},
"Other Growth Facility": {
"1": "Please specify if \"other\"",
"2": "{text}",
"header": "other_growth_facil",
"sub_port_mapping": "other_growth_facil"
},
"Sample size": {
"1": "Total amount of sample sent to EMSL, include units",
"2": "{value}{text}",
"header": "shipped_sample_size",
"sub_port_mapping": "sample_shipped"
},
"Collection Date": {
"1": "The date of sampling, either as an instance (single point) or interval.",
"2": "{YYYY-MM-DD}",
"header": "collection_date",
"sub_port_mapping": "collection_date"
},
"Storage Condition": {
"1": "Detail how your sample was stored",
"2": "{YYYY-MM-DD}",
"header": "storage_condt",
"sub_port_mapping": "store_cond"
},
"Other Storage Condition": {
"1": "Please specify if \"other\"",
"2": "{text}",
"header": "other_storage_condt",
"sub_port_mapping": "other_storage_condt"
},
"Storage temperature": {
"1": "Details what temperature samples should be stored at",
"2": "enumeration",
"header": "samp_store_temp",
"sub_port_mapping": "emsl_store_temp"
},
"Other Storage temperature": {
"1": "Please specify if \"other\"",
"2": "{float} {unit}",
"header": "other_samp_store_temp",
"sub_port_mapping": "other_samp_store_temp"
},
"Geographical Location Name": {
"1": "The geographical origin of the sample as defined by the country or sea name followed by specific region name. Country or sea names should be chosen from the INSDC country list (http://insdc.org/country.html), or the GAZ ontology (http://purl.bioontology.org/ontology/GAZ).",
"2": "country or sea name (INSDC or GAZ): region(GAZ), specific location name",
"header": "geo_loc_name",
"sub_port_mapping": "geo_loc_name"
},
"latitude, longitude": {
"1": "The geographical origin of the sample as defined by latitude and longitude. The values should be reported in decimal degrees and in WGS84 system.",
"2": "{latitude decimal; longitude decimal}",
"header": "lat_lon",
"sub_port_mapping": "lat_lon"
},
"elevation-meters": {
"1": "Elevation of the sampling site is its height above a fixed reference point, most commonly the mean sea level. Elevation is mainly used when referring to points on the earth's surface, while altitude is used for points above the surface, such as an aircraft in flight or a spacecraft in orbit",
"2": "{value}",
"header": "elev",
"sub_port_mapping": "elev"
},
"Material Processing": {
"1": "A brief description of any processing applied to the sample during or after retrieving the sample from environment, or a link to the relevant protocol(s) performed.",
"2": "{text}|{termLabel} {[termID]}",
"header": "sample_processing",
"sub_port_mapping": "samp_mat_process"
},
"sample collection method": {
"1": "The method employed for collecting the sample. This can be a citation or description",
"2": "{PMID}|{DOI}|{URL}|{text}",
"header": "sample_collection_method",
"sub_port_mapping": "samp_collec_method"
},
"depth": {
"1": "The vertical distance below local surface. For sediment or soil samples depth is measured from sediment or soil surface, respectively. Depth can be reported as an interval for subsurface samples.",
"2": "{range value} {units} or {value}{units}",
"header": "depth",
"sub_port_mapping": "depth"
},
"sample collection device": {
"1": "The device used to collect an environmental sample. Include dimensions of device if applicable",
"2": "{text} {dimensions}",
"header": "sample_collection_dev",
"sub_port_mapping": "samp_collec_device"
},
"Sieve Size": {
"1": "Collection design of pooled samples and/or sieve size and amount of sample sieved",
"2": "{value}{text}",
"header": "sieving",
"sub_port_mapping": "sieving"
},
"Filter Method": {
"1": "Type of filter used or how the sample was filteres",
"2": "{text}",
"header": "filter_method",
"sub_port_mapping": "filter_method"
},
"Plant Structure": {
"1": "Name of plant structure the sample was obtained from; for Plant Ontology (PO) (v releases/2017-12-14) terms, see http://purl.bioontology.org/ontology/PO, e.g. petiole epidermis (PO_0000051). If an individual flower is sampled, the sex of it can be recorded here.",
"2": "enumeration",
"header": "plant_struc",
"sub_port_mapping": "plant_struc"
},
"Incubation Start Date": {
"1": "Date the incubation was started. Only relevant for incubation samples.",
"2": "{YYYY-MM-DD} or {YYYY-MM-DDTHH:MM:SS}",
"header": "start_date_inc",
"sub_port_mapping": "start_date_inc"
},
"Incubation Collection Date": {
"1": "Date the incubation was harvested/collected/ended. Only relevant for incubation samples.",
"2": "{YYYY-MM-DD}",
"header": "collection_date_inc",
"sub_port_mapping": "collection_date_inc"
},
"collection time": {
"1": "The time of sampling, either as an instance (single point) or interval. Time should be formatted as HH:MM:SS",
"2": "{HH:MM:SS}",
"header": "collection_time",
"sub_port_mapping": "collection_time"
},
"common name": {
"1": "Common name of the host, e.g. Human",
"2": "{text}",
"header": "host_common_name",
"sub_port_mapping": "host_common_name"
},
"NCBI ID": {
"1": "NCBI taxa ID",
"2": "{text}",
"header": "host_taxid",
"sub_port_mapping": "host_taxid"
},
"isolation and growth condition": {
"1": "Publication reference in the form of pubmed ID (pmid), digital object identifier (doi) or url for isolation and growth condition specifications of the organism/material",
"2": "{PMID|DOI|URL}",
"header": "isol_growth_condt",
"sub_port_mapping": "isol_growth_condt"
},
"Growth Medium": {
"1": "Method of growth and medium/materials used",
"2": "enumeration",
"header": "growth_medium",
"sub_port_mapping": "growth_medium"
},
"watering regimen/schedule treatment": {
"1": "Information about treatment involving an exposure to watering frequencies, treatment regimen including how many times the treatment was repeated, how long each treatment lasted, and the start and end time of the entire treatment; can include multiple regimens",
"2": "{float} {unit};{Rn/start_time/end_time/duration}",
"header": "watering_regm",
"sub_port_mapping": "watering_regm"
},
"air temperature regimen treatment": {
"1": "Information about treatment involving an exposure to varying temperatures; should include the temperature, treatment regimen including how many times the treatment was repeated, how long each treatment lasted, and the start and end time of the entire treatment; can include different temperature regimens",
"2": "{float} {unit};{Rn/start_time/end_time/duration}",
"header": "air_temp_regm",
"sub_port_mapping": "air_temp_regm"
},
"chemical administration": {
"1": "List of chemical compounds administered to the host or site where sampling occurred, and when (e.g. Antibiotics, n fertilizer, air filter); can include multiple compounds. For chemical entities of biological interest ontology (chebi) (v 163), http://purl.bioontology.org/ontology/chebi",
"2": "CHEBI {termLabel} {[termID]}; {timestamp}",
"header": "chem_administration",
"sub_port_mapping": "chem_administration"
},
"isotope exposure/addition treatment": {
"1": "List isotope exposure or addition applied to your sample.",
"2": "{termLabel} {[termID]}; {timestamp}",
"header": "isotope_exposure",
"sub_port_mapping": "isotope_exposure"
},
"gas evironment/exposure treatment": {
"1": "Use of conditions with differing gaseous environments; should include the name of gaseous compound, amount administered, treatment duration, interval and total experimental duration; can include multiple gaseous environment regimens",
"2": "{text};{float} {unit};{Rn/start_time/end_time/duration}",
"header": "gaseous_environment",
"sub_port_mapping": "gaseous_environment"
},
"climate environment treatment": {
"1": "Treatment involving an exposure to a particular climate; treatment regimen including how many times the treatment was repeated, how long each treatment lasted, and the start and end time of the entire treatment; can include multiple climates",
"2": "{text};{Rn/start_time/end_time/duration}",
"header": "climate_environment",
"sub_port_mapping": "climate_environment"
},
"humidity regimen/adition treatment": {
"1": "Information about treatment involving an exposure to varying degree of humidity; information about treatment involving use of growth hormones; should include amount of humidity administered, treatment regimen including how many times the treatment was repeated, how long each treatment lasted, and the start and end time of the entire treatment; can include multiple regimens",
"2": "{float} {unit};{Rn/start_time/end_time/duration}",
"header": "humidity_regm",
"sub_port_mapping": "humidity_regm"
},
"light regimen treatment": {
"1": "Information about treatment(s) involving exposure to light, including both light intensity and quality.",
"2": "{text};{float} {unit};{float} {unit}",
"header": "light_regm",
"sub_port_mapping": "light_regm"
},
"biotic regimen/addition treatment": {
"1": "Information about treatment(s) involving use of biotic factors, such as bacteria, viruses or fungi.",
"2": "{text}",
"header": "biotic_regm",
"sub_port_mapping": "biotic_regm"
},
"other treatments": {
"1": "If a treatment is applied to your samples and the provided \"treatment\" terms do not satisfy, please add it here. Multiple treatments can be entered here, separated by ;",
"2": "{text}",
"header": "other_treatment",
"sub_port_mapping": "other_treatment"
},
"Extraction method": {
"1": "If you, the user, performed an extraction, preparation, or processing before sending the sample to EMSL, what was it? This is only applicable when sending an \"analytical sample\". See README for more details on types of samples.",
"2": "{reference} or {text}",
"header": "extraction_method",
"sub_port_mapping": "extraction_method"
},
"Method Test": {
"1": "If your samples are TEST sample ONLY, please provide information on what you're hoping this test will resolve.",
"2": "{text}",
"header": "method_development",
"sub_port_mapping": "method_development"
},
"altitude-meters": {
"1": "Altitude is a term used to identify heights of objects such as airplanes, space shuttles, rockets, atmospheric balloons and heights of places such as atmospheric layers and clouds. It is used to measure the height of an object which is above the earthbs surface. In this context, the altitude measurement is the vertical distance between the earth's surface above sea level and the sampled position in the air",
"2": "{value}",
"header": "alt",
"sub_port_mapping": "alt"
},
"Other": {
"1": "Other details about your sample that you feel can't be accurately represented in the available columns.",
"2": "{text}",
"header": "other",
"sub_port_mapping": "other"
},
"amount or size of sample collected": {
"1": "This referes to the TOTAL amount of sample collected from the experiment. NOT the amount sent to EMSL or collected for a specific analysis.",
"2": "{float} {unit}",
"header": "sample_collected",
"sub_port_mapping": "sample_collected"
},
"experimental factor": {
"1": "Experimental factors are essentially the variable aspects of an experiment design which can be used to describe an experiment, or set of experiments, in an increasingly detailed manner. This field accepts ontology terms from Experimental Factor Ontology (EFO) and/or Ontology for Biomedical Investigations (OBI). For a browser of EFO (v 2.95) terms, please see http://purl.bioontology.org/ontology/EFO; for a browser of OBI (v 2018-02-12) terms please see http://purl.bioontology.org/ontology/OBI",
"2": "{termLabel} {[termID]}|{text}",
"header": "experimental_factor",
"sub_port_mapping": "experimental_factor"
},
"experimental factor- other": {
"1": "Other details about your sample that you feel can't be accurately represented in the available columns.",
"2": "{text}",
"header": "experimental_factor_other",
"sub_port_mapping": "experimental_factor_other"
},
"relationship to oxygen": {
"1": "Oxygenation status of sample",
"2": "enumeration",
"header": "oxygen_relationship",
"sub_port_mapping": "oxygen_relationship"
},
"non microbial biomass": {
"1": "Amount of biomass; should include the name for the part of biomass measured, e.g.insect, plant, total. Can include multiple measurements separated by ;",
"2": "{text};{float} {unit}",
"header": "non_microb_biomass",
"sub_port_mapping": "non_microb_biomass"
},
"non-microbial biomass method": {
"1": "Reference or method used in determining biomass",
"2": "{PMID}|{DOI}|{URL}",
"header": "non_microb_biomass_method",
"sub_port_mapping": "non_microb_biomass_method"
},
"observed biotic relationship": {
"1": "Description of relationship(s) between the subject organism and other organism(s) it is associated with. E.g., parasite on species X; mutualist with species Y. The target organism is the subject of the relationship, and the other organism(s) is the object",
"2": "enumeration",
"header": "samp_biotic_relationship",
"sub_port_mapping": "samp_biotic_relationship"
},
"encoded traits": {
"1": "Should include key traits like antibiotic resistance or xenobiotic degradation phenotypes for plasmids, converting genes for phage",
"2": "for plasmid: antibiotic resistance {text}; for phage: converting genes {text}",
"header": "encoded_traits",
"sub_port_mapping": "encoded_traits"
},
"host specificity or range": {
"1": "The NCBI taxonomy identifier of the specific host if it is known",
"2": "{integer}",
"header": "host_spec_range",
"sub_port_mapping": "host_spec_range"
},
"known pathogenicity": {
"1": "To what is the entity pathogenic",
"2": "{text}",
"header": "pathogenicity",
"sub_port_mapping": "pathogenicity"
},
"propagation": {
"1": "This field is specific to different taxa. For phages: lytic/lysogenic, for plasmids: incompatibility group, for eukaryotes: sexual/asexual (Note: there is the strong opinion to name phage propagation obligately lytic or temperate, therefore we also give this choice",
"2": "{text}",
"header": "propagation",
"sub_port_mapping": "propagation"
},
"reference for biomaterial": {
"1": "Primary publication if isolated before genome publication; otherwise, primary genome report.",
"2": "{PMID}|{DOI}|{URL}",
"header": "ref_biomaterial",
"sub_port_mapping": "ref_biomaterial"
},
"specific host": {
"1": "If there is a host involved, please provide its taxid (or environmental if not actually isolated from the dead or alive host - i.e. a pathogen could be isolated from a swipe of a bench etc) and report whether it is a laboratory or natural host)",
"2": "{NCBI taxid}|{text}",
"header": "specific_host",
"sub_port_mapping": "specific_host"
},
"subspecific genetic lineage": {
"1": "Information about the genetic distinctness of the sequenced organism below the subspecies level, e.g., serovar, serotype, biotype, ecotype, or any relevant genetic typing schemes like Group I plasmid. Subspecies should not be recorded in this term, but in the NCBI taxonomy. Supply both the lineage name and the lineage rank separated by a colon, e.g., biovar:abc123.",
"2": "{rank name}:{text}",
"header": "subspecf_gen_lin",
"sub_port_mapping": "subspecf_gen_lin"
},
"trophic level": {
"1": "Trophic levels are the feeding position in a food chain. Microbes can be a range of producers (e.g. chemolithotroph)",
"2": "enumeration",
"header": "trophic_level",
"sub_port_mapping": "trophic_level"
},
"ancestral data": {
"1": "Information about either pedigree or other ancestral information description",
"2": "{text}",
"header": "ances_data",
"sub_port_mapping": "ances_data"
},
"antibiotic regimen": {
"1": "Information about treatment involving antibiotic administration; should include the name of antibiotic, amount administered, treatment regimen including how many times the treatment was repeated, how long each treatment lasted, and the start and end time of the entire treatment; can include multiple antibiotic regimens",
"2": "antibiotic name {text} ;antibiotic amount {float} {unit} ;treatment interval and duration {Rn/start_time/end_time/duration}",
"header": "antibiotic_regm",
"sub_port_mapping": "antibiotic_regm"
},
"biological status": {
"1": "The level of genome modification.",
"2": "enumeration",
"header": "biol_stat",
"sub_port_mapping": "biol_stat"
},
"chemical mutagen": {
"1": "Treatment involving use of mutagens; should include the name of mutagen, amount administered, treatment regimen including how many times the treatment was repeated, how long each treatment lasted, and the start and end time of the entire treatment; can include multiple mutagen regimens",
"2": "mutagen name {text};mutagen amount {float} {unit};treatment interval and duration {Rn/start_time/end_time/duration}",
"header": "chem_mutagen",
"sub_port_mapping": "chem_mutagen"
},
"culture rooting medium": {
"1": "Name or reference for the hydroponic or in vitro culture rooting medium; can be the name of a commonly used medium or reference to a specific medium, e.g. Murashige and Skoog medium. If the medium has not been formally published, use the rooting medium descriptors.",
"2": "{text}|{PMID}|{DOI}|{URL}",
"header": "cult_root_med",
"sub_port_mapping": "cult_root_med"
},
"fertilizer regimen": {
"1": "Information about treatment involving the use of fertilizers; should include the name of fertilizer, amount administered, treatment regimen including how many times the treatment was repeated, how long each treatment lasted, and the start and end time of the entire treatment; can include multiple fertilizer regimens",
"2": "fertilizer name{text}; fertilizer amount {float} {unit}; treatment interval and duration {Rn/start_time/end_time/duration}",
"header": "fertilizer_regm",
"sub_port_mapping": "fertilizer_regm"
},
"fungicide regimen": {
"1": "Information about treatment involving use of fungicides; should include the name of fungicide, amount administered, treatment regimen including how many times the treatment was repeated, how long each treatment lasted, and the start and end time of the entire treatment; can include multiple fungicide regimens",
"2": "fungicide name {text}; fungicide amount {float} {unit}; treatment interval and duration {Rn/start_time/end_time/duration}",
"header": "fungicide_regm",
"sub_port_mapping": "fungicide_regm"
},
"genetic modification": {
"1": "Genetic modifications of the genome of an organism, which may occur naturally by spontaneous mutation, or be introduced by some experimental means, e.g. specification of a transgene or the gene knocked-out or details of transient transfection",
"2": "{PMID}|{DOI}|{URL}|{text}",
"header": "genetic_mod",
"sub_port_mapping": "genetic_mod"
},
"gravity": {
"1": "Information about treatment involving use of gravity factor to study various types of responses in presence, absence or modified levels of gravity; treatment regimen including how many times the treatment was repeated, how long each treatment lasted, and the start and end time of the entire treatment; can include multiple treatments",
"2": "gravity factor value {float} {unit};treatment interval and duration {Rn/start_time/end_time/duration}",
"header": "gravity",
"sub_port_mapping": "gravity"
},
"growth habit": {
"1": "Characteristic shape, appearance or growth form of a plant species",
"2": "enumeration",
"header": "growth_habit",
"sub_port_mapping": "growth_habit"
},
"growth hormone regimen": {
"1": "Information about treatment involving use of growth hormones; should include the name of growth hormone, amount administered, treatment regimen including how many times the treatment was repeated, how long each treatment lasted, and the start and end time of the entire treatment; can include multiple growth hormone regimens",
"2": "growth hormone name {text}; growth hormone amount {text} {unit}; treatment interval and duration {Rn/start_time/end_time/duration}",
"header": "growth_hormone_regm",
"sub_port_mapping": "growth_hormone_regm"
},
"herbicide regimen": {
"1": "Information about treatment involving use of herbicides; information about treatment involving use of growth hormones; should include the name of herbicide, amount administered, treatment regimen including how many times the treatment was repeated, how long each treatment lasted, and the start and end time of the entire treatment; can include multiple regimens",
"2": "herbicide name {text}; herbicide amount {value} {unit}; treatment interval and duration {Rn/start_time/end_time/duration}",
"header": "herbicide_regm",
"sub_port_mapping": "herbicide_regm"
},
"host age": {
"1": "Age of host at the time of sampling; relevant scale depends on species and study, e.g. Could be seconds for amoebae or centuries for trees",
"2": "{float} {unit}",
"header": "host_age",
"sub_port_mapping": "host_age"
},
"host disease status": {
"1": "List of diseases with which the host has been diagnosed; can include multiple diagnoses. The value of the field depends on host; for humans the terms should be chosen from the DO (Human Disease Ontology) at https://www.disease-ontology.org, non-human host diseases are free text",
"2": "disease name or Disease Ontology term {text}|{termLabel} {[termID]}",
"header": "host_disease_stat",
"sub_port_mapping": "host_disease_stat"
},
"host dry mass": {
"1": "Measurement of dry mass",
"2": "{float} {unit}",
"header": "host_dry_mass",
"sub_port_mapping": "host_dry_mass"
},
"host genotype": {
"1": "Observed genotype",
"2": "{text}",
"header": "host_genotype",
"sub_port_mapping": "host_genotype"
},
"host height": {
"1": "The height of subject",
"2": "{float} {unit}",
"header": "host_height",
"sub_port_mapping": "host_height"
},
"host infra-specific name": {
"1": "Taxonomic information about the host below subspecies level",
"2": "{text}",
"header": "host_infra_spec_name",
"sub_port_mapping": "host_infra_spec_name"
},
"host infra-specific rank": {
"1": "Taxonomic rank information about the host below subspecies level, such as variety, form, rank etc.",
"2": "{text}",
"header": "host_infra_spec_rank",
"sub_port_mapping": "host_infra_spec_rank"
},
"host length": {
"1": "The length of subject",
"2": "{float} {unit}",
"header": "host_length",
"sub_port_mapping": "host_length"
},
"host life stage": {
"1": "Description of life stage of host",
"2": "{text}",
"header": "host_life_stage",
"sub_port_mapping": "host_life_stage"
},
"host phenotype": {
"1": "Phenotype of human or other host. For phenotypic quality ontology (pato) (v 2018-03-27) terms, please see http://purl.bioontology.org/ontology/pato. For Human Phenotype Ontology (HP) (v 2018-06-13) please see http://purl.bioontology.org/ontology/HP",
"2": "{text};{termLabel} {[termID]}",
"header": "host_phenotype",
"sub_port_mapping": "host_phenotype"
},
"observed host symbionts": {
"1": "The taxonomic name of the organism(s) found living in mutualistic, commensalistic, or parasitic symbiosis with the specific host.",
"2": "{text}",
"header": "host_symbiont",
"sub_port_mapping": "host_symbiont"
},
"host total mass": {
"1": "Total mass of the host at collection, the unit depends on host",
"2": "{float} {unit}",
"header": "host_tot_mass",
"sub_port_mapping": "host_tot_mass"
},
"host wet mass": {
"1": "Measurement of wet mass",
"2": "{float} {unit}",
"header": "host_wet_mass",
"sub_port_mapping": "host_wet_mass"
},
"mechanical damage": {
"1": "Information about any mechanical damage exerted on the plant; can include multiple damages and sites",
"2": "damage type {text}; body site {text}",
"header": "mechanical_damage",
"sub_port_mapping": "mechanical_damage"
},
"mineral nutrient regimen": {
"1": "Information about treatment involving the use of mineral supplements; should include the name of mineral nutrient, amount administered, treatment regimen including how many times the treatment was repeated, how long each treatment lasted, and the start and end time of the entire treatment; can include multiple mineral nutrient regimens",
"2": "mineral nutrient name {text}; mineral nutrient amount {value} {unit}; treatment interval and duration {Rn/start_time/end_time/duration}",
"header": "mineral_nutr_regm",
"sub_port_mapping": "mineral_nutr_regm"
},
"non-mineral nutrient regimen": {
"1": "Information about treatment involving the exposure of plant to non-mineral nutrient such as oxygen, hydrogen or carbon; should include the name of non-mineral nutrient, amount administered, treatment regimen including how many times the treatment was repeated, how long each treatment lasted, and the start and end time of the entire treatment; can include multiple non-mineral nutrient regimens",
"2": "non-mineral nutrient name {text}; non-mineral nutrient amount {value} {unit}; treatment interval and duration {Rn/start_time/end_time/duration}",
"header": "non_min_nutr_regm",
"sub_port_mapping": "non_min_nutr_regm"
},
"pesticide regimen": {
"1": "Information about treatment involving use of insecticides; should include the name of pesticide, amount administered, treatment regimen including how many times the treatment was repeated, how long each treatment lasted, and the start and end time of the entire treatment; can include multiple pesticide regimens",
"2": "pesticide name {text}; pesticide amount {value} {unit}; treatment interval and duration {Rn/start_time/end_time/duration}",
"header": "pesticide_regm",
"sub_port_mapping": "pesticide_regm"
},
"pH regimen": {
"1": "Information about treatment involving exposure of plants to varying levels of ph of the growth media, treatment regimen including how many times the treatment was repeated, how long each treatment lasted, and the start and end time of the entire treatment; can include multiple regimen",
"2": "{float};{Rn/start_time/end_time/duration}",
"header": "ph_regm",
"sub_port_mapping": "ph_regm"
},
"plant growth medium": {
"1": "Specification of the media for growing the plants or tissue cultured samples, e.g. soil, aeroponic, hydroponic, in vitro solid culture medium, in vitro liquid culture medium. Recommended value is a specific value from EO:plant growth medium (follow this link for terms http://purl.obolibrary.org/obo/EO_0007147) or other controlled vocabulary",
"2": "{termLabel} {[termID]} or [husk|other artificial liquid medium|other artificial solid medium|peat moss|perlite|pumice|sand|soil|vermiculite|water]",
"header": "plant_growth_med",
"sub_port_mapping": "plant_growth_med"
},
"plant product": {
"1": "Substance produced by the plant, where the sample was obtained from",
"2": "{text}",
"header": "plant_product",
"sub_port_mapping": "plant_product"
},
"plant sex": {
"1": "Sex of the reproductive parts on the whole plant, e.g. pistillate, staminate, monoecieous, hermaphrodite.",
"2": "enumeration",
"header": "plant_sex",
"sub_port_mapping": "plant_sex"
},
"radiation regimen": {
"1": "Information about treatment involving exposure of plant or a plant part to a particular radiation regimen; should include the radiation type, amount or intensity administered, treatment regimen including how many times the treatment was repeated, how long each treatment lasted, and the start and end time of the entire treatment; can include multiple radiation regimens",
"2": "radiation type name {text}; radiation amount {value} {unit}; treatment interval and duration {Rn/start_time/end_time/duration}",
"header": "radiation_regm",
"sub_port_mapping": "radiation_regm"
},
"rainfall regimen": {
"1": "Information about treatment involving an exposure to a given amount of rainfall, treatment regimen including how many times the treatment was repeated, how long each treatment lasted, and the start and end time of the entire treatment; can include multiple regimens",
"2": "measurement value {value} {unit}; treatment interval and duration {Rn/start_time/end_time/duration}",
"header": "rainfall_regm",
"sub_port_mapping": "rainfall_regm"
},
"rooting conditions": {
"1": "Relevant rooting conditions such as field plot size, sowing density, container dimensions, number of plants per container.",
"2": "{PMID}|{DOI}|{URL}|{text}",
"header": "root_cond",
"sub_port_mapping": "root_cond"
},
"rooting medium carbon": {
"1": "Source of organic carbon in the culture rooting medium; e.g. sucrose.",
"2": "carbon source name {text}; measurement value {float} {unit}",
"header": "root_med_carbon",
"sub_port_mapping": "root_med_carbon"
},
"rooting medium macronutrients": {
"1": "Measurement of the culture rooting medium macronutrients (N,P, K, Ca, Mg, S); e.g. KH2PO4 (170\u00ac\u00a8\u201a\u00c4\u2020mg/L).",
"2": "macronutrient name {text}; measurement value {float} {unit}",
"header": "root_med_macronutr",
"sub_port_mapping": "root_med_macronutr"
},
"rooting medium micronutrients": {
"1": "Measurement of the culture rooting medium micronutrients (Fe, Mn, Zn, B, Cu, Mo); e.g. H3BO3 (6.2\u00ac\u00a8\u201a\u00c4\u2020mg/L).",
"2": "micronutrient name {text}; measurement value {float} {unit}",
"header": "root_med_micronutr",
"sub_port_mapping": "root_med_micronutr"
},
"rooting medium pH": {
"1": "pH measurement of the culture rooting medium; e.g. 5.5.",
"2": "{float}",
"header": "root_med_ph",
"sub_port_mapping": "root_med_ph"
},
"rooting medium regulators": {
"1": "Growth regulators in the culture rooting medium such as cytokinins, auxins, gybberellins, abscisic acid; e.g. 0.5\u00ac\u00a8\u201a\u00c4\u2020mg/L NAA.",
"2": "regulator name {text}; measurement value {float} {unit}",
"header": "root_med_regl",
"sub_port_mapping": "root_med_regl"
},
"rooting medium solidifier": {
"1": "Specification of the solidifying agent in the culture rooting medium; e.g. agar.",
"2": "{text}",
"header": "root_med_solid",
"sub_port_mapping": "root_med_solid"
},
"rooting medium organic supplements": {
"1": "Organic supplements of the culture rooting medium, such as vitamins, amino acids, organic acids, antibiotics activated charcoal; e.g. nicotinic acid (0.5\u00ac\u00a8\u201a\u00c4\u2020mg/L).",
"2": "supplement name {text}; measurement value {float} {unit}",
"header": "root_med_suppl",
"sub_port_mapping": "root_med_suppl"
},
"salt regimen": {
"1": "Information about treatment involving use of salts as supplement to liquid and soil growth media; should include the name of salt, amount administered, treatment regimen including how many times the treatment was repeated, how long each treatment lasted, and the start and end time of the entire treatment; can include multiple salt regimens",
"2": "salt name {text}; salt amount {value} {unit}; treatment interval and duration {Rn/start_time/end_time/duration}",
"header": "salt_regm",
"sub_port_mapping": "salt_regm"
},
"sample capture status": {
"1": "Reason for the sample",
"2": "enumeration",
"header": "samp_capt_status",
"sub_port_mapping": "samp_capt_status"
},
"other sample capture status": {
"1": "Please specify if \"other\"",
"2": "{text}",
"header": "other_samp_capt_status",
"sub_port_mapping": "other_samp_capt_status"
},
"sample disease stage": {
"1": "Stage of the disease at the time of sample collection, e.g. inoculation, penetration, infection, growth and reproduction, dissemination of pathogen.",
"2": "enumeration",
"header": "samp_dis_stage",
"sub_port_mapping": "samp_dis_stage"
},
"other sample disease stage": {
"1": "Please specify if \"other\"",
"2": "{text}",
"header": "other_samp_dis_stage",
"sub_port_mapping": "other_samp_dis_stage"
},
"seasonal environment": {
"1": "Treatment involving an exposure to a particular season (e.g. Winter, summer, rabi, rainy etc.), treatment regimen including how many times the treatment was repeated, how long each treatment lasted, and the start and end time of the entire treatment",
"2": "seasonal environment name {text}; treatment interval and duration {Rn/start_time/end_time/duration}",
"header": "season_environment",
"sub_port_mapping": "season_environment"
},
"standing water regimen": {
"1": "Treatment involving an exposure to standing water during a plant's life span, types can be flood water or standing water, treatment regimen including how many times the treatment was repeated, how long each treatment lasted, and the start and end time of the entire treatment; can include multiple regimens",
"2": "standing water type {text}; treatment interval and duration {Rn/start_time/end_time/duration}",
"header": "standing_water_regm",
"sub_port_mapping": "standing_water_regm"
},
"tissue culture growth media": {
"1": "Description of plant tissue culture growth media used",
"2": "{PMID}|{DOI}|{URL}|{text}",
"header": "tiss_cult_growth_med",
"sub_port_mapping": "tiss_cult_growth_med"
},
"water temperature regimen": {
"1": "Information about treatment involving an exposure to water with varying degree of temperature, treatment regimen including how many times the treatment was repeated, how long each treatment lasted, and the start and end time of the entire treatment; can include multiple regimens",
"2": "measurement value {value} {unit}; treatment interval and duration {Rn/start_time/end_time/duration}",
"header": "water_temp_regm",
"sub_port_mapping": "water_temp_regm"
},
"miscellaneous parameter": {
"1": "Any other measurement performed or parameter collected, that is not listed here",
"2": "parameter name {text}; measurement value {float} {unit}",
"header": "misc_param",
"sub_port_mapping": "misc_param"
},
"organism count": {
"1": "Total cell count of any organism (or group of organisms) per gram, volume or area of sample, should include name of organism followed by count. The method that was used for the enumeration (e.g. qPCR, atp, mpn, etc.) Should also be provided. (example: total prokaryotes; 3.5e7 cells per ml; qpcr)",
"2": "organism name {text}; measurement value {value} {unit}; enumeration [qPCR|ATP|MPN|other]",
"header": "organism_count",
"sub_port_mapping": "organism_count"
},
"perturbation": {
"1": "Type of perturbation, e.g. chemical administration, physical disturbance, etc., coupled with perturbation regimen including how many times the perturbation was repeated, how long each perturbation lasted, and the start and end time of the entire perturbation period; can include multiple perturbation types",
"2": "perturbation type name {text}; perturbation interval and duration {Rn/start_time/end_time/duration}",
"header": "perturbation",
"sub_port_mapping": "perturbation"
},
"temperature": {
"1": "Temperature of the sample at the time of sampling",
"2": "{float} {unit}",
"header": "temp",
"sub_port_mapping": "temp"
},
"pH": {
"1": "pH measurement of the sample, or liquid portion of sample, or aqueous phase of the fluid",
"2": "{float}",
"header": "ph",
"sub_port_mapping": "ph"
},
"pH method": {
"1": "Reference or method used in determining ph",
"2": "{PMID}|{DOI}|{URL}",
"header": "ph_meth",
"sub_port_mapping": "ph_meth"
},
"alkyl diethers": {
"1": "Concentration of alkyl diethers",
"2": "{float} {unit}",
"header": "alkyl_diethers",
"sub_port_mapping": "alkyl_diethers"
},
"aminopeptidase activity": {
"1": "Measurement of aminopeptidase activity",
"2": "{float} {unit}",
"header": "aminopept_act",
"sub_port_mapping": "aminopept_act"
},
"ammonium": {
"1": "Concentration of ammonium in the sample",
"2": "{float} {unit}",
"header": "ammonium",
"sub_port_mapping": "ammonium"
},
"bacterial carbon production": {
"1": "Measurement of bacterial carbon production",
"2": "{float} {unit}",
"header": "bacteria_carb_prod",
"sub_port_mapping": "bacteria_carb_prod"
},
"bishomohopanol": {
"1": "Concentration of bishomohopanol",
"2": "{float} {unit}",
"header": "bishomohopanol",
"sub_port_mapping": "bishomohopanol"
},
"bromide": {
"1": "Concentration of bromide",
"2": "{float} {unit}",
"header": "bromide",
"sub_port_mapping": "bromide"
},
"calcium": {
"1": "Concentration of calcium in the sample",
"2": "{float} {unit}",
"header": "calcium",
"sub_port_mapping": "calcium"
},
"carbon/nitrogen ratio": {
"1": "Ratio of amount or concentrations of carbon to nitrogen",
"2": "{float} {unit}",
"header": "carb_nitro_ratio",
"sub_port_mapping": "carb_nitro_ratio"
},
"chloride": {
"1": "Concentration of chloride in the sample",
"2": "{float} {unit}",
"header": "chloride",
"sub_port_mapping": "chloride"
},
"chlorophyll": {
"1": "Concentration of chlorophyll",
"2": "{float} {unit}",
"header": "chlorophyll",
"sub_port_mapping": "chlorophyll"
},
"density": {
"1": "Density of the sample, which is its mass per unit volume (aka volumetric mass density)",
"2": "{float} {unit}",
"header": "density",
"sub_port_mapping": "density"
},
"diether lipids": {
"1": "Concentration of diether lipids; can include multiple types of diether lipids",
"2": "diether lipid name {text}; measurement value {float} {unit}",
"header": "diether_lipids",
"sub_port_mapping": "diether_lipids"
},
"dissolved carbon dioxide": {
"1": "Concentration of dissolved carbon dioxide in the sample or liquid portion of the sample",
"2": "{float} {unit}",
"header": "diss_carb_dioxide",
"sub_port_mapping": "diss_carb_dioxide"
},
"dissolved hydrogen": {
"1": "Concentration of dissolved hydrogen",
"2": "{float} {unit}",
"header": "diss_hydrogen",
"sub_port_mapping": "diss_hydrogen"
},
"dissolved inorganic carbon": {
"1": "Dissolved inorganic carbon concentration in the sample, typically measured after filtering the sample using a 0.45 micrometer filter",
"2": "{float} {unit}",
"header": "diss_inorg_carb",
"sub_port_mapping": "diss_inorg_carb"
},
"dissolved organic carbon": {
"1": "Concentration of dissolved organic carbon in the sample, liquid portion of the sample, or aqueous phase of the fluid",
"2": "{float} {unit}",
"header": "diss_org_carb",
"sub_port_mapping": "diss_org_carb"
},
"dissolved organic nitrogen": {
"1": "Dissolved organic nitrogen concentration measured as; total dissolved nitrogen - NH4 - NO3 - NO2",
"2": "{float} {unit}",
"header": "diss_org_nitro",
"sub_port_mapping": "diss_org_nitro"
},
"dissolved oxygen": {
"1": "Concentration of dissolved oxygen",
"2": "{float} {unit}",
"header": "diss_oxygen",
"sub_port_mapping": "diss_oxygen"
},
"glucosidase activity": {
"1": "Measurement of glucosidase activity",
"2": "{float} {unit}",
"header": "glucosidase_act",
"sub_port_mapping": "glucosidase_act"
},
"magnesium": {
"1": "Concentration of magnesium in the sample",
"2": "{float} {unit}",
"header": "magnesium",
"sub_port_mapping": "magnesium"
},
"mean friction velocity": {
"1": "Measurement of mean friction velocity",
"2": "{float} {unit}",
"header": "mean_frict_vel",
"sub_port_mapping": "mean_frict_vel"
},
"mean peak friction velocity": {
"1": "Measurement of mean peak friction velocity",
"2": "{float} {unit}",
"header": "mean_peak_frict_vel",
"sub_port_mapping": "mean_peak_frict_vel"
},
"n-alkanes": {
"1": "Concentration of n-alkanes; can include multiple n-alkanes",
"2": "n-alkane name {text}; measurement value {value} {unit}",
"header": "n_alkanes",
"sub_port_mapping": "n_alkanes"
},
"nitrite": {
"1": "Concentration of nitrite in the sample",
"2": "{float} {unit}",
"header": "nitrite",
"sub_port_mapping": "nitrite"
},
"nitrogen": {
"1": "Concentration of nitrogen (total)",
"2": "{float} {unit}",
"header": "nitro",
"sub_port_mapping": "nitro"
},
"organic carbon": {
"1": "Concentration of organic carbon",
"2": "{float} {unit}",
"header": "org_carb",
"sub_port_mapping": "org_carb"
},
"organic matter": {
"1": "Concentration of organic matter",
"2": "{float} {unit}",
"header": "org_matter",
"sub_port_mapping": "org_matter"
},
"organic nitrogen": {
"1": "Concentration of organic nitrogen",
"2": "{float} {unit}",
"header": "org_nitro",
"sub_port_mapping": "org_nitro"
},
"particulate organic carbon": {
"1": "Concentration of particulate organic carbon",
"2": "{float} {unit}",
"header": "part_org_carb",
"sub_port_mapping": "part_org_carb"
},
"petroleum hydrocarbon": {
"1": "Concentration of petroleum hydrocarbon",
"2": "{float} {unit}",
"header": "petroleum_hydrocarb",
"sub_port_mapping": "petroleum_hydrocarb"
},
"phaeopigments": {
"1": "Concentration of phaeopigments; can include multiple phaeopigments",
"2": "phaeopigment name {text}; measurement value {float} {unit}",
"header": "phaeopigments",
"sub_port_mapping": "phaeopigments"
},
"phospholipid fatty acid": {
"1": "Concentration of phospholipid fatty acids; can include multiple values",
"2": "phospholipid fatty acid name {text}; measurement value {float} {unit}",
"header": "phosplipid_fatt_acid",
"sub_port_mapping": "phosplipid_fatt_acid"
},
"potassium": {
"1": "Concentration of potassium in the sample",
"2": "{float} {unit}",
"header": "potassium",
"sub_port_mapping": "potassium"
},
"pressure": {
"1": "Pressure to which the sample is subject to, in atmospheres",
"2": "{float} {unit}",
"header": "pressure",
"sub_port_mapping": "pressure"
},
"redox potential": {
"1": "Redox potential, measured relative to a hydrogen cell, indicating oxidation or reduction potential",
"2": "{float} {unit}",
"header": "redox_potential",
"sub_port_mapping": "redox_potential"
},
"silicate": {
"1": "Concentration of silicate",
"2": "{float} {unit}",
"header": "silicate",
"sub_port_mapping": "silicate"
},
"sulfate": {
"1": "Concentration of sulfate in the sample",
"2": "{float} {unit}",
"header": "sulfate",
"sub_port_mapping": "sulfate"
},
"sulfide": {
"1": "Concentration of sulfide in the sample",
"2": "{float} {unit}",
"header": "sulfide",
"sub_port_mapping": "sulfide"
},
"tidal stage": {
"1": "Stage of tide",
"2": "enumeration",
"header": "tidal_stage",
"sub_port_mapping": "tidal_stage"
},
"total depth of water column": {
"1": "Measurement of total depth of water column",
"2": "{float} {unit}",
"header": "tot_depth_water_col",
"sub_port_mapping": "tot_depth_water_col"
},
"turbidity": {
"1": "Measure of the amount of cloudiness or haziness in water caused by individual particles",
"2": "{float} {unit}",
"header": "turbidity",
"sub_port_mapping": "turbidity"
},
"salinity": {
"1": "Salinity is the total concentration of all dissolved salts in a water sample. While salinity can be measured by a complete chemical analysis, this method is difficult and time consuming. More often, it is instead derived from the conductivity measurement. This is known as practical salinity. These derivations compare the specific conductance of the sample to a salinity standard such as seawater",
"2": "{float} {unit}",
"header": "salinity",
"sub_port_mapping": "salinity"
},
"salinity method": {
"1": "Method used to determine sample salinity",
"2": "{PMID}|{DOI}|{URL}",
"header": "salinity_method",
"sub_port_mapping": "salinity_method"
},
"alkalinity": {
"1": "Alkalinity, the ability of a solution to neutralize acids to the equivalence point of carbonate or bicarbonate",
"2": "{float} {unit}",
"header": "alkalinity",
"sub_port_mapping": "alkalinity"
},
"alkalinity method": {
"1": "Method used for alkalinity measurement",
"2": "{text}",
"header": "alkalinity_method",
"sub_port_mapping": "alkalinity_method"
},
"nitrate": {
"1": "Concentration of nitrate in the sample",
"2": "{float} {unit}",