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,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
|