-
Notifications
You must be signed in to change notification settings - Fork 0
/
htan_linkml.yaml
10434 lines (10419 loc) · 335 KB
/
htan_linkml.yaml
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
---
id: https://w3id.org/ncihtan/htan-linkml
name: htan-linkml
title: htan-linkml
description: |-
A LinkML data model for HTAN Phase 2
license: MIT
see_also:
- https://ncihtan.github.io/htan-linkml
prefixes:
htan_linkml: https://w3id.org/ncihtan/htan-linkml/
linkml: https://w3id.org/linkml/
biolink: https://w3id.org/biolink/
schema: http://schema.org/
PATO: http://purl.obolibrary.org/obo/PATO_
example: https://example.org/
default_prefix: htan_linkml
default_range: string
imports:
- linkml:types
classes:
program:
is_a: study
description: "Program in the Cancer Data Service refer to a broad framework of goals under which related projects or other research activities are grouped. Example - Clinical Proteomic Tumor Analysis Consortium (CPTAC)"
slots:
- program_name
- program_acronym
- program_short_description
- program_full_description
- program_external_url
- program_sort_order
- program_short_name
- institution
#- crdc_id
study:
description: "The narrative title used as a textual label for a research data collection. Example – University of Texas PDX Development and Trial Center Grant"
slots:
- study_name
- study_acronym
- study_description
- short_description
- study_external_url
- primary_investigator_name
- primary_investigator_email
- co_investigator_name
- co_investigator_email
- phs_accession
- bioproject_accession
- index_date # what are relative dates relative to? dx date, collection date, etc.
- cds_requestor
- funding_agency
- funding_source_program_name
- grant_id
- clinical_trial_system
- clinical_trial_identifier
- clinical_trial_arm
- organism_species
- adult_or_childhood_study # adult, pediatric
- data_types # list from enumerated values
- file_types # list from enumerated values
- data_access_level
- cds_primary_bucket
- cds_secondary_bucket
- cds_tertiary_bucket
- number_of_participants
- number_of_samples
- study_data_types
- file_types_and_format
- size_of_data_being_uploaded
- acl
- study_access
- authz
- study_version
- role_or_affiliation
- title
- first_name
- middle_name
- last_name
- suffix
- email
- clinical_trial_repository
#- crdc_id
participant:
description: "Individual who takes part in the study"
slots:
- study_participant_id
- participant_id
- race
- gender
- ethnicity
# - vital_status
- dbGaP_subject_id
- sex
- crdc_id
diagnosis: # may have multiple dxs for multiple timepoints?
description: "Text term used to describe the patient's histologic diagnosis, as described by the World Health Organization's (WHO) International Classification of Diseases for Oncology (ICD-O)."
slots:
- study_diagnosis_id
- diagnosis_id
- disease_type
- vital_status
- primary_diagnosis
- primary_site
- age_at_diagnosis
- tumor_grade
- tumor_stage_clinical_m
- tumor_stage_clinical_n
- tumor_stage_clinical_t
- morphology
- incidence_type # primary, metastatic, recurrence, progression
- progression_or_recurrence
- days_to_recurrence
- days_to_last_followup
- last_known_disease_status
- days_to_last_known_status
- tissue_or_organ_of_origin
- site_of_resection_or_biopsy
- days_to_last_known_disease_status
#- crdc_id
treatment:
description: "An action or administration of therapeutic agents to produce an effect that is intended to alter the course of a pathologic process."
is_a: case
slots:
- treatment_id
- treatment_type
- treatment_outcome
- days_to_treatment
- therapeutic_agents
- response
#- crdc_id
sample: # aka subspecimen (CMB)
description: "Specimen tissue type collected from the participant."
slots:
- sample_id
- sample_type
- sample_description
- sample_type_category
- sample_tumor_status # tumor or normal
- sample_anatomic_site
- sample_age_at_collection
- derived_from_specimen
- biosample_accession
#- crdc_id
file:
description: "A set of related records kept together provided by a submitter."
slots:
- file_id
- file_name
- file_type
- file_description
- file_size
- md5sum
- file_url_in_cds
- experimental_strategy_and_data_subtypes
- submission_version
- checksum_value
- checksum_algorithm
- crdc_id
- file_mapping_level
#- file_access
genomic_info:
description: "In CDS genomic info refers to the sequencing methodsm techniques and equipment."
is_a: file
slots:
- genomic_info_id
- library_id
- bases
- number_of_reads
- avg_read_length
- coverage
- reference_genome_assembly
- custom_assembly_fasta_file_for_alignment
- design_description
- library_strategy
- library_layout
- library_source
- library_selection
- platform
- instrument_model
- sequence_alignment_software
- reporter_label
- methylation_platform
- library_source_material
- library_source_molecule
#- crdc_id
image:
is_a: file
description: "The imaging data from DICOM and non-DICOM standards into CDS."
slots:
- study_link_id
- de_identification_method_type
- de_identification_method_description
- de_identification_software
- license
- citation_or_DOI
- species
- image_modality
- imaging_equipment_manufacturer
- imaging_equipment_model
- imaging_sofware
- imaging_protocol
- organ_or_tissue
- performed_imaging_study_description
- performed_imaging_study_admittingDiagnosisCode
- performed_imaging_study_nonAcquisitionModalitiesInStudyCode
- performed_imaging_study_lossyImageCompressionIndicator
- performed_imaging_study_summary
- performed_imaging_study_primaryAnatomicSiteCode
- performed_imaging_study_acquisitionTypeCode
- performed_imaging_study_cardiacSynchronizationTechniqueCode
- performed_imaging_study_dataCollectionDiameter
- performed_imaging_study_respiratoryMotionTechniqueCode
- performed_imaging_study_bodyPositionCode
- performed_imaging_study_typeCode
- performed_imaging_study_algorithmCode
- performed_imaging_study_reconstructionFieldOfViewHeight
- performed_imaging_study_reconstructionFieldOfViewWidth
- performed_imaging_study_reconstructionDiameter
- performed_imaging_study_sliceThickness
- performed_imaging_study_reconstructionInterval
- longitudinal_temporal_event_type
- longitudinal_temporal_event_offset
- CTAquisitionProtocolElement_singleCollimationWidth
- CTAquisitionProtocolElement_totalCollimationWidth
- CTAquisitionProtocolElement_gantryDetectorTilt
- CTAquisitionProtocolElement_spiralPitchFactor
- CTAquisitionProtocolElement_ctdiVol
- CTAquisitionProtocolElement_ctdiPhantomTypeCode
- CTAquisitionProtocolElement_kVp
- CTAquisitionProtocolElement_exposureModulationType_Code
- CTImageReconstructionProtocolElement_convolutionKernel
- CTImageReconstructionProtocolElement_convolutionKernelGroupCode
- MRImageAcquisitionProtocolElement_echoPulseSequenceCategoryCode
- MRImageAcquisitionProtocolElement_diffusionBValue
- MRImageAcquisitionProtocolElement_diffusionDirectionalityCode
- MRImageAcquisitionProtocolElement_magneticFieldStrength
- MRImageAcquisitionProtocolElement_resonantNucleusCode
- MRImageAcquisitionProtocolElement_acquisitionContrastCode
- MRImageAcquisitionProtocolElement_inversionRecoveryIndicator
- MRImageAcquisitionProtocolElement_pulseSequenceName
- MRImageAcquisitionProtocolElement_multipleSpinEchoIndicator
- MRImageAcquisitionProtocolElement_phaseContrastIndicator
- MRImageAcquisitionProtocolElement_timeOfFlightContrastIndicator
- MRImageAcquisitionProtocolElement_arterialSpinLabelingContrastCode
- MRImageAcquisitionProtocolElement_steadyStatePulseSequenceCode
- MRImageAcquisitionProtocolElement_echoPlanarPulseSequenceIndicator
- MRImageAcquisitionProtocolElement_saturationRecoveryIndicator
- MRImageAcquisitionProtocolElement_spectrallySelectedSuppressionCode
- MRImageReconstructionProtocolElement_complexImageComponentCode
- PETImagingAcquisitionProtocolElement_gantryDetectorTilt
- Radiopharmaceutical_radionuclideCode
- acquisition_method_type
- tumor_tissue_type
- tissue_fixative
- embedding_medium
- staining_method
- objective
- nominal_magnification
- immersion
- lens_numerical_aperture
- working_distance
- imaging_assay_type
- pyramid
- physical_size_x
- physical_size_y
- physical_size_z
- size_c
- size_t
- size_x
- size_y
- size_z
- channel_metadata_filename
- channel_metadata_file_url_in_cds
- channel_id
- channel_name
- cycle_number
- sub_cycle_number
- target_name
- antibody_name
- rrid_identifier
- fluorophore
- clone
- lot
- catalog_number
- excitation_wavelength
- emission_wavelength
- excitation_bandwidth
- emission_bandwidth
- metal_isotope_element_abbreviation
- metal_isotope_element_mass
- oligo_barcode_upper_strand
- oligo_barcode_lower_strand
- dilution
- concentration
- crdc_id
enums:
CTAquisitionProtocolElement_exposureModulationType_Code_enum:
permissible_values:
ANGULAR: {}
ECG-BASED: {}
LONGITUDINAL: {}
NONE: {}
ORGAN-BASED: {}
MRImageAcquisitionProtocolElement_acquisitionContrastCode_enum:
permissible_values:
DIFFUSION: {}
FLOW_ENCODED_Flow Encoded contrast: {}
FLUID_ATTENUATED_Fluid Attenuated T2 weighted contrast: {}
PERFUSION_Perfusion weighted contrast: {}
PROTON_DENSITY_Proton Density weighted contrast: {}
STIR_Short Tau Inversion Recovery: {}
T1_T1 weighted contrast: {}
T2_STAR_T2* weighted contrast: {}
T2_T2 weighted contrast: {}
TAGGING_Superposition of thin saturation bands onto image: {}
TOF_Time Of Flight weighted contrast: {}
MRImageAcquisitionProtocolElement_diffusionDirectionalityCode_enum:
permissible_values:
BMATRIX: {}
DIRECTIONAL: {}
ISOTROPIC: {}
NONE: {}
MRImageAcquisitionProtocolElement_echoPulseSequenceCategoryCode_enum:
permissible_values:
BOTH: {}
GRADIENT: {}
SPIN: {}
MRImageAcquisitionProtocolElement_resonantNucleusCode_enum:
permissible_values:
129XE: {}
13C: {}
19F: {}
1H: {}
23NA: {}
31P: {}
3HE: {}
7LI: {}
MRImageAcquisitionProtocolElement_spectrallySelectedSuppressionCode_enum:
permissible_values:
FAT: {}
FAT AND WATER: {}
NONE: {}
SILICON GEL: {}
WATER: {}
MRImageAcquisitionProtocolElement_steadyStatePulseSequenceCode_enum:
permissible_values:
FREE PRECESSION: {}
LONGITUDINAL: {}
NONE: {}
TIME REVERSED: {}
TRANSVERSE: {}
MRImageReconstructionProtocolElement_complexImageComponentCode_enum:
permissible_values:
IMAGINARY: {}
MAGNITUDE: {}
PHASE: {}
REAL: {}
adult_or_childhood_study_enum:
permissible_values:
Adult - legal age: {}
Pediatric: {}
data_access_level_enum:
permissible_values:
controlled: {}
mixed: {}
open: {}
de_identification_method_type_enum:
permissible_values:
Automatic: {}
Manual: {}
Not applicable: {}
Semiautomatic: {}
disease_type_enum:
permissible_values:
Acinar Cell Neoplasms: {}
Adenomas and Adenocarcinomas: {}
Adnexal and Skin Appendage Neoplasms: {}
Basal Cell Neoplasms: {}
Blood Vessel Tumors: {}
Complex Mixed and Stromal Neoplasms: {}
Cystic, Mucinous and Serous Neoplasms: {}
Ductal and Lobular Neoplasms: {}
Epithelial Neoplasms, NOS: {}
Fibroepithelial Neoplasms: {}
Fibromatous Neoplasms: {}
Germ Cell Neoplasms: {}
Giant Cell Tumors: {}
Gliomas: {}
Granular Cell Tumors and Alveolar Soft Part Sarcomas: {}
Immunoproliferative Diseases: {}
Leukemias: {}
Lipomatous Neoplasms: {}
Lymphatic Vessel Tumors: {}
Mast Cell Neoplasm: {}
Meningiomas: {}
Mesothelial Neoplasms: {}
Miscellaneous Bone Tumors: {}
Miscellaneous Tumors: {}
Mucoepidermoid Neoplasms: {}
Myelodysplastic Syndromes: {}
Myomatous Neoplasms: {}
Myxomatous Neoplasms: {}
Neoplasms, NOS: {}
Nerve Sheath Tumors: {}
Neuroepitheliomatous Neoplasms: {}
Nevi and Melanomas: {}
Not Applicable: {}
Not Otherwise Specified: {}
Not Reported: {}
Odontogenic Tumors: {}
Osseous and Chondromatous Neoplasms: {}
Paragangliomas and Glomus Tumors: {}
Plasma Cell Neoplasm: {}
Soft Tissue Tumors and Sarcomas, NOS: {}
Squamous Cell Neoplasms: {}
Synovial-like Neoplasms: {}
Thymic Epithelial Neoplasms: {}
Transitional Cell Papillomas and Carcinomas: {}
Trophoblastic neoplasms: {}
Unknown: {}
embedding_medium_enum:
permissible_values:
Agar embedding: {}
Carbowax: {}
Celloidin media: {}
Epoxy Resin (Araldite): {}
Gelatin: {}
Methacrylate: {}
None: {}
Other: {}
Paraffin wax: {}
Unknown: {}
ethnicity_enum:
permissible_values:
Hispanic or Latino: {}
Not Hispanic or Latino: {}
Not allowed to collect: {}
Not reported: {}
Unknown: {}
file_access_enum:
permissible_values:
Controlled: {}
Not specified in data: {}
Open: {}
file_mapping_level_enum:
permissible_values:
Participiant: {}
Sample: {}
Study: {}
file_type_enum:
permissible_values:
BAI: {}
BAM: {}
BED: {}
BW: {}
CNS: {}
CRAI: {}
CRAM: {}
CSV: {}
DICT: {}
FASTQ: {}
GVCF: {}
HTML: {}
IDAT: {}
JSON: {}
MAF: {}
NIFTI: {}
PDF: {}
PED: {}
PNG: {}
SEG: {}
SVG: {}
TAR: {}
TIFF: {}
TSV: {}
TXT: {}
VCF: {}
XLSX: {}
gender_enum:
permissible_values:
Female: {}
Intersex: {}
Male: {}
Not Reported: {}
Unknown: {}
Unspecified: {}
image_modality_enum:
permissible_values:
AR: {}
BDUS: {}
BI: {}
BMD: {}
CFM: {}
CR: {}
CT: {}
DG: {}
DMS: {}
DX: {}
ECG: {}
EEG: {}
EMG: {}
EOG: {}
EPS: {}
ES: {}
GM: {}
HD: {}
IO: {}
IVOCT: {}
IVUS: {}
KER: {}
LEN: {}
LS: {}
MG: {}
MR: {}
NM: {}
Not specified in data: {}
OAM: {}
OCT: {}
OP: {}
OPM: {}
OPT: {}
OPTBSV: {}
OPTENF: {}
OPV: {}
OSS: {}
PA: {}
POS: {}
PT: {}
PX: {}
RESP: {}
RF: {}
RG: {}
RTIMAGE: {}
SM: {}
SRF: {}
TG: {}
US: {}
VA: {}
XA: {}
XC: {}
incidence_type_enum:
permissible_values:
metastasis: {}
no_disease: {}
primary: {}
progression: {}
recurrence: {}
remission: {}
index_date_enum:
permissible_values:
date_of_birth: {}
date_of_collection: {}
date_of_diagnosis: {}
date_of_enrollment: {}
instrument_model_enum:
permissible_values:
454 GS: {}
454 GS 20: {}
454 GS FLX: {}
454 GS FLX Titanium: {}
454 GS FLX+: {}
454 GS Junior: {}
AB 310 Genetic Analyzer: {}
AB 3130 Genetic Analyzer: {}
AB 3130xL Genetic Analyzer: {}
AB 3500 Genetic Analyzer: {}
AB 3500xL Genetic Analyzer: {}
AB 3730 Genetic Analyzer: {}
AB 3730xL Genetic Analyzer: {}
AB 5500 Genetic Analyzer: {}
AB 5500x-Wl Genetic Analyzer: {}
AB 5500xl Genetic Analyzer: {}
AB SOLiD 2: {}
AB SOLiD 3: {}
AB SOLiD 3 Plus System: {}
AB SOLiD 4: {}
AB SOLiD 4hq System: {}
AB SOLiD PI System: {}
AB SOLiD System: {}
BGISEQ-500: {}
Complete Genomics: {}
DNBSEQ-G400: {}
DNBSEQ-G50: {}
DNBSEQ-T7: {}
GridION: {}
Helicos HeliScope: {}
Illumina Genome Analyzer: {}
Illumina Genome Analyzer II: {}
Illumina Genome Analyzer IIx: {}
Illumina HiScanSQ: {}
Illumina HiSeq 1000: {}
Illumina HiSeq 1500: {}
Illumina HiSeq 2000: {}
Illumina HiSeq 2500: {}
Illumina HiSeq 3000: {}
Illumina HiSeq 4000: {}
Illumina HiSeq X Five: {}
Illumina HiSeq X Ten: {}
Illumina MiSeq: {}
Illumina MiniSeq: {}
Illumina NextSeq: {}
Illumina NextSeq 2500: {}
Illumina NextSeq 500: {}
Illumina NextSeq 550: {}
Illumina NovaSeq: {}
Illumina NovaSeq 6000: {}
Illumina iSeq 100: {}
Ion Torrent PGM: {}
Ion Torrent Proton: {}
Ion Torrent S5: {}
Ion Torrent S5 XL: {}
MGISEQ-2000RS: {}
MinION: {}
Not Reported: {}
Other: {}
PacBio RS: {}
PacBio RS II: {}
PacBio Sequel: {}
PacBio Sequel II: {}
PromethION: {}
Ultima Genomics UG100: {}
Unknown: {}
last_known_disease_status_enum:
permissible_values:
Biochemical evidence of disease without structural correlate: {}
Distant met recurrence/progression: {}
Loco-regional recurrence/progression: {}
Metastasis: {}
No_disease: {}
Primary: {}
Progression: {}
Recurrence: {}
Remission: {}
Tumor free: {}
library_layout_enum:
permissible_values:
Paired-End: {}
Single-indexed: {}
library_selection_enum:
permissible_values:
5-methylcytidine antibody: {}
Affinity Enrichment: {}
CAGE: {}
CF-H: {}
CF-M: {}
CF-S: {}
CF-T: {}
ChIP: {}
DNAse: {}
HMPR: {}
Hybrid Selection: {}
Inverse rRNA: {}
MBD2 protein methyl-CpG binding domain: {}
MDA: {}
MF: {}
MNase: {}
MSLL: {}
Not applicable: {}
Other: {}
PCR: {}
Padlock probes capture method: {}
Poly-A Enriched Genomic Library: {}
RACE: {}
RT-PCR: {}
Random: {}
Random PCR: {}
Reduced Representation: {}
Repeat fractionation: {}
Restriction Digest: {}
Size fractionation: {}
Unspecified: {}
cDNA: {}
cDNA oligo_dT: {}
cDNA random priming: {}
miRNA Size Fractionation: {}
rRNA Depletion: {}
library_source_enum:
permissible_values:
Bulk Whole Cell: {}
Genomic: {}
Genomic Single Cell: {}
Metagenomic: {}
Metatranscriptomic: {}
Other: {}
Single Cell: {}
Single Nucleus: {}
Synthetic: {}
Transcriptomic: {}
Transcriptomic Single Cell: {}
Viral RNA: {}
library_source_material_enum:
permissible_values:
Bulk Cells: {}
Bulk Nuclei: {}
Bulk Tissue: {}
Not Reported: {}
Single-cells: {}
Single-nuclei: {}
library_source_molecule_enum:
permissible_values:
Genomic: {}
Metagenomic: {}
Metatranscriptomic: {}
Not Reported: {}
Transcriptomic: {}
Viral RNA: {}
library_strategy_enum:
permissible_values:
AMPLICON: {}
ATAC-Seq: {}
Bisulfite-Seq: {}
CLONE: {}
CLONEEND: {}
CTS: {}
ChIA-PET: {}
ChIP-Seq: {}
DNA-Seq: {}
DNase-Hypersensitivity: {}
EST: {}
FAIRE-seq: {}
FINISHING: {}
FL-cDNA: {}
Hi-C: {}
MBD-Seq: {}
MNase-Seq: {}
MRE-Seq: {}
MeDIP-Seq: {}
Other: {}
POOLCLONE: {}
RAD-Seq: {}
RIP-Seq: {}
RNA-Seq: {}
SELEX: {}
Spatial-tx: {}
Synthetic-Long-Read: {}
Targeted-Capture: {}
Tethered Chromatin Conformation Capture: {}
Tn-Seq: {}
WCS: {}
WGA: {}
WGS: {}
WXS: {}
miRNA-Seq: {}
ncRNA-Seq: {}
scMultiome: {}
snATAC-Seq: {}
ssRNA-seq: {}
license_enum:
permissible_values:
CC BY 3.0 http://creativecommons.org/licenses/by/3.0/: {}
CC BY 4.0 https://creativecommons.org/licenses/by/4.0/: {}
CC BY-NC 3.0 https://creativecommons.org/licenses/by-nc/3.0/: {}
CC BY-NC 4.0 https://creativecommons.org/licenses/by-nc/4.0/: {}
Other: {}
morphology_enum:
permissible_values:
8000/0: {}
8000/1: {}
8000/3: {}
8000/6: {}
8000/9: {}
8001/0: {}
8001/1: {}
8001/3: {}
8002/3: {}
8003/3: {}
8004/3: {}
8005/0: {}
8005/3: {}
8010/0: {}
8010/2: {}
8010/3: {}
8010/6: {}
8010/9: {}
8011/0: {}
8011/3: {}
8012/3: {}
8013/3: {}
8014/3: {}
8015/3: {}
8020/3: {}
8020/6: {}
8021/3: {}
8022/3: {}
8023/3: {}
8030/3: {}
8031/3: {}
8032/3: {}
8033/3: {}
8034/3: {}
8035/3: {}
8040/0: {}
8040/1: {}
8040/3: {}
8041/3: {}
8041/34: {}
8041/6: {}
8042/3: {}
8043/3: {}
8044/3: {}
8045/3: {}
8046/3: {}
8046/6: {}
8050/0: {}
8050/2: {}
8050/3: {}
8051/0: {}
8051/3: {}
8052/0: {}
8052/2: {}
8052/3: {}
8053/0: {}
8060/0: {}
8070/2: {}
8070/3: {}
8070/33: {}
8070/6: {}
8071/2: {}
8071/3: {}
8072/3: {}
8073/3: {}
8074/3: {}
8075/3: {}
8076/2: {}
8076/3: {}
8077/0: {}
8077/2: {}
8078/3: {}
8080/2: {}
8081/2: {}
8082/3: {}
8083/3: {}
8084/3: {}
8085/3: {}
8086/3: {}
8090/1: {}
8090/3: {}
8091/3: {}
8092/3: {}
8093/3: {}
8094/3: {}
8095/3: {}
8096/0: {}
8097/3: {}
8098/3: {}
8100/0: {}
8101/0: {}
8102/0: {}
8102/3: {}
8103/0: {}
8110/0: {}
8110/3: {}
8120/0: {}
8120/1: {}
8120/2: {}
8120/3: {}
8121/0: {}
8121/1: {}
8121/3: {}
8122/3: {}
8123/3: {}
8124/3: {}
8130/1: {}
8130/2: {}
8130/3: {}
8131/3: {}
8140/0: {}
8140/1: {}
8140/2: {}
8140/3: {}
8140/33: {}
8140/6: {}
8141/3: {}
8142/3: {}
8143/3: {}
8144/3: {}
8145/3: {}
8146/0: {}
8147/0: {}
8147/3: {}
8148/0: {}
8148/2: {}
8149/0: {}
8150/0: {}
8150/1: {}
8150/3: {}
8151/0: {}
8151/3: {}
8152/1: {}
8152/3: {}
8153/1: {}
8153/3: {}
8154/3: {}
8155/1: {}
8155/3: {}
8156/1: {}
8156/3: {}
8158/1: {}
8160/0: {}
8160/3: {}
8161/0: {}
8161/3: {}
8162/3: {}
8163/0: {}
8163/2: {}
8163/3: {}
8170/0: {}
8170/3: {}
8171/3: {}
8172/3: {}
8173/3: {}
8174/3: {}
8175/3: {}
8180/3: {}
8190/0: {}
8190/3: {}
8191/0: {}
8200/0: {}
8200/3: {}
8201/2: {}
8201/3: {}
8202/0: {}
8204/0: {}
8210/0: {}
8210/2: {}
8210/3: {}
8211/0: {}
8211/3: {}
8212/0: {}
8213/0: {}
8213/3: {}
8214/3: {}
8215/3: {}
8220/0: {}
8220/3: {}
8221/0: {}
8221/3: {}
8230/2: {}
8230/3: {}
8231/3: {}
8240/1: {}
8240/3: {}
8240/6: {}
8241/3: {}
8242/1: {}
8242/3: {}
8243/3: {}
8244/3: {}
8245/1: {}
8245/3: {}
8246/3: {}
8246/6: {}
8247/3: {}
8248/1: {}
8249/3: {}
8249/6: {}
8250/1: {}
8250/2: {}
8250/3: {}
8251/0: {}
8251/3: {}
8252/3: {}
8253/3: {}
8254/3: {}
8255/3: {}
8256/3: {}
8257/3: {}
8260/0: {}
8260/3: {}
8261/0: {}
8261/2: {}
8261/3: {}
8262/3: {}
8263/0: {}
8263/2: {}
8263/3: {}
8264/0: {}
8265/3: {}
8270/0: {}
8270/3: {}
8271/0: {}
8272/0: {}
8272/3: {}
8280/0: {}
8280/3: {}
8281/0: {}