valuesets 0.3.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of valuesets might be problematic. Click here for more details.

Files changed (248) hide show
  1. valuesets/__init__.py +7 -0
  2. valuesets/_version.py +8 -0
  3. valuesets/datamodel/valuesets.py +13796 -0
  4. valuesets/datamodel/valuesets_dataclass.py +24503 -0
  5. valuesets/datamodel/valuesets_pydantic.py +13796 -0
  6. valuesets/enums/__init__.py +590 -0
  7. valuesets/enums/academic/__init__.py +1 -0
  8. valuesets/enums/academic/research.py +559 -0
  9. valuesets/enums/analytical_chemistry/__init__.py +1 -0
  10. valuesets/enums/analytical_chemistry/mass_spectrometry.py +198 -0
  11. valuesets/enums/bio/__init__.py +1 -0
  12. valuesets/enums/bio/biological_colors.py +238 -0
  13. valuesets/enums/bio/cell_cycle.py +180 -0
  14. valuesets/enums/bio/currency_chemicals.py +52 -0
  15. valuesets/enums/bio/developmental_stages.py +103 -0
  16. valuesets/enums/bio/genome_features.py +182 -0
  17. valuesets/enums/bio/genomics.py +91 -0
  18. valuesets/enums/bio/go_aspect.py +32 -0
  19. valuesets/enums/bio/go_causality.py +58 -0
  20. valuesets/enums/bio/go_evidence.py +129 -0
  21. valuesets/enums/bio/human_developmental_stages.py +62 -0
  22. valuesets/enums/bio/insdc_geographic_locations.py +591 -0
  23. valuesets/enums/bio/insdc_missing_values.py +49 -0
  24. valuesets/enums/bio/lipid_categories.py +67 -0
  25. valuesets/enums/bio/mouse_developmental_stages.py +62 -0
  26. valuesets/enums/bio/plant_biology.py +86 -0
  27. valuesets/enums/bio/plant_developmental_stages.py +54 -0
  28. valuesets/enums/bio/plant_sex.py +81 -0
  29. valuesets/enums/bio/protein_evidence.py +61 -0
  30. valuesets/enums/bio/proteomics_standards.py +123 -0
  31. valuesets/enums/bio/psi_mi.py +306 -0
  32. valuesets/enums/bio/relationship_to_oxygen.py +37 -0
  33. valuesets/enums/bio/sequence_alphabets.py +449 -0
  34. valuesets/enums/bio/sequence_chemistry.py +357 -0
  35. valuesets/enums/bio/sequencing_platforms.py +302 -0
  36. valuesets/enums/bio/structural_biology.py +320 -0
  37. valuesets/enums/bio/taxonomy.py +238 -0
  38. valuesets/enums/bio/trophic_levels.py +85 -0
  39. valuesets/enums/bio/uniprot_species.py +344 -0
  40. valuesets/enums/bio/viral_genome_types.py +47 -0
  41. valuesets/enums/bioprocessing/__init__.py +1 -0
  42. valuesets/enums/bioprocessing/scale_up.py +249 -0
  43. valuesets/enums/business/__init__.py +1 -0
  44. valuesets/enums/business/human_resources.py +275 -0
  45. valuesets/enums/business/industry_classifications.py +181 -0
  46. valuesets/enums/business/management_operations.py +228 -0
  47. valuesets/enums/business/organizational_structures.py +236 -0
  48. valuesets/enums/business/quality_management.py +181 -0
  49. valuesets/enums/business/supply_chain.py +232 -0
  50. valuesets/enums/chemistry/__init__.py +1 -0
  51. valuesets/enums/chemistry/chemical_entities.py +315 -0
  52. valuesets/enums/chemistry/reaction_directionality.py +65 -0
  53. valuesets/enums/chemistry/reactions.py +256 -0
  54. valuesets/enums/clinical/__init__.py +1 -0
  55. valuesets/enums/clinical/nih_demographics.py +177 -0
  56. valuesets/enums/clinical/phenopackets.py +254 -0
  57. valuesets/enums/common_value_sets.py +8791 -0
  58. valuesets/enums/computing/__init__.py +1 -0
  59. valuesets/enums/computing/file_formats.py +294 -0
  60. valuesets/enums/computing/maturity_levels.py +196 -0
  61. valuesets/enums/computing/mime_types.py +227 -0
  62. valuesets/enums/confidence_levels.py +168 -0
  63. valuesets/enums/contributor.py +30 -0
  64. valuesets/enums/core.py +42 -0
  65. valuesets/enums/data/__init__.py +1 -0
  66. valuesets/enums/data/data_absent_reason.py +53 -0
  67. valuesets/enums/data_science/__init__.py +1 -0
  68. valuesets/enums/data_science/binary_classification.py +87 -0
  69. valuesets/enums/data_science/emotion_classification.py +66 -0
  70. valuesets/enums/data_science/priority_severity.py +73 -0
  71. valuesets/enums/data_science/quality_control.py +46 -0
  72. valuesets/enums/data_science/sentiment_analysis.py +50 -0
  73. valuesets/enums/data_science/text_classification.py +97 -0
  74. valuesets/enums/demographics.py +206 -0
  75. valuesets/enums/ecological_interactions.py +151 -0
  76. valuesets/enums/energy/__init__.py +1 -0
  77. valuesets/enums/energy/energy.py +343 -0
  78. valuesets/enums/energy/fossil_fuels.py +29 -0
  79. valuesets/enums/energy/nuclear/__init__.py +1 -0
  80. valuesets/enums/energy/nuclear/nuclear_facilities.py +195 -0
  81. valuesets/enums/energy/nuclear/nuclear_fuel_cycle.py +96 -0
  82. valuesets/enums/energy/nuclear/nuclear_fuels.py +175 -0
  83. valuesets/enums/energy/nuclear/nuclear_operations.py +191 -0
  84. valuesets/enums/energy/nuclear/nuclear_regulatory.py +188 -0
  85. valuesets/enums/energy/nuclear/nuclear_safety.py +164 -0
  86. valuesets/enums/energy/nuclear/nuclear_waste.py +158 -0
  87. valuesets/enums/energy/nuclear/reactor_types.py +163 -0
  88. valuesets/enums/environmental_health/__init__.py +1 -0
  89. valuesets/enums/environmental_health/exposures.py +265 -0
  90. valuesets/enums/geography/__init__.py +1 -0
  91. valuesets/enums/geography/geographic_codes.py +741 -0
  92. valuesets/enums/health/__init__.py +12 -0
  93. valuesets/enums/health/vaccination.py +98 -0
  94. valuesets/enums/health.py +36 -0
  95. valuesets/enums/health_base.py +36 -0
  96. valuesets/enums/healthcare.py +45 -0
  97. valuesets/enums/industry/__init__.py +1 -0
  98. valuesets/enums/industry/extractive_industry.py +94 -0
  99. valuesets/enums/industry/mining.py +388 -0
  100. valuesets/enums/industry/safety_colors.py +201 -0
  101. valuesets/enums/investigation.py +27 -0
  102. valuesets/enums/materials_science/__init__.py +1 -0
  103. valuesets/enums/materials_science/characterization_methods.py +112 -0
  104. valuesets/enums/materials_science/crystal_structures.py +76 -0
  105. valuesets/enums/materials_science/material_properties.py +119 -0
  106. valuesets/enums/materials_science/material_types.py +104 -0
  107. valuesets/enums/materials_science/pigments_dyes.py +198 -0
  108. valuesets/enums/materials_science/synthesis_methods.py +109 -0
  109. valuesets/enums/medical/__init__.py +1 -0
  110. valuesets/enums/medical/clinical.py +277 -0
  111. valuesets/enums/medical/neuroimaging.py +119 -0
  112. valuesets/enums/mining_processing.py +302 -0
  113. valuesets/enums/physics/__init__.py +1 -0
  114. valuesets/enums/physics/states_of_matter.py +46 -0
  115. valuesets/enums/social/__init__.py +1 -0
  116. valuesets/enums/social/person_status.py +29 -0
  117. valuesets/enums/spatial/__init__.py +1 -0
  118. valuesets/enums/spatial/spatial_qualifiers.py +246 -0
  119. valuesets/enums/statistics/__init__.py +5 -0
  120. valuesets/enums/statistics/prediction_outcomes.py +31 -0
  121. valuesets/enums/statistics.py +31 -0
  122. valuesets/enums/time/__init__.py +1 -0
  123. valuesets/enums/time/temporal.py +254 -0
  124. valuesets/enums/units/__init__.py +1 -0
  125. valuesets/enums/units/measurements.py +310 -0
  126. valuesets/enums/visual/__init__.py +1 -0
  127. valuesets/enums/visual/colors.py +376 -0
  128. valuesets/generators/__init__.py +19 -0
  129. valuesets/generators/auto_slot_injector.py +280 -0
  130. valuesets/generators/enhanced_pydantic_generator.py +100 -0
  131. valuesets/generators/enum_slot_generator.py +201 -0
  132. valuesets/generators/modular_rich_generator.py +353 -0
  133. valuesets/generators/prefix_standardizer.py +198 -0
  134. valuesets/generators/rich_enum.py +127 -0
  135. valuesets/generators/rich_pydantic_generator.py +310 -0
  136. valuesets/generators/smart_slot_syncer.py +428 -0
  137. valuesets/generators/sssom_generator.py +394 -0
  138. valuesets/merged/merged_hierarchy.yaml +21649 -0
  139. valuesets/schema/README.md +3 -0
  140. valuesets/schema/academic/research.yaml +911 -0
  141. valuesets/schema/analytical_chemistry/mass_spectrometry.yaml +206 -0
  142. valuesets/schema/bio/bio_entities.yaml +364 -0
  143. valuesets/schema/bio/biological_colors.yaml +434 -0
  144. valuesets/schema/bio/cell_cycle.yaml +309 -0
  145. valuesets/schema/bio/currency_chemicals.yaml +70 -0
  146. valuesets/schema/bio/developmental_stages.yaml +226 -0
  147. valuesets/schema/bio/genome_features.yaml +342 -0
  148. valuesets/schema/bio/genomics.yaml +101 -0
  149. valuesets/schema/bio/go_aspect.yaml +39 -0
  150. valuesets/schema/bio/go_causality.yaml +119 -0
  151. valuesets/schema/bio/go_evidence.yaml +215 -0
  152. valuesets/schema/bio/insdc_geographic_locations.yaml +911 -0
  153. valuesets/schema/bio/insdc_missing_values.yaml +85 -0
  154. valuesets/schema/bio/lipid_categories.yaml +72 -0
  155. valuesets/schema/bio/plant_biology.yaml +125 -0
  156. valuesets/schema/bio/plant_developmental_stages.yaml +77 -0
  157. valuesets/schema/bio/plant_sex.yaml +108 -0
  158. valuesets/schema/bio/protein_evidence.yaml +63 -0
  159. valuesets/schema/bio/proteomics_standards.yaml +116 -0
  160. valuesets/schema/bio/psi_mi.yaml +400 -0
  161. valuesets/schema/bio/relationship_to_oxygen.yaml +46 -0
  162. valuesets/schema/bio/sequence_alphabets.yaml +1168 -0
  163. valuesets/schema/bio/sequence_chemistry.yaml +477 -0
  164. valuesets/schema/bio/sequencing_platforms.yaml +515 -0
  165. valuesets/schema/bio/structural_biology.yaml +428 -0
  166. valuesets/schema/bio/taxonomy.yaml +453 -0
  167. valuesets/schema/bio/trophic_levels.yaml +118 -0
  168. valuesets/schema/bio/uniprot_species.yaml +1209 -0
  169. valuesets/schema/bio/viral_genome_types.yaml +99 -0
  170. valuesets/schema/bioprocessing/scale_up.yaml +458 -0
  171. valuesets/schema/business/human_resources.yaml +752 -0
  172. valuesets/schema/business/industry_classifications.yaml +448 -0
  173. valuesets/schema/business/management_operations.yaml +602 -0
  174. valuesets/schema/business/organizational_structures.yaml +645 -0
  175. valuesets/schema/business/quality_management.yaml +502 -0
  176. valuesets/schema/business/supply_chain.yaml +688 -0
  177. valuesets/schema/chemistry/chemical_entities.yaml +639 -0
  178. valuesets/schema/chemistry/reaction_directionality.yaml +60 -0
  179. valuesets/schema/chemistry/reactions.yaml +442 -0
  180. valuesets/schema/clinical/nih_demographics.yaml +285 -0
  181. valuesets/schema/clinical/phenopackets.yaml +429 -0
  182. valuesets/schema/computing/file_formats.yaml +631 -0
  183. valuesets/schema/computing/maturity_levels.yaml +229 -0
  184. valuesets/schema/computing/mime_types.yaml +266 -0
  185. valuesets/schema/confidence_levels.yaml +206 -0
  186. valuesets/schema/contributor.yaml +30 -0
  187. valuesets/schema/core.yaml +55 -0
  188. valuesets/schema/data/data_absent_reason.yaml +82 -0
  189. valuesets/schema/data_science/binary_classification.yaml +125 -0
  190. valuesets/schema/data_science/emotion_classification.yaml +109 -0
  191. valuesets/schema/data_science/priority_severity.yaml +122 -0
  192. valuesets/schema/data_science/quality_control.yaml +68 -0
  193. valuesets/schema/data_science/sentiment_analysis.yaml +81 -0
  194. valuesets/schema/data_science/text_classification.yaml +135 -0
  195. valuesets/schema/demographics.yaml +238 -0
  196. valuesets/schema/ecological_interactions.yaml +298 -0
  197. valuesets/schema/energy/energy.yaml +595 -0
  198. valuesets/schema/energy/fossil_fuels.yaml +28 -0
  199. valuesets/schema/energy/nuclear/nuclear_facilities.yaml +463 -0
  200. valuesets/schema/energy/nuclear/nuclear_fuel_cycle.yaml +82 -0
  201. valuesets/schema/energy/nuclear/nuclear_fuels.yaml +421 -0
  202. valuesets/schema/energy/nuclear/nuclear_operations.yaml +480 -0
  203. valuesets/schema/energy/nuclear/nuclear_regulatory.yaml +200 -0
  204. valuesets/schema/energy/nuclear/nuclear_safety.yaml +352 -0
  205. valuesets/schema/energy/nuclear/nuclear_waste.yaml +332 -0
  206. valuesets/schema/energy/nuclear/reactor_types.yaml +394 -0
  207. valuesets/schema/environmental_health/exposures.yaml +355 -0
  208. valuesets/schema/generated_slots.yaml +1828 -0
  209. valuesets/schema/geography/geographic_codes.yaml +1018 -0
  210. valuesets/schema/health/vaccination.yaml +102 -0
  211. valuesets/schema/health.yaml +38 -0
  212. valuesets/schema/healthcare.yaml +53 -0
  213. valuesets/schema/industry/extractive_industry.yaml +89 -0
  214. valuesets/schema/industry/mining.yaml +888 -0
  215. valuesets/schema/industry/safety_colors.yaml +375 -0
  216. valuesets/schema/investigation.yaml +64 -0
  217. valuesets/schema/materials_science/characterization_methods.yaml +193 -0
  218. valuesets/schema/materials_science/crystal_structures.yaml +138 -0
  219. valuesets/schema/materials_science/material_properties.yaml +135 -0
  220. valuesets/schema/materials_science/material_types.yaml +151 -0
  221. valuesets/schema/materials_science/pigments_dyes.yaml +465 -0
  222. valuesets/schema/materials_science/synthesis_methods.yaml +186 -0
  223. valuesets/schema/medical/clinical.yaml +610 -0
  224. valuesets/schema/medical/neuroimaging.yaml +325 -0
  225. valuesets/schema/mining_processing.yaml +295 -0
  226. valuesets/schema/physics/states_of_matter.yaml +46 -0
  227. valuesets/schema/slot_mixins.yaml +143 -0
  228. valuesets/schema/social/person_status.yaml +28 -0
  229. valuesets/schema/spatial/spatial_qualifiers.yaml +466 -0
  230. valuesets/schema/statistics/prediction_outcomes.yaml +26 -0
  231. valuesets/schema/statistics.yaml +34 -0
  232. valuesets/schema/time/temporal.yaml +435 -0
  233. valuesets/schema/types.yaml +15 -0
  234. valuesets/schema/units/measurements.yaml +675 -0
  235. valuesets/schema/valuesets.yaml +100 -0
  236. valuesets/schema/visual/colors.yaml +778 -0
  237. valuesets/utils/__init__.py +6 -0
  238. valuesets/utils/comparison.py +102 -0
  239. valuesets/utils/expand_dynamic_enums.py +414 -0
  240. valuesets/utils/mapping_utils.py +236 -0
  241. valuesets/validators/__init__.py +11 -0
  242. valuesets/validators/enum_evaluator.py +669 -0
  243. valuesets/validators/oak_config.yaml +70 -0
  244. valuesets/validators/validate_with_ols.py +241 -0
  245. valuesets-0.3.1.dist-info/METADATA +395 -0
  246. valuesets-0.3.1.dist-info/RECORD +248 -0
  247. valuesets-0.3.1.dist-info/WHEEL +4 -0
  248. valuesets-0.3.1.dist-info/licenses/LICENSE +201 -0
@@ -0,0 +1,285 @@
1
+ name: nih_demographics
2
+ title: NIH Demographics and Common Data Elements
3
+ description: 'Standard value sets for NIH Common Data Elements (CDEs) including demographics,
4
+
5
+ race, ethnicity, sex, and other clinical variables following NIH and OMB standards'
6
+ id: https://w3id.org/linkml/valuesets/clinical/nih_demographics
7
+ imports:
8
+ - linkml:types
9
+ prefixes:
10
+ valuesets: https://w3id.org/valuesets/
11
+ NCIT: http://purl.obolibrary.org/obo/NCIT_
12
+ OMRSE: http://purl.obolibrary.org/obo/OMRSE_
13
+ GSSO: http://purl.obolibrary.org/obo/GSSO_
14
+ PATO: http://purl.obolibrary.org/obo/PATO_
15
+ SIO: http://semanticscience.org/resource/SIO_
16
+ HP: http://purl.obolibrary.org/obo/HP_
17
+ default_prefix: valuesets
18
+ slots:
19
+ race_omb1997:
20
+ description: Race categories following OMB 1997 standards used by NIH and federal agencies
21
+ range: RaceOMB1997Enum
22
+ ethnicity_omb1997:
23
+ description: Ethnicity categories following OMB 1997 standards used by NIH and federal agencies
24
+ range: EthnicityOMB1997Enum
25
+ biological_sex:
26
+ description: Biological sex assigned at birth based on anatomical and physiological traits
27
+ range: BiologicalSexEnum
28
+ age_group:
29
+ description: Standard age groups used in NIH clinical research, particularly NINDS CDEs
30
+ range: AgeGroupEnum
31
+ participant_vital_status:
32
+ description: Vital status of a research participant in clinical studies
33
+ range: ParticipantVitalStatusEnum
34
+ recruitment_status:
35
+ description: Clinical trial or study recruitment status per NIH/ClinicalTrials
36
+ range: RecruitmentStatusEnum
37
+ study_phase:
38
+ description: Clinical trial phases per FDA and NIH definitions
39
+ range: StudyPhaseEnum
40
+ enums:
41
+ RaceOMB1997Enum:
42
+ description: 'Race categories following OMB 1997 standards used by NIH and federal agencies.
43
+
44
+ Respondents may select multiple races.'
45
+ permissible_values:
46
+ AMERICAN_INDIAN_OR_ALASKA_NATIVE:
47
+ description: A person having origins in any of the original peoples of North and South America (including Central
48
+ America), and who maintains tribal affiliation or community attachment
49
+ meaning: NCIT:C41259
50
+ annotations:
51
+ omb_code: 1002-5
52
+ ASIAN:
53
+ description: A person having origins in any of the original peoples of the Far East, Southeast Asia, or the Indian
54
+ subcontinent
55
+ meaning: NCIT:C41260
56
+ annotations:
57
+ omb_code: 2028-9
58
+ includes: Cambodia, China, India, Japan, Korea, Malaysia, Pakistan, Philippine Islands, Thailand, Vietnam
59
+ BLACK_OR_AFRICAN_AMERICAN:
60
+ description: A person having origins in any of the black racial groups of Africa
61
+ meaning: NCIT:C16352
62
+ annotations:
63
+ omb_code: 2054-5
64
+ NATIVE_HAWAIIAN_OR_OTHER_PACIFIC_ISLANDER:
65
+ description: A person having origins in any of the original peoples of Hawaii, Guam, Samoa, or other Pacific Islands
66
+ meaning: NCIT:C41219
67
+ annotations:
68
+ omb_code: 2076-8
69
+ WHITE:
70
+ description: A person having origins in any of the original peoples of Europe, the Middle East, or North Africa
71
+ meaning: NCIT:C41261
72
+ annotations:
73
+ omb_code: 2106-3
74
+ MORE_THAN_ONE_RACE:
75
+ description: Person identifies with more than one race category
76
+ meaning: NCIT:C67109
77
+ title: Multiracial
78
+ annotations:
79
+ note: Added after 1997 revision to allow multiple race reporting
80
+ UNKNOWN_OR_NOT_REPORTED:
81
+ description: Race not known, not reported, or declined to answer
82
+ meaning: NCIT:C17998
83
+ title: Unknown
84
+ annotations:
85
+ aliases: Unknown, Not Reported, Prefer not to answer
86
+ EthnicityOMB1997Enum:
87
+ description: Ethnicity categories following OMB 1997 standards used by NIH and federal agencies
88
+ permissible_values:
89
+ HISPANIC_OR_LATINO:
90
+ description: A person of Cuban, Mexican, Puerto Rican, South or Central American, or other Spanish culture or origin,
91
+ regardless of race
92
+ meaning: NCIT:C17459
93
+ annotations:
94
+ omb_code: 2135-2
95
+ NOT_HISPANIC_OR_LATINO:
96
+ description: A person not of Hispanic or Latino origin
97
+ meaning: NCIT:C41222
98
+ annotations:
99
+ omb_code: 2186-5
100
+ UNKNOWN_OR_NOT_REPORTED:
101
+ description: Ethnicity not known, not reported, or declined to answer
102
+ meaning: NCIT:C17998
103
+ title: Unknown
104
+ annotations:
105
+ aliases: Unknown, Not Reported, Prefer not to answer
106
+ BiologicalSexEnum:
107
+ description: 'Biological sex assigned at birth based on anatomical and physiological traits.
108
+
109
+ Required by NIH as a biological variable in research.'
110
+ permissible_values:
111
+ MALE:
112
+ description: Male sex assigned at birth
113
+ meaning: PATO:0000384
114
+ exact_mappings:
115
+ - NCIT:C20197
116
+ - GSSO:000371
117
+ FEMALE:
118
+ description: Female sex assigned at birth
119
+ meaning: PATO:0000383
120
+ exact_mappings:
121
+ - NCIT:C16576
122
+ - GSSO:000369
123
+ INTERSEX:
124
+ description: Born with reproductive or sexual anatomy that doesn't fit typical definitions of male or female
125
+ meaning: NCIT:C45908
126
+ annotations:
127
+ prevalence: 0.018% to 1.7%
128
+ note: May be assigned male or female at birth
129
+ UNKNOWN_OR_NOT_REPORTED:
130
+ description: Sex not known, not reported, or declined to answer
131
+ meaning: NCIT:C17998
132
+ title: Unknown
133
+ AgeGroupEnum:
134
+ description: Standard age groups used in NIH clinical research, particularly NINDS CDEs
135
+ permissible_values:
136
+ NEONATE:
137
+ description: Birth to 28 days
138
+ meaning: NCIT:C16731
139
+ title: Newborn
140
+ annotations:
141
+ max_age_days: 28
142
+ INFANT:
143
+ description: 29 days to less than 1 year
144
+ meaning: NCIT:C27956
145
+ annotations:
146
+ min_age_days: 29
147
+ max_age_years: 1
148
+ YOUNG_PEDIATRIC:
149
+ description: 0 to 5 years (NINDS CDE definition)
150
+ meaning: NCIT:C39299
151
+ title: Pediatric
152
+ annotations:
153
+ min_age_years: 0
154
+ max_age_years: 5
155
+ ninds_category: true
156
+ PEDIATRIC:
157
+ description: 6 to 12 years (NINDS CDE definition)
158
+ meaning: NCIT:C16423
159
+ title: Child
160
+ annotations:
161
+ min_age_years: 6
162
+ max_age_years: 12
163
+ ninds_category: true
164
+ ADOLESCENT:
165
+ description: 13 to 17 years
166
+ meaning: NCIT:C27954
167
+ annotations:
168
+ min_age_years: 13
169
+ max_age_years: 17
170
+ YOUNG_ADULT:
171
+ description: 18 to 24 years
172
+ meaning: NCIT:C91107
173
+ annotations:
174
+ min_age_years: 18
175
+ max_age_years: 24
176
+ ADULT:
177
+ description: 25 to 64 years
178
+ meaning: NCIT:C17600
179
+ annotations:
180
+ min_age_years: 25
181
+ max_age_years: 64
182
+ OLDER_ADULT:
183
+ description: 65 years and older
184
+ meaning: NCIT:C16268
185
+ title: Elderly
186
+ annotations:
187
+ min_age_years: 65
188
+ aliases: Geriatric, Elderly, Senior
189
+ ParticipantVitalStatusEnum:
190
+ description: Vital status of a research participant in clinical studies
191
+ permissible_values:
192
+ ALIVE:
193
+ description: Participant is living
194
+ meaning: NCIT:C37987
195
+ exact_mappings:
196
+ - PATO:0001421
197
+ DECEASED:
198
+ title: Dead
199
+ description: Participant is deceased
200
+ meaning: NCIT:C28554
201
+ exact_mappings:
202
+ - PATO:0001422
203
+ UNKNOWN:
204
+ description: Vital status unknown or lost to follow-up
205
+ meaning: NCIT:C17998
206
+ RecruitmentStatusEnum:
207
+ description: Clinical trial or study recruitment status per NIH/ClinicalTrials.gov
208
+ permissible_values:
209
+ NOT_YET_RECRUITING:
210
+ description: Study has not started recruiting participants
211
+ meaning: NCIT:C211610
212
+ title: Not Yet Enrolling
213
+ RECRUITING:
214
+ description: Currently recruiting participants
215
+ meaning: NCIT:C142621
216
+ title: Open To Enrollment
217
+ ENROLLING_BY_INVITATION:
218
+ description: Enrolling participants by invitation only
219
+ meaning: NCIT:C211611
220
+ ACTIVE_NOT_RECRUITING:
221
+ description: Study ongoing but not recruiting new participants
222
+ meaning: NCIT:C211612
223
+ title: Study Active, Not Enrolling
224
+ SUSPENDED:
225
+ description: Study temporarily stopped
226
+ meaning: NCIT:C211613
227
+ title: Study Enrollment Suspended
228
+ TERMINATED:
229
+ description: Study stopped early and will not resume
230
+ meaning: NCIT:C70757
231
+ title: Study Terminated
232
+ COMPLETED:
233
+ description: Study has ended normally
234
+ meaning: NCIT:C70756
235
+ title: Completed Clinical Study
236
+ WITHDRAWN:
237
+ description: Study withdrawn before enrollment
238
+ meaning: NCIT:C70758
239
+ title: Study Withdrawn
240
+ StudyPhaseEnum:
241
+ description: Clinical trial phases per FDA and NIH definitions
242
+ permissible_values:
243
+ EARLY_PHASE_1:
244
+ description: Exploratory trials before traditional Phase 1
245
+ meaning: NCIT:C54721
246
+ title: Phase 0 Trial
247
+ annotations:
248
+ aliases: Phase 0
249
+ PHASE_1:
250
+ title: Phase I Trial
251
+ description: Initial safety and dosage studies
252
+ meaning: NCIT:C15600
253
+ annotations:
254
+ participants: 20-100
255
+ PHASE_1_2:
256
+ title: Phase II/III Trial
257
+ description: Combined Phase 1 and Phase 2 trial
258
+ meaning: NCIT:C15694
259
+ PHASE_2:
260
+ title: Phase II Trial
261
+ description: Efficacy and side effects studies
262
+ meaning: NCIT:C15601
263
+ annotations:
264
+ participants: 100-300
265
+ PHASE_2_3:
266
+ title: Phase IIa Trial
267
+ description: Combined Phase 2 and Phase 3 trial
268
+ meaning: NCIT:C49686
269
+ PHASE_3:
270
+ title: Phase III Trial
271
+ description: Efficacy comparison with standard treatment
272
+ meaning: NCIT:C15602
273
+ annotations:
274
+ participants: 300-3000
275
+ PHASE_4:
276
+ title: Phase IV Trial
277
+ description: Post-marketing surveillance
278
+ meaning: NCIT:C15603
279
+ annotations:
280
+ note: After FDA approval
281
+ NOT_APPLICABLE:
282
+ description: Not a phased clinical trial
283
+ meaning: NCIT:C48660
284
+ annotations:
285
+ note: For observational studies, device trials, etc.
@@ -0,0 +1,429 @@
1
+ name: phenopackets
2
+ title: Phenopackets Clinical Value Sets
3
+ description: Value sets derived from GA4GH Phenopackets Schema for clinical genomics and phenotyping
4
+ id: https://w3id.org/linkml/valuesets/clinical/phenopackets
5
+ imports:
6
+ - linkml:types
7
+ prefixes:
8
+ valuesets: https://w3id.org/valuesets/
9
+ NCIT: http://purl.obolibrary.org/obo/NCIT_
10
+ GENO: http://purl.obolibrary.org/obo/GENO_
11
+ HP: http://purl.obolibrary.org/obo/HP_
12
+ LOINC: https://loinc.org/
13
+ UBERON: http://purl.obolibrary.org/obo/UBERON_
14
+ UCUM: http://unitsofmeasure.org/
15
+ PATO: http://purl.obolibrary.org/obo/PATO_
16
+ default_prefix: valuesets
17
+ slots:
18
+ karyotypic_sex:
19
+ description: Karyotypic sex of an individual based on chromosome composition
20
+ range: KaryotypicSexEnum
21
+ phenotypic_sex:
22
+ description: Phenotypic sex of an individual based on observable characteristics
23
+ range: PhenotypicSexEnum
24
+ allelic_state:
25
+ description: Allelic state/zygosity of a variant or genetic feature
26
+ range: AllelicStateEnum
27
+ laterality:
28
+ description: Laterality/sidedness of a finding or anatomical structure
29
+ range: LateralityEnum
30
+ onset_timing:
31
+ description: Timing of disease or phenotype onset relative to developmental stages
32
+ range: OnsetTimingEnum
33
+ acmg_pathogenicity:
34
+ description: ACMG/AMP variant pathogenicity classification for clinical genetics
35
+ range: ACMGPathogenicityEnum
36
+ therapeutic_actionability:
37
+ description: Clinical actionability of a genetic finding for treatment decisions
38
+ range: TherapeuticActionabilityEnum
39
+ interpretation_progress:
40
+ description: Progress status of clinical interpretation or diagnosis
41
+ range: InterpretationProgressEnum
42
+ regimen_status:
43
+ description: Status of a therapeutic regimen or treatment protocol
44
+ range: RegimenStatusEnum
45
+ drug_response:
46
+ description: Response categories for drug treatment outcomes
47
+ range: DrugResponseEnum
48
+ enums:
49
+ KaryotypicSexEnum:
50
+ description: Karyotypic sex of an individual based on chromosome composition
51
+ permissible_values:
52
+ XX:
53
+ description: Female karyotype (46,XX)
54
+ meaning: NCIT:C45976
55
+ title: XX Genotype
56
+ annotations:
57
+ chromosome_count: 46
58
+ typical_phenotypic_sex: female
59
+ XY:
60
+ description: Male karyotype (46,XY)
61
+ meaning: NCIT:C45977
62
+ title: XY Genotype
63
+ annotations:
64
+ chromosome_count: 46
65
+ typical_phenotypic_sex: male
66
+ XO:
67
+ description: Turner syndrome karyotype (45,X)
68
+ meaning: NCIT:C176780
69
+ title: 45,XO Karyotype
70
+ annotations:
71
+ chromosome_count: 45
72
+ condition: Turner syndrome
73
+ XXY:
74
+ description: Klinefelter syndrome karyotype (47,XXY)
75
+ meaning: NCIT:C176784
76
+ title: 47,XXY Karyotype
77
+ annotations:
78
+ chromosome_count: 47
79
+ condition: Klinefelter syndrome
80
+ XXX:
81
+ description: Triple X syndrome karyotype (47,XXX)
82
+ meaning: NCIT:C176785
83
+ title: 47,XXX Karyotype
84
+ annotations:
85
+ chromosome_count: 47
86
+ condition: Triple X syndrome
87
+ XXXY:
88
+ description: XXXY syndrome karyotype (48,XXXY)
89
+ meaning: NCIT:C176786
90
+ title: 48,XXXY Karyotype
91
+ annotations:
92
+ chromosome_count: 48
93
+ condition: XXXY syndrome
94
+ XXXX:
95
+ description: Tetrasomy X karyotype (48,XXXX)
96
+ meaning: NCIT:C176787
97
+ title: 48,XXXX Karyotype
98
+ annotations:
99
+ chromosome_count: 48
100
+ condition: Tetrasomy X
101
+ XXYY:
102
+ description: XXYY syndrome karyotype (48,XXYY)
103
+ meaning: NCIT:C89801
104
+ title: XXYY Syndrome
105
+ annotations:
106
+ chromosome_count: 48
107
+ condition: XXYY syndrome
108
+ XYY:
109
+ description: Jacob's syndrome karyotype (47,XYY)
110
+ meaning: NCIT:C176782
111
+ title: 47,XYY Karyotype
112
+ annotations:
113
+ chromosome_count: 47
114
+ condition: Jacob's syndrome
115
+ OTHER_KARYOTYPE:
116
+ description: Other karyotypic sex not listed
117
+ annotations:
118
+ note: May include complex chromosomal arrangements
119
+ UNKNOWN_KARYOTYPE:
120
+ description: Karyotype not determined or unknown
121
+ meaning: NCIT:C17998
122
+ title: Unknown
123
+ PhenotypicSexEnum:
124
+ description: 'Phenotypic sex of an individual based on observable characteristics.
125
+
126
+ FHIR mapping: AdministrativeGender'
127
+ permissible_values:
128
+ MALE:
129
+ description: Male phenotypic sex
130
+ meaning: PATO:0000384
131
+ exact_mappings:
132
+ - NCIT:C20197
133
+ FEMALE:
134
+ description: Female phenotypic sex
135
+ meaning: PATO:0000383
136
+ exact_mappings:
137
+ - NCIT:C16576
138
+ OTHER_SEX:
139
+ description: Sex characteristics not clearly male or female
140
+ meaning: NCIT:C45908
141
+ title: Intersex
142
+ annotations:
143
+ note: Includes differences of sex development (DSD)
144
+ UNKNOWN_SEX:
145
+ description: Sex not assessed or not available
146
+ meaning: NCIT:C17998
147
+ title: Unknown
148
+ AllelicStateEnum:
149
+ description: Allelic state/zygosity of a variant or genetic feature
150
+ permissible_values:
151
+ HETEROZYGOUS:
152
+ description: Different alleles at a locus
153
+ meaning: GENO:0000135
154
+ annotations:
155
+ symbol: het
156
+ HOMOZYGOUS:
157
+ description: Identical alleles at a locus
158
+ meaning: GENO:0000136
159
+ annotations:
160
+ symbol: hom
161
+ HEMIZYGOUS:
162
+ description: Only one allele present (e.g., X-linked in males)
163
+ meaning: GENO:0000134
164
+ annotations:
165
+ symbol: hemi
166
+ note: Common for X-linked genes in males
167
+ COMPOUND_HETEROZYGOUS:
168
+ description: Two different heterozygous variants in same gene
169
+ meaning: GENO:0000402
170
+ annotations:
171
+ symbol: comp het
172
+ HOMOZYGOUS_REFERENCE:
173
+ description: Two reference/wild-type alleles
174
+ meaning: GENO:0000036
175
+ title: reference allele
176
+ annotations:
177
+ symbol: hom ref
178
+ HOMOZYGOUS_ALTERNATE:
179
+ description: Two alternate/variant alleles
180
+ meaning: GENO:0000002
181
+ title: variant allele
182
+ annotations:
183
+ symbol: hom alt
184
+ LateralityEnum:
185
+ description: Laterality/sidedness of a finding or anatomical structure
186
+ permissible_values:
187
+ RIGHT:
188
+ description: Right side
189
+ meaning: HP:0012834
190
+ annotations:
191
+ anatomical_term: dexter
192
+ LEFT:
193
+ description: Left side
194
+ meaning: HP:0012835
195
+ annotations:
196
+ anatomical_term: sinister
197
+ BILATERAL:
198
+ description: Both sides
199
+ meaning: HP:0012832
200
+ annotations:
201
+ note: Affecting both left and right
202
+ UNILATERAL:
203
+ description: One side (unspecified which)
204
+ meaning: HP:0012833
205
+ annotations:
206
+ note: Affecting only one side
207
+ MIDLINE:
208
+ description: In the midline/center
209
+ annotations:
210
+ note: Along the body's central axis
211
+ OnsetTimingEnum:
212
+ description: Timing of disease or phenotype onset relative to developmental stages
213
+ permissible_values:
214
+ ANTENATAL_ONSET:
215
+ description: Before birth (prenatal)
216
+ meaning: HP:0030674
217
+ annotations:
218
+ period: Before birth
219
+ EMBRYONAL_ONSET:
220
+ description: During embryonic period (0-8 weeks)
221
+ meaning: HP:0011460
222
+ annotations:
223
+ period: 0-8 weeks gestation
224
+ FETAL_ONSET:
225
+ description: During fetal period (8 weeks to birth)
226
+ meaning: HP:0011461
227
+ annotations:
228
+ period: 8 weeks to birth
229
+ CONGENITAL_ONSET:
230
+ description: Present at birth
231
+ meaning: HP:0003577
232
+ annotations:
233
+ period: At birth
234
+ NEONATAL_ONSET:
235
+ description: Within first 28 days of life
236
+ meaning: HP:0003623
237
+ annotations:
238
+ period: 0-28 days
239
+ INFANTILE_ONSET:
240
+ description: Between 28 days and 1 year
241
+ meaning: HP:0003593
242
+ annotations:
243
+ period: 28 days to 1 year
244
+ CHILDHOOD_ONSET:
245
+ description: Between 1 year and 16 years
246
+ meaning: HP:0011463
247
+ annotations:
248
+ period: 1-16 years
249
+ JUVENILE_ONSET:
250
+ description: Between 5 years and 16 years
251
+ meaning: HP:0003621
252
+ annotations:
253
+ period: 5-16 years
254
+ YOUNG_ADULT_ONSET:
255
+ description: Between 16 years and 40 years
256
+ meaning: HP:0011462
257
+ annotations:
258
+ period: 16-40 years
259
+ MIDDLE_AGE_ONSET:
260
+ description: Between 40 years and 60 years
261
+ meaning: HP:0003596
262
+ annotations:
263
+ period: 40-60 years
264
+ LATE_ONSET:
265
+ description: After 60 years
266
+ meaning: HP:0003584
267
+ annotations:
268
+ period: '>60 years'
269
+ ACMGPathogenicityEnum:
270
+ description: ACMG/AMP variant pathogenicity classification for clinical genetics
271
+ permissible_values:
272
+ PATHOGENIC:
273
+ description: Pathogenic variant
274
+ meaning: NCIT:C168799
275
+ title: Pathogenic Variant
276
+ annotations:
277
+ abbreviation: P
278
+ clinical_significance: Disease-causing
279
+ LIKELY_PATHOGENIC:
280
+ description: Likely pathogenic variant
281
+ meaning: NCIT:C168800
282
+ title: Likely Pathogenic Variant
283
+ annotations:
284
+ abbreviation: LP
285
+ probability: '>90% certain'
286
+ UNCERTAIN_SIGNIFICANCE:
287
+ description: Variant of uncertain significance
288
+ meaning: NCIT:C94187
289
+ title: Variant of Unknown Significance
290
+ annotations:
291
+ abbreviation: VUS
292
+ note: Insufficient evidence
293
+ LIKELY_BENIGN:
294
+ description: Likely benign variant
295
+ meaning: NCIT:C168801
296
+ title: Variant Likely Benign
297
+ annotations:
298
+ abbreviation: LB
299
+ probability: '>90% certain benign'
300
+ BENIGN:
301
+ description: Benign variant
302
+ meaning: NCIT:C168802
303
+ title: Variant Benign
304
+ annotations:
305
+ abbreviation: B
306
+ clinical_significance: Not disease-causing
307
+ TherapeuticActionabilityEnum:
308
+ description: Clinical actionability of a genetic finding for treatment decisions
309
+ permissible_values:
310
+ ACTIONABLE:
311
+ description: Finding has direct therapeutic implications
312
+ meaning: NCIT:C206303
313
+ title: Actionable Variation
314
+ annotations:
315
+ note: Can guide treatment selection
316
+ NOT_ACTIONABLE:
317
+ description: No current therapeutic implications
318
+ meaning: NCIT:C206304
319
+ title: Non-Actionable Variation
320
+ annotations:
321
+ note: No treatment changes indicated
322
+ UNKNOWN_ACTIONABILITY:
323
+ description: Therapeutic implications unclear
324
+ meaning: NCIT:C17998
325
+ title: Unknown
326
+ InterpretationProgressEnum:
327
+ description: Progress status of clinical interpretation or diagnosis
328
+ permissible_values:
329
+ SOLVED:
330
+ description: Diagnosis achieved/case solved
331
+ meaning: NCIT:C20826
332
+ title: Molecular Diagnosis
333
+ annotations:
334
+ note: Molecular cause identified
335
+ UNSOLVED:
336
+ description: No diagnosis achieved
337
+ meaning: NCIT:C125009
338
+ title: Clinical Interpretation
339
+ annotations:
340
+ note: Molecular cause not identified
341
+ IN_PROGRESS:
342
+ description: Analysis ongoing
343
+ meaning: NCIT:C25630
344
+ title: Progress
345
+ COMPLETED:
346
+ description: Analysis completed
347
+ meaning: NCIT:C216251
348
+ title: Procedure Completed
349
+ annotations:
350
+ note: May be solved or unsolved
351
+ UNKNOWN_PROGRESS:
352
+ description: Progress status unknown
353
+ meaning: NCIT:C17998
354
+ title: Unknown
355
+ RegimenStatusEnum:
356
+ description: Status of a therapeutic regimen or treatment protocol
357
+ permissible_values:
358
+ NOT_STARTED:
359
+ description: Treatment not yet begun
360
+ meaning: NCIT:C53601
361
+ title: Device Evaluation Anticipated But Not Yet Begun
362
+ STARTED:
363
+ description: Treatment initiated
364
+ meaning: NCIT:C165209
365
+ title: Treatment Ongoing
366
+ COMPLETED:
367
+ description: Treatment finished as planned
368
+ meaning: NCIT:C105740
369
+ title: Treatment Completed as Prescribed
370
+ DISCONTINUED_ADVERSE_EVENT:
371
+ description: Stopped due to adverse event
372
+ meaning: NCIT:C41331
373
+ title: Adverse Event
374
+ annotations:
375
+ reason: Toxicity or side effects
376
+ DISCONTINUED_LACK_OF_EFFICACY:
377
+ description: Stopped due to lack of efficacy
378
+ meaning: NCIT:C49502
379
+ title: Drug Withdrawn
380
+ annotations:
381
+ reason: Treatment not effective
382
+ DISCONTINUED_PHYSICIAN_DECISION:
383
+ description: Stopped by physician decision
384
+ meaning: NCIT:C49502
385
+ title: Drug Withdrawn
386
+ DISCONTINUED_PATIENT_DECISION:
387
+ description: Stopped by patient choice
388
+ meaning: NCIT:C48271
389
+ title: Consent Withdrawn
390
+ UNKNOWN_STATUS:
391
+ description: Treatment status unknown
392
+ meaning: NCIT:C17998
393
+ title: Unknown
394
+ DrugResponseEnum:
395
+ description: Response categories for drug treatment outcomes
396
+ permissible_values:
397
+ FAVORABLE:
398
+ description: Favorable response to treatment
399
+ meaning: NCIT:C123584
400
+ title: Favorable Response
401
+ annotations:
402
+ note: Better than expected response
403
+ UNFAVORABLE:
404
+ description: Unfavorable response to treatment
405
+ meaning: NCIT:C102561
406
+ annotations:
407
+ note: Worse than expected response
408
+ RESPONSIVE:
409
+ description: Responsive to treatment
410
+ meaning: NCIT:C165206
411
+ title: Responsive Disease
412
+ annotations:
413
+ note: Shows expected response
414
+ RESISTANT:
415
+ description: Resistant to treatment
416
+ meaning: NCIT:C16523
417
+ title: Drug Resistance Process
418
+ annotations:
419
+ note: No response to treatment
420
+ PARTIALLY_RESPONSIVE:
421
+ description: Partial response to treatment
422
+ meaning: NCIT:C18213
423
+ title: Stable Disease
424
+ annotations:
425
+ note: Some but not complete response
426
+ UNKNOWN_RESPONSE:
427
+ description: Treatment response unknown
428
+ meaning: NCIT:C17998
429
+ title: Unknown