-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinclude_access_model.yaml
More file actions
1141 lines (1130 loc) · 34.2 KB
/
include_access_model.yaml
File metadata and controls
1141 lines (1130 loc) · 34.2 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
---
id: https://includedcc.org/include-access-model
name: include-access-model
title: INCLUDE DCC Access Model
description: LinkML Schema for the internal INCLUDE DCC Access Model
license: MIT
see_also:
- https://includedcc.github.io/include-access-model
prefixes:
includedcc: https://includedcc.org/include-access-model/
linkml: https://w3id.org/linkml/
schema: http://schema.org/
# subset of CDC Race and Ethnicity Code Set Version 1.0
cdc_race_eth: urn:oid:2.16.840.1.113883.6.238/
hl7_null: http://terminology.hl7.org/CodeSystem/v3-NullFlavor/
ig_dob_method: https://nih-ncpi.github.io/ncpi-fhir-ig-2/CodeSystem/research-data-date-of-birth-method/
igcondtype: https://nih-ncpi.github.io/ncpi-fhir-ig-2/CodeSystem/condition-type/
ig2dac: https://nih-ncpi.github.io/ncpi-fhir-ig-2/CodeSystem/research-data-access-code/
ig2dat: https://nih-ncpi.github.io/ncpi-fhir-ig-2/CodeSystem/research-data-access-type/
ig2_biospecimen_availability: https://nih-ncpi.github.io/ncpi-fhir-ig-2/CodeSystem/biospecimen-availability/
snomed_ct: http://snomed.info/id/
MONDO: http://purl.obolibrary.org/obo/MONDO_
HP: http://purl.obolibrary.org/obo/HP_
mesh: http://id.nlm.nih.gov/mesh/
NCIT: http://purl.obolibrary.org/obo/NCIT_
PATO: http://purl.obolibrary.org/obo/PATO_
default_prefix: includedcc
default_range: string
imports:
- linkml:types
classes:
Record:
description: One row / entity within the database
title: Record
abstract: true
slots:
- external_id
Study:
title: Research Study
description: Study Metadata
is_a: Record
slots:
#TODO: Split out core Study items and additional study metadata?
- study_id
- parent_study
- study_title
- study_code
- study_short_name
- program
- funding_source
- principal_investigator
- contact
- study_description
- website
# - dbgap : Should we call this out specifically or just use an external id?
- publication
- acknowledgments
- citation_statement
- do_id
slot_usage:
study_id:
range: string
required: true
identifier: true
StudyMetadata:
title: Study Metadata
description: Additional features about studies that may not apply to all studies
is_a: Record
slots:
- study_id
- participant_lifespan_stage
- selection_criteria
- study_design
- clinical_data_source_type
- data_category
- vbr
- research_domain
- expected_number_of_participants
- actual_number_of_participants
# Do we need this info, or should it be documented elsewhere?
#- guidType
#- guidMapped
slot_usage:
study_id:
required: true
identifier: true
data_category:
required: true
multivalued: true
VirtualBiorepository:
title: Virtual BioRepository (VBR)
description: An organization that can provide access to specimen for further analysis.
is_a: Record
slots:
- name
- institution
- contact
- website
- vbr_readme
DOI:
title: Digital Object Identifier (DOI)
description: A DOI is a permanent reference with metadata about a digital object.
is_a: Record
slots:
- do_id
- bibliographic_reference
slot_usage:
do_id:
range: string
required: true
identifier: true
Investigator:
title: Investigator
description: An individual who made contributions to the collection, analysis, or sharing of data.
is_a: Record
slots:
- name
- institution
# - orcid : Should we call this out specifically or just use an external id?
- investigator_title
- email
Publication:
title: Publication
description: Information about a specific publication.
is_a: Record
#Could add more here
slots:
- bibliographic_reference
- website
Subject:
title: Subject
description: This entity is the subject about which data or references are recorded.
This includes the idea of a human participant in a study, a cell line, an animal model,
or any other similar entity.
is_a: Record
slots:
- subject_id
- subject_type
- organism_type
slot_usage:
subject_id:
range: string
required: true
identifier: true
Demographics:
title: Demographics
description: Basic participant demographics summary
is_a: Record
slots:
- subject_id
- sex
- race
- ethnicity
- down_syndrome_status
- age_at_last_vital_status
- vital_status
- age_at_first_engagement
slot_usage:
subject_id:
required: true
identifier: true
SubjectAssertion:
title: Subject Assertion
description: Assertion about a particular Subject. May include Conditions, Measurements, etc.
is_a: Record
slots:
- assertion_id
- subject_id
- encounter_id
- assertion_provenance
- age_at_assertion
- age_at_event
- age_at_resolution
- concept
- concept_source
- value_concept
- value_number
- value_source
- value_unit
- value_unit_source
slot_usage:
assertion_id:
range: string
required: true
identifier: true
Concept:
title: Concept
description: A standardized concept with display information.
slots:
- concept_curie
- display
slot_usage:
concept_curie:
required: true
identifier: true
Sample:
title: Sample
description: A functionally equivalent specimen taken from a participant or processed from such a sample.
is_a: Record
slots:
- sample_id
- biospecimen_collection_id
- parent_sample_id
- sample_type
- processing
- availablity_status
- storage_method
- quantity_number
- quantity_unit
slot_usage:
sample_id:
range: string
required: true
identifier: true
biospecimen_collection_id:
description: Biospecimen Collection during which this sample was generated.
BiospecimenCollection:
title: BiospecimenCollection
description: A biospecimen collection event which yields one or more Samples.
is_a: Record
slots:
- biospecimen_collection_id
- age_at_collection
- method
- site
- spatial_qualifier
- laterality
- encounter_id
slot_usage:
biospecimen_collection_id:
range: string
required: true
identifier: true
Aliquot:
title: Aliquot
description: A specific tube or amount of a biospecimen associated with a Sample.
is_a: Record
slots:
- aliquot_id
- sample_id
- availablity_status
- quantity_number
- quantity_unit
- concentration_number
- concentration_unit
slot_usage:
aliquot_id:
range: string
required: true
identifier: true
Encounter:
title: Participant Encounter
description: An event at which data was collected about a participant,
an intervention was made, or information about a participant was recorded.
is_a: Record
slots:
- encounter_id
- subject_id
#TODO: Should this alternatively be an "encounter type", ie, to not require a full definition?
- encounter_definition_id
- age_at_event
slot_usage:
encounter_id:
range: string
required: true
identifier: true
EncounterDefinition:
title: Encounter Definition
description: A definition of an encounter type in this study, ie,
an event at which data was collected about a participant,
an intervention was made, or information about a participant was recorded.
This may be something planned by a study or a type of data collection.
#TODO: These are metadata and may not need the same Record basis.
is_a: Record
slots:
- encounter_definition_id
- name
- description
- activity_definition_id
slot_usage:
encounter_definition_id:
range: string
required: true
identifier: true
activity_definition_id:
multivalued: true
ActivityDefinition:
title: Activity Definition
description: A definition of an activity in this study, eg,
a biospecimen collection, intervention, survey, or assessment.
#TODO: These are metadata and may not need the same Record basis.
is_a: Record
slots:
- activity_definition_id
- name
- description
#TODO: Probably want an "expected data generated" slot, eg,
#observation definitions or dd refs
slot_usage:
activity_definition_id:
range: string
required: true
identifier: true
File:
title: File
description: File
is_a: Record
slots:
- file_id
- subject_id
- sample_id
- filename
- format
- data_category
- data_type
- format
- size
#TODO: I'm not convinced this is the right strategy- access model vs operations
- staging_url
- release_url
- drs_uri
- hash
slot_usage:
file_id:
range: string
required: true
identifier: true
subject_id:
multivalued: true
sample_id:
multivalued: true
FileHash:
title: File Hash
description: Type and value of a file content hash.
slots:
- hash_type
- hash_value
Dataset:
title: Dataset
description: Set of files grouped together for release.
slots:
- dataset_id
- name
- description
- do_id
- file_id
- publication
#TODO: Are these good elements for the core entity?
- data_collection_start
- data_collection_end
slot_usage:
dataset_id:
range: string
required: true
identifier: true
file_id:
multivalued: true
description: The list of files comprising this dataset.
slots:
study_id:
title: Study ID
description: INCLUDE Global ID for the study
range: Study
multivalued: false
do_id:
title: DOI
description: Digital Object Identifier (DOI) for this Record.
range: DOI
multivalued: false
subject_id:
title: Study ID
description: INCLUDE Global ID for the Subject
range: Subject
multivalued: false
assertion_id:
title: Assertion ID
description: INCLUDE Global ID for the Assertion
range: SubjectAssertion
multivalued: false
external_id:
title: External Identifiers
description: Other identifiers for this entity, eg, from the submitting study or in systems like dbGaP
required: false
range: uriorcurie
multivalued: true
parent_study:
title: Parent Study
description: The parent study for this study, if it is a nested study.
required: false
range: Study
multivalued: false
funding_source:
title: Funding Source
description: The funding source(s) of the study.
required: false
range: string
multivalued: true
principal_investigator:
title: Principal Investigator
description: The Principal Investigator(s) responsible for the study.
required: true
range: Investigator
multivalued: true
study_title:
description: Full Study Title
required: true
range: string
multivalued: false
study_code:
description: Unique identifier for the study (generally a short acronym)
title: Study Code
range: string
required: true
study_short_name:
title: Study Code
description: Short name for the study
range: string
required: false
investigator_title:
title: Investigator Title
description: The title of the Investigator, eg, "Assistant Professor"
range: string
required: false
name:
title: Name
description: Name of the entity.
range: string
required: false
email:
title: Email Address
description: An email address to reach the entity.
range: string
required: false
institution:
title: Institution
description: Name of the institution this record is associated with.
range: string
required: false
program:
title: Program
description: Funding source(s) for the study
range: EnumProgram
required: true
multivalued: true
study_description:
title: Study Description
description: Brief description of the study (2-4 sentences)
range: string
required: true
website:
title: Website
description: Website for the Record.
range: uri
contact:
title: Contact Person
description: The individual to contact with questions about this record.
required: true
range: Investigator
multivalued: true
vbr:
title: Virtual Biorepository
description: Information about the study's Virtual Biorepository, if participating
range: VirtualBiorepository
required: false
vbr_readme:
title: VBR Readme
description: Instructions for contacting or requesting samples from Virtual Biorepository, if participating
range: string
research_domain:
description: Main research domain(s) of the study, other than Down syndrome
range: EnumResearchDomain
required: true
multivalued: true
participant_lifespan_stage:
title: Participant Lifespan Stage
description: Focus age group(s) of the study population
range: EnumParticipantLifespanStage
required: true
multivalued: true
selection_criteria:
title: Selection Criteria
description: Brief description of inclusion and/or exclusion criteria for the study
range: string
study_design:
title: Study Design
description: Overall design of study, including whether it is longitudinal and whether family members/unrelated controls are also enrolled
range: EnumStudyDesign
required: true
multivalued: true
data_category:
title: Data Category
description: General category of data in this Record (e.g. Clinical, Genomics, etc)
range: EnumDataCategory
clinical_data_source_type:
title: Clinical Data Source Type
description: Source(s) of data collected from study participants
range: EnumClinicalDataSourceType
required: true
multivalued: true
publication:
title: Publication
description: Publications associated with this Record.
range: Publication
multivalued: true
expected_number_of_participants:
title: Expected Number of Participants
description: Total expected number of participants to be recruited.
range: integer
required: true
actual_number_of_participants:
title: Actual Number of Participants
description: Total participants included at this time.
range: integer
required: true
acknowledgments:
title: Acknowledgments
description: Funding statement and acknowledgments for this study
range: string
citation_statement:
title: Citation Statement
description: Statement that secondary data users should use to acknowledge use of this study or dataset. E.g., "The results analyzed and <published or shown> here are based in whole or in part upon data generated by the INCLUDE (INvestigation of Co-occurring conditions across the Lifespan to Understand Down syndromE) Project <insert accession number(s) and/or study DOI(s)>, and were accessed from the INCLUDE Data Hub and <insert other database(s)>."
range: string
bibliographic_reference:
title: Bibiliographic Reference
description: Text use to reference this Record.
range: string
organism_type:
title: Organism Type
description: Organism Type
required: false
range: uriorcurie
subject_type:
title: Subject Type
description: Type of entity this record represents
required: true
range: EnumSubjectType
sex:
title: Sex
description: Sex of Participant
range: EnumSex
required: true
race:
title: Race
description: Race of Participant
range: EnumRace
required: true
multivalued: true
ethnicity:
title: Ethnicity
description: Ethnicity of Participant
range: EnumEthnicity
required: true
down_syndrome_status:
title: Down Syndrome Status
description: Down Syndrome status of participant
range: EnumDownSyndromeStatus
required: true
age_at_first_engagement:
#Should this just be a reference out to an encounter?
title: Age at First Participant Engagement
description: Age in days of Participant at first recorded study event (enrollment, visit, observation, sample collection, survey completion, etc.). Age at enrollment is preferred, if available.
range: integer
unit:
ucum_code: d
#Range -1 year to 89*365.25 (Privacy upper bound for ages over 89 years)
minimum_value: -365
maximum_value: 32507
vital_status:
title: Vital Status
description: Whether participant is alive or dead
range: EnumVitalStatus
age_at_last_vital_status:
title: Age at Last Vital Status
description: Age in days when participant's vital status was last recorded
range: integer
unit:
ucum_code: d
minimum_value: -365
maximum_value: 32507
assertion_provenance:
title: Assertion Provenance
description: The original source of this assertion
range: EnumAssertionProvenance
age_at_assertion:
title: Age at assertion
description: The age in days of the Subject when the assertion was made.
range: integer
unit:
ucum_code: d
age_at_event:
title: Age at event
description: The age in days of the Subject at the time point which the assertion describes,
eg, age of onset or when a measurement was performed.
range: integer
unit:
ucum_code: d
age_at_resolution:
title: Age at resolution
description: The age in days of the Subject when the asserted state was resolved.
range: integer
unit:
ucum_code: d
concept:
title: Concept
description: The structured term defining the meaning of the assertion.
range: Concept
multivalued: true
concept_curie:
title: Concept Curie
description: The standardized curie for the term.
range: uriorcurie
display:
title: Display String
description: The friendly display string of the coded term.
range: string
concept_source:
title: Concept Source Text
description: The source text yielding the standardized concept.
range: string
value_concept:
title: Value concept
description: The structured term defining the value of the assertion.
range: Concept
multivalued: true
value_number:
title: Value Number
description: The numeric value of the assertion.
range: float
value_source:
title: Value Source Text
description: The source text yielding the value.
range: string
value_unit:
title: Value Units
description: The structured term defining the units of the value.
range: Concept
value_unit_source:
title: Value Units Source Text
description: The source text yielding the value's units.
range: string
sample_id:
title: Sample ID
description: The unique identifier for this Sample.
range: Sample
parent_sample_id:
title: Parent Sample ID
description: Sample from which this sample is derived
range: Sample
inlined: false
biospecimen_collection_id:
title: Biospecimen Collection ID
description: Unique identifier for this Biospecimen Collection.
range: BiospecimenCollection
aliquot_id:
title: Aliquot ID
description: Unique identifier for an Aliquot.
range: Aliquot
sample_type:
title: Sample Type
description: Type of material of which this Sample is comprised
required: true
range: uriorcurie
processing:
title: Sample Processing
description: Processing that was applied to the Parent Sample or from the Biospecimen Collection that yielded this distinct sample
range: uriorcurie
multivalued: true
availablity_status:
title: Sample Availability
description: Can this Sample be requested for further analysis?
range: EnumAvailabilityStatus
storage_method:
title: Sample Storage Method
description: Sample storage method, eg, Frozen or with additives
range: uriorcurie
multivalued: true
quantity_number:
title: Quantity
description: The total quantity of the specimen
range: float
quantity_unit:
title: Quantity Units
description: The structured term defining the units of the quantity.
range: Concept
concentration_number:
title: Concentration
description: What is the concentration of the analyte in the Aliquot?
range: float
concentration_unit:
title: Concentration Units
description: Units associated with the concentration of the analyte in the Aliquot.
range: Concept
age_at_collection:
title: Age at Biospecimen Collection
description: The age at which this biospecimen was collected in decimal years.
range: float
unit:
ucum_code: a
method:
title: Biospecimen Collection Method
description: The approach used to collect the biospecimen.
range: EnumSampleCollectionMethod
site:
title: Biospecimen Collection Site
description: The location of the specimen collection.
range: EnumSite
spatial_qualifier:
title: Spatial Qualifier
description: Qualifier that further refine the specific location of biospecimen collection
range: EnumSpatialQualifiers
laterality:
title: Location Laterality
description: Laterality that further refine the specific location of biospecimen collection
range: EnumLaterality
encounter_id:
title: Encounter ID
description: Unique identifier for this Encounter.
range: Encounter
description:
title: Description
description: Description for this entity.
range: string
encounter_definition_id:
title: Encounter Definition ID
description: Unique identifier for this Encounter Definition.
range: EncounterDefinition
activity_definition_id:
title: Activity Definition ID
description: Unique identifier for this Activity Definition.
range: ActivityDefinition
file_id:
title: File ID
description: Unique identifier for this File.
range: File
filename:
title: Filename
description: The name of the file.
range: string
format:
title: File Format
description: The format of the file.
range: EnumEDAMFormats
data_type:
title: Data Type
description: The type of data within this file.
range: EnumEDAMDataTypes
size:
title: File Size
description: Size of the file, in Bytes.
range: integer
unit:
ucum_code: By
staging_url:
title: Staging Location
description: URL for internal access to the data. May be temporary.
range: uriorcurie
release_url:
title: Release Location
description: URL for controlled or open access to the data.
range: uriorcurie
drs_uri:
title: DRS URI
description: DRS location to access the data.
range: uriorcurie
hash:
title: File Hash
description: File hash information
range: FileHash
hash_type:
title: File Hash Type
description: The type of file hash, eg, md5
range: EnumFileHashType
hash_value:
title: File Hash Value
description: The value of the file hash
range: string
dataset_id:
title: Dataset ID
description: Unique identifier for a Dataset.
range: Dataset
data_collection_start:
title: Data Collection Start
description: The date that data collection started. May include only a year.
#TODO: We could re-evaluate these as dates, but that may be too implementation specific
range: string
data_collection_end:
title: Data Collection End
description: The date that data collection started. May include only a year.
#TODO: We could re-evaluate these as dates, but that may be too implementation specific
range: string
enums:
EnumProgram:
title: Funding Programs
description: Funding programs relevant to inform operations.
permissible_values:
include:
title: INCLUDE
kf:
title: KF
other:
title: Other
EnumResearchDomain:
title: Research Domain
description: Domains of Research used to find studies.
#TODO: replace/add NIH internal categories from Huiqing
permissible_values:
behavior_and_behavior_mechanisms:
title: Behavior and Behavior Mechanisms
meaning: mesh:D001520
congenital_heart_defects:
title: Congenital Heart Defects
meaning: mesh:D006330
immune_system_diseases:
title: Immune System Diseases
meaning: mesh:D007154
hematologic_diseases:
title: Hematologic Diseases
meaning: mesh:D006402
neurodevelopment:
title: Neurodevelopment
meaning: mesh:D065886
sleep_wake_disorders:
title: Sleep Wake Disorders
meaning: mesh:D012893
all_co_occurring_conditions:
title: All Co-occurring Conditions
meaning: mesh:D013568
physical_fitness:
title: Physical Fitness
meaning: mesh:D010809
other:
title: Other
EnumParticipantLifespanStage:
title: Participant Lifespan Stage
description: Stages of life during which participants may be recruited.
permissible_values:
fetal:
title: Fetal
description: Before birth
neonatal:
title: Neonatal
description: 0-28 days old
pediatric:
title: Pediatric
description: Birth-17 years old
adult:
title: Adult
description: 18+ years old
EnumStudyDesign:
title: Study Design
description: Approaches for collecting data, investigating interventions, and/or analyzing data.
#TODO: Add meanings
permissible_values:
case_control:
title: Case-Control
case_set:
title: Case Set
control_set:
title: Control Set
clinical_trial:
title: Clinical Trial
cross_sectional:
title: Cross-Sectional
family_twins_trios:
title: Family/Twins/Trios
interventional:
title: Interventional
longitudinal:
title: Longitudinal
trial_readiness_study:
title: Trial Readiness Study
tumor_vs_matched_normal:
title: Tumor vs Matched Normal
EnumClinicalDataSourceType:
title: Clinical Data Source Type
description: Approaches to ascertain clinical information about a participant.
#TODO: Add meanings
permissible_values:
medical_record:
title: Medical Record
description: Data obtained directly from medical record
investigator_assessment:
title: Investigator Assessment
description: Data obtained by examination, interview, etc. with investigator
participant_or_caregiver_report:
title: Participant or Caregiver Report
description: Data obtained from survey, questionnaire, etc. filled out by participant or caregiver
other:
title: Other
description: Data obtained from other source, such as tissue bank
unknown:
title: Unknown
EnumDataCategory:
title: Data Category
description: Categories of data which may be collected about participants.
#TODO: Add meanings
permissible_values:
#Should we have these two demo/clinical data categories?
unharmonized_demographic_clinical_data:
title: Unharmonized Demographic/Clinical Data
harmonized_demographic_clinical_data:
title: Harmonized Demographic/Clinical Data
genomics:
title: Genomics
transcriptomics:
title: Transcriptomics
epigenomics:
title: Epigenomics
proteomics:
title: Proteomics
metabolomics:
title: Metabolomics
cognitive_behavioral:
title: Cognitive/Behavioral
immune_profiling:
title: Immune Profiling
imaging:
title: Imaging
microbiome:
title: Microbiome
#What is the difference between these two?
fitness:
title: Fitness
physical_activity:
title: Physical Activity
other:
title: Other
sleep_study:
title: Sleep Study
EnumSubjectType:
description: Types of Subject entities
permissible_values:
participant:
description: Study participant with consent, assent, or waiver of consent.
non_participant:
description: An individual associated with a study who was not explictly consented, eg, the subject
of a reported family history.
cell_line:
description: Cell Line
animal_model:
description: Animal model
group:
description: A group of individuals or entities.
other:
description: A different entity type- ideally this will be resolved!
EnumDownSyndromeStatus:
description: Down syndrome / chromosome 21 status
permissible_values:
d21:
title: D21
description: Disomy 21 (euploid)
meaning: PATO:0001393
t21:
title: T21
description: Trisomy 21 (Down syndrome)
meaning: MONDO:0008608
EnumSex:
description: Subject Sex
permissible_values:
female:
title: Female
meaning: NCIT:C16576
male:
title: Male
meaning: NCIT:C20197
other:
title: Other
meaning: NCIT:C17649
unknown:
title: Unknown
meaning: NCIT:C17998
EnumRace:
description: Participant Race
permissible_values:
american_indian_or_alaska_native:
title: American Indian or Alaska Native
meaning: NCIT:C41259
asian:
title: Asian
meaning: NCIT:C41260
black_or_african_american:
title: Black or African American
meaning: NCIT:C16352
more_than_one_race:
title: More than one race
meaning: NCIT:C67109
native_hawaiian_or_other_pacific_islander:
title: Native Hawaiian or Other Pacific Islander
meaning: NCIT:C41219
other:
title: Other