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,428 @@
1
+ name: structural_biology
2
+ title: Structural Biology Value Sets
3
+ description: 'Value sets for structural biology techniques, including cryo-EM, X-ray crystallography, SAXS/SANS, mass spectrometry,
4
+ and related sample preparation and data processing methods.
5
+
6
+ '
7
+ id: https://w3id.org/valuesets/bio/structural_biology
8
+ imports:
9
+ - linkml:types
10
+ prefixes:
11
+ linkml: https://w3id.org/linkml/
12
+ EDAM: http://edamontology.org/
13
+ OBI: http://purl.obolibrary.org/obo/OBI_
14
+ CHMO: http://purl.obolibrary.org/obo/CHMO_
15
+ valuesets: https://w3id.org/valuesets/
16
+ default_prefix: valuesets
17
+ slots:
18
+ sample:
19
+ description: Types of biological samples used in structural biology
20
+ range: SampleType
21
+ structural_biology_technique:
22
+ description: Structural biology experimental techniques
23
+ range: StructuralBiologyTechnique
24
+ cryo_em_preparation:
25
+ description: Types of cryo-EM sample preparation
26
+ range: CryoEMPreparationType
27
+ cryo_em_grid:
28
+ description: Types of electron microscopy grids
29
+ range: CryoEMGridType
30
+ vitrification_method:
31
+ description: Methods for sample vitrification
32
+ range: VitrificationMethod
33
+ crystallization_method:
34
+ description: Methods for protein crystallization
35
+ range: CrystallizationMethod
36
+ x_ray_source:
37
+ description: Types of X-ray sources
38
+ range: XRaySource
39
+ detector:
40
+ description: Types of detectors for structural biology
41
+ range: Detector
42
+ workflow:
43
+ description: Types of computational processing workflows
44
+ range: WorkflowType
45
+ file_format:
46
+ description: File formats used in structural biology
47
+ range: FileFormat
48
+ data:
49
+ description: Types of structural biology data
50
+ range: DataType
51
+ processing_status:
52
+ description: Status of data processing workflows
53
+ range: ProcessingStatus
54
+ enums:
55
+ SampleType:
56
+ description: Types of biological samples used in structural biology
57
+ permissible_values:
58
+ PROTEIN:
59
+ description: Purified protein sample
60
+ NUCLEIC_ACID:
61
+ description: Nucleic acid sample (DNA or RNA)
62
+ PROTEIN_COMPLEX:
63
+ description: Protein-protein or protein-nucleic acid complex
64
+ MEMBRANE_PROTEIN:
65
+ description: Membrane-associated protein sample
66
+ VIRUS:
67
+ description: Viral particle or capsid
68
+ ORGANELLE:
69
+ description: Cellular organelle (mitochondria, chloroplast, etc.)
70
+ CELL:
71
+ description: Whole cell sample
72
+ TISSUE:
73
+ description: Tissue sample
74
+ StructuralBiologyTechnique:
75
+ description: Structural biology experimental techniques
76
+ permissible_values:
77
+ CRYO_EM:
78
+ title: cryogenic electron microscopy
79
+ description: Cryo-electron microscopy
80
+ meaning: CHMO:0002413
81
+ annotations:
82
+ resolution_range: 2-30 Å typical
83
+ aliases: cryoEM, electron cryo-microscopy
84
+ CRYO_ET:
85
+ description: Cryo-electron tomography
86
+ annotations:
87
+ resolution_range: 20-100 Å typical
88
+ aliases: cryoET, electron cryo-tomography
89
+ X_RAY_CRYSTALLOGRAPHY:
90
+ title: single crystal X-ray diffraction
91
+ description: X-ray crystallography
92
+ meaning: CHMO:0000159
93
+ annotations:
94
+ resolution_range: 1-4 Å typical
95
+ aliases: XRC, macromolecular crystallography
96
+ NEUTRON_CRYSTALLOGRAPHY:
97
+ description: Neutron crystallography
98
+ annotations:
99
+ advantages: hydrogen positions, deuteration studies
100
+ SAXS:
101
+ title: small-angle X-ray scattering
102
+ description: Small-angle X-ray scattering
103
+ meaning: CHMO:0000204
104
+ annotations:
105
+ information: low-resolution structure, conformational changes
106
+ SANS:
107
+ description: Small-angle neutron scattering
108
+ annotations:
109
+ advantages: contrast variation with deuteration
110
+ WAXS:
111
+ description: Wide-angle X-ray scattering
112
+ NMR:
113
+ title: nuclear magnetic resonance spectroscopy
114
+ description: Nuclear magnetic resonance spectroscopy
115
+ meaning: CHMO:0000591
116
+ annotations:
117
+ information: solution structure, dynamics
118
+ MASS_SPECTROMETRY:
119
+ description: Mass spectrometry
120
+ meaning: CHMO:0000470
121
+ annotations:
122
+ applications: native MS, crosslinking, HDX
123
+ NEGATIVE_STAIN_EM:
124
+ description: Negative stain electron microscopy
125
+ annotations:
126
+ resolution_range: 15-30 Å typical
127
+ CryoEMPreparationType:
128
+ description: Types of cryo-EM sample preparation
129
+ permissible_values:
130
+ VITREOUS_ICE:
131
+ description: Sample embedded in vitreous ice
132
+ CRYO_SECTIONING:
133
+ description: Cryo-sectioned sample
134
+ FREEZE_SUBSTITUTION:
135
+ description: Freeze-substituted sample
136
+ HIGH_PRESSURE_FREEZING:
137
+ description: High-pressure frozen sample
138
+ CryoEMGridType:
139
+ description: Types of electron microscopy grids
140
+ permissible_values:
141
+ C_FLAT:
142
+ description: C-flat holey carbon grid
143
+ annotations:
144
+ hole_sizes: 1.2/1.3, 2/1, 2/2 μm common
145
+ manufacturer: Protochips
146
+ QUANTIFOIL:
147
+ description: Quantifoil holey carbon grid
148
+ annotations:
149
+ hole_sizes: 1.2/1.3, 2/1, 2/2 μm common
150
+ manufacturer: Quantifoil
151
+ LACEY_CARBON:
152
+ description: Lacey carbon support film
153
+ annotations:
154
+ structure: irregular holes, thin carbon film
155
+ ULTRATHIN_CARBON:
156
+ description: Ultrathin carbon film on holey support
157
+ annotations:
158
+ thickness: 3-5 nm typical
159
+ GOLD_GRID:
160
+ description: Pure gold grid
161
+ annotations:
162
+ advantages: inert, high-resolution imaging
163
+ GRAPHENE_OXIDE:
164
+ description: Graphene oxide support
165
+ annotations:
166
+ advantages: atomically thin, good contrast
167
+ VitrificationMethod:
168
+ description: Methods for sample vitrification
169
+ permissible_values:
170
+ PLUNGE_FREEZING:
171
+ description: Plunge freezing in liquid ethane
172
+ annotations:
173
+ temperature: -180°C ethane
174
+ equipment: Vitrobot, Leica GP
175
+ HIGH_PRESSURE_FREEZING:
176
+ description: High pressure freezing
177
+ annotations:
178
+ pressure: 2100 bar typical
179
+ advantages: thick samples, no ice crystals
180
+ SLAM_FREEZING:
181
+ description: Slam freezing against metal block
182
+ annotations:
183
+ cooling_rate: 10,000 K/s
184
+ SPRAY_FREEZING:
185
+ description: Spray freezing into liquid nitrogen
186
+ annotations:
187
+ applications: large samples, tissues
188
+ CrystallizationMethod:
189
+ description: Methods for protein crystallization
190
+ permissible_values:
191
+ VAPOR_DIFFUSION_HANGING:
192
+ description: Vapor diffusion hanging drop method
193
+ annotations:
194
+ volume: 2-10 μL drops typical
195
+ advantages: visual monitoring, easy optimization
196
+ VAPOR_DIFFUSION_SITTING:
197
+ description: Vapor diffusion sitting drop method
198
+ annotations:
199
+ advantages: automated setup, stable drops
200
+ MICROBATCH:
201
+ description: Microbatch under oil method
202
+ annotations:
203
+ oil_type: paraffin, silicone oil
204
+ advantages: prevents evaporation
205
+ DIALYSIS:
206
+ description: Dialysis crystallization
207
+ annotations:
208
+ applications: large volume samples, gentle conditions
209
+ FREE_INTERFACE_DIFFUSION:
210
+ description: Free interface diffusion
211
+ annotations:
212
+ setup: capillary tubes, gel interface
213
+ LCP:
214
+ description: Lipidic cubic phase crystallization
215
+ annotations:
216
+ applications: membrane proteins
217
+ lipid: monoolein most common
218
+ XRaySource:
219
+ description: Types of X-ray sources
220
+ permissible_values:
221
+ SYNCHROTRON:
222
+ description: Synchrotron radiation source
223
+ annotations:
224
+ advantages: high intensity, tunable wavelength
225
+ brightness: 10^15-10^18 photons/s/mm²/mrad²
226
+ ROTATING_ANODE:
227
+ description: Rotating anode generator
228
+ annotations:
229
+ power: 3-18 kW typical
230
+ target: copper, molybdenum common
231
+ MICROFOCUS:
232
+ description: Microfocus sealed tube
233
+ annotations:
234
+ spot_size: 10-50 μm
235
+ applications: small crystals, in-house screening
236
+ METAL_JET:
237
+ description: Liquid metal jet source
238
+ annotations:
239
+ advantages: higher power density, longer lifetime
240
+ metals: gallium, indium
241
+ Detector:
242
+ description: Types of detectors for structural biology
243
+ permissible_values:
244
+ DIRECT_ELECTRON:
245
+ description: Direct electron detector (DED)
246
+ annotations:
247
+ examples: K2, K3, Falcon, DE-series
248
+ advantages: high DQE, fast readout
249
+ CCD:
250
+ description: Charge-coupled device camera
251
+ annotations:
252
+ applications: legacy EM, some crystallography
253
+ CMOS:
254
+ description: Complementary metal-oxide semiconductor detector
255
+ annotations:
256
+ advantages: fast readout, low noise
257
+ HYBRID_PIXEL:
258
+ description: Hybrid pixel detector
259
+ annotations:
260
+ examples: Pilatus, Eiger
261
+ advantages: photon counting, zero noise
262
+ PHOTOSTIMULABLE_PHOSPHOR:
263
+ description: Photostimulable phosphor (image plate)
264
+ annotations:
265
+ applications: legacy crystallography
266
+ WorkflowType:
267
+ description: Types of computational processing workflows
268
+ permissible_values:
269
+ MOTION_CORRECTION:
270
+ description: Motion correction for cryo-EM movies
271
+ annotations:
272
+ software: MotionCorr, Unblur, RELION
273
+ CTF_ESTIMATION:
274
+ description: Contrast transfer function estimation
275
+ annotations:
276
+ software: CTFFIND, Gctf, RELION
277
+ PARTICLE_PICKING:
278
+ description: Particle picking from micrographs
279
+ annotations:
280
+ methods: template matching, deep learning
281
+ software: RELION, cryoSPARC, Topaz
282
+ CLASSIFICATION_2D:
283
+ description: 2D classification of particles
284
+ annotations:
285
+ purpose: sorting, cleaning particle dataset
286
+ CLASSIFICATION_3D:
287
+ description: 3D classification of particles
288
+ annotations:
289
+ purpose: conformational sorting, resolution improvement
290
+ REFINEMENT_3D:
291
+ description: 3D refinement of particle orientations
292
+ annotations:
293
+ algorithms: expectation maximization, gradient descent
294
+ MODEL_BUILDING:
295
+ description: Atomic model building into density
296
+ annotations:
297
+ software: Coot, ChimeraX, Isolde
298
+ MODEL_REFINEMENT:
299
+ description: Atomic model refinement
300
+ annotations:
301
+ software: PHENIX, REFMAC, Buster
302
+ PHASING:
303
+ description: Phase determination for crystallography
304
+ annotations:
305
+ methods: SAD, MAD, MR, MIR
306
+ DATA_INTEGRATION:
307
+ description: Integration of diffraction data
308
+ annotations:
309
+ software: XDS, DIALS, HKL
310
+ DATA_SCALING:
311
+ description: Scaling and merging of diffraction data
312
+ annotations:
313
+ software: SCALA, AIMLESS, XSCALE
314
+ SAXS_ANALYSIS:
315
+ description: SAXS data analysis and modeling
316
+ annotations:
317
+ software: PRIMUS, CRYSOL, FoXS
318
+ FileFormat:
319
+ description: File formats used in structural biology
320
+ permissible_values:
321
+ MRC:
322
+ description: MRC format for EM density maps
323
+ annotations:
324
+ extension: .mrc, .map
325
+ applications: EM volumes, tomograms
326
+ TIFF:
327
+ description: Tagged Image File Format
328
+ annotations:
329
+ extension: .tif, .tiff
330
+ applications: micrographs, general imaging
331
+ HDF5:
332
+ description: Hierarchical Data Format 5
333
+ annotations:
334
+ extension: .h5, .hdf5
335
+ applications: large datasets, metadata storage
336
+ STAR:
337
+ description: Self-defining Text Archival and Retrieval format
338
+ annotations:
339
+ extension: .star
340
+ applications: RELION metadata, particle parameters
341
+ PDB:
342
+ description: Protein Data Bank coordinate format
343
+ annotations:
344
+ extension: .pdb
345
+ applications: atomic coordinates, legacy format
346
+ MMCIF:
347
+ description: Macromolecular Crystallographic Information File
348
+ annotations:
349
+ extension: .cif
350
+ applications: atomic coordinates, modern PDB format
351
+ MTZ:
352
+ description: MTZ reflection data format
353
+ annotations:
354
+ extension: .mtz
355
+ applications: crystallographic reflections, phases
356
+ CBF:
357
+ description: Crystallographic Binary Format
358
+ annotations:
359
+ extension: .cbf
360
+ applications: detector images, diffraction data
361
+ DM3:
362
+ description: Digital Micrograph format
363
+ annotations:
364
+ extension: .dm3, .dm4
365
+ applications: FEI/Thermo Fisher EM data
366
+ SER:
367
+ description: FEI series format
368
+ annotations:
369
+ extension: .ser
370
+ applications: FEI movie stacks
371
+ DataType:
372
+ description: Types of structural biology data
373
+ permissible_values:
374
+ MICROGRAPH:
375
+ description: Electron micrograph image
376
+ annotations:
377
+ typical_size: 4k x 4k pixels
378
+ MOVIE:
379
+ description: Movie stack of frames
380
+ annotations:
381
+ applications: motion correction, dose fractionation
382
+ DIFFRACTION:
383
+ description: X-ray diffraction pattern
384
+ annotations:
385
+ information: structure factors, crystal lattice
386
+ SCATTERING:
387
+ description: Small-angle scattering data
388
+ annotations:
389
+ information: I(q) vs scattering vector
390
+ PARTICLES:
391
+ description: Particle stack for single particle analysis
392
+ annotations:
393
+ format: boxed particles, aligned
394
+ VOLUME:
395
+ description: 3D electron density volume
396
+ annotations:
397
+ applications: cryo-EM maps, crystallographic maps
398
+ TOMOGRAM:
399
+ description: 3D tomographic reconstruction
400
+ annotations:
401
+ resolution: 5-50 Å typical
402
+ MODEL:
403
+ description: Atomic coordinate model
404
+ annotations:
405
+ formats: PDB, mmCIF
406
+ METADATA:
407
+ description: Associated metadata file
408
+ annotations:
409
+ formats: STAR, XML, JSON
410
+ ProcessingStatus:
411
+ description: Status of data processing workflows
412
+ permissible_values:
413
+ RAW:
414
+ description: Raw unprocessed data
415
+ PREPROCESSING:
416
+ description: Initial preprocessing in progress
417
+ PROCESSING:
418
+ description: Main processing workflow running
419
+ COMPLETED:
420
+ description: Processing completed successfully
421
+ FAILED:
422
+ description: Processing failed with errors
423
+ QUEUED:
424
+ description: Queued for processing
425
+ PAUSED:
426
+ description: Processing paused by user
427
+ CANCELLED:
428
+ description: Processing cancelled by user