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,119 @@
1
+ """
2
+ Neuroimaging Value Sets
3
+
4
+ Value sets for neuroimaging including MRI modalities, fMRI paradigms, acquisition parameters, and image analysis methods.
5
+
6
+ Generated from: medical/neuroimaging.yaml
7
+ """
8
+
9
+ from __future__ import annotations
10
+
11
+ from typing import Dict, Any, Optional
12
+ from valuesets.generators.rich_enum import RichEnum
13
+
14
+ class MRIModalityEnum(RichEnum):
15
+ """
16
+ MRI imaging modalities and techniques
17
+ """
18
+ # Enum members
19
+ STRUCTURAL_T1 = "STRUCTURAL_T1"
20
+ STRUCTURAL_T2 = "STRUCTURAL_T2"
21
+ FLAIR = "FLAIR"
22
+ BOLD_FMRI = "BOLD_FMRI"
23
+ ASL = "ASL"
24
+ DWI = "DWI"
25
+ DTI = "DTI"
26
+ PERFUSION_DSC = "PERFUSION_DSC"
27
+ PERFUSION_DCE = "PERFUSION_DCE"
28
+ SWI = "SWI"
29
+ TASK_FMRI = "TASK_FMRI"
30
+ RESTING_STATE_FMRI = "RESTING_STATE_FMRI"
31
+ FUNCTIONAL_CONNECTIVITY = "FUNCTIONAL_CONNECTIVITY"
32
+
33
+ # Set metadata after class creation
34
+ MRIModalityEnum._metadata = {
35
+ "STRUCTURAL_T1": {'description': 'High-resolution anatomical imaging with T1 contrast', 'meaning': 'NCIT:C116455', 'annotations': {'contrast_mechanism': 'T1 relaxation', 'typical_use': 'anatomical reference, volumetric analysis', 'tissue_contrast': 'good gray/white matter contrast'}, 'aliases': ['High Field Strength Magnetic Resonance Imaging']},
36
+ "STRUCTURAL_T2": {'description': 'Structural imaging with T2 contrast', 'meaning': 'NCIT:C116456', 'annotations': {'contrast_mechanism': 'T2 relaxation', 'typical_use': 'pathology detection, CSF visualization', 'tissue_contrast': 'good fluid contrast'}, 'aliases': ['Low Field Strength Magnetic Resonance Imaging']},
37
+ "FLAIR": {'description': 'T2-weighted sequence with CSF signal suppressed', 'meaning': 'NCIT:C82392', 'annotations': {'contrast_mechanism': 'T2 with fluid suppression', 'typical_use': 'lesion detection, periventricular pathology', 'advantage': 'suppresses CSF signal'}},
38
+ "BOLD_FMRI": {'description': 'Functional MRI based on blood oxygenation changes', 'meaning': 'NCIT:C17958', 'annotations': {'contrast_mechanism': 'BOLD signal', 'typical_use': 'brain activation mapping', 'temporal_resolution': 'seconds'}, 'aliases': ['Functional Magnetic Resonance Imaging']},
39
+ "ASL": {'description': 'Perfusion imaging using magnetically labeled blood', 'meaning': 'NCIT:C116450', 'annotations': {'contrast_mechanism': 'arterial blood labeling', 'typical_use': 'cerebral blood flow measurement', 'advantage': 'no contrast agent required'}, 'aliases': ['Arterial Spin Labeling Magnetic Resonance Imaging']},
40
+ "DWI": {'description': 'Imaging sensitive to water molecule diffusion', 'meaning': 'mesh:D038524', 'annotations': {'contrast_mechanism': 'water diffusion', 'typical_use': 'stroke detection, fiber tracking', 'parameter': 'apparent diffusion coefficient'}},
41
+ "DTI": {'description': 'Advanced diffusion imaging with directional information', 'meaning': 'NCIT:C64862', 'annotations': {'contrast_mechanism': 'directional diffusion', 'typical_use': 'white matter tractography', 'parameters': 'fractional anisotropy, mean diffusivity'}},
42
+ "PERFUSION_DSC": {'description': 'Perfusion imaging using contrast agent bolus', 'meaning': 'NCIT:C116459', 'annotations': {'contrast_mechanism': 'contrast agent dynamics', 'typical_use': 'cerebral blood flow, blood volume', 'requires': 'gadolinium contrast'}, 'aliases': ['Secretin-Enhanced Magnetic Resonance Imaging']},
43
+ "PERFUSION_DCE": {'description': 'Perfusion imaging with pharmacokinetic modeling', 'meaning': 'NCIT:C116458', 'annotations': {'contrast_mechanism': 'contrast enhancement kinetics', 'typical_use': 'blood-brain barrier permeability', 'analysis': 'pharmacokinetic modeling'}, 'aliases': ['Multiparametric Magnetic Resonance Imaging']},
44
+ "SWI": {'description': 'High-resolution venography and iron detection', 'meaning': 'NCIT:C121377', 'annotations': {'contrast_mechanism': 'magnetic susceptibility', 'typical_use': 'venography, microbleeds, iron deposits', 'strength': 'high field preferred'}},
45
+ "TASK_FMRI": {'description': 'fMRI during specific cognitive or motor tasks', 'meaning': 'NCIT:C178023', 'annotations': {'paradigm': 'stimulus-response', 'typical_use': 'localization of brain functions', 'analysis': 'statistical parametric mapping'}, 'aliases': ['Task Functional Magnetic Resonance Imaging']},
46
+ "RESTING_STATE_FMRI": {'description': 'fMRI acquired at rest without explicit tasks', 'meaning': 'NCIT:C178024', 'annotations': {'paradigm': 'no task', 'typical_use': 'functional connectivity analysis', 'networks': 'default mode, attention, executive'}, 'aliases': ['Resting Functional Magnetic Resonance Imaging']},
47
+ "FUNCTIONAL_CONNECTIVITY": {'description': 'Analysis of temporal correlations between brain regions', 'meaning': 'NCIT:C116454', 'annotations': {'analysis_type': 'connectivity mapping', 'typical_use': 'network analysis', 'metric': 'correlation coefficients'}, 'aliases': ['Functional Connectivity Magnetic Resonance Imaging']},
48
+ }
49
+
50
+ class MRISequenceTypeEnum(RichEnum):
51
+ """
52
+ MRI pulse sequence types
53
+ """
54
+ # Enum members
55
+ GRADIENT_ECHO = "GRADIENT_ECHO"
56
+ SPIN_ECHO = "SPIN_ECHO"
57
+ EPI = "EPI"
58
+ MPRAGE = "MPRAGE"
59
+ SPACE = "SPACE"
60
+ TRUFI = "TRUFI"
61
+
62
+ # Set metadata after class creation
63
+ MRISequenceTypeEnum._metadata = {
64
+ "GRADIENT_ECHO": {'description': 'Fast imaging sequence using gradient reversal', 'meaning': 'NCIT:C154542', 'annotations': {'speed': 'fast', 'typical_use': 'T2*, functional imaging', 'artifact_sensitivity': 'susceptible to magnetic field inhomogeneity'}, 'aliases': ['Gradient Echo MRI']},
65
+ "SPIN_ECHO": {'description': 'Sequence using 180-degree refocusing pulse', 'meaning': 'CHMO:0001868', 'annotations': {'speed': 'slower', 'typical_use': 'T2 imaging, reduced artifacts', 'artifact_resistance': 'good'}, 'aliases': ['spin echo pulse sequence']},
66
+ "EPI": {'description': 'Ultrafast imaging sequence', 'meaning': 'NCIT:C17558', 'annotations': {'speed': 'very fast', 'typical_use': 'functional MRI, diffusion imaging', 'temporal_resolution': 'subsecond'}},
67
+ "MPRAGE": {'description': 'T1-weighted 3D sequence with preparation pulse', 'meaning': 'NCIT:C118462', 'annotations': {'image_type': 'T1-weighted', 'typical_use': 'high-resolution anatomical imaging', 'dimension': '3D'}, 'aliases': ['Magnetization-Prepared Rapid Gradient Echo MRI']},
68
+ "SPACE": {'description': '3D turbo spin echo sequence', 'annotations': {'image_type': 'T2-weighted', 'typical_use': 'high-resolution T2 imaging', 'dimension': '3D'}},
69
+ "TRUFI": {'description': 'Balanced steady-state free precession sequence', 'meaning': 'NCIT:C200534', 'annotations': {'contrast': 'mixed T1/T2', 'typical_use': 'cardiac imaging, fast scanning', 'signal': 'high'}, 'aliases': ['Constructive Interference In Steady State']},
70
+ }
71
+
72
+ class MRIContrastTypeEnum(RichEnum):
73
+ """
74
+ MRI image contrast mechanisms
75
+ """
76
+ # Enum members
77
+ T1_WEIGHTED = "T1_WEIGHTED"
78
+ T2_WEIGHTED = "T2_WEIGHTED"
79
+ T2_STAR = "T2_STAR"
80
+ PROTON_DENSITY = "PROTON_DENSITY"
81
+ DIFFUSION_WEIGHTED = "DIFFUSION_WEIGHTED"
82
+ PERFUSION_WEIGHTED = "PERFUSION_WEIGHTED"
83
+
84
+ # Set metadata after class creation
85
+ MRIContrastTypeEnum._metadata = {
86
+ "T1_WEIGHTED": {'description': 'Image contrast based on T1 relaxation times', 'meaning': 'NCIT:C180727', 'annotations': {'tissue_contrast': 'gray matter darker than white matter', 'typical_use': 'anatomical structure'}, 'aliases': ['T1-Weighted Magnetic Resonance Imaging']},
87
+ "T2_WEIGHTED": {'description': 'Image contrast based on T2 relaxation times', 'meaning': 'NCIT:C180729', 'annotations': {'tissue_contrast': 'CSF bright, gray matter brighter than white', 'typical_use': 'pathology detection'}, 'aliases': ['T2-Weighted Magnetic Resonance Imaging']},
88
+ "T2_STAR": {'description': 'Image contrast sensitive to magnetic susceptibility', 'meaning': 'NCIT:C156447', 'annotations': {'sensitivity': 'blood, iron, air-tissue interfaces', 'typical_use': 'functional imaging, venography'}, 'aliases': ['T2 (Observed)-Weighted Imaging']},
89
+ "PROTON_DENSITY": {'description': 'Image contrast based on hydrogen density', 'meaning': 'NCIT:C170797', 'annotations': {'tissue_contrast': 'proportional to water content', 'typical_use': 'joint imaging, some brain pathology'}, 'aliases': ['Proton Density MRI']},
90
+ "DIFFUSION_WEIGHTED": {'description': 'Image contrast based on water diffusion', 'meaning': 'NCIT:C111116', 'annotations': {'sensitivity': 'molecular motion', 'typical_use': 'stroke, tumor cellularity'}, 'aliases': ['Diffusion Weighted Imaging']},
91
+ "PERFUSION_WEIGHTED": {'description': 'Image contrast based on blood flow dynamics', 'meaning': 'mesh:D000098642', 'annotations': {'measurement': 'cerebral blood flow/volume', 'typical_use': 'stroke, tumor vascularity'}},
92
+ }
93
+
94
+ class FMRIParadigmTypeEnum(RichEnum):
95
+ """
96
+ fMRI experimental paradigm types
97
+ """
98
+ # Enum members
99
+ BLOCK_DESIGN = "BLOCK_DESIGN"
100
+ EVENT_RELATED = "EVENT_RELATED"
101
+ MIXED_DESIGN = "MIXED_DESIGN"
102
+ RESTING_STATE = "RESTING_STATE"
103
+ NATURALISTIC = "NATURALISTIC"
104
+
105
+ # Set metadata after class creation
106
+ FMRIParadigmTypeEnum._metadata = {
107
+ "BLOCK_DESIGN": {'description': 'Alternating blocks of task and rest conditions', 'meaning': 'STATO:0000046', 'annotations': {'duration': 'typically 15-30 seconds per block', 'advantage': 'high statistical power', 'typical_use': 'robust activation detection'}},
108
+ "EVENT_RELATED": {'description': 'Brief stimuli presented at varying intervals', 'meaning': 'EDAM:topic_3678', 'annotations': {'duration': 'single events (seconds)', 'advantage': 'flexible timing, event separation', 'typical_use': 'studying cognitive processes'}, 'aliases': ['Experimental design and studies']},
109
+ "MIXED_DESIGN": {'description': 'Combination of block and event-related elements', 'meaning': 'EDAM:topic_3678', 'annotations': {'flexibility': 'high', 'advantage': 'sustained and transient responses', 'complexity': 'high'}, 'aliases': ['Experimental design and studies']},
110
+ "RESTING_STATE": {'description': 'No explicit task, spontaneous brain activity', 'meaning': 'NCIT:C178024', 'annotations': {'instruction': 'rest, eyes open/closed', 'duration': 'typically 5-10 minutes', 'analysis': 'functional connectivity'}, 'aliases': ['Resting Functional Magnetic Resonance Imaging']},
111
+ "NATURALISTIC": {'description': 'Ecologically valid stimuli (movies, stories)', 'meaning': 'EDAM:topic_3678', 'annotations': {'stimulus_type': 'complex, realistic', 'advantage': 'ecological validity', 'analysis': 'inter-subject correlation'}, 'aliases': ['Experimental design and studies']},
112
+ }
113
+
114
+ __all__ = [
115
+ "MRIModalityEnum",
116
+ "MRISequenceTypeEnum",
117
+ "MRIContrastTypeEnum",
118
+ "FMRIParadigmTypeEnum",
119
+ ]
@@ -0,0 +1,302 @@
1
+ """
2
+ Mining and Mineral Processing Value Sets
3
+
4
+ Value sets for mining operations, mineral processing, beneficiation, and in-situ extraction, including bioleaching and autonomous mining systems.
5
+
6
+ Generated from: mining_processing.yaml
7
+ """
8
+
9
+ from __future__ import annotations
10
+
11
+ from typing import Dict, Any, Optional
12
+ from valuesets.generators.rich_enum import RichEnum
13
+
14
+ class RelativeTimeEnum(RichEnum):
15
+ # Enum members
16
+ BEFORE = "BEFORE"
17
+ AFTER = "AFTER"
18
+ AT_SAME_TIME_AS = "AT_SAME_TIME_AS"
19
+
20
+ # Set metadata after class creation
21
+ RelativeTimeEnum._metadata = {
22
+ }
23
+
24
+ class PresenceEnum(RichEnum):
25
+ # Enum members
26
+ PRESENT = "PRESENT"
27
+ ABSENT = "ABSENT"
28
+ BELOW_DETECTION_LIMIT = "BELOW_DETECTION_LIMIT"
29
+ ABOVE_DETECTION_LIMIT = "ABOVE_DETECTION_LIMIT"
30
+
31
+ # Set metadata after class creation
32
+ PresenceEnum._metadata = {
33
+ "PRESENT": {'description': 'The entity is present'},
34
+ "ABSENT": {'description': 'The entity is absent'},
35
+ "BELOW_DETECTION_LIMIT": {'description': 'The entity is below the detection limit'},
36
+ "ABOVE_DETECTION_LIMIT": {'description': 'The entity is above the detection limit'},
37
+ }
38
+
39
+ class MineralogyFeedstockClass(RichEnum):
40
+ """
41
+ Types of mineral feedstock sources for extraction and processing operations, including primary and secondary sources.
42
+
43
+ """
44
+ # Enum members
45
+ HARDROCK_PRIMARY = "HARDROCK_PRIMARY"
46
+ TAILINGS_LEGACY = "TAILINGS_LEGACY"
47
+ WASTE_PILES = "WASTE_PILES"
48
+ COAL_BYPRODUCT = "COAL_BYPRODUCT"
49
+ E_WASTE = "E_WASTE"
50
+ BRINES = "BRINES"
51
+
52
+ # Set metadata after class creation
53
+ MineralogyFeedstockClass._metadata = {
54
+ "HARDROCK_PRIMARY": {'description': 'Primary ore from hardrock mining operations'},
55
+ "TAILINGS_LEGACY": {'description': 'Historical mine tailings available for reprocessing'},
56
+ "WASTE_PILES": {'description': 'Accumulated mining waste materials'},
57
+ "COAL_BYPRODUCT": {'description': 'Byproducts from coal mining and processing'},
58
+ "E_WASTE": {'description': 'Electronic waste containing recoverable metals'},
59
+ "BRINES": {'description': 'Saline water sources containing dissolved minerals'},
60
+ }
61
+
62
+ class BeneficiationPathway(RichEnum):
63
+ """
64
+ Methods for mineral separation and concentration aligned with advanced ore processing initiatives (AOI-2).
65
+
66
+ """
67
+ # Enum members
68
+ ORE_SORTING = "ORE_SORTING"
69
+ DENSE_MEDIUM_SEPARATION = "DENSE_MEDIUM_SEPARATION"
70
+ MICROWAVE_PREWEAKENING = "MICROWAVE_PREWEAKENING"
71
+ ELECTRIC_PULSE_PREWEAKENING = "ELECTRIC_PULSE_PREWEAKENING"
72
+ GRINDING_DYNAMIC = "GRINDING_DYNAMIC"
73
+ ELECTROSTATIC_SEP = "ELECTROSTATIC_SEP"
74
+ MAGNETIC_SEP = "MAGNETIC_SEP"
75
+ FLOTATION_LOW_H2O = "FLOTATION_LOW_H2O"
76
+ BIO_BENEFICIATION = "BIO_BENEFICIATION"
77
+
78
+ # Set metadata after class creation
79
+ BeneficiationPathway._metadata = {
80
+ "ORE_SORTING": {'description': 'Sensor-based sorting of ore particles'},
81
+ "DENSE_MEDIUM_SEPARATION": {'description': 'Gravity separation using dense media'},
82
+ "MICROWAVE_PREWEAKENING": {'description': 'Microwave treatment to weaken ore structure'},
83
+ "ELECTRIC_PULSE_PREWEAKENING": {'description': 'High-voltage electric pulse fragmentation'},
84
+ "GRINDING_DYNAMIC": {'description': 'Dynamic grinding optimization systems'},
85
+ "ELECTROSTATIC_SEP": {'description': 'Electrostatic separation of minerals'},
86
+ "MAGNETIC_SEP": {'description': 'Magnetic separation of ferromagnetic minerals'},
87
+ "FLOTATION_LOW_H2O": {'description': 'Low-water flotation processes'},
88
+ "BIO_BENEFICIATION": {'description': 'Biological methods for mineral beneficiation'},
89
+ }
90
+
91
+ class InSituChemistryRegime(RichEnum):
92
+ """
93
+ Chemical leaching systems for in-situ extraction with associated parameters including pH, Eh, temperature, and ionic strength.
94
+
95
+ """
96
+ # Enum members
97
+ ACIDIC_SULFATE = "ACIDIC_SULFATE"
98
+ ACIDIC_CHLORIDE = "ACIDIC_CHLORIDE"
99
+ AMMONIA_BASED = "AMMONIA_BASED"
100
+ ORGANIC_ACID = "ORGANIC_ACID"
101
+ BIOLEACH_SULFUR_OXIDIZING = "BIOLEACH_SULFUR_OXIDIZING"
102
+ BIOLEACH_IRON_OXIDIZING = "BIOLEACH_IRON_OXIDIZING"
103
+
104
+ # Set metadata after class creation
105
+ InSituChemistryRegime._metadata = {
106
+ "ACIDIC_SULFATE": {'description': 'Sulfuric acid-based leaching system'},
107
+ "ACIDIC_CHLORIDE": {'description': 'Hydrochloric acid or chloride-based leaching'},
108
+ "AMMONIA_BASED": {'description': 'Ammonia or ammonium-based leaching system'},
109
+ "ORGANIC_ACID": {'description': 'Organic acid leaching (citric, oxalic, etc.)'},
110
+ "BIOLEACH_SULFUR_OXIDIZING": {'description': 'Bioleaching using sulfur-oxidizing bacteria'},
111
+ "BIOLEACH_IRON_OXIDIZING": {'description': 'Bioleaching using iron-oxidizing bacteria'},
112
+ }
113
+
114
+ class ExtractableTargetElement(RichEnum):
115
+ """
116
+ Target elements for extraction, particularly rare earth elements (REE) and critical minerals.
117
+
118
+ """
119
+ # Enum members
120
+ REE_LA = "REE_LA"
121
+ REE_CE = "REE_CE"
122
+ REE_PR = "REE_PR"
123
+ REE_ND = "REE_ND"
124
+ REE_PM = "REE_PM"
125
+ REE_SM = "REE_SM"
126
+ REE_EU = "REE_EU"
127
+ REE_GD = "REE_GD"
128
+ REE_TB = "REE_TB"
129
+ REE_DY = "REE_DY"
130
+ REE_HO = "REE_HO"
131
+ REE_ER = "REE_ER"
132
+ REE_TM = "REE_TM"
133
+ REE_YB = "REE_YB"
134
+ REE_LU = "REE_LU"
135
+ SC = "SC"
136
+ CO = "CO"
137
+ NI = "NI"
138
+ LI = "LI"
139
+
140
+ # Set metadata after class creation
141
+ ExtractableTargetElement._metadata = {
142
+ "REE_LA": {'description': 'Lanthanum'},
143
+ "REE_CE": {'description': 'Cerium'},
144
+ "REE_PR": {'description': 'Praseodymium'},
145
+ "REE_ND": {'description': 'Neodymium'},
146
+ "REE_PM": {'description': 'Promethium'},
147
+ "REE_SM": {'description': 'Samarium'},
148
+ "REE_EU": {'description': 'Europium'},
149
+ "REE_GD": {'description': 'Gadolinium'},
150
+ "REE_TB": {'description': 'Terbium'},
151
+ "REE_DY": {'description': 'Dysprosium'},
152
+ "REE_HO": {'description': 'Holmium'},
153
+ "REE_ER": {'description': 'Erbium'},
154
+ "REE_TM": {'description': 'Thulium'},
155
+ "REE_YB": {'description': 'Ytterbium'},
156
+ "REE_LU": {'description': 'Lutetium'},
157
+ "SC": {'description': 'Scandium'},
158
+ "CO": {'description': 'Cobalt'},
159
+ "NI": {'description': 'Nickel'},
160
+ "LI": {'description': 'Lithium'},
161
+ }
162
+
163
+ class SensorWhileDrillingFeature(RichEnum):
164
+ """
165
+ Measurement while drilling (MWD) and logging while drilling (LWD) features for orebody ML and geosteering applications.
166
+
167
+ """
168
+ # Enum members
169
+ WOB = "WOB"
170
+ ROP = "ROP"
171
+ TORQUE = "TORQUE"
172
+ MWD_GAMMA = "MWD_GAMMA"
173
+ MWD_RESISTIVITY = "MWD_RESISTIVITY"
174
+ MUD_LOSS = "MUD_LOSS"
175
+ VIBRATION = "VIBRATION"
176
+ RSS_ANGLE = "RSS_ANGLE"
177
+
178
+ # Set metadata after class creation
179
+ SensorWhileDrillingFeature._metadata = {
180
+ "WOB": {'description': 'Weight on bit measurement'},
181
+ "ROP": {'description': 'Rate of penetration'},
182
+ "TORQUE": {'description': 'Rotational torque measurement'},
183
+ "MWD_GAMMA": {'description': 'Gamma ray logging while drilling'},
184
+ "MWD_RESISTIVITY": {'description': 'Resistivity logging while drilling'},
185
+ "MUD_LOSS": {'description': 'Drilling mud loss measurement'},
186
+ "VIBRATION": {'description': 'Drill string vibration monitoring'},
187
+ "RSS_ANGLE": {'description': 'Rotary steerable system angle'},
188
+ }
189
+
190
+ class ProcessPerformanceMetric(RichEnum):
191
+ """
192
+ Key performance indicators for mining and processing operations tied to SMART milestones and sustainability goals.
193
+
194
+ """
195
+ # Enum members
196
+ RECOVERY_PCT = "RECOVERY_PCT"
197
+ SELECTIVITY_INDEX = "SELECTIVITY_INDEX"
198
+ SPECIFIC_ENERGY_KWH_T = "SPECIFIC_ENERGY_KWH_T"
199
+ WATER_INTENSITY_L_T = "WATER_INTENSITY_L_T"
200
+ REAGENT_INTENSITY_KG_T = "REAGENT_INTENSITY_KG_T"
201
+ CO2E_KG_T = "CO2E_KG_T"
202
+ TAILINGS_MASS_REDUCTION_PCT = "TAILINGS_MASS_REDUCTION_PCT"
203
+
204
+ # Set metadata after class creation
205
+ ProcessPerformanceMetric._metadata = {
206
+ "RECOVERY_PCT": {'description': 'Percentage recovery of target material'},
207
+ "SELECTIVITY_INDEX": {'description': 'Selectivity index for separation processes'},
208
+ "SPECIFIC_ENERGY_KWH_T": {'description': 'Specific energy consumption in kWh per tonne'},
209
+ "WATER_INTENSITY_L_T": {'description': 'Water usage intensity in liters per tonne'},
210
+ "REAGENT_INTENSITY_KG_T": {'description': 'Reagent consumption in kg per tonne'},
211
+ "CO2E_KG_T": {'description': 'CO2 equivalent emissions in kg per tonne'},
212
+ "TAILINGS_MASS_REDUCTION_PCT": {'description': 'Percentage reduction in tailings mass'},
213
+ }
214
+
215
+ class BioleachOrganism(RichEnum):
216
+ """
217
+ Microorganisms used in bioleaching and biomining operations, including engineered strains.
218
+
219
+ """
220
+ # Enum members
221
+ ACIDITHIOBACILLUS_FERROOXIDANS = "ACIDITHIOBACILLUS_FERROOXIDANS"
222
+ LEPTOSPIRILLUM_FERROOXIDANS = "LEPTOSPIRILLUM_FERROOXIDANS"
223
+ ASPERGILLUS_NIGER = "ASPERGILLUS_NIGER"
224
+ ENGINEERED_STRAIN = "ENGINEERED_STRAIN"
225
+
226
+ # Set metadata after class creation
227
+ BioleachOrganism._metadata = {
228
+ "ACIDITHIOBACILLUS_FERROOXIDANS": {'description': 'Iron and sulfur oxidizing bacterium', 'meaning': 'NCBITaxon:920'},
229
+ "LEPTOSPIRILLUM_FERROOXIDANS": {'description': 'Iron oxidizing bacterium', 'meaning': 'NCBITaxon:180'},
230
+ "ASPERGILLUS_NIGER": {'description': 'Organic acid producing fungus', 'meaning': 'NCBITaxon:5061'},
231
+ "ENGINEERED_STRAIN": {'description': 'Genetically modified organism for enhanced bioleaching'},
232
+ }
233
+
234
+ class BioleachMode(RichEnum):
235
+ """
236
+ Mechanisms of bioleaching including indirect and direct bacterial action.
237
+
238
+ """
239
+ # Enum members
240
+ INDIRECT_BIOLEACH_ORGANIC_ACIDS = "INDIRECT_BIOLEACH_ORGANIC_ACIDS"
241
+ SULFUR_OXIDATION = "SULFUR_OXIDATION"
242
+ IRON_OXIDATION = "IRON_OXIDATION"
243
+
244
+ # Set metadata after class creation
245
+ BioleachMode._metadata = {
246
+ "INDIRECT_BIOLEACH_ORGANIC_ACIDS": {'description': 'Indirect bioleaching through organic acid production'},
247
+ "SULFUR_OXIDATION": {'description': 'Direct bacterial oxidation of sulfur compounds'},
248
+ "IRON_OXIDATION": {'description': 'Direct bacterial oxidation of iron compounds'},
249
+ }
250
+
251
+ class AutonomyLevel(RichEnum):
252
+ """
253
+ Levels of autonomy for mining systems including drilling, hauling, and sorting robots (relevant for Topic 1 initiatives).
254
+
255
+ """
256
+ # Enum members
257
+ ASSISTIVE = "ASSISTIVE"
258
+ SUPERVISED_AUTONOMY = "SUPERVISED_AUTONOMY"
259
+ SEMI_AUTONOMOUS = "SEMI_AUTONOMOUS"
260
+ FULLY_AUTONOMOUS = "FULLY_AUTONOMOUS"
261
+
262
+ # Set metadata after class creation
263
+ AutonomyLevel._metadata = {
264
+ "ASSISTIVE": {'description': 'Human operator with assistive technologies'},
265
+ "SUPERVISED_AUTONOMY": {'description': 'Autonomous operation with human supervision'},
266
+ "SEMI_AUTONOMOUS": {'description': 'Partial autonomy with human intervention capability'},
267
+ "FULLY_AUTONOMOUS": {'description': 'Complete autonomous operation without human intervention'},
268
+ }
269
+
270
+ class RegulatoryConstraint(RichEnum):
271
+ """
272
+ Regulatory and community constraints affecting mining operations, particularly for in-situ extraction and community engagement.
273
+
274
+ """
275
+ # Enum members
276
+ AQUIFER_PROTECTION = "AQUIFER_PROTECTION"
277
+ EMISSIONS_CAP = "EMISSIONS_CAP"
278
+ CULTURAL_HERITAGE_ZONE = "CULTURAL_HERITAGE_ZONE"
279
+ WATER_RIGHTS_LIMIT = "WATER_RIGHTS_LIMIT"
280
+
281
+ # Set metadata after class creation
282
+ RegulatoryConstraint._metadata = {
283
+ "AQUIFER_PROTECTION": {'description': 'Requirements for groundwater and aquifer protection'},
284
+ "EMISSIONS_CAP": {'description': 'Limits on atmospheric emissions'},
285
+ "CULTURAL_HERITAGE_ZONE": {'description': 'Protection of cultural heritage sites'},
286
+ "WATER_RIGHTS_LIMIT": {'description': 'Restrictions based on water usage rights'},
287
+ }
288
+
289
+ __all__ = [
290
+ "RelativeTimeEnum",
291
+ "PresenceEnum",
292
+ "MineralogyFeedstockClass",
293
+ "BeneficiationPathway",
294
+ "InSituChemistryRegime",
295
+ "ExtractableTargetElement",
296
+ "SensorWhileDrillingFeature",
297
+ "ProcessPerformanceMetric",
298
+ "BioleachOrganism",
299
+ "BioleachMode",
300
+ "AutonomyLevel",
301
+ "RegulatoryConstraint",
302
+ ]
@@ -0,0 +1 @@
1
+ """Auto-generated package."""
@@ -0,0 +1,46 @@
1
+ """
2
+ valuesets-physics-states-of-matter
3
+
4
+ Physics-related value sets for states of matter
5
+
6
+ Generated from: physics/states_of_matter.yaml
7
+ """
8
+
9
+ from __future__ import annotations
10
+
11
+ from typing import Dict, Any, Optional
12
+ from valuesets.generators.rich_enum import RichEnum
13
+
14
+ class StateOfMatterEnum(RichEnum):
15
+ """
16
+ The physical state or phase of matter
17
+ """
18
+ # Enum members
19
+ SOLID = "SOLID"
20
+ LIQUID = "LIQUID"
21
+ GAS = "GAS"
22
+ PLASMA = "PLASMA"
23
+ BOSE_EINSTEIN_CONDENSATE = "BOSE_EINSTEIN_CONDENSATE"
24
+ FERMIONIC_CONDENSATE = "FERMIONIC_CONDENSATE"
25
+ SUPERCRITICAL_FLUID = "SUPERCRITICAL_FLUID"
26
+ SUPERFLUID = "SUPERFLUID"
27
+ SUPERSOLID = "SUPERSOLID"
28
+ QUARK_GLUON_PLASMA = "QUARK_GLUON_PLASMA"
29
+
30
+ # Set metadata after class creation
31
+ StateOfMatterEnum._metadata = {
32
+ "SOLID": {'description': 'A state of matter where particles are closely packed together with fixed positions', 'meaning': 'AFO:AFQ_0000112'},
33
+ "LIQUID": {'description': 'A nearly incompressible fluid that conforms to the shape of its container', 'meaning': 'AFO:AFQ_0000113'},
34
+ "GAS": {'description': 'A compressible fluid that expands to fill its container', 'meaning': 'AFO:AFQ_0000114'},
35
+ "PLASMA": {'description': 'An ionized gas with freely moving charged particles', 'meaning': 'AFO:AFQ_0000115'},
36
+ "BOSE_EINSTEIN_CONDENSATE": {'description': 'A state of matter formed at extremely low temperatures where particles occupy the same quantum state'},
37
+ "FERMIONIC_CONDENSATE": {'description': 'A superfluid phase formed by fermionic particles at extremely low temperatures'},
38
+ "SUPERCRITICAL_FLUID": {'description': 'A state where distinct liquid and gas phases do not exist'},
39
+ "SUPERFLUID": {'description': 'A phase of matter with zero viscosity'},
40
+ "SUPERSOLID": {'description': 'A spatially ordered material with superfluid properties'},
41
+ "QUARK_GLUON_PLASMA": {'description': 'An extremely hot phase where quarks and gluons are not confined'},
42
+ }
43
+
44
+ __all__ = [
45
+ "StateOfMatterEnum",
46
+ ]
@@ -0,0 +1 @@
1
+ """Auto-generated package."""
@@ -0,0 +1,29 @@
1
+ """
2
+
3
+ Generated from: social/person_status.yaml
4
+ """
5
+
6
+ from __future__ import annotations
7
+
8
+ from typing import Dict, Any, Optional
9
+ from valuesets.generators.rich_enum import RichEnum
10
+
11
+ class PersonStatusEnum(RichEnum):
12
+ """
13
+ Vital status of a person (living or deceased)
14
+ """
15
+ # Enum members
16
+ ALIVE = "ALIVE"
17
+ DEAD = "DEAD"
18
+ UNKNOWN = "UNKNOWN"
19
+
20
+ # Set metadata after class creation
21
+ PersonStatusEnum._metadata = {
22
+ "ALIVE": {'description': 'The person is living', 'meaning': 'PATO:0001421'},
23
+ "DEAD": {'description': 'The person is deceased', 'meaning': 'PATO:0001422'},
24
+ "UNKNOWN": {'description': 'The vital status is not known', 'meaning': 'NCIT:C17998'},
25
+ }
26
+
27
+ __all__ = [
28
+ "PersonStatusEnum",
29
+ ]
@@ -0,0 +1 @@
1
+ """Auto-generated package."""