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,400 @@
|
|
|
1
|
+
name: psi_mi
|
|
2
|
+
title: PSI-MI (Molecular Interactions) Value Sets
|
|
3
|
+
description: Common value sets from the PSI-MI (Molecular Interactions) controlled vocabulary used for annotating protein-protein
|
|
4
|
+
interaction experiments.
|
|
5
|
+
id: https://w3id.org/common-value-sets/bio/psi_mi
|
|
6
|
+
imports:
|
|
7
|
+
- linkml:types
|
|
8
|
+
prefixes:
|
|
9
|
+
MI: http://purl.obolibrary.org/obo/MI_
|
|
10
|
+
linkml: https://w3id.org/linkml/
|
|
11
|
+
OBI: http://purl.obolibrary.org/obo/OBI_
|
|
12
|
+
valuesets: https://w3id.org/valuesets/
|
|
13
|
+
default_prefix: valuesets
|
|
14
|
+
slots:
|
|
15
|
+
interaction_detection_method:
|
|
16
|
+
description: Methods used to detect molecular interactions
|
|
17
|
+
range: InteractionDetectionMethod
|
|
18
|
+
interaction:
|
|
19
|
+
description: Types of molecular interactions
|
|
20
|
+
range: InteractionType
|
|
21
|
+
experimental_role:
|
|
22
|
+
description: Role played by a participant in the experiment
|
|
23
|
+
range: ExperimentalRole
|
|
24
|
+
biological_role:
|
|
25
|
+
description: Physiological role of an interactor
|
|
26
|
+
range: BiologicalRole
|
|
27
|
+
participant_identification_method:
|
|
28
|
+
description: Methods to identify interaction participants
|
|
29
|
+
range: ParticipantIdentificationMethod
|
|
30
|
+
feature:
|
|
31
|
+
description: Molecular features affecting interactions
|
|
32
|
+
range: FeatureType
|
|
33
|
+
multivalued: true
|
|
34
|
+
interactor:
|
|
35
|
+
description: Types of molecular species in interactions
|
|
36
|
+
range: InteractorType
|
|
37
|
+
confidence_score:
|
|
38
|
+
description: Types of confidence scoring methods
|
|
39
|
+
range: ConfidenceScore
|
|
40
|
+
experimental_preparation:
|
|
41
|
+
description: Sample preparation methods
|
|
42
|
+
range: ExperimentalPreparation
|
|
43
|
+
enums:
|
|
44
|
+
InteractionDetectionMethod:
|
|
45
|
+
title: Interaction Detection Method
|
|
46
|
+
description: Methods used to detect molecular interactions
|
|
47
|
+
source: http://purl.obolibrary.org/obo/mi.owl
|
|
48
|
+
conforms_to: HUPO-PSI
|
|
49
|
+
annotations:
|
|
50
|
+
standard: PSI-MI 2.5
|
|
51
|
+
maintainer: HUPO Proteomics Standards Initiative
|
|
52
|
+
permissible_values:
|
|
53
|
+
TWO_HYBRID:
|
|
54
|
+
description: Classical two-hybrid system using transcriptional activity
|
|
55
|
+
meaning: MI:0018
|
|
56
|
+
COIMMUNOPRECIPITATION:
|
|
57
|
+
description: Using antibody to capture bait and its ligands
|
|
58
|
+
meaning: MI:0019
|
|
59
|
+
PULL_DOWN:
|
|
60
|
+
description: Affinity capture using immobilized bait
|
|
61
|
+
meaning: MI:0096
|
|
62
|
+
TANDEM_AFFINITY_PURIFICATION:
|
|
63
|
+
description: TAP tagging for protein complex purification
|
|
64
|
+
meaning: MI:0676
|
|
65
|
+
FLUORESCENCE_RESONANCE_ENERGY_TRANSFER:
|
|
66
|
+
description: FRET for detecting proximity between molecules
|
|
67
|
+
meaning: MI:0055
|
|
68
|
+
aliases:
|
|
69
|
+
- fluorescent resonance energy transfer
|
|
70
|
+
SURFACE_PLASMON_RESONANCE:
|
|
71
|
+
description: SPR for real-time binding analysis
|
|
72
|
+
meaning: MI:0107
|
|
73
|
+
CROSS_LINKING:
|
|
74
|
+
description: Chemical cross-linking of interacting proteins
|
|
75
|
+
meaning: MI:0030
|
|
76
|
+
aliases:
|
|
77
|
+
- cross-linking study
|
|
78
|
+
X_RAY_CRYSTALLOGRAPHY:
|
|
79
|
+
description: Crystal structure determination
|
|
80
|
+
meaning: MI:0114
|
|
81
|
+
NMR:
|
|
82
|
+
description: Nuclear magnetic resonance spectroscopy
|
|
83
|
+
meaning: MI:0077
|
|
84
|
+
aliases:
|
|
85
|
+
- nuclear magnetic resonance
|
|
86
|
+
ELECTRON_MICROSCOPY:
|
|
87
|
+
description: EM for structural determination
|
|
88
|
+
meaning: MI:0040
|
|
89
|
+
MASS_SPECTROMETRY:
|
|
90
|
+
description: MS-based interaction detection
|
|
91
|
+
meaning: MI:0943
|
|
92
|
+
aliases:
|
|
93
|
+
- detection by mass spectrometry
|
|
94
|
+
PROXIMITY_LIGATION_ASSAY:
|
|
95
|
+
description: PLA for detecting protein proximity
|
|
96
|
+
meaning: MI:0813
|
|
97
|
+
BIMOLECULAR_FLUORESCENCE_COMPLEMENTATION:
|
|
98
|
+
description: BiFC split fluorescent protein assay
|
|
99
|
+
meaning: MI:0809
|
|
100
|
+
YEAST_TWO_HYBRID:
|
|
101
|
+
description: Y2H screening in yeast
|
|
102
|
+
meaning: MI:0018
|
|
103
|
+
aliases:
|
|
104
|
+
- two hybrid
|
|
105
|
+
MAMMALIAN_TWO_HYBRID:
|
|
106
|
+
description: Two-hybrid in mammalian cells
|
|
107
|
+
meaning: MI:2413
|
|
108
|
+
aliases:
|
|
109
|
+
- mammalian membrane two hybrid
|
|
110
|
+
InteractionType:
|
|
111
|
+
title: Interaction Type
|
|
112
|
+
description: Types of molecular interactions
|
|
113
|
+
source: http://purl.obolibrary.org/obo/mi.owl
|
|
114
|
+
conforms_to: HUPO-PSI
|
|
115
|
+
permissible_values:
|
|
116
|
+
PHYSICAL_ASSOCIATION:
|
|
117
|
+
description: Molecules within the same physical complex
|
|
118
|
+
meaning: MI:0915
|
|
119
|
+
DIRECT_INTERACTION:
|
|
120
|
+
description: Direct physical contact between molecules
|
|
121
|
+
meaning: MI:0407
|
|
122
|
+
ASSOCIATION:
|
|
123
|
+
description: May form one or more physical complexes
|
|
124
|
+
meaning: MI:0914
|
|
125
|
+
COLOCALIZATION:
|
|
126
|
+
description: Coincident occurrence in subcellular location
|
|
127
|
+
meaning: MI:0403
|
|
128
|
+
FUNCTIONAL_ASSOCIATION:
|
|
129
|
+
description: Functional modulation without direct contact
|
|
130
|
+
meaning: MI:2286
|
|
131
|
+
ENZYMATIC_REACTION:
|
|
132
|
+
description: Enzyme-substrate relationship
|
|
133
|
+
meaning: MI:0414
|
|
134
|
+
PHOSPHORYLATION_REACTION:
|
|
135
|
+
description: Kinase-substrate phosphorylation
|
|
136
|
+
meaning: MI:0217
|
|
137
|
+
UBIQUITINATION_REACTION:
|
|
138
|
+
description: Ubiquitin ligase-substrate relationship
|
|
139
|
+
meaning: MI:0220
|
|
140
|
+
ACETYLATION_REACTION:
|
|
141
|
+
description: Acetyltransferase-substrate relationship
|
|
142
|
+
meaning: MI:0192
|
|
143
|
+
METHYLATION_REACTION:
|
|
144
|
+
description: Methyltransferase-substrate relationship
|
|
145
|
+
meaning: MI:0213
|
|
146
|
+
CLEAVAGE_REACTION:
|
|
147
|
+
description: Protease-substrate relationship
|
|
148
|
+
meaning: MI:0194
|
|
149
|
+
GENETIC_INTERACTION:
|
|
150
|
+
description: Genetic epistatic relationship
|
|
151
|
+
meaning: MI:0208
|
|
152
|
+
aliases:
|
|
153
|
+
- genetic interaction (sensu unexpected)
|
|
154
|
+
SELF_INTERACTION:
|
|
155
|
+
description: Intra-molecular interaction
|
|
156
|
+
meaning: MI:1126
|
|
157
|
+
ExperimentalRole:
|
|
158
|
+
title: Experimental Role
|
|
159
|
+
description: Role played by a participant in the experiment
|
|
160
|
+
source: http://purl.obolibrary.org/obo/mi.owl
|
|
161
|
+
conforms_to: HUPO-PSI
|
|
162
|
+
permissible_values:
|
|
163
|
+
BAIT:
|
|
164
|
+
description: Molecule used to capture interacting partners
|
|
165
|
+
meaning: MI:0496
|
|
166
|
+
PREY:
|
|
167
|
+
description: Molecule captured by the bait
|
|
168
|
+
meaning: MI:0498
|
|
169
|
+
NEUTRAL_COMPONENT:
|
|
170
|
+
description: Participant with no specific role
|
|
171
|
+
meaning: MI:0497
|
|
172
|
+
ENZYME:
|
|
173
|
+
description: Catalytically active participant
|
|
174
|
+
meaning: MI:0501
|
|
175
|
+
ENZYME_TARGET:
|
|
176
|
+
description: Target of enzymatic activity
|
|
177
|
+
meaning: MI:0502
|
|
178
|
+
SELF:
|
|
179
|
+
description: Self-interaction participant
|
|
180
|
+
meaning: MI:0503
|
|
181
|
+
PUTATIVE_SELF:
|
|
182
|
+
description: Potentially self-interacting
|
|
183
|
+
meaning: MI:0898
|
|
184
|
+
ANCILLARY:
|
|
185
|
+
description: Supporting but not directly interacting
|
|
186
|
+
meaning: MI:0684
|
|
187
|
+
COFACTOR:
|
|
188
|
+
description: Required cofactor for interaction
|
|
189
|
+
meaning: MI:0682
|
|
190
|
+
INHIBITOR:
|
|
191
|
+
description: Inhibitor of the interaction
|
|
192
|
+
meaning: MI:0586
|
|
193
|
+
STIMULATOR:
|
|
194
|
+
description: Enhancer of the interaction
|
|
195
|
+
meaning: MI:0840
|
|
196
|
+
COMPETITOR:
|
|
197
|
+
description: Competitive inhibitor
|
|
198
|
+
meaning: MI:0941
|
|
199
|
+
BiologicalRole:
|
|
200
|
+
title: Biological Role
|
|
201
|
+
description: Physiological role of an interactor
|
|
202
|
+
source: http://purl.obolibrary.org/obo/mi.owl
|
|
203
|
+
conforms_to: HUPO-PSI
|
|
204
|
+
permissible_values:
|
|
205
|
+
ENZYME:
|
|
206
|
+
description: Catalytically active molecule
|
|
207
|
+
meaning: MI:0501
|
|
208
|
+
ENZYME_TARGET:
|
|
209
|
+
description: Substrate of enzymatic activity
|
|
210
|
+
meaning: MI:0502
|
|
211
|
+
ELECTRON_DONOR:
|
|
212
|
+
description: Donates electrons in reaction
|
|
213
|
+
meaning: MI:0579
|
|
214
|
+
ELECTRON_ACCEPTOR:
|
|
215
|
+
description: Accepts electrons in reaction
|
|
216
|
+
meaning: MI:0580
|
|
217
|
+
INHIBITOR:
|
|
218
|
+
description: Inhibits activity or interaction
|
|
219
|
+
meaning: MI:0586
|
|
220
|
+
COFACTOR:
|
|
221
|
+
description: Required for activity
|
|
222
|
+
meaning: MI:0682
|
|
223
|
+
LIGAND:
|
|
224
|
+
description: Small molecule binding partner
|
|
225
|
+
AGONIST:
|
|
226
|
+
description: Activates receptor
|
|
227
|
+
meaning: MI:0625
|
|
228
|
+
ANTAGONIST:
|
|
229
|
+
description: Blocks receptor activation
|
|
230
|
+
meaning: MI:0626
|
|
231
|
+
PHOSPHATE_DONOR:
|
|
232
|
+
description: Provides phosphate group
|
|
233
|
+
meaning: MI:0842
|
|
234
|
+
PHOSPHATE_ACCEPTOR:
|
|
235
|
+
description: Receives phosphate group
|
|
236
|
+
meaning: MI:0843
|
|
237
|
+
ParticipantIdentificationMethod:
|
|
238
|
+
title: Participant Identification Method
|
|
239
|
+
description: Methods to identify interaction participants
|
|
240
|
+
permissible_values:
|
|
241
|
+
MASS_SPECTROMETRY:
|
|
242
|
+
description: MS-based protein identification
|
|
243
|
+
meaning: MI:0943
|
|
244
|
+
aliases:
|
|
245
|
+
- detection by mass spectrometry
|
|
246
|
+
WESTERN_BLOT:
|
|
247
|
+
description: Antibody-based detection
|
|
248
|
+
meaning: MI:0113
|
|
249
|
+
SEQUENCE_TAG_IDENTIFICATION:
|
|
250
|
+
description: Using affinity tags
|
|
251
|
+
meaning: MI:0102
|
|
252
|
+
ANTIBODY_DETECTION:
|
|
253
|
+
description: Direct antibody recognition
|
|
254
|
+
meaning: MI:0678
|
|
255
|
+
aliases:
|
|
256
|
+
- antibody array
|
|
257
|
+
PREDETERMINED:
|
|
258
|
+
description: Known from experimental design
|
|
259
|
+
meaning: MI:0396
|
|
260
|
+
aliases:
|
|
261
|
+
- predetermined participant
|
|
262
|
+
NUCLEIC_ACID_SEQUENCING:
|
|
263
|
+
description: DNA/RNA sequencing
|
|
264
|
+
meaning: MI:0078
|
|
265
|
+
aliases:
|
|
266
|
+
- nucleotide sequence identification
|
|
267
|
+
PROTEIN_SEQUENCING:
|
|
268
|
+
description: Direct protein sequencing
|
|
269
|
+
FeatureType:
|
|
270
|
+
title: Feature Type
|
|
271
|
+
description: Molecular features affecting interactions
|
|
272
|
+
permissible_values:
|
|
273
|
+
BINDING_SITE:
|
|
274
|
+
description: Region involved in binding
|
|
275
|
+
meaning: MI:0117
|
|
276
|
+
aliases:
|
|
277
|
+
- binding-associated region
|
|
278
|
+
MUTATION:
|
|
279
|
+
description: Sequence alteration
|
|
280
|
+
meaning: MI:0118
|
|
281
|
+
POST_TRANSLATIONAL_MODIFICATION:
|
|
282
|
+
description: PTM site
|
|
283
|
+
meaning: MI:0121
|
|
284
|
+
aliases:
|
|
285
|
+
- acetylated residue
|
|
286
|
+
TAG:
|
|
287
|
+
description: Affinity or epitope tag
|
|
288
|
+
meaning: MI:0507
|
|
289
|
+
CROSS_LINK:
|
|
290
|
+
description: Cross-linking site
|
|
291
|
+
LIPIDATION_SITE:
|
|
292
|
+
description: Lipid modification site
|
|
293
|
+
PHOSPHORYLATION_SITE:
|
|
294
|
+
description: Phosphorylated residue
|
|
295
|
+
meaning: MI:0170
|
|
296
|
+
aliases:
|
|
297
|
+
- phosphorylated residue
|
|
298
|
+
UBIQUITINATION_SITE:
|
|
299
|
+
description: Ubiquitinated residue
|
|
300
|
+
METHYLATION_SITE:
|
|
301
|
+
description: Methylated residue
|
|
302
|
+
ACETYLATION_SITE:
|
|
303
|
+
description: Acetylated residue
|
|
304
|
+
SUMOYLATION_SITE:
|
|
305
|
+
description: SUMOylated residue
|
|
306
|
+
NECESSARY_BINDING_REGION:
|
|
307
|
+
description: Required for binding
|
|
308
|
+
meaning: MI:0429
|
|
309
|
+
SUFFICIENT_BINDING_REGION:
|
|
310
|
+
description: Sufficient for binding
|
|
311
|
+
meaning: MI:0442
|
|
312
|
+
InteractorType:
|
|
313
|
+
title: Interactor Type
|
|
314
|
+
description: Types of molecular species in interactions
|
|
315
|
+
permissible_values:
|
|
316
|
+
PROTEIN:
|
|
317
|
+
description: Polypeptide molecule
|
|
318
|
+
meaning: MI:0326
|
|
319
|
+
PEPTIDE:
|
|
320
|
+
description: Short polypeptide
|
|
321
|
+
meaning: MI:0327
|
|
322
|
+
SMALL_MOLECULE:
|
|
323
|
+
description: Small chemical compound
|
|
324
|
+
meaning: MI:0328
|
|
325
|
+
DNA:
|
|
326
|
+
description: Deoxyribonucleic acid
|
|
327
|
+
meaning: MI:0319
|
|
328
|
+
aliases:
|
|
329
|
+
- deoxyribonucleic acid
|
|
330
|
+
RNA:
|
|
331
|
+
description: Ribonucleic acid
|
|
332
|
+
meaning: MI:0320
|
|
333
|
+
aliases:
|
|
334
|
+
- ribonucleic acid
|
|
335
|
+
PROTEIN_COMPLEX:
|
|
336
|
+
description: Multi-protein assembly
|
|
337
|
+
meaning: MI:0314
|
|
338
|
+
aliases:
|
|
339
|
+
- complex
|
|
340
|
+
GENE:
|
|
341
|
+
description: Gene locus
|
|
342
|
+
meaning: MI:0250
|
|
343
|
+
BIOPOLYMER:
|
|
344
|
+
description: Biological polymer
|
|
345
|
+
meaning: MI:0383
|
|
346
|
+
POLYSACCHARIDE:
|
|
347
|
+
description: Carbohydrate polymer
|
|
348
|
+
meaning: MI:0904
|
|
349
|
+
LIPID:
|
|
350
|
+
description: Lipid molecule
|
|
351
|
+
NUCLEIC_ACID:
|
|
352
|
+
description: DNA or RNA
|
|
353
|
+
meaning: MI:0318
|
|
354
|
+
SYNTHETIC_POLYMER:
|
|
355
|
+
description: Artificial polymer
|
|
356
|
+
METAL_ION:
|
|
357
|
+
description: Metal ion cofactor
|
|
358
|
+
ConfidenceScore:
|
|
359
|
+
title: Confidence Score Types
|
|
360
|
+
description: Types of confidence scoring methods
|
|
361
|
+
permissible_values:
|
|
362
|
+
INTACT_MISCORE:
|
|
363
|
+
description: IntAct molecular interaction score
|
|
364
|
+
AUTHOR_CONFIDENCE:
|
|
365
|
+
description: Author-provided confidence
|
|
366
|
+
meaning: MI:0621
|
|
367
|
+
INTACT_CONFIDENCE:
|
|
368
|
+
description: IntAct curation confidence
|
|
369
|
+
MINT_SCORE:
|
|
370
|
+
description: MINT database score
|
|
371
|
+
MATRIXDB_SCORE:
|
|
372
|
+
description: MatrixDB confidence score
|
|
373
|
+
ExperimentalPreparation:
|
|
374
|
+
title: Experimental Preparation
|
|
375
|
+
description: Sample preparation methods
|
|
376
|
+
permissible_values:
|
|
377
|
+
RECOMBINANT_EXPRESSION:
|
|
378
|
+
description: Expressed in heterologous system
|
|
379
|
+
NATIVE_SOURCE:
|
|
380
|
+
description: From original organism
|
|
381
|
+
IN_VITRO_EXPRESSION:
|
|
382
|
+
description: Cell-free expression
|
|
383
|
+
OVEREXPRESSION:
|
|
384
|
+
description: Above physiological levels
|
|
385
|
+
meaning: MI:0506
|
|
386
|
+
aliases:
|
|
387
|
+
- over expressed level
|
|
388
|
+
KNOCKDOWN:
|
|
389
|
+
description: Reduced expression
|
|
390
|
+
KNOCKOUT:
|
|
391
|
+
description: Gene deletion
|
|
392
|
+
meaning: MI:0788
|
|
393
|
+
aliases:
|
|
394
|
+
- knock out
|
|
395
|
+
ENDOGENOUS_LEVEL:
|
|
396
|
+
description: Physiological expression
|
|
397
|
+
license: MIT
|
|
398
|
+
see_also:
|
|
399
|
+
- https://www.ebi.ac.uk/ols/ontologies/mi
|
|
400
|
+
default_range: string
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
name: relationship_to_oxygen
|
|
2
|
+
id: https://w3id.org/linkml/valuesets/bio/relationship_to_oxygen
|
|
3
|
+
prefixes:
|
|
4
|
+
ECOCORE: http://purl.obolibrary.org/obo/ECOCORE_
|
|
5
|
+
OMP: http://purl.obolibrary.org/obo/OMP_
|
|
6
|
+
MICRO: http://purl.obolibrary.org/obo/MICRO_
|
|
7
|
+
mixs: https://genomicsstandardsconsortium.github.io/mixs/
|
|
8
|
+
valuesets: https://w3id.org/valuesets/
|
|
9
|
+
default_prefix: valuesets
|
|
10
|
+
slots:
|
|
11
|
+
rel_to_oxygen:
|
|
12
|
+
description: Organism's relationship to oxygen for growth and survival
|
|
13
|
+
range: RelToOxygenEnum
|
|
14
|
+
enums:
|
|
15
|
+
RelToOxygenEnum:
|
|
16
|
+
description: Organism's relationship to oxygen for growth and survival
|
|
17
|
+
permissible_values:
|
|
18
|
+
AEROBE:
|
|
19
|
+
description: Organism that can survive and grow in an oxygenated environment
|
|
20
|
+
meaning: ECOCORE:00000173
|
|
21
|
+
title: aerobe
|
|
22
|
+
ANAEROBE:
|
|
23
|
+
description: Organism that does not require oxygen for growth
|
|
24
|
+
meaning: ECOCORE:00000172
|
|
25
|
+
title: anaerobe
|
|
26
|
+
FACULTATIVE:
|
|
27
|
+
description: Organism that can grow with or without oxygen
|
|
28
|
+
meaning: ECOCORE:00000177
|
|
29
|
+
title: facultative anaerobe
|
|
30
|
+
annotations:
|
|
31
|
+
note: Maps to facultative anaerobe in ECOCORE
|
|
32
|
+
MICROAEROPHILIC:
|
|
33
|
+
description: Organism that requires oxygen at lower concentrations than atmospheric
|
|
34
|
+
meaning: MICRO:0000515
|
|
35
|
+
title: microaerophilic
|
|
36
|
+
MICROANAEROBE:
|
|
37
|
+
description: Organism that can tolerate very small amounts of oxygen
|
|
38
|
+
title: microanaerobe
|
|
39
|
+
OBLIGATE_AEROBE:
|
|
40
|
+
description: Organism that requires oxygen to grow
|
|
41
|
+
meaning: ECOCORE:00000179
|
|
42
|
+
title: obligate aerobe
|
|
43
|
+
OBLIGATE_ANAEROBE:
|
|
44
|
+
description: Organism that cannot grow in the presence of oxygen
|
|
45
|
+
meaning: ECOCORE:00000178
|
|
46
|
+
title: obligate anaerobe
|