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,99 @@
|
|
|
1
|
+
name: viral_genome_types
|
|
2
|
+
id: https://w3id.org/linkml/valuesets/bio/viral_genome_types
|
|
3
|
+
prefixes:
|
|
4
|
+
NCIT: http://purl.obolibrary.org/obo/NCIT_
|
|
5
|
+
CHEBI: http://purl.obolibrary.org/obo/CHEBI_
|
|
6
|
+
SO: http://purl.obolibrary.org/obo/SO_
|
|
7
|
+
mixs: https://genomicsstandardsconsortium.github.io/mixs/
|
|
8
|
+
valuesets: https://w3id.org/valuesets/
|
|
9
|
+
default_prefix: valuesets
|
|
10
|
+
slots:
|
|
11
|
+
viral_genome_type:
|
|
12
|
+
description: Types of viral genomes based on Baltimore classification
|
|
13
|
+
range: ViralGenomeTypeEnum
|
|
14
|
+
enums:
|
|
15
|
+
ViralGenomeTypeEnum:
|
|
16
|
+
description: Types of viral genomes based on Baltimore classification
|
|
17
|
+
conforms_to: https://en.wikipedia.org/wiki/Baltimore_classification
|
|
18
|
+
permissible_values:
|
|
19
|
+
DNA:
|
|
20
|
+
description: Viral genome composed of DNA
|
|
21
|
+
meaning: CHEBI:16991
|
|
22
|
+
title: deoxyribonucleic acid
|
|
23
|
+
DSDNA:
|
|
24
|
+
description: Double-stranded DNA viral genome
|
|
25
|
+
meaning: NCIT:C14348
|
|
26
|
+
title: Double Stranded DNA Virus
|
|
27
|
+
is_a: DNA
|
|
28
|
+
aliases:
|
|
29
|
+
- Baltimore Group I
|
|
30
|
+
- Group I
|
|
31
|
+
SSDNA:
|
|
32
|
+
description: Single-stranded DNA viral genome
|
|
33
|
+
meaning: NCIT:C14350
|
|
34
|
+
title: Single Stranded DNA Virus
|
|
35
|
+
is_a: DNA
|
|
36
|
+
aliases:
|
|
37
|
+
- Baltimore Group II
|
|
38
|
+
- Group II
|
|
39
|
+
RNA:
|
|
40
|
+
description: Viral genome composed of RNA
|
|
41
|
+
meaning: CHEBI:33697
|
|
42
|
+
title: ribonucleic acid
|
|
43
|
+
DSRNA:
|
|
44
|
+
description: Double-stranded RNA viral genome
|
|
45
|
+
meaning: NCIT:C28518
|
|
46
|
+
title: Double Stranded RNA Virus
|
|
47
|
+
is_a: RNA
|
|
48
|
+
aliases:
|
|
49
|
+
- Baltimore Group III
|
|
50
|
+
- Group III
|
|
51
|
+
SSRNA:
|
|
52
|
+
description: Single-stranded RNA viral genome
|
|
53
|
+
meaning: NCIT:C95939
|
|
54
|
+
title: Single-Stranded RNA
|
|
55
|
+
is_a: RNA
|
|
56
|
+
SSRNA_POSITIVE:
|
|
57
|
+
description: Positive-sense single-stranded RNA viral genome
|
|
58
|
+
meaning: NCIT:C14351
|
|
59
|
+
title: Positive Sense ssRNA Virus
|
|
60
|
+
is_a: SSRNA
|
|
61
|
+
aliases:
|
|
62
|
+
- Baltimore Group IV
|
|
63
|
+
- Group IV
|
|
64
|
+
- (+)ssRNA
|
|
65
|
+
SSRNA_NEGATIVE:
|
|
66
|
+
description: Negative-sense single-stranded RNA viral genome
|
|
67
|
+
meaning: NCIT:C14346
|
|
68
|
+
title: Negative Sense ssRNA Virus
|
|
69
|
+
is_a: SSRNA
|
|
70
|
+
aliases:
|
|
71
|
+
- Baltimore Group V
|
|
72
|
+
- Group V
|
|
73
|
+
- (-)ssRNA
|
|
74
|
+
SSRNA_RT:
|
|
75
|
+
description: Single-stranded RNA viruses that replicate through a DNA intermediate (retroviruses)
|
|
76
|
+
meaning: NCIT:C14347
|
|
77
|
+
title: Deltaretrovirus
|
|
78
|
+
is_a: SSRNA
|
|
79
|
+
aliases:
|
|
80
|
+
- Baltimore Group VI
|
|
81
|
+
- Group VI
|
|
82
|
+
- Retroviruses
|
|
83
|
+
DSDNA_RT:
|
|
84
|
+
description: Double-stranded DNA viruses that replicate through a single-stranded RNA intermediate (pararetroviruses)
|
|
85
|
+
meaning: NCIT:C14349
|
|
86
|
+
title: Other Virus Grouping
|
|
87
|
+
is_a: DSDNA
|
|
88
|
+
aliases:
|
|
89
|
+
- Baltimore Group VII
|
|
90
|
+
- Group VII
|
|
91
|
+
- Pararetroviruses
|
|
92
|
+
MIXED:
|
|
93
|
+
description: Mixed or hybrid viral genome type
|
|
94
|
+
meaning: NCIT:C128790
|
|
95
|
+
title: Hybrid
|
|
96
|
+
UNCHARACTERIZED:
|
|
97
|
+
description: Viral genome type not yet characterized
|
|
98
|
+
meaning: NCIT:C17998
|
|
99
|
+
title: Unknown
|
|
@@ -0,0 +1,458 @@
|
|
|
1
|
+
name: scale_up
|
|
2
|
+
title: Bioprocessing Scale-up Value Sets
|
|
3
|
+
description: 'Value sets for bioprocessing scale-up facilities, fermentation, and biomanufacturing
|
|
4
|
+
|
|
5
|
+
operations like those at ABPDU (Advanced Biofuels and Bioproducts Process Development Unit)'
|
|
6
|
+
id: https://w3id.org/linkml/valuesets/bioprocessing/scale_up
|
|
7
|
+
imports:
|
|
8
|
+
- linkml:types
|
|
9
|
+
prefixes:
|
|
10
|
+
valuesets: https://w3id.org/valuesets/
|
|
11
|
+
NCIT: http://purl.obolibrary.org/obo/NCIT_
|
|
12
|
+
OBI: http://purl.obolibrary.org/obo/OBI_
|
|
13
|
+
ENVO: http://purl.obolibrary.org/obo/ENVO_
|
|
14
|
+
CHMO: http://purl.obolibrary.org/obo/CHMO_
|
|
15
|
+
CHEBI: http://purl.obolibrary.org/obo/CHEBI_
|
|
16
|
+
UO: http://purl.obolibrary.org/obo/UO_
|
|
17
|
+
BAO: http://www.bioassayontology.org/bao#BAO_
|
|
18
|
+
SBO: http://biomodels.net/SBO/SBO_
|
|
19
|
+
MSIO: http://purl.obolibrary.org/obo/MSIO_
|
|
20
|
+
mesh: http://id.nlm.nih.gov/mesh/
|
|
21
|
+
FOODON: http://purl.obolibrary.org/obo/FOODON_
|
|
22
|
+
default_prefix: valuesets
|
|
23
|
+
slots:
|
|
24
|
+
process_scale:
|
|
25
|
+
description: Scale of bioprocessing operations from lab bench to commercial production
|
|
26
|
+
range: ProcessScaleEnum
|
|
27
|
+
bioreactor_type:
|
|
28
|
+
description: Types of bioreactors used in fermentation and cell culture
|
|
29
|
+
range: BioreactorTypeEnum
|
|
30
|
+
fermentation_mode:
|
|
31
|
+
description: Modes of fermentation operation
|
|
32
|
+
range: FermentationModeEnum
|
|
33
|
+
oxygenation_strategy:
|
|
34
|
+
description: Oxygen supply strategies for fermentation
|
|
35
|
+
range: OxygenationStrategyEnum
|
|
36
|
+
agitation_type:
|
|
37
|
+
description: Types of agitation/mixing in bioreactors
|
|
38
|
+
range: AgitationTypeEnum
|
|
39
|
+
downstream_process:
|
|
40
|
+
description: Downstream processing unit operations
|
|
41
|
+
range: DownstreamProcessEnum
|
|
42
|
+
feedstock_type:
|
|
43
|
+
description: Types of feedstocks for bioprocessing
|
|
44
|
+
range: FeedstockTypeEnum
|
|
45
|
+
product_type:
|
|
46
|
+
description: Types of products from bioprocessing
|
|
47
|
+
range: ProductTypeEnum
|
|
48
|
+
sterilization_method:
|
|
49
|
+
description: Methods for sterilization in bioprocessing
|
|
50
|
+
range: SterilizationMethodEnum
|
|
51
|
+
enums:
|
|
52
|
+
ProcessScaleEnum:
|
|
53
|
+
description: Scale of bioprocessing operations from lab bench to commercial production
|
|
54
|
+
permissible_values:
|
|
55
|
+
BENCH_SCALE:
|
|
56
|
+
description: Laboratory bench scale (typically < 10 L)
|
|
57
|
+
annotations:
|
|
58
|
+
volume_range: 0.1-10 L
|
|
59
|
+
typical_volume: 1-5 L
|
|
60
|
+
purpose: Initial development and screening
|
|
61
|
+
PILOT_SCALE:
|
|
62
|
+
description: Pilot plant scale (10-1000 L)
|
|
63
|
+
annotations:
|
|
64
|
+
volume_range: 10-1000 L
|
|
65
|
+
typical_volume: 50-500 L
|
|
66
|
+
purpose: Process development and optimization
|
|
67
|
+
DEMONSTRATION_SCALE:
|
|
68
|
+
description: Demonstration scale (1000-10000 L)
|
|
69
|
+
annotations:
|
|
70
|
+
volume_range: 1000-10000 L
|
|
71
|
+
typical_volume: 2000-5000 L
|
|
72
|
+
purpose: Technology demonstration and validation
|
|
73
|
+
PRODUCTION_SCALE:
|
|
74
|
+
description: Commercial production scale (>10000 L)
|
|
75
|
+
related_mappings:
|
|
76
|
+
- NCIT:C112927
|
|
77
|
+
annotations:
|
|
78
|
+
volume_range: '>10000 L'
|
|
79
|
+
typical_volume: 20000-200000 L
|
|
80
|
+
purpose: Commercial manufacturing
|
|
81
|
+
MICROFLUIDIC_SCALE:
|
|
82
|
+
description: Microfluidic scale (<1 mL)
|
|
83
|
+
related_mappings:
|
|
84
|
+
- mesh:D044085
|
|
85
|
+
annotations:
|
|
86
|
+
volume_range: <1 mL
|
|
87
|
+
typical_volume: 1-1000 μL
|
|
88
|
+
purpose: High-throughput screening
|
|
89
|
+
BioreactorTypeEnum:
|
|
90
|
+
description: Types of bioreactors used in fermentation and cell culture
|
|
91
|
+
permissible_values:
|
|
92
|
+
STIRRED_TANK:
|
|
93
|
+
description: Stirred tank reactor (STR/CSTR)
|
|
94
|
+
related_mappings:
|
|
95
|
+
- OBI:0001046
|
|
96
|
+
annotations:
|
|
97
|
+
mixing: Mechanical agitation
|
|
98
|
+
common_volumes: 1-200000 L
|
|
99
|
+
AIRLIFT:
|
|
100
|
+
description: Airlift bioreactor
|
|
101
|
+
related_mappings:
|
|
102
|
+
- ENVO:00002125
|
|
103
|
+
- OBI:0001046
|
|
104
|
+
annotations:
|
|
105
|
+
mixing: Gas sparging
|
|
106
|
+
advantages: Low shear, no mechanical parts
|
|
107
|
+
BUBBLE_COLUMN:
|
|
108
|
+
description: Bubble column bioreactor
|
|
109
|
+
related_mappings:
|
|
110
|
+
- OBI:0001046
|
|
111
|
+
annotations:
|
|
112
|
+
mixing: Gas bubbling
|
|
113
|
+
advantages: Simple design, good mass transfer
|
|
114
|
+
PACKED_BED:
|
|
115
|
+
description: Packed bed bioreactor
|
|
116
|
+
annotations:
|
|
117
|
+
configuration: Fixed bed of immobilized cells/enzymes
|
|
118
|
+
flow: Continuous
|
|
119
|
+
FLUIDIZED_BED:
|
|
120
|
+
description: Fluidized bed bioreactor
|
|
121
|
+
annotations:
|
|
122
|
+
configuration: Suspended solid particles
|
|
123
|
+
mixing: Fluid flow
|
|
124
|
+
MEMBRANE:
|
|
125
|
+
title: membrane bioreactor
|
|
126
|
+
description: Membrane bioreactor
|
|
127
|
+
meaning: ENVO:03600010
|
|
128
|
+
annotations:
|
|
129
|
+
feature: Integrated membrane separation
|
|
130
|
+
application: Cell retention, product separation
|
|
131
|
+
WAVE_BAG:
|
|
132
|
+
description: Wave/rocking bioreactor
|
|
133
|
+
annotations:
|
|
134
|
+
mixing: Rocking motion
|
|
135
|
+
advantages: Single-use, low shear
|
|
136
|
+
HOLLOW_FIBER:
|
|
137
|
+
description: Hollow fiber bioreactor
|
|
138
|
+
annotations:
|
|
139
|
+
configuration: Hollow fiber membranes
|
|
140
|
+
application: High-density cell culture
|
|
141
|
+
PHOTOBIOREACTOR:
|
|
142
|
+
description: Photobioreactor for photosynthetic organisms
|
|
143
|
+
annotations:
|
|
144
|
+
light_source: Required
|
|
145
|
+
organisms: Algae, cyanobacteria
|
|
146
|
+
FermentationModeEnum:
|
|
147
|
+
description: Modes of fermentation operation
|
|
148
|
+
permissible_values:
|
|
149
|
+
BATCH:
|
|
150
|
+
title: batch cell culture
|
|
151
|
+
description: Batch fermentation
|
|
152
|
+
meaning: MSIO:0000181
|
|
153
|
+
annotations:
|
|
154
|
+
operation: All nutrients added at start
|
|
155
|
+
duration: Fixed time period
|
|
156
|
+
FED_BATCH:
|
|
157
|
+
description: Fed-batch fermentation
|
|
158
|
+
related_mappings:
|
|
159
|
+
- MSIO:0000165
|
|
160
|
+
- MSIO:0000166
|
|
161
|
+
annotations:
|
|
162
|
+
operation: Nutrients added during run
|
|
163
|
+
advantage: Control of growth rate
|
|
164
|
+
CONTINUOUS:
|
|
165
|
+
title: continuous fermentation cell culture
|
|
166
|
+
description: Continuous fermentation (chemostat)
|
|
167
|
+
meaning: MSIO:0000155
|
|
168
|
+
annotations:
|
|
169
|
+
operation: Continuous feed and harvest
|
|
170
|
+
steady_state: true
|
|
171
|
+
PERFUSION:
|
|
172
|
+
description: Perfusion culture
|
|
173
|
+
annotations:
|
|
174
|
+
operation: Continuous media exchange with cell retention
|
|
175
|
+
application: High-density cell culture
|
|
176
|
+
REPEATED_BATCH:
|
|
177
|
+
description: Repeated batch fermentation
|
|
178
|
+
annotations:
|
|
179
|
+
operation: Sequential batches with partial harvest
|
|
180
|
+
advantage: Reduced downtime
|
|
181
|
+
SEMI_CONTINUOUS:
|
|
182
|
+
description: Semi-continuous operation
|
|
183
|
+
annotations:
|
|
184
|
+
operation: Periodic harvest and refill
|
|
185
|
+
advantage: Extended production
|
|
186
|
+
OxygenationStrategyEnum:
|
|
187
|
+
description: Oxygen supply strategies for fermentation
|
|
188
|
+
permissible_values:
|
|
189
|
+
AEROBIC:
|
|
190
|
+
description: Aerobic with active aeration
|
|
191
|
+
related_mappings:
|
|
192
|
+
- ENVO:00002126
|
|
193
|
+
annotations:
|
|
194
|
+
oxygen: Required
|
|
195
|
+
typical_DO: 20-80% saturation
|
|
196
|
+
ANAEROBIC:
|
|
197
|
+
description: Anaerobic (no oxygen)
|
|
198
|
+
related_mappings:
|
|
199
|
+
- ENVO:00002124
|
|
200
|
+
annotations:
|
|
201
|
+
oxygen: Excluded
|
|
202
|
+
atmosphere: N2 or CO2
|
|
203
|
+
MICROAEROBIC:
|
|
204
|
+
description: Microaerobic (limited oxygen)
|
|
205
|
+
annotations:
|
|
206
|
+
oxygen: Limited
|
|
207
|
+
typical_DO: <5% saturation
|
|
208
|
+
FACULTATIVE:
|
|
209
|
+
description: Facultative (with/without oxygen)
|
|
210
|
+
annotations:
|
|
211
|
+
oxygen: Optional
|
|
212
|
+
flexibility: Organism-dependent
|
|
213
|
+
AgitationTypeEnum:
|
|
214
|
+
description: Types of agitation/mixing in bioreactors
|
|
215
|
+
permissible_values:
|
|
216
|
+
RUSHTON_TURBINE:
|
|
217
|
+
description: Rushton turbine impeller
|
|
218
|
+
annotations:
|
|
219
|
+
type: Radial flow
|
|
220
|
+
power_number: 5-6
|
|
221
|
+
PITCHED_BLADE:
|
|
222
|
+
description: Pitched blade turbine
|
|
223
|
+
annotations:
|
|
224
|
+
type: Axial flow
|
|
225
|
+
angle: 45 degrees
|
|
226
|
+
MARINE_PROPELLER:
|
|
227
|
+
description: Marine propeller
|
|
228
|
+
annotations:
|
|
229
|
+
type: Axial flow
|
|
230
|
+
low_shear: true
|
|
231
|
+
ANCHOR:
|
|
232
|
+
description: Anchor impeller
|
|
233
|
+
annotations:
|
|
234
|
+
type: Close clearance
|
|
235
|
+
viscous_fluids: true
|
|
236
|
+
HELICAL_RIBBON:
|
|
237
|
+
description: Helical ribbon impeller
|
|
238
|
+
annotations:
|
|
239
|
+
type: Close clearance
|
|
240
|
+
high_viscosity: true
|
|
241
|
+
MAGNETIC_BAR:
|
|
242
|
+
description: Magnetic stir bar
|
|
243
|
+
annotations:
|
|
244
|
+
scale: Laboratory
|
|
245
|
+
volume: <5 L
|
|
246
|
+
ORBITAL_SHAKING:
|
|
247
|
+
description: Orbital shaking
|
|
248
|
+
annotations:
|
|
249
|
+
type: Platform shaker
|
|
250
|
+
application: Shake flasks
|
|
251
|
+
NO_AGITATION:
|
|
252
|
+
description: No mechanical agitation
|
|
253
|
+
annotations:
|
|
254
|
+
mixing: Gas sparging or static
|
|
255
|
+
DownstreamProcessEnum:
|
|
256
|
+
description: Downstream processing unit operations
|
|
257
|
+
permissible_values:
|
|
258
|
+
CENTRIFUGATION:
|
|
259
|
+
title: analytical centrifugation
|
|
260
|
+
description: Centrifugal separation
|
|
261
|
+
meaning: CHMO:0002010
|
|
262
|
+
annotations:
|
|
263
|
+
principle: Density difference
|
|
264
|
+
types: Disk stack, tubular, decanter
|
|
265
|
+
FILTRATION:
|
|
266
|
+
description: Filtration (micro/ultra/nano)
|
|
267
|
+
meaning: CHMO:0001640
|
|
268
|
+
annotations:
|
|
269
|
+
types: Dead-end, crossflow, depth
|
|
270
|
+
CHROMATOGRAPHY:
|
|
271
|
+
description: Chromatographic separation
|
|
272
|
+
meaning: CHMO:0001000
|
|
273
|
+
annotations:
|
|
274
|
+
types: Ion exchange, affinity, size exclusion
|
|
275
|
+
EXTRACTION:
|
|
276
|
+
description: Liquid-liquid extraction
|
|
277
|
+
meaning: CHMO:0001577
|
|
278
|
+
annotations:
|
|
279
|
+
principle: Partitioning between phases
|
|
280
|
+
PRECIPITATION:
|
|
281
|
+
description: Precipitation/crystallization
|
|
282
|
+
meaning: CHMO:0001688
|
|
283
|
+
annotations:
|
|
284
|
+
agents: Salts, solvents, pH
|
|
285
|
+
EVAPORATION:
|
|
286
|
+
description: Evaporation/concentration
|
|
287
|
+
meaning: CHMO:0001574
|
|
288
|
+
annotations:
|
|
289
|
+
types: Falling film, MVR, TVR
|
|
290
|
+
DISTILLATION:
|
|
291
|
+
description: Distillation
|
|
292
|
+
meaning: CHMO:0001534
|
|
293
|
+
title: continuous distillation
|
|
294
|
+
annotations:
|
|
295
|
+
principle: Boiling point difference
|
|
296
|
+
DRYING:
|
|
297
|
+
description: Drying operations
|
|
298
|
+
meaning: CHMO:0001551
|
|
299
|
+
title: direct drying
|
|
300
|
+
annotations:
|
|
301
|
+
types: Spray, freeze, vacuum
|
|
302
|
+
HOMOGENIZATION:
|
|
303
|
+
description: Cell disruption/homogenization
|
|
304
|
+
annotations:
|
|
305
|
+
methods: High pressure, bead mill
|
|
306
|
+
FeedstockTypeEnum:
|
|
307
|
+
description: Types of feedstocks for bioprocessing
|
|
308
|
+
permissible_values:
|
|
309
|
+
GLUCOSE:
|
|
310
|
+
description: Glucose/dextrose
|
|
311
|
+
meaning: CHEBI:17234
|
|
312
|
+
annotations:
|
|
313
|
+
source: Corn, sugarcane
|
|
314
|
+
carbon_source: true
|
|
315
|
+
SUCROSE:
|
|
316
|
+
description: Sucrose
|
|
317
|
+
meaning: CHEBI:17992
|
|
318
|
+
annotations:
|
|
319
|
+
source: Sugarcane, sugar beet
|
|
320
|
+
carbon_source: true
|
|
321
|
+
GLYCEROL:
|
|
322
|
+
description: Glycerol
|
|
323
|
+
meaning: CHEBI:17754
|
|
324
|
+
annotations:
|
|
325
|
+
source: Biodiesel byproduct
|
|
326
|
+
carbon_source: true
|
|
327
|
+
MOLASSES:
|
|
328
|
+
description: Molasses
|
|
329
|
+
meaning: CHEBI:83163
|
|
330
|
+
annotations:
|
|
331
|
+
source: Sugar processing byproduct
|
|
332
|
+
complex_medium: true
|
|
333
|
+
CORN_STEEP_LIQUOR:
|
|
334
|
+
description: Corn steep liquor
|
|
335
|
+
annotations:
|
|
336
|
+
source: Corn wet milling
|
|
337
|
+
nitrogen_source: true
|
|
338
|
+
YEAST_EXTRACT:
|
|
339
|
+
description: Yeast extract
|
|
340
|
+
meaning: FOODON:03315426
|
|
341
|
+
annotations:
|
|
342
|
+
source: Autolyzed yeast
|
|
343
|
+
complex_nutrient: true
|
|
344
|
+
LIGNOCELLULOSIC:
|
|
345
|
+
description: Lignocellulosic biomass
|
|
346
|
+
annotations:
|
|
347
|
+
source: Agricultural residues, wood
|
|
348
|
+
pretreatment: Required
|
|
349
|
+
METHANOL:
|
|
350
|
+
description: Methanol
|
|
351
|
+
meaning: CHEBI:17790
|
|
352
|
+
annotations:
|
|
353
|
+
carbon_source: true
|
|
354
|
+
methylotrophic: true
|
|
355
|
+
WASTE_STREAM:
|
|
356
|
+
description: Industrial waste stream
|
|
357
|
+
annotations:
|
|
358
|
+
variable_composition: true
|
|
359
|
+
sustainability: Circular economy
|
|
360
|
+
ProductTypeEnum:
|
|
361
|
+
description: Types of products from bioprocessing
|
|
362
|
+
permissible_values:
|
|
363
|
+
BIOFUEL:
|
|
364
|
+
title: fuel
|
|
365
|
+
description: Biofuel (ethanol, biodiesel, etc.)
|
|
366
|
+
meaning: CHEBI:33292
|
|
367
|
+
annotations:
|
|
368
|
+
category: Energy
|
|
369
|
+
PROTEIN:
|
|
370
|
+
description: Recombinant protein
|
|
371
|
+
meaning: NCIT:C17021
|
|
372
|
+
annotations:
|
|
373
|
+
category: Biopharmaceutical
|
|
374
|
+
ENZYME:
|
|
375
|
+
description: Industrial enzyme
|
|
376
|
+
meaning: NCIT:C16554
|
|
377
|
+
annotations:
|
|
378
|
+
category: Biocatalyst
|
|
379
|
+
ORGANIC_ACID:
|
|
380
|
+
description: Organic acid (citric, lactic, etc.)
|
|
381
|
+
meaning: CHEBI:64709
|
|
382
|
+
annotations:
|
|
383
|
+
category: Chemical
|
|
384
|
+
AMINO_ACID:
|
|
385
|
+
description: Amino acid
|
|
386
|
+
meaning: CHEBI:33709
|
|
387
|
+
annotations:
|
|
388
|
+
category: Nutritional
|
|
389
|
+
ANTIBIOTIC:
|
|
390
|
+
description: Antibiotic
|
|
391
|
+
meaning: CHEBI:33281
|
|
392
|
+
title: antimicrobial agent
|
|
393
|
+
annotations:
|
|
394
|
+
category: Pharmaceutical
|
|
395
|
+
VITAMIN:
|
|
396
|
+
description: Vitamin
|
|
397
|
+
meaning: CHEBI:33229
|
|
398
|
+
title: vitamin (role)
|
|
399
|
+
annotations:
|
|
400
|
+
category: Nutritional
|
|
401
|
+
BIOPOLYMER:
|
|
402
|
+
description: Biopolymer (PHA, PLA, etc.)
|
|
403
|
+
meaning: CHEBI:33694
|
|
404
|
+
title: biomacromolecule
|
|
405
|
+
annotations:
|
|
406
|
+
category: Material
|
|
407
|
+
BIOMASS:
|
|
408
|
+
description: Microbial biomass
|
|
409
|
+
meaning: ENVO:01000155
|
|
410
|
+
title: organic material
|
|
411
|
+
annotations:
|
|
412
|
+
category: Feed/food
|
|
413
|
+
SECONDARY_METABOLITE:
|
|
414
|
+
description: Secondary metabolite
|
|
415
|
+
meaning: CHEBI:25212
|
|
416
|
+
title: metabolite
|
|
417
|
+
annotations:
|
|
418
|
+
category: Specialty chemical
|
|
419
|
+
SterilizationMethodEnum:
|
|
420
|
+
description: Methods for sterilization in bioprocessing
|
|
421
|
+
permissible_values:
|
|
422
|
+
STEAM_IN_PLACE:
|
|
423
|
+
description: Steam in place (SIP)
|
|
424
|
+
annotations:
|
|
425
|
+
temperature: 121-134°C
|
|
426
|
+
time: 15-30 min
|
|
427
|
+
AUTOCLAVE:
|
|
428
|
+
title: autoclaving
|
|
429
|
+
description: Autoclave sterilization
|
|
430
|
+
meaning: CHMO:0002846
|
|
431
|
+
annotations:
|
|
432
|
+
temperature: 121°C
|
|
433
|
+
pressure: 15 psi
|
|
434
|
+
FILTER_STERILIZATION:
|
|
435
|
+
description: Filter sterilization (0.2 μm)
|
|
436
|
+
annotations:
|
|
437
|
+
pore_size: 0.2 μm
|
|
438
|
+
heat_labile: true
|
|
439
|
+
GAMMA_IRRADIATION:
|
|
440
|
+
description: Gamma irradiation
|
|
441
|
+
annotations:
|
|
442
|
+
dose: 25-40 kGy
|
|
443
|
+
single_use: true
|
|
444
|
+
ETHYLENE_OXIDE:
|
|
445
|
+
description: Ethylene oxide sterilization
|
|
446
|
+
annotations:
|
|
447
|
+
temperature: 30-60°C
|
|
448
|
+
plastic_compatible: true
|
|
449
|
+
UV_STERILIZATION:
|
|
450
|
+
description: UV sterilization
|
|
451
|
+
annotations:
|
|
452
|
+
wavelength: 254 nm
|
|
453
|
+
surface_only: true
|
|
454
|
+
CHEMICAL_STERILIZATION:
|
|
455
|
+
description: Chemical sterilization
|
|
456
|
+
annotations:
|
|
457
|
+
agents: Bleach, alcohol, peroxide
|
|
458
|
+
contact_time: Variable
|