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,344 @@
|
|
|
1
|
+
"""
|
|
2
|
+
UniProt Species Codes Value Sets
|
|
3
|
+
|
|
4
|
+
Value sets for UniProt species mnemonic codes with associated proteome IDs
|
|
5
|
+
|
|
6
|
+
Generated from: bio/uniprot_species.yaml
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
from __future__ import annotations
|
|
10
|
+
|
|
11
|
+
from typing import Dict, Any, Optional
|
|
12
|
+
from valuesets.generators.rich_enum import RichEnum
|
|
13
|
+
|
|
14
|
+
class UniProtSpeciesCode(RichEnum):
|
|
15
|
+
"""
|
|
16
|
+
UniProt species mnemonic codes for reference proteomes with associated metadata
|
|
17
|
+
"""
|
|
18
|
+
# Enum members
|
|
19
|
+
SP_9ABAC = "SP_9ABAC"
|
|
20
|
+
SP_9ACAR = "SP_9ACAR"
|
|
21
|
+
SP_9ACTN = "SP_9ACTN"
|
|
22
|
+
SP_9ACTO = "SP_9ACTO"
|
|
23
|
+
SP_9ADEN = "SP_9ADEN"
|
|
24
|
+
SP_9AGAM = "SP_9AGAM"
|
|
25
|
+
SP_9AGAR = "SP_9AGAR"
|
|
26
|
+
SP_9ALPC = "SP_9ALPC"
|
|
27
|
+
SP_9ALPH = "SP_9ALPH"
|
|
28
|
+
SP_9ALTE = "SP_9ALTE"
|
|
29
|
+
SP_9ALVE = "SP_9ALVE"
|
|
30
|
+
SP_9AMPH = "SP_9AMPH"
|
|
31
|
+
SP_9ANNE = "SP_9ANNE"
|
|
32
|
+
SP_9ANUR = "SP_9ANUR"
|
|
33
|
+
SP_9APHY = "SP_9APHY"
|
|
34
|
+
SP_9APIA = "SP_9APIA"
|
|
35
|
+
SP_9APIC = "SP_9APIC"
|
|
36
|
+
SP_9AQUI = "SP_9AQUI"
|
|
37
|
+
SP_9ARAC = "SP_9ARAC"
|
|
38
|
+
SP_9ARCH = "SP_9ARCH"
|
|
39
|
+
SP_9ASCO = "SP_9ASCO"
|
|
40
|
+
SP_9ASPA = "SP_9ASPA"
|
|
41
|
+
SP_9ASTE = "SP_9ASTE"
|
|
42
|
+
SP_9ASTR = "SP_9ASTR"
|
|
43
|
+
SP_9AVES = "SP_9AVES"
|
|
44
|
+
SP_9BACE = "SP_9BACE"
|
|
45
|
+
SP_9BACI = "SP_9BACI"
|
|
46
|
+
SP_9BACL = "SP_9BACL"
|
|
47
|
+
SP_9BACT = "SP_9BACT"
|
|
48
|
+
SP_9BACU = "SP_9BACU"
|
|
49
|
+
SP_9BASI = "SP_9BASI"
|
|
50
|
+
SP_9BBAC = "SP_9BBAC"
|
|
51
|
+
SP_9BETA = "SP_9BETA"
|
|
52
|
+
SP_9BETC = "SP_9BETC"
|
|
53
|
+
SP_9BIFI = "SP_9BIFI"
|
|
54
|
+
SP_9BILA = "SP_9BILA"
|
|
55
|
+
SP_9BIVA = "SP_9BIVA"
|
|
56
|
+
SP_9BORD = "SP_9BORD"
|
|
57
|
+
SP_9BRAD = "SP_9BRAD"
|
|
58
|
+
SP_9BRAS = "SP_9BRAS"
|
|
59
|
+
SP_9BROM = "SP_9BROM"
|
|
60
|
+
SP_9BURK = "SP_9BURK"
|
|
61
|
+
SP_9CARY = "SP_9CARY"
|
|
62
|
+
SP_9CAUD = "SP_9CAUD"
|
|
63
|
+
SP_9CAUL = "SP_9CAUL"
|
|
64
|
+
SP_9CBAC = "SP_9CBAC"
|
|
65
|
+
SP_9CELL = "SP_9CELL"
|
|
66
|
+
SP_9CERV = "SP_9CERV"
|
|
67
|
+
SP_9CETA = "SP_9CETA"
|
|
68
|
+
SP_9CHAR = "SP_9CHAR"
|
|
69
|
+
SP_9CHIR = "SP_9CHIR"
|
|
70
|
+
SP_9CHLA = "SP_9CHLA"
|
|
71
|
+
SP_9CHLB = "SP_9CHLB"
|
|
72
|
+
SP_9CHLO = "SP_9CHLO"
|
|
73
|
+
SP_9CHLR = "SP_9CHLR"
|
|
74
|
+
SP_9CHRO = "SP_9CHRO"
|
|
75
|
+
SP_9CICH = "SP_9CICH"
|
|
76
|
+
SP_9CILI = "SP_9CILI"
|
|
77
|
+
SP_9CIRC = "SP_9CIRC"
|
|
78
|
+
SP_9CLOS = "SP_9CLOS"
|
|
79
|
+
SP_9CLOT = "SP_9CLOT"
|
|
80
|
+
SP_9CNID = "SP_9CNID"
|
|
81
|
+
SP_9COLU = "SP_9COLU"
|
|
82
|
+
SP_9CORV = "SP_9CORV"
|
|
83
|
+
SP_9CORY = "SP_9CORY"
|
|
84
|
+
SP_9COXI = "SP_9COXI"
|
|
85
|
+
SP_9CREN = "SP_9CREN"
|
|
86
|
+
SP_9CRUS = "SP_9CRUS"
|
|
87
|
+
SP_9CUCU = "SP_9CUCU"
|
|
88
|
+
SP_9CYAN = "SP_9CYAN"
|
|
89
|
+
SP_9DEIN = "SP_9DEIN"
|
|
90
|
+
SP_9DEIO = "SP_9DEIO"
|
|
91
|
+
SP_9DELA = "SP_9DELA"
|
|
92
|
+
SP_9DELT = "SP_9DELT"
|
|
93
|
+
SP_9DEND = "SP_9DEND"
|
|
94
|
+
SP_9DINO = "SP_9DINO"
|
|
95
|
+
SP_9DIPT = "SP_9DIPT"
|
|
96
|
+
SP_9EIME = "SP_9EIME"
|
|
97
|
+
SP_9EMBE = "SP_9EMBE"
|
|
98
|
+
SP_9ENTE = "SP_9ENTE"
|
|
99
|
+
SP_9ENTR = "SP_9ENTR"
|
|
100
|
+
SP_9ERIC = "SP_9ERIC"
|
|
101
|
+
SP_9EUCA = "SP_9EUCA"
|
|
102
|
+
SP_9EUGL = "SP_9EUGL"
|
|
103
|
+
SP_9EUKA = "SP_9EUKA"
|
|
104
|
+
SP_9EUPU = "SP_9EUPU"
|
|
105
|
+
SP_9EURO = "SP_9EURO"
|
|
106
|
+
SP_9EURY = "SP_9EURY"
|
|
107
|
+
SP_9FABA = "SP_9FABA"
|
|
108
|
+
SP_9FIRM = "SP_9FIRM"
|
|
109
|
+
SP_9FLAO = "SP_9FLAO"
|
|
110
|
+
SP_9FLAV = "SP_9FLAV"
|
|
111
|
+
SP_9FLOR = "SP_9FLOR"
|
|
112
|
+
SP_9FRIN = "SP_9FRIN"
|
|
113
|
+
SP_9FUNG = "SP_9FUNG"
|
|
114
|
+
SP_9FURN = "SP_9FURN"
|
|
115
|
+
SP_9FUSO = "SP_9FUSO"
|
|
116
|
+
SP_9GALL = "SP_9GALL"
|
|
117
|
+
SP_9GAMA = "SP_9GAMA"
|
|
118
|
+
SP_9GAMC = "SP_9GAMC"
|
|
119
|
+
SP_9GAMM = "SP_9GAMM"
|
|
120
|
+
SP_9GAST = "SP_9GAST"
|
|
121
|
+
SP_9GEMI = "SP_9GEMI"
|
|
122
|
+
SP_9GLOM = "SP_9GLOM"
|
|
123
|
+
SP_9GOBI = "SP_9GOBI"
|
|
124
|
+
SP_9GRUI = "SP_9GRUI"
|
|
125
|
+
SP_9HELI = "SP_9HELI"
|
|
126
|
+
SP_9HELO = "SP_9HELO"
|
|
127
|
+
SP_9HEMI = "SP_9HEMI"
|
|
128
|
+
SP_9HEPA = "SP_9HEPA"
|
|
129
|
+
SP_9HEXA = "SP_9HEXA"
|
|
130
|
+
SP_9HYME = "SP_9HYME"
|
|
131
|
+
SP_9HYPH = "SP_9HYPH"
|
|
132
|
+
SP_9HYPO = "SP_9HYPO"
|
|
133
|
+
SP_9INFA = "SP_9INFA"
|
|
134
|
+
SP_9INSE = "SP_9INSE"
|
|
135
|
+
SP_9LABR = "SP_9LABR"
|
|
136
|
+
SP_ARATH = "SP_ARATH"
|
|
137
|
+
SP_BACSU = "SP_BACSU"
|
|
138
|
+
SP_BOVIN = "SP_BOVIN"
|
|
139
|
+
SP_CAEEL = "SP_CAEEL"
|
|
140
|
+
SP_CANLF = "SP_CANLF"
|
|
141
|
+
SP_CHICK = "SP_CHICK"
|
|
142
|
+
SP_DANRE = "SP_DANRE"
|
|
143
|
+
SP_DROME = "SP_DROME"
|
|
144
|
+
SP_ECOLI = "SP_ECOLI"
|
|
145
|
+
SP_FELCA = "SP_FELCA"
|
|
146
|
+
SP_GORGO = "SP_GORGO"
|
|
147
|
+
SP_HORSE = "SP_HORSE"
|
|
148
|
+
SP_HUMAN = "SP_HUMAN"
|
|
149
|
+
SP_MACMU = "SP_MACMU"
|
|
150
|
+
SP_MAIZE = "SP_MAIZE"
|
|
151
|
+
SP_MOUSE = "SP_MOUSE"
|
|
152
|
+
SP_ORYSJ = "SP_ORYSJ"
|
|
153
|
+
SP_PANTR = "SP_PANTR"
|
|
154
|
+
SP_PIG = "SP_PIG"
|
|
155
|
+
SP_RABIT = "SP_RABIT"
|
|
156
|
+
SP_RAT = "SP_RAT"
|
|
157
|
+
SP_SCHPO = "SP_SCHPO"
|
|
158
|
+
SP_SHEEP = "SP_SHEEP"
|
|
159
|
+
SP_XENLA = "SP_XENLA"
|
|
160
|
+
SP_XENTR = "SP_XENTR"
|
|
161
|
+
SP_YEAST = "SP_YEAST"
|
|
162
|
+
SP_DICDI = "SP_DICDI"
|
|
163
|
+
SP_HELPY = "SP_HELPY"
|
|
164
|
+
SP_LEIMA = "SP_LEIMA"
|
|
165
|
+
SP_MEDTR = "SP_MEDTR"
|
|
166
|
+
SP_MYCTU = "SP_MYCTU"
|
|
167
|
+
SP_NEIME = "SP_NEIME"
|
|
168
|
+
SP_PLAF7 = "SP_PLAF7"
|
|
169
|
+
SP_PSEAE = "SP_PSEAE"
|
|
170
|
+
SP_SOYBN = "SP_SOYBN"
|
|
171
|
+
SP_STAAU = "SP_STAAU"
|
|
172
|
+
SP_STRPN = "SP_STRPN"
|
|
173
|
+
SP_TOXGO = "SP_TOXGO"
|
|
174
|
+
SP_TRYB2 = "SP_TRYB2"
|
|
175
|
+
SP_WHEAT = "SP_WHEAT"
|
|
176
|
+
SP_PEA = "SP_PEA"
|
|
177
|
+
SP_TOBAC = "SP_TOBAC"
|
|
178
|
+
|
|
179
|
+
# Set metadata after class creation
|
|
180
|
+
UniProtSpeciesCode._metadata = {
|
|
181
|
+
"SP_9ABAC": {'description': 'Lambdina fiscellaria nucleopolyhedrovirus - Proteome: UP000201190', 'meaning': 'NCBITaxon:1642929'},
|
|
182
|
+
"SP_9ACAR": {'description': 'Tropilaelaps mercedesae - Proteome: UP000192247', 'meaning': 'NCBITaxon:418985'},
|
|
183
|
+
"SP_9ACTN": {'description': 'Candidatus Protofrankia datiscae - Proteome: UP000001549', 'meaning': 'NCBITaxon:2716812'},
|
|
184
|
+
"SP_9ACTO": {'description': 'Actinomyces massiliensis F0489 - Proteome: UP000002941', 'meaning': 'NCBITaxon:1125718'},
|
|
185
|
+
"SP_9ADEN": {'description': 'Human adenovirus 53 - Proteome: UP000463865', 'meaning': 'NCBITaxon:556926'},
|
|
186
|
+
"SP_9AGAM": {'description': 'Jaapia argillacea MUCL 33604 - Proteome: UP000027265', 'meaning': 'NCBITaxon:933084'},
|
|
187
|
+
"SP_9AGAR": {'description': 'Collybiopsis luxurians FD-317 M1 - Proteome: UP000053593', 'meaning': 'NCBITaxon:944289'},
|
|
188
|
+
"SP_9ALPC": {'description': 'Feline coronavirus - Proteome: UP000141821', 'meaning': 'NCBITaxon:12663'},
|
|
189
|
+
"SP_9ALPH": {'description': 'Testudinid alphaherpesvirus 3 - Proteome: UP000100290', 'meaning': 'NCBITaxon:2560801'},
|
|
190
|
+
"SP_9ALTE": {'description': 'Paraglaciecola arctica BSs20135 - Proteome: UP000006327', 'meaning': 'NCBITaxon:493475'},
|
|
191
|
+
"SP_9ALVE": {'description': 'Perkinsus sp. BL_2016 - Proteome: UP000298064', 'meaning': 'NCBITaxon:2494336'},
|
|
192
|
+
"SP_9AMPH": {'description': 'Microcaecilia unicolor - Proteome: UP000515156', 'meaning': 'NCBITaxon:1415580'},
|
|
193
|
+
"SP_9ANNE": {'description': 'Dimorphilus gyrociliatus - Proteome: UP000549394', 'meaning': 'NCBITaxon:2664684'},
|
|
194
|
+
"SP_9ANUR": {'description': 'Leptobrachium leishanense (Leishan spiny toad) - Proteome: UP000694569', 'meaning': 'NCBITaxon:445787'},
|
|
195
|
+
"SP_9APHY": {'description': 'Fibroporia radiculosa - Proteome: UP000006352', 'meaning': 'NCBITaxon:599839'},
|
|
196
|
+
"SP_9APIA": {'description': 'Heracleum sosnowskyi - Proteome: UP001237642', 'meaning': 'NCBITaxon:360622'},
|
|
197
|
+
"SP_9APIC": {'description': 'Babesia sp. Xinjiang - Proteome: UP000193856', 'meaning': 'NCBITaxon:462227'},
|
|
198
|
+
"SP_9AQUI": {'description': 'Sulfurihydrogenibium yellowstonense SS-5 - Proteome: UP000005540', 'meaning': 'NCBITaxon:432331'},
|
|
199
|
+
"SP_9ARAC": {'description': 'Trichonephila inaurata madagascariensis - Proteome: UP000886998', 'meaning': 'NCBITaxon:2747483'},
|
|
200
|
+
"SP_9ARCH": {'description': 'Candidatus Nitrosarchaeum limnium BG20 - Proteome: UP000014065', 'meaning': 'NCBITaxon:859192'},
|
|
201
|
+
"SP_9ASCO": {'description': 'Kuraishia capsulata CBS 1993 - Proteome: UP000019384', 'meaning': 'NCBITaxon:1382522'},
|
|
202
|
+
"SP_9ASPA": {'description': 'Dendrobium catenatum - Proteome: UP000233837', 'meaning': 'NCBITaxon:906689'},
|
|
203
|
+
"SP_9ASTE": {'description': 'Cuscuta australis - Proteome: UP000249390', 'meaning': 'NCBITaxon:267555'},
|
|
204
|
+
"SP_9ASTR": {'description': 'Mikania micrantha - Proteome: UP000326396', 'meaning': 'NCBITaxon:192012'},
|
|
205
|
+
"SP_9AVES": {'description': 'Anser brachyrhynchus (Pink-footed goose) - Proteome: UP000694426', 'meaning': 'NCBITaxon:132585'},
|
|
206
|
+
"SP_9BACE": {'description': 'Bacteroides caccae CL03T12C61 - Proteome: UP000002965', 'meaning': 'NCBITaxon:997873'},
|
|
207
|
+
"SP_9BACI": {'description': 'Fictibacillus macauensis ZFHKF-1 - Proteome: UP000004080', 'meaning': 'NCBITaxon:1196324'},
|
|
208
|
+
"SP_9BACL": {'description': 'Paenibacillus sp. HGF7 - Proteome: UP000003445', 'meaning': 'NCBITaxon:944559'},
|
|
209
|
+
"SP_9BACT": {'description': 'Parabacteroides johnsonii CL02T12C29 - Proteome: UP000001218', 'meaning': 'NCBITaxon:999419'},
|
|
210
|
+
"SP_9BACU": {'description': 'Samia ricini nucleopolyhedrovirus - Proteome: UP001226138', 'meaning': 'NCBITaxon:1920700'},
|
|
211
|
+
"SP_9BASI": {'description': 'Malassezia pachydermatis - Proteome: UP000037751', 'meaning': 'NCBITaxon:77020'},
|
|
212
|
+
"SP_9BBAC": {'description': 'Plutella xylostella granulovirus - Proteome: UP000201310', 'meaning': 'NCBITaxon:98383'},
|
|
213
|
+
"SP_9BETA": {'description': 'Saimiriine betaherpesvirus 4 - Proteome: UP000097892', 'meaning': 'NCBITaxon:1535247'},
|
|
214
|
+
"SP_9BETC": {'description': 'Coronavirus BtRt-BetaCoV/GX2018 - Proteome: UP001228689', 'meaning': 'NCBITaxon:2591238'},
|
|
215
|
+
"SP_9BIFI": {'description': 'Scardovia wiggsiae F0424 - Proteome: UP000006415', 'meaning': 'NCBITaxon:857290'},
|
|
216
|
+
"SP_9BILA": {'description': 'Ancylostoma ceylanicum - Proteome: UP000024635', 'meaning': 'NCBITaxon:53326'},
|
|
217
|
+
"SP_9BIVA": {'description': 'Potamilus streckersoni - Proteome: UP001195483', 'meaning': 'NCBITaxon:2493646'},
|
|
218
|
+
"SP_9BORD": {'description': 'Bordetella sp. N - Proteome: UP000064621', 'meaning': 'NCBITaxon:1746199'},
|
|
219
|
+
"SP_9BRAD": {'description': 'Afipia broomeae ATCC 49717 - Proteome: UP000001096', 'meaning': 'NCBITaxon:883078'},
|
|
220
|
+
"SP_9BRAS": {'description': 'Capsella rubella - Proteome: UP000029121', 'meaning': 'NCBITaxon:81985'},
|
|
221
|
+
"SP_9BROM": {'description': 'Prune dwarf virus - Proteome: UP000202132', 'meaning': 'NCBITaxon:33760'},
|
|
222
|
+
"SP_9BURK": {'description': 'Candidatus Paraburkholderia kirkii UZHbot1 - Proteome: UP000003511', 'meaning': 'NCBITaxon:1055526'},
|
|
223
|
+
"SP_9CARY": {'description': 'Carnegiea gigantea - Proteome: UP001153076', 'meaning': 'NCBITaxon:171969'},
|
|
224
|
+
"SP_9CAUD": {'description': 'Salmonella phage Vi06 - Proteome: UP000000335', 'meaning': 'NCBITaxon:866889'},
|
|
225
|
+
"SP_9CAUL": {'description': 'Brevundimonas abyssalis TAR-001 - Proteome: UP000016569', 'meaning': 'NCBITaxon:1391729'},
|
|
226
|
+
"SP_9CBAC": {'description': 'Neodiprion sertifer nucleopolyhedrovirus - Proteome: UP000243697', 'meaning': 'NCBITaxon:111874'},
|
|
227
|
+
"SP_9CELL": {'description': 'Actinotalea ferrariae CF5-4 - Proteome: UP000019753', 'meaning': 'NCBITaxon:948458'},
|
|
228
|
+
"SP_9CERV": {'description': 'Cervus hanglu yarkandensis (Yarkand deer) - Proteome: UP000631465', 'meaning': 'NCBITaxon:84702'},
|
|
229
|
+
"SP_9CETA": {'description': 'Catagonus wagneri (Chacoan peccary) - Proteome: UP000694540', 'meaning': 'NCBITaxon:51154'},
|
|
230
|
+
"SP_9CHAR": {'description': 'Rostratula benghalensis (greater painted-snipe) - Proteome: UP000545435', 'meaning': 'NCBITaxon:118793'},
|
|
231
|
+
"SP_9CHIR": {'description': 'Phyllostomus discolor (pale spear-nosed bat) - Proteome: UP000504628', 'meaning': 'NCBITaxon:89673'},
|
|
232
|
+
"SP_9CHLA": {'description': 'Chlamydiales bacterium SCGC AG-110-P3 - Proteome: UP000196763', 'meaning': 'NCBITaxon:1871323'},
|
|
233
|
+
"SP_9CHLB": {'description': 'Chlorobium ferrooxidans DSM 13031 - Proteome: UP000004162', 'meaning': 'NCBITaxon:377431'},
|
|
234
|
+
"SP_9CHLO": {'description': 'Helicosporidium sp. ATCC 50920 - Proteome: UP000026042', 'meaning': 'NCBITaxon:1291522'},
|
|
235
|
+
"SP_9CHLR": {'description': 'Ardenticatena maritima - Proteome: UP000037784', 'meaning': 'NCBITaxon:872965'},
|
|
236
|
+
"SP_9CHRO": {'description': 'Gloeocapsa sp. PCC 7428 - Proteome: UP000010476', 'meaning': 'NCBITaxon:1173026'},
|
|
237
|
+
"SP_9CICH": {'description': 'Maylandia zebra (zebra mbuna) - Proteome: UP000265160', 'meaning': 'NCBITaxon:106582'},
|
|
238
|
+
"SP_9CILI": {'description': 'Stentor coeruleus - Proteome: UP000187209', 'meaning': 'NCBITaxon:5963'},
|
|
239
|
+
"SP_9CIRC": {'description': 'Raven circovirus - Proteome: UP000097131', 'meaning': 'NCBITaxon:345250'},
|
|
240
|
+
"SP_9CLOS": {'description': 'Grapevine leafroll-associated virus 10 - Proteome: UP000203128', 'meaning': 'NCBITaxon:367121'},
|
|
241
|
+
"SP_9CLOT": {'description': 'Candidatus Arthromitus sp. SFB-rat-Yit - Proteome: UP000001273', 'meaning': 'NCBITaxon:1041504'},
|
|
242
|
+
"SP_9CNID": {'description': 'Clytia hemisphaerica - Proteome: UP000594262', 'meaning': 'NCBITaxon:252671'},
|
|
243
|
+
"SP_9COLU": {'description': 'Pampusana beccarii (Western bronze ground-dove) - Proteome: UP000541332', 'meaning': 'NCBITaxon:2953425'},
|
|
244
|
+
"SP_9CORV": {'description': "Cnemophilus loriae (Loria's bird-of-paradise) - Proteome: UP000517678", 'meaning': 'NCBITaxon:254448'},
|
|
245
|
+
"SP_9CORY": {'description': 'Corynebacterium genitalium ATCC 33030 - Proteome: UP000004208', 'meaning': 'NCBITaxon:585529'},
|
|
246
|
+
"SP_9COXI": {'description': 'Coxiella endosymbiont of Amblyomma americanum - Proteome: UP000059222', 'meaning': 'NCBITaxon:325775'},
|
|
247
|
+
"SP_9CREN": {'description': 'Metallosphaera yellowstonensis MK1 - Proteome: UP000003980', 'meaning': 'NCBITaxon:671065'},
|
|
248
|
+
"SP_9CRUS": {'description': 'Daphnia magna - Proteome: UP000076858', 'meaning': 'NCBITaxon:35525'},
|
|
249
|
+
"SP_9CUCU": {'description': 'Ceutorhynchus assimilis (cabbage seed weevil) - Proteome: UP001152799', 'meaning': 'NCBITaxon:467358'},
|
|
250
|
+
"SP_9CYAN": {'description': 'Leptolyngbyaceae cyanobacterium JSC-12 - Proteome: UP000001332', 'meaning': 'NCBITaxon:864702'},
|
|
251
|
+
"SP_9DEIN": {'description': 'Meiothermus sp. QL-1 - Proteome: UP000255346', 'meaning': 'NCBITaxon:2058095'},
|
|
252
|
+
"SP_9DEIO": {'description': 'Deinococcus sp. RL - Proteome: UP000027898', 'meaning': 'NCBITaxon:1489678'},
|
|
253
|
+
"SP_9DELA": {'description': 'Human T-cell leukemia virus type I - Proteome: UP000108043', 'meaning': 'NCBITaxon:11908'},
|
|
254
|
+
"SP_9DELT": {'description': 'Lujinxingia litoralis - Proteome: UP000249169', 'meaning': 'NCBITaxon:2211119'},
|
|
255
|
+
"SP_9DEND": {'description': 'Xiphorhynchus elegans (elegant woodcreeper) - Proteome: UP000551443', 'meaning': 'NCBITaxon:269412'},
|
|
256
|
+
"SP_9DINO": {'description': 'Symbiodinium necroappetens - Proteome: UP000601435', 'meaning': 'NCBITaxon:1628268'},
|
|
257
|
+
"SP_9DIPT": {'description': 'Clunio marinus - Proteome: UP000183832', 'meaning': 'NCBITaxon:568069'},
|
|
258
|
+
"SP_9EIME": {'description': 'Eimeria praecox - Proteome: UP000018201', 'meaning': 'NCBITaxon:51316'},
|
|
259
|
+
"SP_9EMBE": {'description': 'Emberiza fucata - Proteome: UP000580681', 'meaning': 'NCBITaxon:337179'},
|
|
260
|
+
"SP_9ENTE": {'description': 'Enterococcus asini ATCC 700915 - Proteome: UP000013777', 'meaning': 'NCBITaxon:1158606'},
|
|
261
|
+
"SP_9ENTR": {'description': 'secondary endosymbiont of Heteropsylla cubana - Proteome: UP000003937', 'meaning': 'NCBITaxon:134287'},
|
|
262
|
+
"SP_9ERIC": {'description': 'Rhododendron williamsianum - Proteome: UP000428333', 'meaning': 'NCBITaxon:262921'},
|
|
263
|
+
"SP_9EUCA": {'description': 'Petrolisthes manimaculis - Proteome: UP001292094', 'meaning': 'NCBITaxon:1843537'},
|
|
264
|
+
"SP_9EUGL": {'description': 'Perkinsela sp. CCAP 1560/4 - Proteome: UP000036983', 'meaning': 'NCBITaxon:1314962'},
|
|
265
|
+
"SP_9EUKA": {'description': 'Chrysochromulina tobinii - Proteome: UP000037460', 'meaning': 'NCBITaxon:1460289'},
|
|
266
|
+
"SP_9EUPU": {'description': 'Candidula unifasciata - Proteome: UP000678393', 'meaning': 'NCBITaxon:100452'},
|
|
267
|
+
"SP_9EURO": {'description': 'Cladophialophora psammophila CBS 110553 - Proteome: UP000019471', 'meaning': 'NCBITaxon:1182543'},
|
|
268
|
+
"SP_9EURY": {'description': 'Methanoplanus limicola DSM 2279 - Proteome: UP000005741', 'meaning': 'NCBITaxon:937775'},
|
|
269
|
+
"SP_9FABA": {'description': 'Senna tora - Proteome: UP000634136', 'meaning': 'NCBITaxon:362788'},
|
|
270
|
+
"SP_9FIRM": {'description': 'Ruminococcaceae bacterium D16 - Proteome: UP000002801', 'meaning': 'NCBITaxon:552398'},
|
|
271
|
+
"SP_9FLAO": {'description': 'Capnocytophaga sp. oral taxon 338 str. F0234 - Proteome: UP000003023', 'meaning': 'NCBITaxon:888059'},
|
|
272
|
+
"SP_9FLAV": {'description': 'Tunisian sheep-like pestivirus - Proteome: UP001157330', 'meaning': 'NCBITaxon:3071305'},
|
|
273
|
+
"SP_9FLOR": {'description': 'Gracilariopsis chorda - Proteome: UP000247409', 'meaning': 'NCBITaxon:448386'},
|
|
274
|
+
"SP_9FRIN": {'description': 'Urocynchramus pylzowi - Proteome: UP000524542', 'meaning': 'NCBITaxon:571890'},
|
|
275
|
+
"SP_9FUNG": {'description': 'Lichtheimia corymbifera JMRC:FSU:9682 - Proteome: UP000027586', 'meaning': 'NCBITaxon:1263082'},
|
|
276
|
+
"SP_9FURN": {'description': 'Furnarius figulus - Proteome: UP000529852', 'meaning': 'NCBITaxon:463165'},
|
|
277
|
+
"SP_9FUSO": {'description': 'Fusobacterium gonidiaformans 3-1-5R - Proteome: UP000002975', 'meaning': 'NCBITaxon:469605'},
|
|
278
|
+
"SP_9GALL": {'description': 'Odontophorus gujanensis (marbled wood quail) - Proteome: UP000522663', 'meaning': 'NCBITaxon:886794'},
|
|
279
|
+
"SP_9GAMA": {'description': 'Bovine gammaherpesvirus 6 - Proteome: UP000121539', 'meaning': 'NCBITaxon:1504288'},
|
|
280
|
+
"SP_9GAMC": {'description': 'Anser fabalis coronavirus NCN2 - Proteome: UP001251675', 'meaning': 'NCBITaxon:2860474'},
|
|
281
|
+
"SP_9GAMM": {'description': 'Buchnera aphidicola (Cinara tujafilina) - Proteome: UP000006811', 'meaning': 'NCBITaxon:261317', 'aliases': ['Buchnera aphidicola (Cinara tujafilina)']},
|
|
282
|
+
"SP_9GAST": {'description': 'Elysia crispata (lettuce slug) - Proteome: UP001283361', 'meaning': 'NCBITaxon:231223'},
|
|
283
|
+
"SP_9GEMI": {'description': 'East African cassava mosaic Zanzibar virus - Proteome: UP000201107', 'meaning': 'NCBITaxon:223275'},
|
|
284
|
+
"SP_9GLOM": {'description': 'Paraglomus occultum - Proteome: UP000789572', 'meaning': 'NCBITaxon:144539'},
|
|
285
|
+
"SP_9GOBI": {'description': 'Neogobius melanostomus (round goby) - Proteome: UP000694523', 'meaning': 'NCBITaxon:47308'},
|
|
286
|
+
"SP_9GRUI": {'description': 'Atlantisia rogersi (Inaccessible Island rail) - Proteome: UP000518911', 'meaning': 'NCBITaxon:2478892'},
|
|
287
|
+
"SP_9HELI": {'description': 'Helicobacter bilis ATCC 43879 - Proteome: UP000005085', 'meaning': 'NCBITaxon:613026'},
|
|
288
|
+
"SP_9HELO": {'description': 'Rhynchosporium graminicola - Proteome: UP000178129', 'meaning': 'NCBITaxon:2792576'},
|
|
289
|
+
"SP_9HEMI": {'description': 'Cinara cedri - Proteome: UP000325440', 'meaning': 'NCBITaxon:506608'},
|
|
290
|
+
"SP_9HEPA": {'description': 'Duck hepatitis B virus - Proteome: UP000137229', 'meaning': 'NCBITaxon:12639'},
|
|
291
|
+
"SP_9HEXA": {'description': 'Allacma fusca - Proteome: UP000708208', 'meaning': 'NCBITaxon:39272'},
|
|
292
|
+
"SP_9HYME": {'description': 'Melipona quadrifasciata - Proteome: UP000053105', 'meaning': 'NCBITaxon:166423'},
|
|
293
|
+
"SP_9HYPH": {'description': 'Mesorhizobium amorphae CCNWGS0123 - Proteome: UP000002949', 'meaning': 'NCBITaxon:1082933'},
|
|
294
|
+
"SP_9HYPO": {'description': '[Torrubiella] hemipterigena - Proteome: UP000039046', 'meaning': 'NCBITaxon:1531966'},
|
|
295
|
+
"SP_9INFA": {'description': 'Influenza A virus (A/California/VRDL364/2009 (mixed) - Proteome: UP000109975', 'meaning': 'NCBITaxon:1049605', 'aliases': ['Influenza A virus (A/California/VRDL364/2009(mixed))']},
|
|
296
|
+
"SP_9INSE": {'description': 'Cloeon dipterum - Proteome: UP000494165', 'meaning': 'NCBITaxon:197152'},
|
|
297
|
+
"SP_9LABR": {'description': 'Labrus bergylta (ballan wrasse) - Proteome: UP000261660', 'meaning': 'NCBITaxon:56723'},
|
|
298
|
+
"SP_ARATH": {'description': 'Arabidopsis thaliana (Thale cress) - Proteome: UP000006548', 'meaning': 'NCBITaxon:3702', 'aliases': ['Thale cress']},
|
|
299
|
+
"SP_BACSU": {'description': 'Bacillus subtilis subsp. subtilis str. 168 - Proteome: UP000001570', 'meaning': 'NCBITaxon:224308'},
|
|
300
|
+
"SP_BOVIN": {'description': 'Bos taurus (Cattle) - Proteome: UP000009136', 'meaning': 'NCBITaxon:9913', 'aliases': ['Cattle']},
|
|
301
|
+
"SP_CAEEL": {'description': 'Caenorhabditis elegans - Proteome: UP000001940', 'meaning': 'NCBITaxon:6239'},
|
|
302
|
+
"SP_CANLF": {'description': 'Canis lupus familiaris (Dog) - Proteome: UP000805418', 'meaning': 'NCBITaxon:9615', 'aliases': ['Dog']},
|
|
303
|
+
"SP_CHICK": {'description': 'Gallus gallus (Chicken) - Proteome: UP000000539', 'meaning': 'NCBITaxon:9031', 'aliases': ['Chicken']},
|
|
304
|
+
"SP_DANRE": {'description': 'Danio rerio (Zebrafish) - Proteome: UP000000437', 'meaning': 'NCBITaxon:7955', 'aliases': ['Zebrafish']},
|
|
305
|
+
"SP_DROME": {'description': 'Drosophila melanogaster (Fruit fly) - Proteome: UP000000803', 'meaning': 'NCBITaxon:7227', 'aliases': ['Fruit fly']},
|
|
306
|
+
"SP_ECOLI": {'description': 'Escherichia coli K-12 - Proteome: UP000000625', 'meaning': 'NCBITaxon:83333'},
|
|
307
|
+
"SP_FELCA": {'description': 'Felis catus (Cat) - Proteome: UP000011712', 'meaning': 'NCBITaxon:9685', 'aliases': ['Cat']},
|
|
308
|
+
"SP_GORGO": {'description': 'Gorilla gorilla gorilla (Western lowland gorilla) - Proteome: UP000001519', 'meaning': 'NCBITaxon:9593', 'aliases': ['Western lowland gorilla', 'Gorilla gorilla']},
|
|
309
|
+
"SP_HORSE": {'description': 'Equus caballus (Horse) - Proteome: UP000002281', 'meaning': 'NCBITaxon:9796', 'aliases': ['Horse']},
|
|
310
|
+
"SP_HUMAN": {'description': 'Homo sapiens (Human) - Proteome: UP000005640', 'meaning': 'NCBITaxon:9606', 'aliases': ['Human']},
|
|
311
|
+
"SP_MACMU": {'description': 'Macaca mulatta (Rhesus macaque) - Proteome: UP000006718', 'meaning': 'NCBITaxon:9544', 'aliases': ['Rhesus macaque']},
|
|
312
|
+
"SP_MAIZE": {'description': 'Zea mays (Maize) - Proteome: UP000007305', 'meaning': 'NCBITaxon:4577', 'aliases': ['Maize']},
|
|
313
|
+
"SP_MOUSE": {'description': 'Mus musculus (Mouse) - Proteome: UP000000589', 'meaning': 'NCBITaxon:10090', 'aliases': ['Mouse']},
|
|
314
|
+
"SP_ORYSJ": {'description': 'Oryza sativa subsp. japonica (Rice) - Proteome: UP000059680', 'meaning': 'NCBITaxon:39947', 'aliases': ['Rice', 'Oryza sativa Japonica Group']},
|
|
315
|
+
"SP_PANTR": {'description': 'Pan troglodytes (Chimpanzee) - Proteome: UP000002277', 'meaning': 'NCBITaxon:9598', 'aliases': ['Chimpanzee']},
|
|
316
|
+
"SP_PIG": {'description': 'Sus scrofa (Pig) - Proteome: UP000008227', 'meaning': 'NCBITaxon:9823', 'aliases': ['Pig']},
|
|
317
|
+
"SP_RABIT": {'description': 'Oryctolagus cuniculus (Rabbit) - Proteome: UP000001811', 'meaning': 'NCBITaxon:9986', 'aliases': ['Rabbit']},
|
|
318
|
+
"SP_RAT": {'description': 'Rattus norvegicus (Rat) - Proteome: UP000002494', 'meaning': 'NCBITaxon:10116', 'aliases': ['Rat']},
|
|
319
|
+
"SP_SCHPO": {'description': 'Schizosaccharomyces pombe 972h- (Fission yeast) - Proteome: UP000002485', 'meaning': 'NCBITaxon:284812', 'aliases': ['Fission yeast']},
|
|
320
|
+
"SP_SHEEP": {'description': 'Ovis aries (Sheep) - Proteome: UP000002356', 'meaning': 'NCBITaxon:9940', 'aliases': ['Sheep']},
|
|
321
|
+
"SP_XENLA": {'description': 'Xenopus laevis (African clawed frog) - Proteome: UP000186698', 'meaning': 'NCBITaxon:8355', 'aliases': ['African clawed frog']},
|
|
322
|
+
"SP_XENTR": {'description': 'Xenopus tropicalis (Western clawed frog) - Proteome: UP000008143', 'meaning': 'NCBITaxon:8364', 'aliases': ['Western clawed frog']},
|
|
323
|
+
"SP_YEAST": {'description': "Saccharomyces cerevisiae S288C (Baker's yeast) - Proteome: UP000002311", 'meaning': 'NCBITaxon:559292', 'aliases': ["Baker's yeast"]},
|
|
324
|
+
"SP_DICDI": {'description': 'Dictyostelium discoideum (Slime mold) - Proteome: UP000002195', 'meaning': 'NCBITaxon:44689', 'aliases': ['Slime mold']},
|
|
325
|
+
"SP_HELPY": {'description': 'Helicobacter pylori 26695 - Proteome: UP000000429', 'meaning': 'NCBITaxon:85962'},
|
|
326
|
+
"SP_LEIMA": {'description': 'Leishmania major strain Friedlin', 'meaning': 'NCBITaxon:347515'},
|
|
327
|
+
"SP_MEDTR": {'description': 'Medicago truncatula (Barrel medic) - Proteome: UP000002051', 'meaning': 'NCBITaxon:3880', 'aliases': ['Barrel medic']},
|
|
328
|
+
"SP_MYCTU": {'description': 'Mycobacterium tuberculosis H37Rv - Proteome: UP000001584', 'meaning': 'NCBITaxon:83332'},
|
|
329
|
+
"SP_NEIME": {'description': 'Neisseria meningitidis MC58 - Proteome: UP000000425', 'meaning': 'NCBITaxon:122586'},
|
|
330
|
+
"SP_PLAF7": {'description': 'Plasmodium falciparum 3D7 (Malaria parasite) - Proteome: UP000001450', 'meaning': 'NCBITaxon:36329', 'aliases': ['Malaria parasite']},
|
|
331
|
+
"SP_PSEAE": {'description': 'Pseudomonas aeruginosa PAO1 - Proteome: UP000002438', 'meaning': 'NCBITaxon:208964'},
|
|
332
|
+
"SP_SOYBN": {'description': 'Glycine max (Soybean) - Proteome: UP000008827', 'meaning': 'NCBITaxon:3847', 'aliases': ['Soybean']},
|
|
333
|
+
"SP_STAAU": {'description': 'Staphylococcus aureus subsp. aureus NCTC 8325 - Proteome: UP000008816', 'meaning': 'NCBITaxon:93061'},
|
|
334
|
+
"SP_STRPN": {'description': 'Streptococcus pneumoniae R6 - Proteome: UP000000586', 'meaning': 'NCBITaxon:171101'},
|
|
335
|
+
"SP_TOXGO": {'description': 'Toxoplasma gondii ME49 - Proteome: UP000001529', 'meaning': 'NCBITaxon:508771'},
|
|
336
|
+
"SP_TRYB2": {'description': 'Trypanosoma brucei brucei TREU927 - Proteome: UP000008524', 'meaning': 'NCBITaxon:185431'},
|
|
337
|
+
"SP_WHEAT": {'description': 'Triticum aestivum (Wheat) - Proteome: UP000019116', 'meaning': 'NCBITaxon:4565', 'aliases': ['Wheat']},
|
|
338
|
+
"SP_PEA": {'description': 'Pisum sativum (Garden pea) - Proteome: UP001058974', 'meaning': 'NCBITaxon:3888', 'aliases': ['Garden pea', 'Lathyrus oleraceus']},
|
|
339
|
+
"SP_TOBAC": {'description': 'Nicotiana tabacum (Common tobacco) - Proteome: UP000084051', 'meaning': 'NCBITaxon:4097', 'aliases': ['Common tobacco']},
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
__all__ = [
|
|
343
|
+
"UniProtSpeciesCode",
|
|
344
|
+
]
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"""
|
|
2
|
+
|
|
3
|
+
Generated from: bio/viral_genome_types.yaml
|
|
4
|
+
"""
|
|
5
|
+
|
|
6
|
+
from __future__ import annotations
|
|
7
|
+
|
|
8
|
+
from typing import Dict, Any, Optional
|
|
9
|
+
from valuesets.generators.rich_enum import RichEnum
|
|
10
|
+
|
|
11
|
+
class ViralGenomeTypeEnum(RichEnum):
|
|
12
|
+
"""
|
|
13
|
+
Types of viral genomes based on Baltimore classification
|
|
14
|
+
"""
|
|
15
|
+
# Enum members
|
|
16
|
+
DNA = "DNA"
|
|
17
|
+
DSDNA = "DSDNA"
|
|
18
|
+
SSDNA = "SSDNA"
|
|
19
|
+
RNA = "RNA"
|
|
20
|
+
DSRNA = "DSRNA"
|
|
21
|
+
SSRNA = "SSRNA"
|
|
22
|
+
SSRNA_POSITIVE = "SSRNA_POSITIVE"
|
|
23
|
+
SSRNA_NEGATIVE = "SSRNA_NEGATIVE"
|
|
24
|
+
SSRNA_RT = "SSRNA_RT"
|
|
25
|
+
DSDNA_RT = "DSDNA_RT"
|
|
26
|
+
MIXED = "MIXED"
|
|
27
|
+
UNCHARACTERIZED = "UNCHARACTERIZED"
|
|
28
|
+
|
|
29
|
+
# Set metadata after class creation
|
|
30
|
+
ViralGenomeTypeEnum._metadata = {
|
|
31
|
+
"DNA": {'description': 'Viral genome composed of DNA', 'meaning': 'CHEBI:16991'},
|
|
32
|
+
"DSDNA": {'description': 'Double-stranded DNA viral genome', 'meaning': 'NCIT:C14348', 'aliases': ['Baltimore Group I', 'Group I']},
|
|
33
|
+
"SSDNA": {'description': 'Single-stranded DNA viral genome', 'meaning': 'NCIT:C14350', 'aliases': ['Baltimore Group II', 'Group II']},
|
|
34
|
+
"RNA": {'description': 'Viral genome composed of RNA', 'meaning': 'CHEBI:33697'},
|
|
35
|
+
"DSRNA": {'description': 'Double-stranded RNA viral genome', 'meaning': 'NCIT:C28518', 'aliases': ['Baltimore Group III', 'Group III']},
|
|
36
|
+
"SSRNA": {'description': 'Single-stranded RNA viral genome', 'meaning': 'NCIT:C95939'},
|
|
37
|
+
"SSRNA_POSITIVE": {'description': 'Positive-sense single-stranded RNA viral genome', 'meaning': 'NCIT:C14351', 'aliases': ['Baltimore Group IV', 'Group IV', '(+)ssRNA']},
|
|
38
|
+
"SSRNA_NEGATIVE": {'description': 'Negative-sense single-stranded RNA viral genome', 'meaning': 'NCIT:C14346', 'aliases': ['Baltimore Group V', 'Group V', '(-)ssRNA']},
|
|
39
|
+
"SSRNA_RT": {'description': 'Single-stranded RNA viruses that replicate through a DNA intermediate (retroviruses)', 'meaning': 'NCIT:C14347', 'aliases': ['Baltimore Group VI', 'Group VI', 'Retroviruses']},
|
|
40
|
+
"DSDNA_RT": {'description': 'Double-stranded DNA viruses that replicate through a single-stranded RNA intermediate (pararetroviruses)', 'meaning': 'NCIT:C14349', 'aliases': ['Baltimore Group VII', 'Group VII', 'Pararetroviruses']},
|
|
41
|
+
"MIXED": {'description': 'Mixed or hybrid viral genome type', 'meaning': 'NCIT:C128790'},
|
|
42
|
+
"UNCHARACTERIZED": {'description': 'Viral genome type not yet characterized', 'meaning': 'NCIT:C17998'},
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
__all__ = [
|
|
46
|
+
"ViralGenomeTypeEnum",
|
|
47
|
+
]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Auto-generated package."""
|