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,639 @@
1
+ name: chemical_entities
2
+ title: Chemical Entities Value Sets
3
+ description: 'Value sets for chemical entities including subatomic particles, chemical elements, bond types, and chemical
4
+ classifications. Based on the ChemROF ontological framework.
5
+
6
+ '
7
+ id: https://w3id.org/valuesets/chemistry/chemical_entities
8
+ imports:
9
+ - linkml:types
10
+ prefixes:
11
+ linkml: https://w3id.org/linkml/
12
+ CHEBI: http://purl.obolibrary.org/obo/CHEBI_
13
+ RXNO: http://purl.obolibrary.org/obo/RXNO_
14
+ MOP: http://purl.obolibrary.org/obo/MOP_
15
+ goldbook: https://goldbook.iupac.org/terms/view/
16
+ gc: http://purl.org/gc/
17
+ damlpt: http://www.daml.org/2003/01/periodictable/PeriodicTable#
18
+ pdg: https://pdgapi.lbl.gov/summaries/
19
+ valuesets: https://w3id.org/valuesets/
20
+ default_prefix: valuesets
21
+ slots:
22
+ subatomic_particle:
23
+ description: Fundamental and composite subatomic particles
24
+ range: SubatomicParticleEnum
25
+ bond_type:
26
+ description: Types of chemical bonds
27
+ range: BondTypeEnum
28
+ periodic_table_block:
29
+ description: Blocks of the periodic table
30
+ range: PeriodicTableBlockEnum
31
+ element_family:
32
+ description: Chemical element families/groups
33
+ range: ElementFamilyEnum
34
+ element_metallic_classification:
35
+ description: Metallic character classification
36
+ range: ElementMetallicClassificationEnum
37
+ hard_or_soft:
38
+ description: HSAB (Hard Soft Acid Base) classification
39
+ range: HardOrSoftEnum
40
+ bronsted_acid_base_role:
41
+ description: Brønsted-Lowry acid-base roles
42
+ range: BronstedAcidBaseRoleEnum
43
+ lewis_acid_base_role:
44
+ description: Lewis acid-base roles
45
+ range: LewisAcidBaseRoleEnum
46
+ oxidation_state:
47
+ description: Common oxidation states
48
+ range: OxidationStateEnum
49
+ chirality:
50
+ description: Chirality/stereochemistry descriptors
51
+ range: ChiralityEnum
52
+ nanostructure_morphology:
53
+ description: Types of nanostructure morphologies
54
+ range: NanostructureMorphologyEnum
55
+ enums:
56
+ SubatomicParticleEnum:
57
+ description: Fundamental and composite subatomic particles
58
+ permissible_values:
59
+ ELECTRON:
60
+ description: Elementary particle with -1 charge, spin 1/2
61
+ meaning: CHEBI:10545
62
+ annotations:
63
+ mass: 0.51099895 MeV/c²
64
+ charge: '-1'
65
+ spin: 1/2
66
+ type: lepton
67
+ POSITRON:
68
+ description: Antiparticle of electron with +1 charge
69
+ meaning: CHEBI:30225
70
+ annotations:
71
+ mass: 0.51099895 MeV/c²
72
+ charge: '+1'
73
+ spin: 1/2
74
+ type: lepton
75
+ MUON:
76
+ description: Heavy lepton with -1 charge
77
+ meaning: CHEBI:36356
78
+ annotations:
79
+ mass: 105.658 MeV/c²
80
+ charge: '-1'
81
+ spin: 1/2
82
+ type: lepton
83
+ TAU_LEPTON:
84
+ description: Heaviest lepton with -1 charge
85
+ meaning: CHEBI:36355
86
+ annotations:
87
+ mass: 1777.05 MeV/c²
88
+ charge: '-1'
89
+ spin: 1/2
90
+ type: lepton
91
+ ELECTRON_NEUTRINO:
92
+ description: Electron neutrino, nearly massless
93
+ meaning: CHEBI:30223
94
+ annotations:
95
+ mass: <2.2 eV/c²
96
+ charge: '0'
97
+ spin: 1/2
98
+ type: lepton
99
+ MUON_NEUTRINO:
100
+ description: Muon neutrino
101
+ meaning: CHEBI:36353
102
+ annotations:
103
+ mass: <0.17 MeV/c²
104
+ charge: '0'
105
+ spin: 1/2
106
+ type: lepton
107
+ TAU_NEUTRINO:
108
+ description: Tau neutrino
109
+ meaning: CHEBI:36354
110
+ annotations:
111
+ mass: <15.5 MeV/c²
112
+ charge: '0'
113
+ spin: 1/2
114
+ type: lepton
115
+ UP_QUARK:
116
+ title: up quark
117
+ description: First generation quark with +2/3 charge
118
+ meaning: CHEBI:36366
119
+ annotations:
120
+ mass: 2.16 MeV/c²
121
+ charge: +2/3
122
+ spin: 1/2
123
+ type: quark
124
+ generation: '1'
125
+ DOWN_QUARK:
126
+ description: First generation quark with -1/3 charge
127
+ meaning: CHEBI:36367
128
+ annotations:
129
+ mass: 4.67 MeV/c²
130
+ charge: -1/3
131
+ spin: 1/2
132
+ type: quark
133
+ generation: '1'
134
+ CHARM_QUARK:
135
+ title: charm quark
136
+ description: Second generation quark with +2/3 charge
137
+ meaning: CHEBI:36369
138
+ annotations:
139
+ mass: 1.27 GeV/c²
140
+ charge: +2/3
141
+ spin: 1/2
142
+ type: quark
143
+ generation: '2'
144
+ STRANGE_QUARK:
145
+ title: strange quark
146
+ description: Second generation quark with -1/3 charge
147
+ meaning: CHEBI:36368
148
+ annotations:
149
+ mass: 93.4 MeV/c²
150
+ charge: -1/3
151
+ spin: 1/2
152
+ type: quark
153
+ generation: '2'
154
+ TOP_QUARK:
155
+ description: Third generation quark with +2/3 charge
156
+ meaning: CHEBI:36371
157
+ annotations:
158
+ mass: 172.76 GeV/c²
159
+ charge: +2/3
160
+ spin: 1/2
161
+ type: quark
162
+ generation: '3'
163
+ BOTTOM_QUARK:
164
+ title: bottom quark
165
+ description: Third generation quark with -1/3 charge
166
+ meaning: CHEBI:36370
167
+ annotations:
168
+ mass: 4.18 GeV/c²
169
+ charge: -1/3
170
+ spin: 1/2
171
+ type: quark
172
+ generation: '3'
173
+ PHOTON:
174
+ description: Force carrier for electromagnetic interaction
175
+ meaning: CHEBI:30212
176
+ annotations:
177
+ mass: '0'
178
+ charge: '0'
179
+ spin: '1'
180
+ type: gauge boson
181
+ W_BOSON:
182
+ title: composite particle
183
+ description: Force carrier for weak interaction
184
+ meaning: CHEBI:36343
185
+ annotations:
186
+ mass: 80.379 GeV/c²
187
+ charge: ±1
188
+ spin: '1'
189
+ type: gauge boson
190
+ Z_BOSON:
191
+ title: hadron
192
+ description: Force carrier for weak interaction
193
+ meaning: CHEBI:36344
194
+ annotations:
195
+ mass: 91.1876 GeV/c²
196
+ charge: '0'
197
+ spin: '1'
198
+ type: gauge boson
199
+ GLUON:
200
+ description: Force carrier for strong interaction
201
+ annotations:
202
+ mass: '0'
203
+ charge: '0'
204
+ spin: '1'
205
+ type: gauge boson
206
+ color_charge: 'yes'
207
+ HIGGS_BOSON:
208
+ description: Scalar boson responsible for mass
209
+ meaning: CHEBI:146278
210
+ annotations:
211
+ mass: 125.25 GeV/c²
212
+ charge: '0'
213
+ spin: '0'
214
+ type: scalar boson
215
+ PROTON:
216
+ description: Positively charged nucleon
217
+ meaning: CHEBI:24636
218
+ annotations:
219
+ mass: 938.272 MeV/c²
220
+ charge: '+1'
221
+ spin: 1/2
222
+ type: baryon
223
+ composition: uud
224
+ NEUTRON:
225
+ description: Neutral nucleon
226
+ meaning: CHEBI:30222
227
+ annotations:
228
+ mass: 939.565 MeV/c²
229
+ charge: '0'
230
+ spin: 1/2
231
+ type: baryon
232
+ composition: udd
233
+ ALPHA_PARTICLE:
234
+ description: Helium-4 nucleus
235
+ meaning: CHEBI:30216
236
+ annotations:
237
+ mass: 3727.379 MeV/c²
238
+ charge: '+2'
239
+ composition: 2 protons, 2 neutrons
240
+ DEUTERON:
241
+ description: Hydrogen-2 nucleus
242
+ meaning: CHEBI:29233
243
+ annotations:
244
+ mass: 1875.613 MeV/c²
245
+ charge: '+1'
246
+ composition: 1 proton, 1 neutron
247
+ TRITON:
248
+ description: Hydrogen-3 nucleus
249
+ meaning: CHEBI:29234
250
+ annotations:
251
+ mass: 2808.921 MeV/c²
252
+ charge: '+1'
253
+ composition: 1 proton, 2 neutrons
254
+ BondTypeEnum:
255
+ description: Types of chemical bonds
256
+ permissible_values:
257
+ SINGLE:
258
+ description: Single covalent bond
259
+ meaning: gc:Single
260
+ annotations:
261
+ bond_order: '1'
262
+ electrons_shared: '2'
263
+ DOUBLE:
264
+ description: Double covalent bond
265
+ meaning: gc:Double
266
+ annotations:
267
+ bond_order: '2'
268
+ electrons_shared: '4'
269
+ TRIPLE:
270
+ description: Triple covalent bond
271
+ meaning: gc:Triple
272
+ annotations:
273
+ bond_order: '3'
274
+ electrons_shared: '6'
275
+ QUADRUPLE:
276
+ description: Quadruple bond (rare, in transition metals)
277
+ meaning: gc:Quadruple
278
+ annotations:
279
+ bond_order: '4'
280
+ electrons_shared: '8'
281
+ AROMATIC:
282
+ description: Aromatic bond
283
+ meaning: gc:AromaticBond
284
+ annotations:
285
+ bond_order: '1.5'
286
+ delocalized: 'true'
287
+ IONIC:
288
+ title: organic molecular entity
289
+ description: Ionic bond
290
+ meaning: CHEBI:50860
291
+ annotations:
292
+ type: electrostatic
293
+ HYDROGEN:
294
+ description: Hydrogen bond
295
+ annotations:
296
+ type: weak interaction
297
+ energy: 5-30 kJ/mol
298
+ METALLIC:
299
+ description: Metallic bond
300
+ annotations:
301
+ type: delocalized electrons
302
+ VAN_DER_WAALS:
303
+ description: Van der Waals interaction
304
+ annotations:
305
+ type: weak interaction
306
+ energy: 0.4-4 kJ/mol
307
+ COORDINATE:
308
+ title: coordination entity
309
+ description: Coordinate/dative covalent bond
310
+ meaning: CHEBI:33240
311
+ annotations:
312
+ electrons_from: one atom
313
+ PI:
314
+ description: Pi bond
315
+ annotations:
316
+ orbital_overlap: side-to-side
317
+ SIGMA:
318
+ description: Sigma bond
319
+ annotations:
320
+ orbital_overlap: head-to-head
321
+ PeriodicTableBlockEnum:
322
+ description: Blocks of the periodic table
323
+ permissible_values:
324
+ S_BLOCK:
325
+ title: s-block molecular entity
326
+ description: s-block elements (groups 1 and 2)
327
+ meaning: CHEBI:33674
328
+ annotations:
329
+ valence_orbital: s
330
+ groups: 1,2
331
+ P_BLOCK:
332
+ title: p-block molecular entity
333
+ description: p-block elements (groups 13-18)
334
+ meaning: CHEBI:33675
335
+ annotations:
336
+ valence_orbital: p
337
+ groups: 13,14,15,16,17,18
338
+ D_BLOCK:
339
+ title: d-block element atom
340
+ description: d-block elements (transition metals)
341
+ meaning: CHEBI:33561
342
+ annotations:
343
+ valence_orbital: d
344
+ groups: 3-12
345
+ F_BLOCK:
346
+ title: f-block element atom
347
+ description: f-block elements (lanthanides and actinides)
348
+ meaning: CHEBI:33562
349
+ annotations:
350
+ valence_orbital: f
351
+ series: lanthanides, actinides
352
+ ElementFamilyEnum:
353
+ description: Chemical element families/groups
354
+ permissible_values:
355
+ ALKALI_METALS:
356
+ title: alkali metal atom
357
+ description: Group 1 elements (except hydrogen)
358
+ meaning: CHEBI:22314
359
+ annotations:
360
+ group: '1'
361
+ elements: Li, Na, K, Rb, Cs, Fr
362
+ ALKALINE_EARTH_METALS:
363
+ title: alkaloid
364
+ description: Group 2 elements
365
+ meaning: CHEBI:22315
366
+ annotations:
367
+ group: '2'
368
+ elements: Be, Mg, Ca, Sr, Ba, Ra
369
+ TRANSITION_METALS:
370
+ title: transition element atom
371
+ description: d-block elements
372
+ meaning: CHEBI:27081
373
+ annotations:
374
+ groups: 3-12
375
+ LANTHANIDES:
376
+ title: titanium group molecular entity
377
+ description: Lanthanide series
378
+ meaning: CHEBI:33768
379
+ annotations:
380
+ atomic_numbers: 57-71
381
+ ACTINIDES:
382
+ title: fuconates
383
+ description: Actinide series
384
+ meaning: CHEBI:33769
385
+ annotations:
386
+ atomic_numbers: 89-103
387
+ CHALCOGENS:
388
+ title: chalcogen
389
+ description: Group 16 elements
390
+ meaning: CHEBI:33303
391
+ annotations:
392
+ group: '16'
393
+ elements: O, S, Se, Te, Po
394
+ HALOGENS:
395
+ title: idopyranuronic acid
396
+ description: Group 17 elements
397
+ meaning: CHEBI:47902
398
+ annotations:
399
+ group: '17'
400
+ elements: F, Cl, Br, I, At
401
+ NOBLE_GASES:
402
+ title: neon atom
403
+ description: Group 18 elements
404
+ meaning: CHEBI:33310
405
+ annotations:
406
+ group: '18'
407
+ elements: He, Ne, Ar, Kr, Xe, Rn
408
+ METALLOIDS:
409
+ title: s-block element atom
410
+ description: Elements with intermediate properties
411
+ meaning: CHEBI:33559
412
+ annotations:
413
+ elements: B, Si, Ge, As, Sb, Te, Po
414
+ POST_TRANSITION_METALS:
415
+ description: Metals after the transition series
416
+ annotations:
417
+ elements: Al, Ga, In, Tl, Sn, Pb, Bi
418
+ NONMETALS:
419
+ title: nonmetal atom
420
+ description: Non-metallic elements
421
+ meaning: CHEBI:25585
422
+ annotations:
423
+ elements: H, C, N, O, F, P, S, Cl, Se, Br, I
424
+ ElementMetallicClassificationEnum:
425
+ description: Metallic character classification
426
+ permissible_values:
427
+ METALLIC:
428
+ description: Metallic elements
429
+ meaning: damlpt:Metallic
430
+ annotations:
431
+ properties: conductive, malleable, ductile
432
+ NON_METALLIC:
433
+ description: Non-metallic elements
434
+ meaning: damlpt:Non-Metallic
435
+ annotations:
436
+ properties: poor conductors, brittle
437
+ SEMI_METALLIC:
438
+ description: Semi-metallic/metalloid elements
439
+ meaning: damlpt:Semi-Metallic
440
+ annotations:
441
+ properties: intermediate properties
442
+ HardOrSoftEnum:
443
+ description: HSAB (Hard Soft Acid Base) classification
444
+ permissible_values:
445
+ HARD:
446
+ description: Hard acids/bases (small, high charge density)
447
+ annotations:
448
+ examples: H+, Li+, Mg2+, Al3+, F-, OH-
449
+ polarizability: low
450
+ SOFT:
451
+ description: Soft acids/bases (large, low charge density)
452
+ annotations:
453
+ examples: Cu+, Ag+, Au+, I-, S2-
454
+ polarizability: high
455
+ BORDERLINE:
456
+ description: Borderline acids/bases
457
+ annotations:
458
+ examples: Fe2+, Co2+, Ni2+, Cu2+, Zn2+
459
+ polarizability: intermediate
460
+ BronstedAcidBaseRoleEnum:
461
+ description: Brønsted-Lowry acid-base roles
462
+ permissible_values:
463
+ ACID:
464
+ title: Bronsted acid
465
+ description: Proton donor
466
+ meaning: CHEBI:39141
467
+ annotations:
468
+ definition: species that donates H+
469
+ BASE:
470
+ title: Bronsted base
471
+ description: Proton acceptor
472
+ meaning: CHEBI:39142
473
+ annotations:
474
+ definition: species that accepts H+
475
+ AMPHOTERIC:
476
+ description: Can act as both acid and base
477
+ annotations:
478
+ definition: species that can donate or accept H+
479
+ examples: H2O, HSO4-, H2PO4-
480
+ LewisAcidBaseRoleEnum:
481
+ description: Lewis acid-base roles
482
+ permissible_values:
483
+ LEWIS_ACID:
484
+ description: Electron pair acceptor
485
+ annotations:
486
+ definition: species that accepts electron pair
487
+ examples: BF3, AlCl3, H+
488
+ LEWIS_BASE:
489
+ description: Electron pair donor
490
+ annotations:
491
+ definition: species that donates electron pair
492
+ examples: NH3, OH-, H2O
493
+ OxidationStateEnum:
494
+ description: Common oxidation states
495
+ permissible_values:
496
+ MINUS_4:
497
+ description: Oxidation state -4
498
+ annotations:
499
+ value: '-4'
500
+ example: C in CH4
501
+ MINUS_3:
502
+ description: Oxidation state -3
503
+ annotations:
504
+ value: '-3'
505
+ example: N in NH3
506
+ MINUS_2:
507
+ description: Oxidation state -2
508
+ annotations:
509
+ value: '-2'
510
+ example: O in H2O
511
+ MINUS_1:
512
+ description: Oxidation state -1
513
+ annotations:
514
+ value: '-1'
515
+ example: Cl in NaCl
516
+ ZERO:
517
+ description: Oxidation state 0
518
+ annotations:
519
+ value: '0'
520
+ example: elemental forms
521
+ PLUS_1:
522
+ description: Oxidation state +1
523
+ annotations:
524
+ value: '+1'
525
+ example: Na in NaCl
526
+ PLUS_2:
527
+ description: Oxidation state +2
528
+ annotations:
529
+ value: '+2'
530
+ example: Ca in CaCl2
531
+ PLUS_3:
532
+ description: Oxidation state +3
533
+ annotations:
534
+ value: '+3'
535
+ example: Al in Al2O3
536
+ PLUS_4:
537
+ description: Oxidation state +4
538
+ annotations:
539
+ value: '+4'
540
+ example: C in CO2
541
+ PLUS_5:
542
+ description: Oxidation state +5
543
+ annotations:
544
+ value: '+5'
545
+ example: P in PO4³⁻
546
+ PLUS_6:
547
+ description: Oxidation state +6
548
+ annotations:
549
+ value: '+6'
550
+ example: S in SO4²⁻
551
+ PLUS_7:
552
+ description: Oxidation state +7
553
+ annotations:
554
+ value: '+7'
555
+ example: Mn in MnO4⁻
556
+ PLUS_8:
557
+ description: Oxidation state +8
558
+ annotations:
559
+ value: '+8'
560
+ example: Os in OsO4
561
+ ChiralityEnum:
562
+ description: Chirality/stereochemistry descriptors
563
+ permissible_values:
564
+ R:
565
+ description: Rectus (right) configuration
566
+ annotations:
567
+ cahn_ingold_prelog: 'true'
568
+ S:
569
+ description: Sinister (left) configuration
570
+ annotations:
571
+ cahn_ingold_prelog: 'true'
572
+ D:
573
+ description: Dextrorotatory
574
+ annotations:
575
+ fischer_projection: 'true'
576
+ optical_rotation: positive
577
+ L:
578
+ description: Levorotatory
579
+ annotations:
580
+ fischer_projection: 'true'
581
+ optical_rotation: negative
582
+ RACEMIC:
583
+ description: Racemic mixture (50:50 of enantiomers)
584
+ annotations:
585
+ optical_rotation: zero
586
+ MESO:
587
+ description: Meso compound (achiral despite stereocenters)
588
+ annotations:
589
+ internal_symmetry: 'true'
590
+ E:
591
+ description: Entgegen (opposite) configuration
592
+ annotations:
593
+ geometric_isomer: 'true'
594
+ Z:
595
+ description: Zusammen (together) configuration
596
+ annotations:
597
+ geometric_isomer: 'true'
598
+ NanostructureMorphologyEnum:
599
+ description: Types of nanostructure morphologies
600
+ permissible_values:
601
+ NANOTUBE:
602
+ description: Cylindrical nanostructure
603
+ meaning: CHEBI:50796
604
+ annotations:
605
+ dimensions: 1D
606
+ examples: carbon nanotubes
607
+ NANOPARTICLE:
608
+ description: Particle with nanoscale dimensions
609
+ meaning: CHEBI:50803
610
+ annotations:
611
+ dimensions: 0D
612
+ size_range: 1-100 nm
613
+ NANOROD:
614
+ description: Rod-shaped nanostructure
615
+ meaning: CHEBI:50805
616
+ annotations:
617
+ dimensions: 1D
618
+ aspect_ratio: 3-20
619
+ QUANTUM_DOT:
620
+ description: Semiconductor nanocrystal
621
+ meaning: CHEBI:50853
622
+ annotations:
623
+ dimensions: 0D
624
+ property: quantum confinement
625
+ NANOWIRE:
626
+ description: Wire with nanoscale diameter
627
+ annotations:
628
+ dimensions: 1D
629
+ diameter: <100 nm
630
+ NANOSHEET:
631
+ description: Two-dimensional nanostructure
632
+ annotations:
633
+ dimensions: 2D
634
+ thickness: <100 nm
635
+ NANOFIBER:
636
+ description: Fiber with nanoscale diameter
637
+ annotations:
638
+ dimensions: 1D
639
+ diameter: <1000 nm
@@ -0,0 +1,60 @@
1
+ name: reaction_directionality
2
+ title: Reaction Directionality
3
+ description: Directionality of chemical reactions and processes
4
+ id: https://w3id.org/common-value-sets/chemistry/reaction_directionality
5
+ imports:
6
+ - linkml:types
7
+ - ../core
8
+ prefixes:
9
+ linkml: https://w3id.org/linkml/
10
+ SBO: http://biomodels.net/SBO/
11
+ cvs: https://w3id.org/common-value-sets/
12
+ valuesets: https://w3id.org/valuesets/
13
+ default_prefix: valuesets
14
+ slots:
15
+ reaction_directionality:
16
+ description: The directionality of a chemical reaction or process
17
+ range: ReactionDirectionality
18
+ enums:
19
+ ReactionDirectionality:
20
+ title: Reaction Directionality
21
+ description: The directionality of a chemical reaction or process
22
+ permissible_values:
23
+ LEFT_TO_RIGHT:
24
+ description: Reaction proceeds from left to right (forward direction)
25
+ aliases:
26
+ - LR
27
+ - forward
28
+ - -->
29
+ RIGHT_TO_LEFT:
30
+ description: Reaction proceeds from right to left (reverse direction)
31
+ aliases:
32
+ - RL
33
+ - reverse
34
+ - backward
35
+ - <--
36
+ BIDIRECTIONAL:
37
+ description: Reaction can proceed in both directions
38
+ aliases:
39
+ - BIDI
40
+ - reversible
41
+ - <-->
42
+ exact_mappings:
43
+ - SBO:0000650
44
+ AGNOSTIC:
45
+ description: Direction is unknown or not specified
46
+ aliases:
47
+ - unknown
48
+ - unspecified
49
+ IRREVERSIBLE_LEFT_TO_RIGHT:
50
+ description: Reaction proceeds only from left to right and cannot be reversed
51
+ aliases:
52
+ - irreversible forward
53
+ - ->>
54
+ exact_mappings:
55
+ - SBO:0000651
56
+ IRREVERSIBLE_RIGHT_TO_LEFT:
57
+ description: Reaction proceeds only from right to left and cannot be reversed
58
+ aliases:
59
+ - irreversible reverse
60
+ - <<-