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,206 @@
|
|
|
1
|
+
id: https://w3id.org/valuesets/analytical_chemistry/mass_spectrometry
|
|
2
|
+
name: mass_spectrometry
|
|
3
|
+
title: Mass Spectrometry Value Sets
|
|
4
|
+
description: |-
|
|
5
|
+
Value sets for mass spectrometry and analytical chemistry, derived from MS and MSIO ontologies.
|
|
6
|
+
license: https://creativecommons.org/publicdomain/zero/1.0/
|
|
7
|
+
version: 0.1.0
|
|
8
|
+
prefixes:
|
|
9
|
+
valuesets: https://w3id.org/valuesets/
|
|
10
|
+
linkml: https://w3id.org/linkml/
|
|
11
|
+
MS: http://purl.obolibrary.org/obo/MS_
|
|
12
|
+
MSIO: http://purl.obolibrary.org/obo/MSIO_
|
|
13
|
+
CHMO: http://purl.obolibrary.org/obo/CHMO_
|
|
14
|
+
default_prefix: valuesets
|
|
15
|
+
imports:
|
|
16
|
+
- linkml:types
|
|
17
|
+
- ../core
|
|
18
|
+
|
|
19
|
+
enums:
|
|
20
|
+
MassSpectrometerFileFormat:
|
|
21
|
+
description: Standard file formats used in mass spectrometry
|
|
22
|
+
permissible_values:
|
|
23
|
+
MZML:
|
|
24
|
+
title: mzML format
|
|
25
|
+
description: mzML format - PSI standard for mass spectrometry data
|
|
26
|
+
meaning: MS:1000584
|
|
27
|
+
MZXML:
|
|
28
|
+
title: ISB mzXML format
|
|
29
|
+
description: ISB mzXML format
|
|
30
|
+
meaning: MS:1000566
|
|
31
|
+
MGF:
|
|
32
|
+
title: Mascot MGF format
|
|
33
|
+
description: Mascot Generic Format
|
|
34
|
+
meaning: MS:1001062
|
|
35
|
+
THERMO_RAW:
|
|
36
|
+
title: Thermo RAW format
|
|
37
|
+
description: Thermo RAW format
|
|
38
|
+
meaning: MS:1000563
|
|
39
|
+
WATERS_RAW:
|
|
40
|
+
title: Waters raw format
|
|
41
|
+
description: Waters raw format
|
|
42
|
+
meaning: MS:1000526
|
|
43
|
+
WIFF:
|
|
44
|
+
title: ABI WIFF format
|
|
45
|
+
description: ABI WIFF format
|
|
46
|
+
meaning: MS:1000562
|
|
47
|
+
MZDATA:
|
|
48
|
+
title: PSI mzData format
|
|
49
|
+
description: PSI mzData format
|
|
50
|
+
meaning: MS:1000564
|
|
51
|
+
PKL:
|
|
52
|
+
title: Micromass PKL format
|
|
53
|
+
description: Micromass PKL format
|
|
54
|
+
meaning: MS:1000565
|
|
55
|
+
DTA:
|
|
56
|
+
title: DTA format
|
|
57
|
+
description: DTA format
|
|
58
|
+
meaning: MS:1000613
|
|
59
|
+
MS2:
|
|
60
|
+
title: MS2 format
|
|
61
|
+
description: MS2 format
|
|
62
|
+
meaning: MS:1001466
|
|
63
|
+
BRUKER_BAF:
|
|
64
|
+
title: Bruker BAF format
|
|
65
|
+
description: Bruker BAF format
|
|
66
|
+
meaning: MS:1000815
|
|
67
|
+
BRUKER_TDF:
|
|
68
|
+
title: Bruker TDF format
|
|
69
|
+
description: Bruker TDF format
|
|
70
|
+
meaning: MS:1002817
|
|
71
|
+
BRUKER_TSF:
|
|
72
|
+
title: Bruker TSF format
|
|
73
|
+
description: Bruker TSF format
|
|
74
|
+
meaning: MS:1003282
|
|
75
|
+
MZ5:
|
|
76
|
+
title: mz5 format
|
|
77
|
+
description: mz5 format
|
|
78
|
+
meaning: MS:1001881
|
|
79
|
+
MZMLB:
|
|
80
|
+
title: mzMLb format
|
|
81
|
+
description: mzMLb format
|
|
82
|
+
meaning: MS:1002838
|
|
83
|
+
UIMF:
|
|
84
|
+
title: UIMF format
|
|
85
|
+
description: UIMF format
|
|
86
|
+
meaning: MS:1002531
|
|
87
|
+
|
|
88
|
+
MassSpectrometerVendor:
|
|
89
|
+
description: Major mass spectrometer manufacturers
|
|
90
|
+
permissible_values:
|
|
91
|
+
THERMO_FISHER_SCIENTIFIC:
|
|
92
|
+
title: Thermo Fisher Scientific instrument model
|
|
93
|
+
description: Thermo Fisher Scientific
|
|
94
|
+
meaning: MS:1000483
|
|
95
|
+
WATERS:
|
|
96
|
+
title: Waters instrument model
|
|
97
|
+
description: Waters Corporation
|
|
98
|
+
meaning: MS:1000126
|
|
99
|
+
BRUKER_DALTONICS:
|
|
100
|
+
title: Bruker Daltonics instrument model
|
|
101
|
+
description: Bruker Daltonics
|
|
102
|
+
meaning: MS:1000122
|
|
103
|
+
SCIEX:
|
|
104
|
+
title: SCIEX instrument model
|
|
105
|
+
description: SCIEX (formerly Applied Biosystems)
|
|
106
|
+
meaning: MS:1000121
|
|
107
|
+
AGILENT:
|
|
108
|
+
title: Agilent instrument model
|
|
109
|
+
description: Agilent Technologies
|
|
110
|
+
meaning: MS:1000490
|
|
111
|
+
SHIMADZU:
|
|
112
|
+
title: Shimadzu instrument model
|
|
113
|
+
description: Shimadzu Corporation
|
|
114
|
+
meaning: MS:1000124
|
|
115
|
+
LECO:
|
|
116
|
+
title: LECO instrument model
|
|
117
|
+
description: LECO Corporation
|
|
118
|
+
meaning: MS:1001800
|
|
119
|
+
|
|
120
|
+
ChromatographyType:
|
|
121
|
+
description: Types of chromatographic separation methods
|
|
122
|
+
permissible_values:
|
|
123
|
+
GAS_CHROMATOGRAPHY:
|
|
124
|
+
description: Gas chromatography
|
|
125
|
+
meaning: MSIO:0000147
|
|
126
|
+
HIGH_PERFORMANCE_LIQUID_CHROMATOGRAPHY:
|
|
127
|
+
description: High performance liquid chromatography
|
|
128
|
+
meaning: MSIO:0000148
|
|
129
|
+
LIQUID_CHROMATOGRAPHY_MASS_SPECTROMETRY:
|
|
130
|
+
description: Liquid chromatography-mass spectrometry
|
|
131
|
+
meaning: CHMO:0000524
|
|
132
|
+
GAS_CHROMATOGRAPHY_MASS_SPECTROMETRY:
|
|
133
|
+
description: Gas chromatography-mass spectrometry
|
|
134
|
+
meaning: CHMO:0000497
|
|
135
|
+
TANDEM_MASS_SPECTROMETRY:
|
|
136
|
+
description: Tandem mass spectrometry
|
|
137
|
+
meaning: CHMO:0000575
|
|
138
|
+
ISOTOPE_RATIO_MASS_SPECTROMETRY:
|
|
139
|
+
description: Isotope ratio mass spectrometry
|
|
140
|
+
meaning: CHMO:0000506
|
|
141
|
+
|
|
142
|
+
DerivatizationMethod:
|
|
143
|
+
description: Chemical derivatization methods for sample preparation
|
|
144
|
+
permissible_values:
|
|
145
|
+
SILYLATION:
|
|
146
|
+
description: Addition of silyl groups for improved volatility
|
|
147
|
+
meaning: MSIO:0000117
|
|
148
|
+
METHYLATION:
|
|
149
|
+
description: Addition of methyl groups
|
|
150
|
+
meaning: MSIO:0000115
|
|
151
|
+
ACETYLATION:
|
|
152
|
+
description: Addition of acetyl groups
|
|
153
|
+
meaning: MSIO:0000112
|
|
154
|
+
TRIFLUOROACETYLATION:
|
|
155
|
+
description: Addition of trifluoroacetyl groups
|
|
156
|
+
meaning: MSIO:0000113
|
|
157
|
+
ALKYLATION:
|
|
158
|
+
description: Addition of alkyl groups
|
|
159
|
+
meaning: MSIO:0000114
|
|
160
|
+
OXIMATION:
|
|
161
|
+
description: Addition of oxime groups
|
|
162
|
+
meaning: MSIO:0000116
|
|
163
|
+
|
|
164
|
+
MetabolomicsAssayType:
|
|
165
|
+
description: Types of metabolomics assays and profiling approaches
|
|
166
|
+
permissible_values:
|
|
167
|
+
TARGETED_METABOLITE_PROFILING:
|
|
168
|
+
title: targeted metabolite profiling
|
|
169
|
+
description: Assay targeting specific known metabolites
|
|
170
|
+
meaning: MSIO:0000100
|
|
171
|
+
UNTARGETED_METABOLITE_PROFILING:
|
|
172
|
+
title: untargeted metabolite profiling
|
|
173
|
+
description: Assay profiling all detectable metabolites
|
|
174
|
+
meaning: MSIO:0000101
|
|
175
|
+
METABOLITE_QUANTITATION_HPLC:
|
|
176
|
+
title: metabolite quantitation using high performance liquid chromatography
|
|
177
|
+
description: Metabolite quantitation using HPLC
|
|
178
|
+
meaning: MSIO:0000099
|
|
179
|
+
|
|
180
|
+
AnalyticalControlType:
|
|
181
|
+
description: Types of control samples used in analytical chemistry
|
|
182
|
+
permissible_values:
|
|
183
|
+
INTERNAL_STANDARD:
|
|
184
|
+
title: internal standard role
|
|
185
|
+
description: Known amount of standard added to analytical sample
|
|
186
|
+
meaning: MSIO:0000005
|
|
187
|
+
EXTERNAL_STANDARD:
|
|
188
|
+
title: external standard role
|
|
189
|
+
description: Reference standard used as external reference point
|
|
190
|
+
meaning: MSIO:0000004
|
|
191
|
+
POSITIVE_CONTROL:
|
|
192
|
+
title: positive control role
|
|
193
|
+
description: Control providing known positive signal
|
|
194
|
+
meaning: MSIO:0000008
|
|
195
|
+
NEGATIVE_CONTROL:
|
|
196
|
+
title: negative control role
|
|
197
|
+
description: Control providing baseline/no signal reference
|
|
198
|
+
meaning: MSIO:0000007
|
|
199
|
+
LONG_TERM_REFERENCE:
|
|
200
|
+
title: long term reference role
|
|
201
|
+
description: Stable reference for cross-batch comparisons
|
|
202
|
+
meaning: MSIO:0000006
|
|
203
|
+
BLANK:
|
|
204
|
+
description: Sample containing only solvent/matrix without analyte
|
|
205
|
+
QUALITY_CONTROL:
|
|
206
|
+
description: Sample with known composition for system performance monitoring
|
|
@@ -0,0 +1,364 @@
|
|
|
1
|
+
name: bio_entities
|
|
2
|
+
title: Biological Entity Value Sets
|
|
3
|
+
description: 'Dynamic enumerations for biological entities including anatomical structures,
|
|
4
|
+
|
|
5
|
+
cell types, diseases, and chemical entities. These enums are populated
|
|
6
|
+
|
|
7
|
+
dynamically from ontologies.'
|
|
8
|
+
id: https://w3id.org/linkml/valuesets/bio/bio_entities
|
|
9
|
+
imports:
|
|
10
|
+
- linkml:types
|
|
11
|
+
prefixes:
|
|
12
|
+
valuesets: https://w3id.org/valuesets/
|
|
13
|
+
UBERON: http://purl.obolibrary.org/obo/UBERON_
|
|
14
|
+
CL: http://purl.obolibrary.org/obo/CL_
|
|
15
|
+
MONDO: http://purl.obolibrary.org/obo/MONDO_
|
|
16
|
+
CHEBI: http://purl.obolibrary.org/obo/CHEBI_
|
|
17
|
+
HP: http://purl.obolibrary.org/obo/HP_
|
|
18
|
+
GO: http://purl.obolibrary.org/obo/GO_
|
|
19
|
+
DOID: http://purl.obolibrary.org/obo/DOID_
|
|
20
|
+
NCBITaxon: http://purl.obolibrary.org/obo/NCBITaxon_
|
|
21
|
+
ENVO: http://purl.obolibrary.org/obo/ENVO_
|
|
22
|
+
PO: http://purl.obolibrary.org/obo/PO_
|
|
23
|
+
PR: http://purl.obolibrary.org/obo/PR_
|
|
24
|
+
SO: http://purl.obolibrary.org/obo/SO_
|
|
25
|
+
PATO: http://purl.obolibrary.org/obo/PATO_
|
|
26
|
+
RO: http://purl.obolibrary.org/obo/RO_
|
|
27
|
+
default_prefix: valuesets
|
|
28
|
+
slots:
|
|
29
|
+
metazoan_anatomical_structure:
|
|
30
|
+
description: Any anatomical structure found in metazoan organisms, including organs, tissues, and body parts
|
|
31
|
+
range: MetazoanAnatomicalStructure
|
|
32
|
+
human_anatomical_structure:
|
|
33
|
+
description: Anatomical structures specific to humans (Homo sapiens)
|
|
34
|
+
range: HumanAnatomicalStructure
|
|
35
|
+
plant_anatomical_structure:
|
|
36
|
+
description: Any anatomical structure found in plant organisms
|
|
37
|
+
range: PlantAnatomicalStructure
|
|
38
|
+
cell:
|
|
39
|
+
description: Any cell type from the Cell Ontology (CL), including native and experimentally modified cells
|
|
40
|
+
range: CellType
|
|
41
|
+
neuron:
|
|
42
|
+
description: Neuron cell types from the Cell Ontology
|
|
43
|
+
range: NeuronType
|
|
44
|
+
immune_cell:
|
|
45
|
+
description: Immune system cell types (leukocytes and their subtypes)
|
|
46
|
+
range: ImmuneCell
|
|
47
|
+
stem_cell:
|
|
48
|
+
description: Stem cell types and progenitor cells
|
|
49
|
+
range: StemCell
|
|
50
|
+
disease:
|
|
51
|
+
description: Human diseases from the Mondo Disease Ontology
|
|
52
|
+
range: Disease
|
|
53
|
+
infectious_disease:
|
|
54
|
+
description: Infectious diseases caused by pathogenic organisms
|
|
55
|
+
range: InfectiousDisease
|
|
56
|
+
cancer:
|
|
57
|
+
description: Neoplastic and cancerous diseases
|
|
58
|
+
range: Cancer
|
|
59
|
+
genetic_disease:
|
|
60
|
+
description: Hereditary and genetic diseases
|
|
61
|
+
range: GeneticDisease
|
|
62
|
+
chemical_entity:
|
|
63
|
+
description: Any chemical entity from ChEBI ontology
|
|
64
|
+
range: ChemicalEntity
|
|
65
|
+
drug:
|
|
66
|
+
description: Pharmaceutical drugs and medications
|
|
67
|
+
range: Drug
|
|
68
|
+
metabolite:
|
|
69
|
+
description: Metabolites and metabolic intermediates
|
|
70
|
+
range: Metabolite
|
|
71
|
+
protein:
|
|
72
|
+
description: Proteins and protein complexes
|
|
73
|
+
range: Protein
|
|
74
|
+
phenotype:
|
|
75
|
+
description: Phenotypic abnormalities from Human Phenotype Ontology
|
|
76
|
+
range: Phenotype
|
|
77
|
+
clinical_finding:
|
|
78
|
+
description: Clinical findings and observations
|
|
79
|
+
range: ClinicalFinding
|
|
80
|
+
biological_process:
|
|
81
|
+
description: Biological processes from Gene Ontology
|
|
82
|
+
range: BiologicalProcess
|
|
83
|
+
metabolic_process:
|
|
84
|
+
description: Metabolic processes and pathways
|
|
85
|
+
range: MetabolicProcess
|
|
86
|
+
molecular_function:
|
|
87
|
+
description: Molecular functions from Gene Ontology
|
|
88
|
+
range: MolecularFunction
|
|
89
|
+
cellular_component:
|
|
90
|
+
description: Cellular components and locations from Gene Ontology
|
|
91
|
+
range: CellularComponent
|
|
92
|
+
sequence_feature:
|
|
93
|
+
description: Sequence features from the Sequence Ontology
|
|
94
|
+
range: SequenceFeature
|
|
95
|
+
multivalued: true
|
|
96
|
+
gene_feature:
|
|
97
|
+
description: Gene-related sequence features
|
|
98
|
+
range: GeneFeature
|
|
99
|
+
multivalued: true
|
|
100
|
+
environment:
|
|
101
|
+
description: Environmental systems and biomes
|
|
102
|
+
range: Environment
|
|
103
|
+
environmental_material:
|
|
104
|
+
description: Environmental materials and substances
|
|
105
|
+
range: EnvironmentalMaterial
|
|
106
|
+
quality:
|
|
107
|
+
description: Phenotypic qualities and attributes from PATO
|
|
108
|
+
range: Quality
|
|
109
|
+
physical_quality:
|
|
110
|
+
description: Physical qualities like size, shape, color
|
|
111
|
+
range: PhysicalQuality
|
|
112
|
+
enums:
|
|
113
|
+
MetazoanAnatomicalStructure:
|
|
114
|
+
description: 'Any anatomical structure found in metazoan organisms,
|
|
115
|
+
|
|
116
|
+
including organs, tissues, and body parts'
|
|
117
|
+
reachable_from:
|
|
118
|
+
source_ontology: obo:uberon
|
|
119
|
+
source_nodes:
|
|
120
|
+
- UBERON:0000061
|
|
121
|
+
include_self: true
|
|
122
|
+
relationship_types:
|
|
123
|
+
- rdfs:subClassOf
|
|
124
|
+
HumanAnatomicalStructure:
|
|
125
|
+
description: Anatomical structures specific to humans (Homo sapiens)
|
|
126
|
+
reachable_from:
|
|
127
|
+
source_ontology: obo:uberon
|
|
128
|
+
source_nodes:
|
|
129
|
+
- UBERON:0000061
|
|
130
|
+
include_self: false
|
|
131
|
+
relationship_types:
|
|
132
|
+
- rdfs:subClassOf
|
|
133
|
+
PlantAnatomicalStructure:
|
|
134
|
+
description: Any anatomical structure found in plant organisms
|
|
135
|
+
reachable_from:
|
|
136
|
+
source_ontology: obo:po
|
|
137
|
+
source_nodes:
|
|
138
|
+
- PO:0025131
|
|
139
|
+
include_self: true
|
|
140
|
+
relationship_types:
|
|
141
|
+
- rdfs:subClassOf
|
|
142
|
+
CellType:
|
|
143
|
+
description: 'Any cell type from the Cell Ontology (CL),
|
|
144
|
+
|
|
145
|
+
including native and experimentally modified cells'
|
|
146
|
+
reachable_from:
|
|
147
|
+
source_ontology: obo:cl
|
|
148
|
+
source_nodes:
|
|
149
|
+
- CL:0000000
|
|
150
|
+
include_self: true
|
|
151
|
+
relationship_types:
|
|
152
|
+
- rdfs:subClassOf
|
|
153
|
+
NeuronType:
|
|
154
|
+
description: Neuron cell types from the Cell Ontology
|
|
155
|
+
reachable_from:
|
|
156
|
+
source_ontology: obo:cl
|
|
157
|
+
source_nodes:
|
|
158
|
+
- CL:0000540
|
|
159
|
+
include_self: true
|
|
160
|
+
relationship_types:
|
|
161
|
+
- rdfs:subClassOf
|
|
162
|
+
ImmuneCell:
|
|
163
|
+
description: Immune system cell types (leukocytes and their subtypes)
|
|
164
|
+
reachable_from:
|
|
165
|
+
source_ontology: obo:cl
|
|
166
|
+
source_nodes:
|
|
167
|
+
- CL:0000988
|
|
168
|
+
include_self: true
|
|
169
|
+
relationship_types:
|
|
170
|
+
- rdfs:subClassOf
|
|
171
|
+
StemCell:
|
|
172
|
+
description: Stem cell types and progenitor cells
|
|
173
|
+
reachable_from:
|
|
174
|
+
source_ontology: obo:cl
|
|
175
|
+
source_nodes:
|
|
176
|
+
- CL:0000034
|
|
177
|
+
- CL:0000055
|
|
178
|
+
include_self: true
|
|
179
|
+
relationship_types:
|
|
180
|
+
- rdfs:subClassOf
|
|
181
|
+
Disease:
|
|
182
|
+
description: Human diseases from the Mondo Disease Ontology
|
|
183
|
+
reachable_from:
|
|
184
|
+
source_ontology: obo:mondo
|
|
185
|
+
source_nodes:
|
|
186
|
+
- MONDO:0000001
|
|
187
|
+
include_self: true
|
|
188
|
+
relationship_types:
|
|
189
|
+
- rdfs:subClassOf
|
|
190
|
+
InfectiousDisease:
|
|
191
|
+
description: Infectious diseases caused by pathogenic organisms
|
|
192
|
+
reachable_from:
|
|
193
|
+
source_ontology: obo:mondo
|
|
194
|
+
source_nodes:
|
|
195
|
+
- MONDO:0005550
|
|
196
|
+
include_self: true
|
|
197
|
+
relationship_types:
|
|
198
|
+
- rdfs:subClassOf
|
|
199
|
+
Cancer:
|
|
200
|
+
description: Neoplastic and cancerous diseases
|
|
201
|
+
reachable_from:
|
|
202
|
+
source_ontology: obo:mondo
|
|
203
|
+
source_nodes:
|
|
204
|
+
- MONDO:0004992
|
|
205
|
+
- MONDO:0005070
|
|
206
|
+
include_self: true
|
|
207
|
+
relationship_types:
|
|
208
|
+
- rdfs:subClassOf
|
|
209
|
+
GeneticDisease:
|
|
210
|
+
description: Hereditary and genetic diseases
|
|
211
|
+
reachable_from:
|
|
212
|
+
source_ontology: obo:mondo
|
|
213
|
+
source_nodes:
|
|
214
|
+
- MONDO:0003847
|
|
215
|
+
- MONDO:0021198
|
|
216
|
+
include_self: true
|
|
217
|
+
relationship_types:
|
|
218
|
+
- rdfs:subClassOf
|
|
219
|
+
ChemicalEntity:
|
|
220
|
+
description: Any chemical entity from ChEBI ontology
|
|
221
|
+
reachable_from:
|
|
222
|
+
source_ontology: obo:chebi
|
|
223
|
+
source_nodes:
|
|
224
|
+
- CHEBI:24431
|
|
225
|
+
include_self: true
|
|
226
|
+
relationship_types:
|
|
227
|
+
- rdfs:subClassOf
|
|
228
|
+
Drug:
|
|
229
|
+
description: Pharmaceutical drugs and medications
|
|
230
|
+
reachable_from:
|
|
231
|
+
source_ontology: obo:chebi
|
|
232
|
+
source_nodes:
|
|
233
|
+
- CHEBI:23888
|
|
234
|
+
include_self: true
|
|
235
|
+
relationship_types:
|
|
236
|
+
- rdfs:subClassOf
|
|
237
|
+
- RO:0000087
|
|
238
|
+
Metabolite:
|
|
239
|
+
description: Metabolites and metabolic intermediates
|
|
240
|
+
reachable_from:
|
|
241
|
+
source_ontology: obo:chebi
|
|
242
|
+
source_nodes:
|
|
243
|
+
- CHEBI:25212
|
|
244
|
+
include_self: true
|
|
245
|
+
relationship_types:
|
|
246
|
+
- rdfs:subClassOf
|
|
247
|
+
Protein:
|
|
248
|
+
description: Proteins and protein complexes
|
|
249
|
+
reachable_from:
|
|
250
|
+
source_ontology: obo:pr
|
|
251
|
+
source_nodes:
|
|
252
|
+
- PR:000000001
|
|
253
|
+
include_self: true
|
|
254
|
+
relationship_types:
|
|
255
|
+
- rdfs:subClassOf
|
|
256
|
+
Phenotype:
|
|
257
|
+
description: Phenotypic abnormalities from Human Phenotype Ontology
|
|
258
|
+
reachable_from:
|
|
259
|
+
source_ontology: obo:hp
|
|
260
|
+
source_nodes:
|
|
261
|
+
- HP:0000118
|
|
262
|
+
include_self: true
|
|
263
|
+
relationship_types:
|
|
264
|
+
- rdfs:subClassOf
|
|
265
|
+
ClinicalFinding:
|
|
266
|
+
description: Clinical findings and observations
|
|
267
|
+
reachable_from:
|
|
268
|
+
source_ontology: obo:hp
|
|
269
|
+
source_nodes:
|
|
270
|
+
- HP:0000118
|
|
271
|
+
include_self: false
|
|
272
|
+
relationship_types:
|
|
273
|
+
- rdfs:subClassOf
|
|
274
|
+
BiologicalProcess:
|
|
275
|
+
description: Biological processes from Gene Ontology
|
|
276
|
+
reachable_from:
|
|
277
|
+
source_ontology: obo:go
|
|
278
|
+
source_nodes:
|
|
279
|
+
- GO:0008150
|
|
280
|
+
include_self: true
|
|
281
|
+
relationship_types:
|
|
282
|
+
- rdfs:subClassOf
|
|
283
|
+
MetabolicProcess:
|
|
284
|
+
description: Metabolic processes and pathways
|
|
285
|
+
reachable_from:
|
|
286
|
+
source_ontology: obo:go
|
|
287
|
+
source_nodes:
|
|
288
|
+
- GO:0008152
|
|
289
|
+
include_self: true
|
|
290
|
+
relationship_types:
|
|
291
|
+
- rdfs:subClassOf
|
|
292
|
+
MolecularFunction:
|
|
293
|
+
description: Molecular functions from Gene Ontology
|
|
294
|
+
reachable_from:
|
|
295
|
+
source_ontology: obo:go
|
|
296
|
+
source_nodes:
|
|
297
|
+
- GO:0003674
|
|
298
|
+
include_self: true
|
|
299
|
+
relationship_types:
|
|
300
|
+
- rdfs:subClassOf
|
|
301
|
+
CellularComponent:
|
|
302
|
+
description: Cellular components and locations from Gene Ontology
|
|
303
|
+
reachable_from:
|
|
304
|
+
source_ontology: obo:go
|
|
305
|
+
source_nodes:
|
|
306
|
+
- GO:0005575
|
|
307
|
+
include_self: true
|
|
308
|
+
relationship_types:
|
|
309
|
+
- rdfs:subClassOf
|
|
310
|
+
SequenceFeature:
|
|
311
|
+
description: Sequence features from the Sequence Ontology
|
|
312
|
+
reachable_from:
|
|
313
|
+
source_ontology: obo:so
|
|
314
|
+
source_nodes:
|
|
315
|
+
- SO:0000110
|
|
316
|
+
include_self: true
|
|
317
|
+
relationship_types:
|
|
318
|
+
- rdfs:subClassOf
|
|
319
|
+
GeneFeature:
|
|
320
|
+
description: Gene-related sequence features
|
|
321
|
+
reachable_from:
|
|
322
|
+
source_ontology: obo:so
|
|
323
|
+
source_nodes:
|
|
324
|
+
- SO:0000704
|
|
325
|
+
include_self: true
|
|
326
|
+
relationship_types:
|
|
327
|
+
- rdfs:subClassOf
|
|
328
|
+
Environment:
|
|
329
|
+
description: Environmental systems and biomes
|
|
330
|
+
reachable_from:
|
|
331
|
+
source_ontology: obo:envo
|
|
332
|
+
source_nodes:
|
|
333
|
+
- ENVO:00000428
|
|
334
|
+
- ENVO:01000254
|
|
335
|
+
include_self: true
|
|
336
|
+
relationship_types:
|
|
337
|
+
- rdfs:subClassOf
|
|
338
|
+
EnvironmentalMaterial:
|
|
339
|
+
description: Environmental materials and substances
|
|
340
|
+
reachable_from:
|
|
341
|
+
source_ontology: obo:envo
|
|
342
|
+
source_nodes:
|
|
343
|
+
- ENVO:00010483
|
|
344
|
+
include_self: true
|
|
345
|
+
relationship_types:
|
|
346
|
+
- rdfs:subClassOf
|
|
347
|
+
Quality:
|
|
348
|
+
description: Phenotypic qualities and attributes from PATO
|
|
349
|
+
reachable_from:
|
|
350
|
+
source_ontology: obo:pato
|
|
351
|
+
source_nodes:
|
|
352
|
+
- PATO:0000001
|
|
353
|
+
include_self: true
|
|
354
|
+
relationship_types:
|
|
355
|
+
- rdfs:subClassOf
|
|
356
|
+
PhysicalQuality:
|
|
357
|
+
description: Physical qualities like size, shape, color
|
|
358
|
+
reachable_from:
|
|
359
|
+
source_ontology: obo:pato
|
|
360
|
+
source_nodes:
|
|
361
|
+
- PATO:0001241
|
|
362
|
+
include_self: true
|
|
363
|
+
relationship_types:
|
|
364
|
+
- rdfs:subClassOf
|