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.
- valuesets/__init__.py +7 -0
- valuesets/_version.py +8 -0
- valuesets/datamodel/valuesets.py +13796 -0
- valuesets/datamodel/valuesets_dataclass.py +24503 -0
- valuesets/datamodel/valuesets_pydantic.py +13796 -0
- valuesets/enums/__init__.py +590 -0
- valuesets/enums/academic/__init__.py +1 -0
- valuesets/enums/academic/research.py +559 -0
- valuesets/enums/analytical_chemistry/__init__.py +1 -0
- valuesets/enums/analytical_chemistry/mass_spectrometry.py +198 -0
- valuesets/enums/bio/__init__.py +1 -0
- valuesets/enums/bio/biological_colors.py +238 -0
- valuesets/enums/bio/cell_cycle.py +180 -0
- valuesets/enums/bio/currency_chemicals.py +52 -0
- valuesets/enums/bio/developmental_stages.py +103 -0
- valuesets/enums/bio/genome_features.py +182 -0
- valuesets/enums/bio/genomics.py +91 -0
- valuesets/enums/bio/go_aspect.py +32 -0
- valuesets/enums/bio/go_causality.py +58 -0
- valuesets/enums/bio/go_evidence.py +129 -0
- valuesets/enums/bio/human_developmental_stages.py +62 -0
- valuesets/enums/bio/insdc_geographic_locations.py +591 -0
- valuesets/enums/bio/insdc_missing_values.py +49 -0
- valuesets/enums/bio/lipid_categories.py +67 -0
- valuesets/enums/bio/mouse_developmental_stages.py +62 -0
- valuesets/enums/bio/plant_biology.py +86 -0
- valuesets/enums/bio/plant_developmental_stages.py +54 -0
- valuesets/enums/bio/plant_sex.py +81 -0
- valuesets/enums/bio/protein_evidence.py +61 -0
- valuesets/enums/bio/proteomics_standards.py +123 -0
- valuesets/enums/bio/psi_mi.py +306 -0
- valuesets/enums/bio/relationship_to_oxygen.py +37 -0
- valuesets/enums/bio/sequence_alphabets.py +449 -0
- valuesets/enums/bio/sequence_chemistry.py +357 -0
- valuesets/enums/bio/sequencing_platforms.py +302 -0
- valuesets/enums/bio/structural_biology.py +320 -0
- valuesets/enums/bio/taxonomy.py +238 -0
- valuesets/enums/bio/trophic_levels.py +85 -0
- valuesets/enums/bio/uniprot_species.py +344 -0
- valuesets/enums/bio/viral_genome_types.py +47 -0
- valuesets/enums/bioprocessing/__init__.py +1 -0
- valuesets/enums/bioprocessing/scale_up.py +249 -0
- valuesets/enums/business/__init__.py +1 -0
- valuesets/enums/business/human_resources.py +275 -0
- valuesets/enums/business/industry_classifications.py +181 -0
- valuesets/enums/business/management_operations.py +228 -0
- valuesets/enums/business/organizational_structures.py +236 -0
- valuesets/enums/business/quality_management.py +181 -0
- valuesets/enums/business/supply_chain.py +232 -0
- valuesets/enums/chemistry/__init__.py +1 -0
- valuesets/enums/chemistry/chemical_entities.py +315 -0
- valuesets/enums/chemistry/reaction_directionality.py +65 -0
- valuesets/enums/chemistry/reactions.py +256 -0
- valuesets/enums/clinical/__init__.py +1 -0
- valuesets/enums/clinical/nih_demographics.py +177 -0
- valuesets/enums/clinical/phenopackets.py +254 -0
- valuesets/enums/common_value_sets.py +8791 -0
- valuesets/enums/computing/__init__.py +1 -0
- valuesets/enums/computing/file_formats.py +294 -0
- valuesets/enums/computing/maturity_levels.py +196 -0
- valuesets/enums/computing/mime_types.py +227 -0
- valuesets/enums/confidence_levels.py +168 -0
- valuesets/enums/contributor.py +30 -0
- valuesets/enums/core.py +42 -0
- valuesets/enums/data/__init__.py +1 -0
- valuesets/enums/data/data_absent_reason.py +53 -0
- valuesets/enums/data_science/__init__.py +1 -0
- valuesets/enums/data_science/binary_classification.py +87 -0
- valuesets/enums/data_science/emotion_classification.py +66 -0
- valuesets/enums/data_science/priority_severity.py +73 -0
- valuesets/enums/data_science/quality_control.py +46 -0
- valuesets/enums/data_science/sentiment_analysis.py +50 -0
- valuesets/enums/data_science/text_classification.py +97 -0
- valuesets/enums/demographics.py +206 -0
- valuesets/enums/ecological_interactions.py +151 -0
- valuesets/enums/energy/__init__.py +1 -0
- valuesets/enums/energy/energy.py +343 -0
- valuesets/enums/energy/fossil_fuels.py +29 -0
- valuesets/enums/energy/nuclear/__init__.py +1 -0
- valuesets/enums/energy/nuclear/nuclear_facilities.py +195 -0
- valuesets/enums/energy/nuclear/nuclear_fuel_cycle.py +96 -0
- valuesets/enums/energy/nuclear/nuclear_fuels.py +175 -0
- valuesets/enums/energy/nuclear/nuclear_operations.py +191 -0
- valuesets/enums/energy/nuclear/nuclear_regulatory.py +188 -0
- valuesets/enums/energy/nuclear/nuclear_safety.py +164 -0
- valuesets/enums/energy/nuclear/nuclear_waste.py +158 -0
- valuesets/enums/energy/nuclear/reactor_types.py +163 -0
- valuesets/enums/environmental_health/__init__.py +1 -0
- valuesets/enums/environmental_health/exposures.py +265 -0
- valuesets/enums/geography/__init__.py +1 -0
- valuesets/enums/geography/geographic_codes.py +741 -0
- valuesets/enums/health/__init__.py +12 -0
- valuesets/enums/health/vaccination.py +98 -0
- valuesets/enums/health.py +36 -0
- valuesets/enums/health_base.py +36 -0
- valuesets/enums/healthcare.py +45 -0
- valuesets/enums/industry/__init__.py +1 -0
- valuesets/enums/industry/extractive_industry.py +94 -0
- valuesets/enums/industry/mining.py +388 -0
- valuesets/enums/industry/safety_colors.py +201 -0
- valuesets/enums/investigation.py +27 -0
- valuesets/enums/materials_science/__init__.py +1 -0
- valuesets/enums/materials_science/characterization_methods.py +112 -0
- valuesets/enums/materials_science/crystal_structures.py +76 -0
- valuesets/enums/materials_science/material_properties.py +119 -0
- valuesets/enums/materials_science/material_types.py +104 -0
- valuesets/enums/materials_science/pigments_dyes.py +198 -0
- valuesets/enums/materials_science/synthesis_methods.py +109 -0
- valuesets/enums/medical/__init__.py +1 -0
- valuesets/enums/medical/clinical.py +277 -0
- valuesets/enums/medical/neuroimaging.py +119 -0
- valuesets/enums/mining_processing.py +302 -0
- valuesets/enums/physics/__init__.py +1 -0
- valuesets/enums/physics/states_of_matter.py +46 -0
- valuesets/enums/social/__init__.py +1 -0
- valuesets/enums/social/person_status.py +29 -0
- valuesets/enums/spatial/__init__.py +1 -0
- valuesets/enums/spatial/spatial_qualifiers.py +246 -0
- valuesets/enums/statistics/__init__.py +5 -0
- valuesets/enums/statistics/prediction_outcomes.py +31 -0
- valuesets/enums/statistics.py +31 -0
- valuesets/enums/time/__init__.py +1 -0
- valuesets/enums/time/temporal.py +254 -0
- valuesets/enums/units/__init__.py +1 -0
- valuesets/enums/units/measurements.py +310 -0
- valuesets/enums/visual/__init__.py +1 -0
- valuesets/enums/visual/colors.py +376 -0
- valuesets/generators/__init__.py +19 -0
- valuesets/generators/auto_slot_injector.py +280 -0
- valuesets/generators/enhanced_pydantic_generator.py +100 -0
- valuesets/generators/enum_slot_generator.py +201 -0
- valuesets/generators/modular_rich_generator.py +353 -0
- valuesets/generators/prefix_standardizer.py +198 -0
- valuesets/generators/rich_enum.py +127 -0
- valuesets/generators/rich_pydantic_generator.py +310 -0
- valuesets/generators/smart_slot_syncer.py +428 -0
- valuesets/generators/sssom_generator.py +394 -0
- valuesets/merged/merged_hierarchy.yaml +21649 -0
- valuesets/schema/README.md +3 -0
- valuesets/schema/academic/research.yaml +911 -0
- valuesets/schema/analytical_chemistry/mass_spectrometry.yaml +206 -0
- valuesets/schema/bio/bio_entities.yaml +364 -0
- valuesets/schema/bio/biological_colors.yaml +434 -0
- valuesets/schema/bio/cell_cycle.yaml +309 -0
- valuesets/schema/bio/currency_chemicals.yaml +70 -0
- valuesets/schema/bio/developmental_stages.yaml +226 -0
- valuesets/schema/bio/genome_features.yaml +342 -0
- valuesets/schema/bio/genomics.yaml +101 -0
- valuesets/schema/bio/go_aspect.yaml +39 -0
- valuesets/schema/bio/go_causality.yaml +119 -0
- valuesets/schema/bio/go_evidence.yaml +215 -0
- valuesets/schema/bio/insdc_geographic_locations.yaml +911 -0
- valuesets/schema/bio/insdc_missing_values.yaml +85 -0
- valuesets/schema/bio/lipid_categories.yaml +72 -0
- valuesets/schema/bio/plant_biology.yaml +125 -0
- valuesets/schema/bio/plant_developmental_stages.yaml +77 -0
- valuesets/schema/bio/plant_sex.yaml +108 -0
- valuesets/schema/bio/protein_evidence.yaml +63 -0
- valuesets/schema/bio/proteomics_standards.yaml +116 -0
- valuesets/schema/bio/psi_mi.yaml +400 -0
- valuesets/schema/bio/relationship_to_oxygen.yaml +46 -0
- valuesets/schema/bio/sequence_alphabets.yaml +1168 -0
- valuesets/schema/bio/sequence_chemistry.yaml +477 -0
- valuesets/schema/bio/sequencing_platforms.yaml +515 -0
- valuesets/schema/bio/structural_biology.yaml +428 -0
- valuesets/schema/bio/taxonomy.yaml +453 -0
- valuesets/schema/bio/trophic_levels.yaml +118 -0
- valuesets/schema/bio/uniprot_species.yaml +1209 -0
- valuesets/schema/bio/viral_genome_types.yaml +99 -0
- valuesets/schema/bioprocessing/scale_up.yaml +458 -0
- valuesets/schema/business/human_resources.yaml +752 -0
- valuesets/schema/business/industry_classifications.yaml +448 -0
- valuesets/schema/business/management_operations.yaml +602 -0
- valuesets/schema/business/organizational_structures.yaml +645 -0
- valuesets/schema/business/quality_management.yaml +502 -0
- valuesets/schema/business/supply_chain.yaml +688 -0
- valuesets/schema/chemistry/chemical_entities.yaml +639 -0
- valuesets/schema/chemistry/reaction_directionality.yaml +60 -0
- valuesets/schema/chemistry/reactions.yaml +442 -0
- valuesets/schema/clinical/nih_demographics.yaml +285 -0
- valuesets/schema/clinical/phenopackets.yaml +429 -0
- valuesets/schema/computing/file_formats.yaml +631 -0
- valuesets/schema/computing/maturity_levels.yaml +229 -0
- valuesets/schema/computing/mime_types.yaml +266 -0
- valuesets/schema/confidence_levels.yaml +206 -0
- valuesets/schema/contributor.yaml +30 -0
- valuesets/schema/core.yaml +55 -0
- valuesets/schema/data/data_absent_reason.yaml +82 -0
- valuesets/schema/data_science/binary_classification.yaml +125 -0
- valuesets/schema/data_science/emotion_classification.yaml +109 -0
- valuesets/schema/data_science/priority_severity.yaml +122 -0
- valuesets/schema/data_science/quality_control.yaml +68 -0
- valuesets/schema/data_science/sentiment_analysis.yaml +81 -0
- valuesets/schema/data_science/text_classification.yaml +135 -0
- valuesets/schema/demographics.yaml +238 -0
- valuesets/schema/ecological_interactions.yaml +298 -0
- valuesets/schema/energy/energy.yaml +595 -0
- valuesets/schema/energy/fossil_fuels.yaml +28 -0
- valuesets/schema/energy/nuclear/nuclear_facilities.yaml +463 -0
- valuesets/schema/energy/nuclear/nuclear_fuel_cycle.yaml +82 -0
- valuesets/schema/energy/nuclear/nuclear_fuels.yaml +421 -0
- valuesets/schema/energy/nuclear/nuclear_operations.yaml +480 -0
- valuesets/schema/energy/nuclear/nuclear_regulatory.yaml +200 -0
- valuesets/schema/energy/nuclear/nuclear_safety.yaml +352 -0
- valuesets/schema/energy/nuclear/nuclear_waste.yaml +332 -0
- valuesets/schema/energy/nuclear/reactor_types.yaml +394 -0
- valuesets/schema/environmental_health/exposures.yaml +355 -0
- valuesets/schema/generated_slots.yaml +1828 -0
- valuesets/schema/geography/geographic_codes.yaml +1018 -0
- valuesets/schema/health/vaccination.yaml +102 -0
- valuesets/schema/health.yaml +38 -0
- valuesets/schema/healthcare.yaml +53 -0
- valuesets/schema/industry/extractive_industry.yaml +89 -0
- valuesets/schema/industry/mining.yaml +888 -0
- valuesets/schema/industry/safety_colors.yaml +375 -0
- valuesets/schema/investigation.yaml +64 -0
- valuesets/schema/materials_science/characterization_methods.yaml +193 -0
- valuesets/schema/materials_science/crystal_structures.yaml +138 -0
- valuesets/schema/materials_science/material_properties.yaml +135 -0
- valuesets/schema/materials_science/material_types.yaml +151 -0
- valuesets/schema/materials_science/pigments_dyes.yaml +465 -0
- valuesets/schema/materials_science/synthesis_methods.yaml +186 -0
- valuesets/schema/medical/clinical.yaml +610 -0
- valuesets/schema/medical/neuroimaging.yaml +325 -0
- valuesets/schema/mining_processing.yaml +295 -0
- valuesets/schema/physics/states_of_matter.yaml +46 -0
- valuesets/schema/slot_mixins.yaml +143 -0
- valuesets/schema/social/person_status.yaml +28 -0
- valuesets/schema/spatial/spatial_qualifiers.yaml +466 -0
- valuesets/schema/statistics/prediction_outcomes.yaml +26 -0
- valuesets/schema/statistics.yaml +34 -0
- valuesets/schema/time/temporal.yaml +435 -0
- valuesets/schema/types.yaml +15 -0
- valuesets/schema/units/measurements.yaml +675 -0
- valuesets/schema/valuesets.yaml +100 -0
- valuesets/schema/visual/colors.yaml +778 -0
- valuesets/utils/__init__.py +6 -0
- valuesets/utils/comparison.py +102 -0
- valuesets/utils/expand_dynamic_enums.py +414 -0
- valuesets/utils/mapping_utils.py +236 -0
- valuesets/validators/__init__.py +11 -0
- valuesets/validators/enum_evaluator.py +669 -0
- valuesets/validators/oak_config.yaml +70 -0
- valuesets/validators/validate_with_ols.py +241 -0
- valuesets-0.3.1.dist-info/METADATA +395 -0
- valuesets-0.3.1.dist-info/RECORD +248 -0
- valuesets-0.3.1.dist-info/WHEEL +4 -0
- valuesets-0.3.1.dist-info/licenses/LICENSE +201 -0
|
@@ -0,0 +1,442 @@
|
|
|
1
|
+
name: reactions
|
|
2
|
+
title: Chemical Reactions Value Sets
|
|
3
|
+
description: 'Value sets for chemical reactions, reaction types, mechanisms, and kinetics.
|
|
4
|
+
|
|
5
|
+
'
|
|
6
|
+
id: https://w3id.org/valuesets/chemistry/reactions
|
|
7
|
+
imports:
|
|
8
|
+
- linkml:types
|
|
9
|
+
prefixes:
|
|
10
|
+
linkml: https://w3id.org/linkml/
|
|
11
|
+
RXNO: http://purl.obolibrary.org/obo/RXNO_
|
|
12
|
+
MOP: http://purl.obolibrary.org/obo/MOP_
|
|
13
|
+
REX: http://purl.obolibrary.org/obo/REX_
|
|
14
|
+
CHEBI: http://purl.obolibrary.org/obo/CHEBI_
|
|
15
|
+
GO: http://purl.obolibrary.org/obo/GO_
|
|
16
|
+
EC: https://enzyme.expasy.org/EC/
|
|
17
|
+
valuesets: https://w3id.org/valuesets/
|
|
18
|
+
default_prefix: valuesets
|
|
19
|
+
slots:
|
|
20
|
+
reaction_type:
|
|
21
|
+
description: Types of chemical reactions
|
|
22
|
+
range: ReactionTypeEnum
|
|
23
|
+
reaction_mechanism:
|
|
24
|
+
description: Reaction mechanism types
|
|
25
|
+
range: ReactionMechanismEnum
|
|
26
|
+
catalyst_type:
|
|
27
|
+
description: Types of catalysts
|
|
28
|
+
range: CatalystTypeEnum
|
|
29
|
+
reaction_condition:
|
|
30
|
+
description: Reaction conditions
|
|
31
|
+
range: ReactionConditionEnum
|
|
32
|
+
reaction_rate_order:
|
|
33
|
+
description: Reaction rate orders
|
|
34
|
+
range: ReactionRateOrderEnum
|
|
35
|
+
enzyme_class:
|
|
36
|
+
description: EC enzyme classification
|
|
37
|
+
range: EnzymeClassEnum
|
|
38
|
+
solvent_class:
|
|
39
|
+
description: Classes of solvents
|
|
40
|
+
range: SolventClassEnum
|
|
41
|
+
thermodynamic_parameter:
|
|
42
|
+
description: Thermodynamic parameters
|
|
43
|
+
range: ThermodynamicParameterEnum
|
|
44
|
+
enums:
|
|
45
|
+
ReactionTypeEnum:
|
|
46
|
+
description: Types of chemical reactions
|
|
47
|
+
permissible_values:
|
|
48
|
+
SYNTHESIS:
|
|
49
|
+
description: Combination reaction (A + B → AB)
|
|
50
|
+
annotations:
|
|
51
|
+
aliases: combination, addition
|
|
52
|
+
pattern: A + B → AB
|
|
53
|
+
DECOMPOSITION:
|
|
54
|
+
description: Breakdown reaction (AB → A + B)
|
|
55
|
+
annotations:
|
|
56
|
+
aliases: analysis
|
|
57
|
+
pattern: AB → A + B
|
|
58
|
+
SINGLE_DISPLACEMENT:
|
|
59
|
+
description: Single replacement reaction (A + BC → AC + B)
|
|
60
|
+
annotations:
|
|
61
|
+
aliases: single replacement
|
|
62
|
+
pattern: A + BC → AC + B
|
|
63
|
+
DOUBLE_DISPLACEMENT:
|
|
64
|
+
description: Double replacement reaction (AB + CD → AD + CB)
|
|
65
|
+
annotations:
|
|
66
|
+
aliases: double replacement, metathesis
|
|
67
|
+
pattern: AB + CD → AD + CB
|
|
68
|
+
COMBUSTION:
|
|
69
|
+
description: Reaction with oxygen producing heat and light
|
|
70
|
+
annotations:
|
|
71
|
+
reactant: oxygen
|
|
72
|
+
products: usually CO2 and H2O
|
|
73
|
+
SUBSTITUTION:
|
|
74
|
+
title: substitution reaction
|
|
75
|
+
description: Replacement of one group by another
|
|
76
|
+
meaning: MOP:0000790
|
|
77
|
+
annotations:
|
|
78
|
+
subtypes: SN1, SN2, SNAr
|
|
79
|
+
ELIMINATION:
|
|
80
|
+
title: elimination reaction
|
|
81
|
+
description: Removal of atoms/groups forming double bond
|
|
82
|
+
meaning: MOP:0000656
|
|
83
|
+
annotations:
|
|
84
|
+
subtypes: E1, E2, E1cB
|
|
85
|
+
ADDITION:
|
|
86
|
+
title: addition reaction
|
|
87
|
+
description: Addition to multiple bond
|
|
88
|
+
meaning: MOP:0000642
|
|
89
|
+
annotations:
|
|
90
|
+
subtypes: electrophilic, nucleophilic, radical
|
|
91
|
+
REARRANGEMENT:
|
|
92
|
+
description: Reorganization of molecular structure
|
|
93
|
+
annotations:
|
|
94
|
+
examples: Claisen, Cope, Wagner-Meerwein
|
|
95
|
+
OXIDATION:
|
|
96
|
+
description: Loss of electrons or increase in oxidation state
|
|
97
|
+
annotations:
|
|
98
|
+
electron_change: loss
|
|
99
|
+
REDUCTION:
|
|
100
|
+
description: Gain of electrons or decrease in oxidation state
|
|
101
|
+
annotations:
|
|
102
|
+
electron_change: gain
|
|
103
|
+
DIELS_ALDER:
|
|
104
|
+
title: Diels-Alder reaction
|
|
105
|
+
description: '[4+2] cycloaddition reaction'
|
|
106
|
+
meaning: RXNO:0000006
|
|
107
|
+
annotations:
|
|
108
|
+
type: pericyclic
|
|
109
|
+
components: diene + dienophile
|
|
110
|
+
FRIEDEL_CRAFTS:
|
|
111
|
+
title: Friedel-Crafts reaction
|
|
112
|
+
description: Electrophilic aromatic substitution
|
|
113
|
+
meaning: RXNO:0000369
|
|
114
|
+
annotations:
|
|
115
|
+
subtypes: alkylation, acylation
|
|
116
|
+
GRIGNARD:
|
|
117
|
+
title: Grignard reaction
|
|
118
|
+
description: Organometallic addition reaction
|
|
119
|
+
meaning: RXNO:0000014
|
|
120
|
+
annotations:
|
|
121
|
+
reagent: RMgX
|
|
122
|
+
WITTIG:
|
|
123
|
+
title: Wittig reaction
|
|
124
|
+
description: Alkene formation from phosphonium ylide
|
|
125
|
+
meaning: RXNO:0000015
|
|
126
|
+
annotations:
|
|
127
|
+
product: alkene
|
|
128
|
+
ALDOL:
|
|
129
|
+
title: aldol condensation
|
|
130
|
+
description: Condensation forming β-hydroxy carbonyl
|
|
131
|
+
meaning: RXNO:0000017
|
|
132
|
+
annotations:
|
|
133
|
+
mechanism: enolate addition
|
|
134
|
+
MICHAEL_ADDITION:
|
|
135
|
+
title: Michael addition
|
|
136
|
+
description: 1,4-addition to α,β-unsaturated carbonyl
|
|
137
|
+
meaning: RXNO:0000009
|
|
138
|
+
annotations:
|
|
139
|
+
type: conjugate addition
|
|
140
|
+
ReactionMechanismEnum:
|
|
141
|
+
description: Reaction mechanism types
|
|
142
|
+
permissible_values:
|
|
143
|
+
SN1:
|
|
144
|
+
description: Unimolecular nucleophilic substitution
|
|
145
|
+
annotations:
|
|
146
|
+
rate_determining: carbocation formation
|
|
147
|
+
stereochemistry: racemization
|
|
148
|
+
SN2:
|
|
149
|
+
description: Bimolecular nucleophilic substitution
|
|
150
|
+
annotations:
|
|
151
|
+
rate_determining: concerted
|
|
152
|
+
stereochemistry: inversion
|
|
153
|
+
E1:
|
|
154
|
+
description: Unimolecular elimination
|
|
155
|
+
annotations:
|
|
156
|
+
intermediate: carbocation
|
|
157
|
+
E2:
|
|
158
|
+
description: Bimolecular elimination
|
|
159
|
+
annotations:
|
|
160
|
+
requirement: antiperiplanar
|
|
161
|
+
E1CB:
|
|
162
|
+
description: Elimination via conjugate base
|
|
163
|
+
annotations:
|
|
164
|
+
intermediate: carbanion
|
|
165
|
+
RADICAL:
|
|
166
|
+
description: Free radical mechanism
|
|
167
|
+
annotations:
|
|
168
|
+
initiation: homolytic cleavage
|
|
169
|
+
PERICYCLIC:
|
|
170
|
+
description: Concerted cyclic electron reorganization
|
|
171
|
+
annotations:
|
|
172
|
+
examples: Diels-Alder, Cope
|
|
173
|
+
ELECTROPHILIC_AROMATIC:
|
|
174
|
+
description: Electrophilic aromatic substitution
|
|
175
|
+
annotations:
|
|
176
|
+
intermediate: arenium ion
|
|
177
|
+
NUCLEOPHILIC_AROMATIC:
|
|
178
|
+
description: Nucleophilic aromatic substitution
|
|
179
|
+
annotations:
|
|
180
|
+
requirement: electron-withdrawing groups
|
|
181
|
+
ADDITION_ELIMINATION:
|
|
182
|
+
description: Addition followed by elimination
|
|
183
|
+
annotations:
|
|
184
|
+
intermediate: tetrahedral
|
|
185
|
+
CatalystTypeEnum:
|
|
186
|
+
description: Types of catalysts
|
|
187
|
+
permissible_values:
|
|
188
|
+
HOMOGENEOUS:
|
|
189
|
+
description: Catalyst in same phase as reactants
|
|
190
|
+
annotations:
|
|
191
|
+
phase: same as reactants
|
|
192
|
+
examples: acid, base, metal complexes
|
|
193
|
+
HETEROGENEOUS:
|
|
194
|
+
description: Catalyst in different phase from reactants
|
|
195
|
+
annotations:
|
|
196
|
+
phase: different from reactants
|
|
197
|
+
examples: Pt/Pd on carbon, zeolites
|
|
198
|
+
ENZYME:
|
|
199
|
+
title: cofactor
|
|
200
|
+
description: Biological catalyst
|
|
201
|
+
meaning: CHEBI:23357
|
|
202
|
+
annotations:
|
|
203
|
+
type: protein
|
|
204
|
+
specificity: high
|
|
205
|
+
ORGANOCATALYST:
|
|
206
|
+
description: Small organic molecule catalyst
|
|
207
|
+
annotations:
|
|
208
|
+
metal_free: 'true'
|
|
209
|
+
examples: proline, thiourea
|
|
210
|
+
PHOTOCATALYST:
|
|
211
|
+
description: Light-activated catalyst
|
|
212
|
+
annotations:
|
|
213
|
+
activation: light
|
|
214
|
+
examples: TiO2, Ru complexes
|
|
215
|
+
PHASE_TRANSFER:
|
|
216
|
+
description: Catalyst facilitating reaction between phases
|
|
217
|
+
annotations:
|
|
218
|
+
function: transfers reactant between phases
|
|
219
|
+
ACID:
|
|
220
|
+
description: Acid catalyst
|
|
221
|
+
annotations:
|
|
222
|
+
mechanism: proton donation
|
|
223
|
+
BASE:
|
|
224
|
+
description: Base catalyst
|
|
225
|
+
annotations:
|
|
226
|
+
mechanism: proton abstraction
|
|
227
|
+
METAL:
|
|
228
|
+
description: Metal catalyst
|
|
229
|
+
annotations:
|
|
230
|
+
examples: Pd, Pt, Ni, Ru
|
|
231
|
+
BIFUNCTIONAL:
|
|
232
|
+
description: Catalyst with two active sites
|
|
233
|
+
annotations:
|
|
234
|
+
sites: multiple
|
|
235
|
+
ReactionConditionEnum:
|
|
236
|
+
description: Reaction conditions
|
|
237
|
+
permissible_values:
|
|
238
|
+
ROOM_TEMPERATURE:
|
|
239
|
+
description: Standard room temperature (20-25°C)
|
|
240
|
+
annotations:
|
|
241
|
+
temperature: 20-25°C
|
|
242
|
+
REFLUX:
|
|
243
|
+
description: Boiling with condensation return
|
|
244
|
+
annotations:
|
|
245
|
+
temperature: solvent boiling point
|
|
246
|
+
CRYOGENIC:
|
|
247
|
+
description: Very low temperature conditions
|
|
248
|
+
annotations:
|
|
249
|
+
temperature: <-150°C
|
|
250
|
+
examples: liquid N2, liquid He
|
|
251
|
+
HIGH_PRESSURE:
|
|
252
|
+
description: Elevated pressure conditions
|
|
253
|
+
annotations:
|
|
254
|
+
pressure: '>10 atm'
|
|
255
|
+
VACUUM:
|
|
256
|
+
description: Reduced pressure conditions
|
|
257
|
+
annotations:
|
|
258
|
+
pressure: <1 atm
|
|
259
|
+
INERT_ATMOSPHERE:
|
|
260
|
+
description: Non-reactive gas atmosphere
|
|
261
|
+
annotations:
|
|
262
|
+
gases: N2, Ar
|
|
263
|
+
MICROWAVE:
|
|
264
|
+
description: Microwave heating
|
|
265
|
+
annotations:
|
|
266
|
+
heating: microwave irradiation
|
|
267
|
+
ULTRASOUND:
|
|
268
|
+
description: Ultrasonic conditions
|
|
269
|
+
annotations:
|
|
270
|
+
activation: ultrasound
|
|
271
|
+
PHOTOCHEMICAL:
|
|
272
|
+
description: Light-induced conditions
|
|
273
|
+
annotations:
|
|
274
|
+
activation: UV or visible light
|
|
275
|
+
ELECTROCHEMICAL:
|
|
276
|
+
description: Electrically driven conditions
|
|
277
|
+
annotations:
|
|
278
|
+
activation: electric current
|
|
279
|
+
FLOW:
|
|
280
|
+
description: Continuous flow conditions
|
|
281
|
+
annotations:
|
|
282
|
+
type: continuous process
|
|
283
|
+
BATCH:
|
|
284
|
+
description: Batch reaction conditions
|
|
285
|
+
annotations:
|
|
286
|
+
type: batch process
|
|
287
|
+
ReactionRateOrderEnum:
|
|
288
|
+
description: Reaction rate orders
|
|
289
|
+
permissible_values:
|
|
290
|
+
ZERO_ORDER:
|
|
291
|
+
description: Rate independent of concentration
|
|
292
|
+
annotations:
|
|
293
|
+
rate_law: rate = k
|
|
294
|
+
integrated: '[A] = [A]₀ - kt'
|
|
295
|
+
FIRST_ORDER:
|
|
296
|
+
description: Rate proportional to concentration
|
|
297
|
+
annotations:
|
|
298
|
+
rate_law: rate = k[A]
|
|
299
|
+
integrated: ln[A] = ln[A]₀ - kt
|
|
300
|
+
SECOND_ORDER:
|
|
301
|
+
description: Rate proportional to concentration squared
|
|
302
|
+
annotations:
|
|
303
|
+
rate_law: rate = k[A]²
|
|
304
|
+
integrated: 1/[A] = 1/[A]₀ + kt
|
|
305
|
+
PSEUDO_FIRST_ORDER:
|
|
306
|
+
description: Apparent first order (excess reagent)
|
|
307
|
+
annotations:
|
|
308
|
+
condition: one reagent in large excess
|
|
309
|
+
FRACTIONAL_ORDER:
|
|
310
|
+
description: Non-integer order
|
|
311
|
+
annotations:
|
|
312
|
+
indicates: complex mechanism
|
|
313
|
+
MIXED_ORDER:
|
|
314
|
+
description: Different orders for different reactants
|
|
315
|
+
annotations:
|
|
316
|
+
example: rate = k[A][B]²
|
|
317
|
+
EnzymeClassEnum:
|
|
318
|
+
description: EC enzyme classification
|
|
319
|
+
permissible_values:
|
|
320
|
+
OXIDOREDUCTASE:
|
|
321
|
+
title: Oxidoreductases
|
|
322
|
+
description: Catalyzes oxidation-reduction reactions
|
|
323
|
+
meaning: EC:1
|
|
324
|
+
annotations:
|
|
325
|
+
EC_class: '1'
|
|
326
|
+
examples: dehydrogenases, oxidases
|
|
327
|
+
TRANSFERASE:
|
|
328
|
+
title: Transferases
|
|
329
|
+
description: Catalyzes group transfer reactions
|
|
330
|
+
meaning: EC:2
|
|
331
|
+
annotations:
|
|
332
|
+
EC_class: '2'
|
|
333
|
+
examples: kinases, transaminases
|
|
334
|
+
HYDROLASE:
|
|
335
|
+
title: Hydrolases
|
|
336
|
+
description: Catalyzes hydrolysis reactions
|
|
337
|
+
meaning: EC:3
|
|
338
|
+
annotations:
|
|
339
|
+
EC_class: '3'
|
|
340
|
+
examples: proteases, lipases
|
|
341
|
+
LYASE:
|
|
342
|
+
title: Lyases
|
|
343
|
+
description: Catalyzes non-hydrolytic additions/removals
|
|
344
|
+
meaning: EC:4
|
|
345
|
+
annotations:
|
|
346
|
+
EC_class: '4'
|
|
347
|
+
examples: decarboxylases, aldolases
|
|
348
|
+
ISOMERASE:
|
|
349
|
+
title: Isomerases
|
|
350
|
+
description: Catalyzes isomerization reactions
|
|
351
|
+
meaning: EC:5
|
|
352
|
+
annotations:
|
|
353
|
+
EC_class: '5'
|
|
354
|
+
examples: racemases, epimerases
|
|
355
|
+
LIGASE:
|
|
356
|
+
title: Ligases
|
|
357
|
+
description: Catalyzes formation of bonds with ATP
|
|
358
|
+
meaning: EC:6
|
|
359
|
+
annotations:
|
|
360
|
+
EC_class: '6'
|
|
361
|
+
examples: synthetases, carboxylases
|
|
362
|
+
TRANSLOCASE:
|
|
363
|
+
title: Translocases
|
|
364
|
+
description: Catalyzes movement across membranes
|
|
365
|
+
meaning: EC:7
|
|
366
|
+
annotations:
|
|
367
|
+
EC_class: '7'
|
|
368
|
+
examples: ATPases, ion pumps
|
|
369
|
+
SolventClassEnum:
|
|
370
|
+
description: Classes of solvents
|
|
371
|
+
permissible_values:
|
|
372
|
+
PROTIC:
|
|
373
|
+
description: Solvents with acidic hydrogen
|
|
374
|
+
annotations:
|
|
375
|
+
H_bonding: donor
|
|
376
|
+
examples: water, alcohols, acids
|
|
377
|
+
APROTIC_POLAR:
|
|
378
|
+
description: Polar solvents without acidic H
|
|
379
|
+
annotations:
|
|
380
|
+
H_bonding: acceptor only
|
|
381
|
+
examples: DMSO, DMF, acetone
|
|
382
|
+
APROTIC_NONPOLAR:
|
|
383
|
+
description: Nonpolar solvents
|
|
384
|
+
annotations:
|
|
385
|
+
H_bonding: none
|
|
386
|
+
examples: hexane, benzene, CCl4
|
|
387
|
+
IONIC_LIQUID:
|
|
388
|
+
description: Room temperature ionic liquids
|
|
389
|
+
annotations:
|
|
390
|
+
state: liquid salt
|
|
391
|
+
examples: imidazolium salts
|
|
392
|
+
SUPERCRITICAL:
|
|
393
|
+
description: Supercritical fluids
|
|
394
|
+
annotations:
|
|
395
|
+
state: supercritical
|
|
396
|
+
examples: scCO2, scH2O
|
|
397
|
+
AQUEOUS:
|
|
398
|
+
description: Water-based solvents
|
|
399
|
+
annotations:
|
|
400
|
+
base: water
|
|
401
|
+
ORGANIC:
|
|
402
|
+
description: Organic solvents
|
|
403
|
+
annotations:
|
|
404
|
+
base: organic compounds
|
|
405
|
+
GREEN:
|
|
406
|
+
description: Environmentally friendly solvents
|
|
407
|
+
annotations:
|
|
408
|
+
property: low environmental impact
|
|
409
|
+
examples: water, ethanol, scCO2
|
|
410
|
+
ThermodynamicParameterEnum:
|
|
411
|
+
description: Thermodynamic parameters
|
|
412
|
+
permissible_values:
|
|
413
|
+
ENTHALPY:
|
|
414
|
+
description: Heat content (ΔH)
|
|
415
|
+
annotations:
|
|
416
|
+
symbol: ΔH
|
|
417
|
+
units: kJ/mol
|
|
418
|
+
ENTROPY:
|
|
419
|
+
description: Disorder (ΔS)
|
|
420
|
+
annotations:
|
|
421
|
+
symbol: ΔS
|
|
422
|
+
units: J/mol·K
|
|
423
|
+
GIBBS_ENERGY:
|
|
424
|
+
description: Free energy (ΔG)
|
|
425
|
+
annotations:
|
|
426
|
+
symbol: ΔG
|
|
427
|
+
units: kJ/mol
|
|
428
|
+
ACTIVATION_ENERGY:
|
|
429
|
+
description: Energy barrier (Ea)
|
|
430
|
+
annotations:
|
|
431
|
+
symbol: Ea
|
|
432
|
+
units: kJ/mol
|
|
433
|
+
HEAT_CAPACITY:
|
|
434
|
+
description: Heat capacity (Cp)
|
|
435
|
+
annotations:
|
|
436
|
+
symbol: Cp
|
|
437
|
+
units: J/mol·K
|
|
438
|
+
INTERNAL_ENERGY:
|
|
439
|
+
description: Internal energy (ΔU)
|
|
440
|
+
annotations:
|
|
441
|
+
symbol: ΔU
|
|
442
|
+
units: kJ/mol
|