-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathrelecov_schema.json
More file actions
6812 lines (6812 loc) · 319 KB
/
relecov_schema.json
File metadata and controls
6812 lines (6812 loc) · 319 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/BU-ISCIII/relecov-tools/blob/main/relecov_tools/schema/relecov_schema.json",
"title": "relecov-tools Schema.",
"description": "Json Schema that specifies the structure, content, and validation rules for relecov-tools",
"version": "3.2.4",
"type": "object",
"properties": {
"organism": {
"header": "Y",
"label": "Organism",
"ontology": "SNOMED:410607006",
"description": "Taxonomic species name of the organism.",
"examples": [
"Severe acute respiratory syndrome coronavirus 2 [NCBITaxon:2697049]"
],
"$ref": "#/$defs/enums/organism",
"classification": "Sample collection and processing",
"type": "string",
"fill_mode": "batch"
},
"public_health_sample_id": {
"header": "Y",
"label": "Public Health sample id (SIVIRA)",
"ontology": "0",
"description": "Identificator provided by the Public Health system",
"examples": [
"2022CEU03926"
],
"classification": "Sample collection and processing",
"type": "string",
"fill_mode": "sample"
},
"collecting_lab_sample_id": {
"header": "Y",
"label": "Sample ID given by originating laboratory",
"ontology": "GENEPIO:0001123",
"description": "Sample ID provided by the laboratory that collects the sample, the collecting institution is requested in column L of this file",
"examples": [
"1197677"
],
"classification": "Database Identifiers",
"type": "string",
"fill_mode": "sample"
},
"submitting_lab_sample_id": {
"header": "Y",
"label": "Sample ID given by the submitting laboratory",
"ontology": "GENEPIO:0001148",
"description": "Sample ID provided by the submitting laboratory that delivers the sample. The submitting laboratory is requested in column M",
"examples": [
"202203144"
],
"classification": "Sequencing",
"type": "string",
"fill_mode": "sample"
},
"microbiology_lab_sample_id": {
"header": "Y",
"label": "Sample ID given in the microbiology lab",
"ontology": "0",
"description": "Sample identification provided by the microbiology laboratory",
"examples": [
"220624"
],
"classification": "Sample collection and processing",
"type": "string",
"fill_mode": "sample"
},
"isolate_sample_id": {
"header": "Y",
"label": "Sample ID given if multiple rna-extraction or passages",
"ontology": "GENEPIO:0001644",
"description": "Sample identification provided if multiple rna-extraction or passages",
"examples": [
"220624.1"
],
"classification": "Database Identifiers",
"type": "string",
"fill_mode": "sample"
},
"sequencing_sample_id": {
"header": "Y",
"label": "Sample ID given for sequencing",
"ontology": "GENEPIO:0000079",
"description": "ID assigned to the sample for sequencing. It must be a unique identifier. If the sample is re-sequenced, the run number should be included, preceded by a dot.",
"examples": [
"SEQ_220624 (SEQ_220624.2)"
],
"classification": "Database Identifiers",
"type": "string",
"fill_mode": "sample"
},
"ena_sample_accession": {
"header": "Y",
"label": "ENA Sample ID",
"ontology": "GENEPIO:0001139",
"description": "ID generated when uploading the sample to ENA",
"examples": [
"ERS123456"
],
"classification": "Public databases",
"type": "string",
"identifiers_org_prefix": "ena.embl",
"fill_mode": "batch"
},
"gisaid_virus_name": {
"header": "Y",
"label": "GISAID Virus Name",
"ontology": "GENEPIO:0100282",
"description": "The user-defined GISAID virus name assigned to the sequence.",
"examples": [
"hCoV-19/Spain/CT-HUJT-RB31776/2022"
],
"classification": "Public databases",
"type": "string",
"fill_mode": "sample"
},
"gisaid_accession_id": {
"header": "Y",
"label": "GISAID id",
"ontology": "NCIT:C180324",
"description": "GISAID sequence ID.",
"examples": [
"EPI_ISL_11222687"
],
"classification": "Public databases",
"type": "string",
"fill_mode": "sample"
},
"collecting_institution": {
"header": "Y",
"label": "Originating Laboratory",
"ontology": "GENEPIO:0001153",
"description": "The name of the agency/institution that collected the sample.",
"examples": [
"Hospital Universitario de Ceuta"
],
"$ref": "#/$defs/enums/collecting_institution",
"classification": "Sample collection and processing",
"type": "string",
"fill_mode": "sample"
},
"submitting_institution": {
"header": "Y",
"label": "Submitting Institution",
"ontology": "GENEPIO:0001159",
"description": "The name of the agency that submitted the sequence to the platform.",
"examples": [
"Instituto De Salud Carlos Iii - Centro Nacional De Microbiologia [Majadahonda] [1328021542]"
],
"$ref": "#/$defs/enums/submitting_institution",
"classification": "Sample collection and processing",
"type": "string",
"fill_mode": "sample"
},
"sequencing_institution": {
"header": "Y",
"label": "Sequencing Institution",
"ontology": "GENEPIO:0100416",
"description": "The name of the agency that generated the sequence",
"examples": [
"Instituto De Salud Carlos Iii - Centro Nacional De Microbiologia [Majadahonda] [1328021542]"
],
"$ref": "#/$defs/enums/sequencing_institution",
"classification": "Sequencing",
"type": "string",
"fill_mode": "sample"
},
"sample_collection_date": {
"header": "Y",
"label": "Sample Collection Date",
"ontology": "SNOMED:399445004",
"description": "The date on which the sample was collected. YYYY-MM-DD",
"examples": [
"2021-04-13"
],
"classification": "Sample collection and processing",
"type": "string",
"format": "date",
"fill_mode": "sample"
},
"sample_received_date": {
"header": "Y",
"label": "Sample Received Date",
"ontology": "SNOMED:281271004",
"description": "The date on which the sample was received. YYYY-MM-DD",
"examples": [
"2021-05-13"
],
"classification": "Sample collection and processing",
"type": "string",
"format": "date",
"fill_mode": "sample"
},
"purpose_sampling": {
"header": "Y",
"label": "Purpose of sampling",
"ontology": "GENEPIO:0001198",
"description": "The reason that the sample was collected.",
"examples": [
"Surveillance"
],
"$ref": "#/$defs/enums/purpose_sampling",
"classification": "Sample collection and processing",
"type": "string",
"fill_mode": "batch"
},
"sample_storage_conditions": {
"header": "Y",
"label": "Biological Sample Storage Condition",
"ontology": "NCIT:C115535",
"description": "Conditions under which the sample is stored",
"examples": [
"-80ºC"
],
"classification": "Sample collection and processing",
"type": "string",
"fill_mode": "batch"
},
"specimen_source": {
"header": "Y",
"label": "Specimen source",
"ontology": "SNOMED:703065002",
"description": "Source of the specimen, merge of anatomical_part, anatomical_material, body_product and collection method.",
"examples": [
"Nasopharynx exudate"
],
"$ref": "#/$defs/enums/specimen_source",
"classification": "Sample collection and processing",
"type": "string",
"fill_mode": "batch"
},
"environmental_material": {
"header": "Y",
"label": "Environmental Material",
"ontology": "GENEPIO:0001223",
"description": "A substance obtained from the natural or man-made environment e.g. soil, water, sewage, door handle, bed handrail, face mask.",
"examples": [
"Food isolate"
],
"$ref": "#/$defs/enums/environmental_material",
"classification": "Sample collection and processing",
"type": "string",
"fill_mode": "batch"
},
"environmental_system": {
"header": "Y",
"label": "Environmental System",
"ontology": "GENEPIO:0001232",
"description": "A data field which describes an environmental location as a site in the natural or built environment.",
"examples": [
"Earth surface"
],
"$ref": "#/$defs/enums/environmental_system",
"classification": "Sample collection and processing",
"type": "string",
"fill_mode": "batch"
},
"collection_device": {
"header": "Y",
"label": "Collection Device",
"ontology": "GENEPIO:0001234",
"description": "A data field which describes the instrument or container used to collect the sample. ",
"examples": [
"Swab"
],
"$ref": "#/$defs/enums/collection_device",
"classification": "Sample collection and processing",
"type": "string",
"fill_mode": "batch"
},
"host_common_name": {
"header": "Y",
"label": "Host",
"ontology": "GENEPIO:0001386",
"description": "The commonly used name of the host.",
"examples": [
"Human"
],
"$ref": "#/$defs/enums/host_common_name",
"classification": "Host information",
"type": "string",
"fill_mode": "batch"
},
"host_age_years": {
"header": "Y",
"label": "Host Age Years",
"ontology": "SNOMED:424144002",
"description": "Age of host at the time of sampling. Age between 3 and 110 years old. Recommended",
"examples": [
55
],
"classification": "Host information",
"type": "integer",
"minimum": 3,
"maximum": 120,
"fill_mode": "sample"
},
"host_age_months": {
"header": "Y",
"label": "Host Age Months",
"ontology": "LOINC:LA33639-8",
"description": "ONLY when [Host Age years] < 3. Age of host at the time of sampling. If the age is less than three years indicate in months between 0 and 36. Recommended",
"examples": [
14
],
"classification": "Host information",
"type": "integer",
"minimum": 0,
"maximum": 36,
"fill_mode": "sample"
},
"host_gender": {
"header": "Y",
"label": "Host Gender",
"ontology": "SNOMED:263495000",
"description": "The gender of the host at the time of sample collection. Recomended",
"examples": [
"Female"
],
"$ref": "#/$defs/enums/host_gender",
"classification": "Host information",
"type": "string",
"fill_mode": "sample"
},
"vaccinated": {
"header": "Y",
"label": "Vaccinated",
"ontology": "NCIT:C28385",
"description": "A status indicating that an individual has received a vaccination.",
"examples": [
"Yes"
],
"$ref": "#/$defs/enums/vaccinated",
"classification": "Host information",
"type": "string",
"fill_mode": "sample"
},
"medicated": {
"header": "Y",
"label": "Specific medication for treatment or prophylaxis",
"ontology": "SNOMED:18629005",
"description": "Has received medication for the identified treatment or prophylaxis",
"examples": [
"Yes"
],
"$ref": "#/$defs/enums/medicated",
"classification": "Host information",
"type": "string",
"fill_mode": "sample"
},
"hospitalized": {
"header": "Y",
"label": "Hospitalization",
"ontology": "LOINC:LA15417-1",
"description": "Whether the patient was admitted to a hospital",
"examples": [
"Yes"
],
"$ref": "#/$defs/enums/hospitalized",
"classification": "Host information",
"type": "string",
"fill_mode": "sample"
},
"icu_admission": {
"header": "Y",
"label": "Admission to intensive care unit",
"ontology": "SNOMED:305351004",
"description": "Whether the patient required ICU care during the illness.",
"examples": [
"Yes"
],
"$ref": "#/$defs/enums/icu_admission",
"classification": "Host information",
"type": "string",
"fill_mode": "sample"
},
"death": {
"header": "Y",
"label": "Death",
"ontology": "LOINC:LA7424-0",
"description": "Whether the patient died as a result of the infection.",
"examples": [
"No"
],
"$ref": "#/$defs/enums/death",
"classification": "Host information",
"type": "string",
"fill_mode": "sample"
},
"immunosuppressed": {
"header": "Y",
"label": "Immunosuppression",
"ontology": "SNOMED:38013005",
"description": "Whether the patient has a weakened immune system.",
"examples": [
"No"
],
"$ref": "#/$defs/enums/immunosuppressed",
"classification": "Host information",
"type": "string",
"fill_mode": "sample"
},
"sequencing_date": {
"header": "Y",
"label": "Sequencing Date",
"ontology": "GENEPIO:0001447",
"description": "The date the sample was sequenced. YYYY-MM-DD",
"examples": [
"2022-02-22"
],
"classification": "Sequencing",
"type": "string",
"format": "date",
"fill_mode": "batch"
},
"nucleic_acid_extraction_protocol": {
"header": "Y",
"label": "Nucleic acid extraction protocol",
"ontology": "OBI_0302884",
"description": "DNA/RNA extraction protocol",
"examples": [
"RT-PCR"
],
"classification": "Sequencing",
"type": "string",
"fill_mode": "batch"
},
"all_in_one_library_kit": {
"header": "Y",
"label": "Commercial All-in-one library kit",
"ontology": "GENEPIO:0000085",
"description": "Packaged kits (containing adapters, indexes, enzymes, buffers etc), tailored for specific sequencing workflows, which allow the simplified preparation of sequencing-ready libraries for small genomes, amplicons, and plasmids.",
"examples": [
"Ion Xpress"
],
"$ref": "#/$defs/enums/all_in_one_library_kit",
"classification": "Sequencing",
"type": "string",
"fill_mode": "batch"
},
"library_preparation_kit": {
"header": "Y",
"label": "Library Preparation Kit",
"ontology": "NCIT:C182085",
"description": "The name of the DNA library preparation kit used to generate the library being sequenced.",
"examples": [
"Illumina DNA Prep Tagmentation"
],
"$ref": "#/$defs/enums/library_preparation_kit",
"classification": "Sequencing",
"type": "string",
"fill_mode": "batch"
},
"enrichment_protocol": {
"header": "Y",
"label": "Enrichment Protocol",
"ontology": "EFO_0009089",
"description": "Type of enrichment protocol",
"examples": [
"Amplicon"
],
"$ref": "#/$defs/enums/enrichment_protocol",
"classification": "Sequencing",
"type": "string",
"fill_mode": "batch"
},
"if_enrichment_protocol_is_other_specify": {
"header": "Y",
"label": "If Enrichment Protocol Is Other, Specify",
"ontology": "0",
"description": "Specify if you have used another enrichment protocol",
"examples": [
"Ultracentrifugation-based viral particle enrichment"
],
"classification": "Sequencing",
"type": "string",
"fill_mode": "batch"
},
"enrichment_panel": {
"header": "Y",
"label": "Enrichment panel/assay",
"ontology": "NGBO:6000323",
"description": "Commercial or custom panel/assay used for enrichment.",
"examples": [
"ARTIC"
],
"$ref": "#/$defs/enums/enrichment_panel",
"classification": "Sequencing",
"type": "string",
"fill_mode": "batch"
},
"if_enrichment_panel_assay_is_other_specify": {
"header": "Y",
"label": "If Enrichment panel/assay Is Other, Specify",
"ontology": "0",
"description": "Specify if you have used another enrichment panel/assay",
"examples": [
"Swift Normalase Amplicon SARS-CoV-2 Panel"
],
"classification": "Sequencing",
"type": "string",
"fill_mode": "batch"
},
"enrichment_panel_version": {
"header": "Y",
"label": "Enrichment panel/assay version",
"ontology": "0",
"description": "Version fo the enrichment panel",
"examples": [
"ARTIC v4"
],
"$ref": "#/$defs/enums/enrichment_panel_version",
"classification": "Sequencing",
"type": "string",
"fill_mode": "batch"
},
"number_of_samples_in_run": {
"header": "Y",
"label": "Number Of Samples In Run",
"ontology": "KISAO_0000326",
"description": "Total count of samples included in the sequencing run.",
"examples": [
96
],
"classification": "Sequencing",
"type": "integer",
"minimum": 1,
"maximum": 10000,
"fill_mode": "batch"
},
"runID": {
"header": "Y",
"label": "Runid",
"ontology": "NCIT:C117058",
"description": "Unique sequencing run identifier.",
"examples": [
"MiSeq_GEN_267_20220208_ICasas"
],
"classification": "Sequencing",
"type": "string",
"fill_mode": "batch"
},
"sequencing_instrument_model": {
"header": "Y",
"label": "Sequencing Instrument Model",
"ontology": "GENEPIO:0001452",
"description": "The model of the sequencing instrument used.",
"examples": [
"Illumina NextSeq 550"
],
"$ref": "#/$defs/enums/sequencing_instrument_model",
"classification": "Sequencing",
"type": "string",
"fill_mode": "batch"
},
"flowcell_kit": {
"header": "Y",
"label": "Flowcell Kit",
"ontology": "0",
"description": "Flowcell sequencer used for sequencing the sample",
"examples": [
"NextSeq 500/550 High Output Kit v2.5 (75 Cycles)"
],
"$ref": "#/$defs/enums/flowcell_kit",
"classification": "Sequencing",
"type": "string",
"fill_mode": "batch"
},
"library_source": {
"header": "Y",
"label": "Source material",
"ontology": "GENEPIO:0001965",
"description": "Molecule type used to make the library.",
"examples": [
"viral RNA source"
],
"$ref": "#/$defs/enums/library_source",
"classification": "Sequencing",
"type": "string",
"fill_mode": "batch"
},
"library_selection": {
"header": "Y",
"label": "Capture method",
"ontology": "GENEPIO:0001940",
"description": "Library capture method.",
"examples": [
"PCR method"
],
"$ref": "#/$defs/enums/library_selection",
"classification": "Sequencing",
"type": "string",
"fill_mode": "batch"
},
"library_strategy": {
"header": "Y",
"label": "Sequencing technique",
"ontology": "GENEPIO:0001973",
"description": "Overall sequencing strategy or approach.",
"examples": [
"WGS strategy"
],
"$ref": "#/$defs/enums/library_strategy",
"classification": "Sequencing",
"type": "string",
"fill_mode": "batch"
},
"library_layout": {
"header": "Y",
"label": "Library Layout",
"ontology": "NCIT:C175894",
"description": "Single or paired sequencing configuration",
"examples": [
"Single-end"
],
"$ref": "#/$defs/enums/library_layout",
"classification": "Sequencing",
"type": "string",
"fill_mode": "batch"
},
"gene_name_1": {
"header": "Y",
"label": "Gene Name 1",
"ontology": "GENEPIO:0001507",
"description": "The name of the gene used in the diagnostic RT-PCR test.",
"examples": [
"ORF1ab"
],
"$ref": "#/$defs/enums/gene_name_1",
"classification": "Pathogen diagnostic testing",
"type": "string",
"fill_mode": "batch"
},
"diagnostic_pcr_Ct_value_1": {
"header": "Y",
"label": "Diagnostic Pcr Ct Value 1",
"ontology": "GENEPIO:0001509",
"description": "The Ct value result from a diagnostic SARS-CoV-2 RT-PCR test.",
"examples": [
40.0
],
"classification": "Pathogen diagnostic testing",
"type": "number",
"minimum": 0,
"maximum": 40,
"fill_mode": "batch"
},
"gene_name_2": {
"header": "Y",
"label": "Gene Name 2",
"ontology": "GENEPIO:0001510",
"description": "The name of the gene used in the diagnostic RT-PCR test.",
"examples": [
"S"
],
"$ref": "#/$defs/enums/gene_name_2",
"classification": "Pathogen diagnostic testing",
"type": "string",
"fill_mode": "batch"
},
"diagnostic_pcr_Ct_value_2": {
"header": "Y",
"label": "Diagnostic Pcr Ct Value-2",
"ontology": "GENEPIO:0001512",
"description": "The cycle threshold (CT) value result from a diagnostic SARS-CoV-2 RT-PCR test.",
"examples": [
"40"
],
"classification": "Pathogen diagnostic testing",
"type": "string",
"minimum": 0,
"maximum": 40,
"fill_mode": "batch"
},
"authors": {
"header": "Y",
"label": "Authors",
"ontology": "NCIT:C183329",
"description": "A data field which describes the names of individuals contributing to the processes of sample collection, sequence generation, analysis, and data submission.",
"examples": [
"Sánchez P"
],
"classification": "Public databases",
"type": "string",
"fill_mode": "batch"
},
"sequence_file_R1": {
"header": "Y",
"label": "Sequence file R1",
"ontology": "GENEPIO:0001476",
"description": "A data field which describes the user-specified filename of the read 1 (r1) file.",
"examples": [
"ABC123_S1_L001_R1_001.fastq.gz"
],
"classification": "Bioinformatics and QC metrics fields",
"type": "string",
"fill_mode": "sample"
},
"sequence_file_R2": {
"header": "Y",
"label": "Sequence file R2",
"ontology": "GENEPIO:0001477",
"description": "A data field which describes the user-specified filename of the read 2 (r2) file. ",
"examples": [
"ABC123_S1_L001_R2_002.fastq.gz"
],
"classification": "Bioinformatics and QC metrics fields",
"type": "string",
"fill_mode": "sample"
},
"unique_sample_id": {
"header": "N",
"label": "Unique identifier",
"ontology": "NCIT:C70663",
"description": "Unique identifier for each sample",
"examples": [
"AXM1456"
],
"classification": "Sample collection and processing",
"type": "string",
"fill_mode": "batch"
},
"batch_id": {
"header": "N",
"label": "Batch identifier",
"ontology": "NCIT:C104504",
"description": "Unique identifier for each analysis batch",
"examples": [
"20250506140633"
],
"classification": "Sample collection and processing",
"type": "string",
"fill_mode": "batch"
},
"submitting_institution_id": {
"header": "N",
"label": "Submitting Institution Identifier",
"ontology": "NCIT:C81294",
"description": "The Institution identifier that is submitting data or information.",
"examples": [
"COD-1111-BU"
],
"classification": "Sample collection and processing",
"type": "string",
"fill_mode": "batch"
},
"collecting_institution_code_1": {
"header": "N",
"label": "CCN",
"ontology": "SNOMED:423901009",
"description": "CCN code from the agency/institution that collected the sample.",
"examples": [
"1328021542"
],
"classification": "Sample collection and processing",
"type": "string",
"fill_mode": "sample"
},
"collecting_institution_code_2": {
"header": "N",
"label": "CODCNH",
"ontology": "NCIT:C101703",
"description": "CODCNH code from the agency/institution that collected the sample.",
"examples": [
"40059"
],
"classification": "Sample collection and processing",
"type": "string",
"fill_mode": "batch"
},
"collecting_institution_email": {
"header": "N",
"label": "Originating Laboratory Email",
"ontology": "OBI:0001890",
"description": "The email address of the contact responsible for follow-up regarding the sample.",
"examples": [
"johnnyblogs@lab.ca"
],
"classification": "Sample collection and processing",
"type": "string",
"fill_mode": "batch"
},
"collecting_institution_address": {
"header": "N",
"label": "Originating Laboratory Address",
"ontology": "GENEPIO:0001158",
"description": "The mailing address of the agency collecting the sample.",
"examples": [
"655 Lab St, Vancouver, British Columbia, V5N 2A2, Canada"
],
"classification": "Sample collection and processing",
"type": "string",
"fill_mode": "batch"
},
"autonom_cod": {
"header": "N",
"label": "Autonomic Center Code",
"ontology": "GENEPIO:0001803",
"description": "Autonomic center Code",
"examples": [
"11380"
],
"classification": "Sample collection and processing",
"type": "string",
"fill_mode": "batch"
},
"submitting_institution_email": {
"header": "N",
"label": "Submitting Institution Email",
"ontology": "GENEPIO:0001165",
"description": "The email address of the contact responsible for follow-up regarding the sequence.",
"examples": [
"RespLab@lab.ca"
],
"classification": "Sample collection and processing",
"type": "string",
"fill_mode": "batch"
},
"submitting_institution_address": {
"header": "N",
"label": "Submitting Institution Address",
"ontology": "GENEPIO:0001167",
"description": "The mailing address of the agency submitting the sequence.",
"examples": [
"123 Sunnybrooke St, Toronto, Ontario, M4P 1L6, Canada"
],
"classification": "Sample collection and processing",
"type": "string",
"fill_mode": "batch"
},
"geo_loc_country": {
"header": "N",
"label": "Country",
"ontology": "GENEPIO:0001181",
"description": "The country of origin of the sample.",
"examples": [
"South Africa [GAZ:00001094]"
],
"$ref": "#/$defs/enums/geo_loc_country",
"classification": "Sample collection and processing",
"type": "string",
"fill_mode": "batch"
},
"geo_loc_state": {
"header": "N",
"label": "Autonomic Community",
"ontology": "GENEPIO:0001185",
"description": "The state/province/territory of origin of the sample.",
"examples": [
"Andalucía"
],
"$ref": "#/$defs/enums/geo_loc_state",
"classification": "Sample collection and processing",
"type": "string",
"fill_mode": "batch"
},
"geo_loc_state_cod": {
"header": "N",
"label": "Autonomic Community Code",
"ontology": "NCIT:C218832",
"description": "Official Code of the state/province/territory of origin of the sample.",
"examples": [
"1"
],
"classification": "Sample collection and processing",
"type": "string",
"fill_mode": "batch"
},
"geo_loc_region": {
"header": "N",
"label": "Province",
"ontology": "NCIT:C25632 ",
"description": "The county/region of origin of the sample.",
"examples": [
"Almería"
],
"$ref": "#/$defs/enums/geo_loc_region",
"classification": "Sample collection and processing",
"type": "string",
"fill_mode": "batch"
},
"geo_loc_region_cod": {
"header": "N",
"label": "Province Code",
"ontology": 0,
"description": "Official Code of the county/region of origin of the sample.",
"examples": [
"4"
],
"classification": "Sample collection and processing",
"type": "string",
"fill_mode": "batch"
},
"geo_loc_city": {
"header": "N",
"label": "City",
"ontology": "GENEPIO:0001189",
"description": "The city of origin of the sample.",
"examples": [
"Vancouver"
],
"classification": "Sample collection and processing",
"type": "string",
"fill_mode": "batch"
},
"geo_loc_city_cod": {
"header": "N",
"label": "City Code",
"ontology": 0,
"description": "Official Code of the city of origin of the sample.",
"examples": [
"40139"
],
"classification": "Sample collection and processing",
"type": "string",
"fill_mode": "batch"
},
"post_code": {
"header": "N",
"label": "Postal Code",
"ontology": "NCIT:C25621",
"description": "Post Code of the agency/institution that collected the sample.",
"examples": [
"4120"
],
"classification": "Sample collection and processing",
"type": "string",
"fill_mode": "batch"
},
"dep_func": {
"header": "N",
"label": "Functional Dependency",
"ontology": "mesh:D009935",
"description": "The type of entity to which the facility is affiliated",
"examples": [
"Servicios O Institutos De Salud De Las Comunidades Autónomas"
],
"classification": "Sample collection and processing",
"type": "string",
"fill_mode": "batch"
},
"center_class_code": {
"header": "N",
"label": "Center Class Code",
"ontology": "NCIT:C93878",
"description": "Official code of Institution’s functional classification or primary service purpose",
"examples": [
"C11"
],
"classification": "Sample collection and processing",
"type": "string",
"fill_mode": "batch"
},
"collecting_institution_function": {
"header": "N",
"label": "Center Class Function",
"ontology": "NCIT:C188820",
"description": "Institution’s functional classification or primary service purpose",
"examples": [
"Hospitales Generales"
],
"classification": "Sample collection and processing",
"type": "string",
"fill_mode": "batch"
},
"lab_geo_loc_latitude": {
"header": "N",
"label": "Originating Laboratory Latitude",
"ontology": "EFO:0005020",
"description": "The latitude coordinates of the geographical location of the agency/institution that collected the sample.",
"examples": [
"36.8625108"
],
"classification": "Sample collection and processing",
"type": "string",
"fill_mode": "batch"
},
"lab_geo_loc_longitude": {
"header": "N",
"label": "Originating Laboratory Longitude",
"ontology": "EFO:0005021",
"description": "The longitude coordinates of the geographical location of the agency/institution that collected the sample.",
"examples": [
"-2.4467449"
],
"classification": "Sample collection and processing",
"type": "string",
"fill_mode": "batch"
},
"collecting_institution_phone": {
"header": "N",
"label": "Originating Laboratory Phone",
"ontology": "NCIT:C40978",
"description": "Phone of the agency/institution that collected the sample.",
"examples": [
"950016114"
],
"classification": "Sample collection and processing",