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.

Files changed (248) hide show
  1. valuesets/__init__.py +7 -0
  2. valuesets/_version.py +8 -0
  3. valuesets/datamodel/valuesets.py +13796 -0
  4. valuesets/datamodel/valuesets_dataclass.py +24503 -0
  5. valuesets/datamodel/valuesets_pydantic.py +13796 -0
  6. valuesets/enums/__init__.py +590 -0
  7. valuesets/enums/academic/__init__.py +1 -0
  8. valuesets/enums/academic/research.py +559 -0
  9. valuesets/enums/analytical_chemistry/__init__.py +1 -0
  10. valuesets/enums/analytical_chemistry/mass_spectrometry.py +198 -0
  11. valuesets/enums/bio/__init__.py +1 -0
  12. valuesets/enums/bio/biological_colors.py +238 -0
  13. valuesets/enums/bio/cell_cycle.py +180 -0
  14. valuesets/enums/bio/currency_chemicals.py +52 -0
  15. valuesets/enums/bio/developmental_stages.py +103 -0
  16. valuesets/enums/bio/genome_features.py +182 -0
  17. valuesets/enums/bio/genomics.py +91 -0
  18. valuesets/enums/bio/go_aspect.py +32 -0
  19. valuesets/enums/bio/go_causality.py +58 -0
  20. valuesets/enums/bio/go_evidence.py +129 -0
  21. valuesets/enums/bio/human_developmental_stages.py +62 -0
  22. valuesets/enums/bio/insdc_geographic_locations.py +591 -0
  23. valuesets/enums/bio/insdc_missing_values.py +49 -0
  24. valuesets/enums/bio/lipid_categories.py +67 -0
  25. valuesets/enums/bio/mouse_developmental_stages.py +62 -0
  26. valuesets/enums/bio/plant_biology.py +86 -0
  27. valuesets/enums/bio/plant_developmental_stages.py +54 -0
  28. valuesets/enums/bio/plant_sex.py +81 -0
  29. valuesets/enums/bio/protein_evidence.py +61 -0
  30. valuesets/enums/bio/proteomics_standards.py +123 -0
  31. valuesets/enums/bio/psi_mi.py +306 -0
  32. valuesets/enums/bio/relationship_to_oxygen.py +37 -0
  33. valuesets/enums/bio/sequence_alphabets.py +449 -0
  34. valuesets/enums/bio/sequence_chemistry.py +357 -0
  35. valuesets/enums/bio/sequencing_platforms.py +302 -0
  36. valuesets/enums/bio/structural_biology.py +320 -0
  37. valuesets/enums/bio/taxonomy.py +238 -0
  38. valuesets/enums/bio/trophic_levels.py +85 -0
  39. valuesets/enums/bio/uniprot_species.py +344 -0
  40. valuesets/enums/bio/viral_genome_types.py +47 -0
  41. valuesets/enums/bioprocessing/__init__.py +1 -0
  42. valuesets/enums/bioprocessing/scale_up.py +249 -0
  43. valuesets/enums/business/__init__.py +1 -0
  44. valuesets/enums/business/human_resources.py +275 -0
  45. valuesets/enums/business/industry_classifications.py +181 -0
  46. valuesets/enums/business/management_operations.py +228 -0
  47. valuesets/enums/business/organizational_structures.py +236 -0
  48. valuesets/enums/business/quality_management.py +181 -0
  49. valuesets/enums/business/supply_chain.py +232 -0
  50. valuesets/enums/chemistry/__init__.py +1 -0
  51. valuesets/enums/chemistry/chemical_entities.py +315 -0
  52. valuesets/enums/chemistry/reaction_directionality.py +65 -0
  53. valuesets/enums/chemistry/reactions.py +256 -0
  54. valuesets/enums/clinical/__init__.py +1 -0
  55. valuesets/enums/clinical/nih_demographics.py +177 -0
  56. valuesets/enums/clinical/phenopackets.py +254 -0
  57. valuesets/enums/common_value_sets.py +8791 -0
  58. valuesets/enums/computing/__init__.py +1 -0
  59. valuesets/enums/computing/file_formats.py +294 -0
  60. valuesets/enums/computing/maturity_levels.py +196 -0
  61. valuesets/enums/computing/mime_types.py +227 -0
  62. valuesets/enums/confidence_levels.py +168 -0
  63. valuesets/enums/contributor.py +30 -0
  64. valuesets/enums/core.py +42 -0
  65. valuesets/enums/data/__init__.py +1 -0
  66. valuesets/enums/data/data_absent_reason.py +53 -0
  67. valuesets/enums/data_science/__init__.py +1 -0
  68. valuesets/enums/data_science/binary_classification.py +87 -0
  69. valuesets/enums/data_science/emotion_classification.py +66 -0
  70. valuesets/enums/data_science/priority_severity.py +73 -0
  71. valuesets/enums/data_science/quality_control.py +46 -0
  72. valuesets/enums/data_science/sentiment_analysis.py +50 -0
  73. valuesets/enums/data_science/text_classification.py +97 -0
  74. valuesets/enums/demographics.py +206 -0
  75. valuesets/enums/ecological_interactions.py +151 -0
  76. valuesets/enums/energy/__init__.py +1 -0
  77. valuesets/enums/energy/energy.py +343 -0
  78. valuesets/enums/energy/fossil_fuels.py +29 -0
  79. valuesets/enums/energy/nuclear/__init__.py +1 -0
  80. valuesets/enums/energy/nuclear/nuclear_facilities.py +195 -0
  81. valuesets/enums/energy/nuclear/nuclear_fuel_cycle.py +96 -0
  82. valuesets/enums/energy/nuclear/nuclear_fuels.py +175 -0
  83. valuesets/enums/energy/nuclear/nuclear_operations.py +191 -0
  84. valuesets/enums/energy/nuclear/nuclear_regulatory.py +188 -0
  85. valuesets/enums/energy/nuclear/nuclear_safety.py +164 -0
  86. valuesets/enums/energy/nuclear/nuclear_waste.py +158 -0
  87. valuesets/enums/energy/nuclear/reactor_types.py +163 -0
  88. valuesets/enums/environmental_health/__init__.py +1 -0
  89. valuesets/enums/environmental_health/exposures.py +265 -0
  90. valuesets/enums/geography/__init__.py +1 -0
  91. valuesets/enums/geography/geographic_codes.py +741 -0
  92. valuesets/enums/health/__init__.py +12 -0
  93. valuesets/enums/health/vaccination.py +98 -0
  94. valuesets/enums/health.py +36 -0
  95. valuesets/enums/health_base.py +36 -0
  96. valuesets/enums/healthcare.py +45 -0
  97. valuesets/enums/industry/__init__.py +1 -0
  98. valuesets/enums/industry/extractive_industry.py +94 -0
  99. valuesets/enums/industry/mining.py +388 -0
  100. valuesets/enums/industry/safety_colors.py +201 -0
  101. valuesets/enums/investigation.py +27 -0
  102. valuesets/enums/materials_science/__init__.py +1 -0
  103. valuesets/enums/materials_science/characterization_methods.py +112 -0
  104. valuesets/enums/materials_science/crystal_structures.py +76 -0
  105. valuesets/enums/materials_science/material_properties.py +119 -0
  106. valuesets/enums/materials_science/material_types.py +104 -0
  107. valuesets/enums/materials_science/pigments_dyes.py +198 -0
  108. valuesets/enums/materials_science/synthesis_methods.py +109 -0
  109. valuesets/enums/medical/__init__.py +1 -0
  110. valuesets/enums/medical/clinical.py +277 -0
  111. valuesets/enums/medical/neuroimaging.py +119 -0
  112. valuesets/enums/mining_processing.py +302 -0
  113. valuesets/enums/physics/__init__.py +1 -0
  114. valuesets/enums/physics/states_of_matter.py +46 -0
  115. valuesets/enums/social/__init__.py +1 -0
  116. valuesets/enums/social/person_status.py +29 -0
  117. valuesets/enums/spatial/__init__.py +1 -0
  118. valuesets/enums/spatial/spatial_qualifiers.py +246 -0
  119. valuesets/enums/statistics/__init__.py +5 -0
  120. valuesets/enums/statistics/prediction_outcomes.py +31 -0
  121. valuesets/enums/statistics.py +31 -0
  122. valuesets/enums/time/__init__.py +1 -0
  123. valuesets/enums/time/temporal.py +254 -0
  124. valuesets/enums/units/__init__.py +1 -0
  125. valuesets/enums/units/measurements.py +310 -0
  126. valuesets/enums/visual/__init__.py +1 -0
  127. valuesets/enums/visual/colors.py +376 -0
  128. valuesets/generators/__init__.py +19 -0
  129. valuesets/generators/auto_slot_injector.py +280 -0
  130. valuesets/generators/enhanced_pydantic_generator.py +100 -0
  131. valuesets/generators/enum_slot_generator.py +201 -0
  132. valuesets/generators/modular_rich_generator.py +353 -0
  133. valuesets/generators/prefix_standardizer.py +198 -0
  134. valuesets/generators/rich_enum.py +127 -0
  135. valuesets/generators/rich_pydantic_generator.py +310 -0
  136. valuesets/generators/smart_slot_syncer.py +428 -0
  137. valuesets/generators/sssom_generator.py +394 -0
  138. valuesets/merged/merged_hierarchy.yaml +21649 -0
  139. valuesets/schema/README.md +3 -0
  140. valuesets/schema/academic/research.yaml +911 -0
  141. valuesets/schema/analytical_chemistry/mass_spectrometry.yaml +206 -0
  142. valuesets/schema/bio/bio_entities.yaml +364 -0
  143. valuesets/schema/bio/biological_colors.yaml +434 -0
  144. valuesets/schema/bio/cell_cycle.yaml +309 -0
  145. valuesets/schema/bio/currency_chemicals.yaml +70 -0
  146. valuesets/schema/bio/developmental_stages.yaml +226 -0
  147. valuesets/schema/bio/genome_features.yaml +342 -0
  148. valuesets/schema/bio/genomics.yaml +101 -0
  149. valuesets/schema/bio/go_aspect.yaml +39 -0
  150. valuesets/schema/bio/go_causality.yaml +119 -0
  151. valuesets/schema/bio/go_evidence.yaml +215 -0
  152. valuesets/schema/bio/insdc_geographic_locations.yaml +911 -0
  153. valuesets/schema/bio/insdc_missing_values.yaml +85 -0
  154. valuesets/schema/bio/lipid_categories.yaml +72 -0
  155. valuesets/schema/bio/plant_biology.yaml +125 -0
  156. valuesets/schema/bio/plant_developmental_stages.yaml +77 -0
  157. valuesets/schema/bio/plant_sex.yaml +108 -0
  158. valuesets/schema/bio/protein_evidence.yaml +63 -0
  159. valuesets/schema/bio/proteomics_standards.yaml +116 -0
  160. valuesets/schema/bio/psi_mi.yaml +400 -0
  161. valuesets/schema/bio/relationship_to_oxygen.yaml +46 -0
  162. valuesets/schema/bio/sequence_alphabets.yaml +1168 -0
  163. valuesets/schema/bio/sequence_chemistry.yaml +477 -0
  164. valuesets/schema/bio/sequencing_platforms.yaml +515 -0
  165. valuesets/schema/bio/structural_biology.yaml +428 -0
  166. valuesets/schema/bio/taxonomy.yaml +453 -0
  167. valuesets/schema/bio/trophic_levels.yaml +118 -0
  168. valuesets/schema/bio/uniprot_species.yaml +1209 -0
  169. valuesets/schema/bio/viral_genome_types.yaml +99 -0
  170. valuesets/schema/bioprocessing/scale_up.yaml +458 -0
  171. valuesets/schema/business/human_resources.yaml +752 -0
  172. valuesets/schema/business/industry_classifications.yaml +448 -0
  173. valuesets/schema/business/management_operations.yaml +602 -0
  174. valuesets/schema/business/organizational_structures.yaml +645 -0
  175. valuesets/schema/business/quality_management.yaml +502 -0
  176. valuesets/schema/business/supply_chain.yaml +688 -0
  177. valuesets/schema/chemistry/chemical_entities.yaml +639 -0
  178. valuesets/schema/chemistry/reaction_directionality.yaml +60 -0
  179. valuesets/schema/chemistry/reactions.yaml +442 -0
  180. valuesets/schema/clinical/nih_demographics.yaml +285 -0
  181. valuesets/schema/clinical/phenopackets.yaml +429 -0
  182. valuesets/schema/computing/file_formats.yaml +631 -0
  183. valuesets/schema/computing/maturity_levels.yaml +229 -0
  184. valuesets/schema/computing/mime_types.yaml +266 -0
  185. valuesets/schema/confidence_levels.yaml +206 -0
  186. valuesets/schema/contributor.yaml +30 -0
  187. valuesets/schema/core.yaml +55 -0
  188. valuesets/schema/data/data_absent_reason.yaml +82 -0
  189. valuesets/schema/data_science/binary_classification.yaml +125 -0
  190. valuesets/schema/data_science/emotion_classification.yaml +109 -0
  191. valuesets/schema/data_science/priority_severity.yaml +122 -0
  192. valuesets/schema/data_science/quality_control.yaml +68 -0
  193. valuesets/schema/data_science/sentiment_analysis.yaml +81 -0
  194. valuesets/schema/data_science/text_classification.yaml +135 -0
  195. valuesets/schema/demographics.yaml +238 -0
  196. valuesets/schema/ecological_interactions.yaml +298 -0
  197. valuesets/schema/energy/energy.yaml +595 -0
  198. valuesets/schema/energy/fossil_fuels.yaml +28 -0
  199. valuesets/schema/energy/nuclear/nuclear_facilities.yaml +463 -0
  200. valuesets/schema/energy/nuclear/nuclear_fuel_cycle.yaml +82 -0
  201. valuesets/schema/energy/nuclear/nuclear_fuels.yaml +421 -0
  202. valuesets/schema/energy/nuclear/nuclear_operations.yaml +480 -0
  203. valuesets/schema/energy/nuclear/nuclear_regulatory.yaml +200 -0
  204. valuesets/schema/energy/nuclear/nuclear_safety.yaml +352 -0
  205. valuesets/schema/energy/nuclear/nuclear_waste.yaml +332 -0
  206. valuesets/schema/energy/nuclear/reactor_types.yaml +394 -0
  207. valuesets/schema/environmental_health/exposures.yaml +355 -0
  208. valuesets/schema/generated_slots.yaml +1828 -0
  209. valuesets/schema/geography/geographic_codes.yaml +1018 -0
  210. valuesets/schema/health/vaccination.yaml +102 -0
  211. valuesets/schema/health.yaml +38 -0
  212. valuesets/schema/healthcare.yaml +53 -0
  213. valuesets/schema/industry/extractive_industry.yaml +89 -0
  214. valuesets/schema/industry/mining.yaml +888 -0
  215. valuesets/schema/industry/safety_colors.yaml +375 -0
  216. valuesets/schema/investigation.yaml +64 -0
  217. valuesets/schema/materials_science/characterization_methods.yaml +193 -0
  218. valuesets/schema/materials_science/crystal_structures.yaml +138 -0
  219. valuesets/schema/materials_science/material_properties.yaml +135 -0
  220. valuesets/schema/materials_science/material_types.yaml +151 -0
  221. valuesets/schema/materials_science/pigments_dyes.yaml +465 -0
  222. valuesets/schema/materials_science/synthesis_methods.yaml +186 -0
  223. valuesets/schema/medical/clinical.yaml +610 -0
  224. valuesets/schema/medical/neuroimaging.yaml +325 -0
  225. valuesets/schema/mining_processing.yaml +295 -0
  226. valuesets/schema/physics/states_of_matter.yaml +46 -0
  227. valuesets/schema/slot_mixins.yaml +143 -0
  228. valuesets/schema/social/person_status.yaml +28 -0
  229. valuesets/schema/spatial/spatial_qualifiers.yaml +466 -0
  230. valuesets/schema/statistics/prediction_outcomes.yaml +26 -0
  231. valuesets/schema/statistics.yaml +34 -0
  232. valuesets/schema/time/temporal.yaml +435 -0
  233. valuesets/schema/types.yaml +15 -0
  234. valuesets/schema/units/measurements.yaml +675 -0
  235. valuesets/schema/valuesets.yaml +100 -0
  236. valuesets/schema/visual/colors.yaml +778 -0
  237. valuesets/utils/__init__.py +6 -0
  238. valuesets/utils/comparison.py +102 -0
  239. valuesets/utils/expand_dynamic_enums.py +414 -0
  240. valuesets/utils/mapping_utils.py +236 -0
  241. valuesets/validators/__init__.py +11 -0
  242. valuesets/validators/enum_evaluator.py +669 -0
  243. valuesets/validators/oak_config.yaml +70 -0
  244. valuesets/validators/validate_with_ols.py +241 -0
  245. valuesets-0.3.1.dist-info/METADATA +395 -0
  246. valuesets-0.3.1.dist-info/RECORD +248 -0
  247. valuesets-0.3.1.dist-info/WHEEL +4 -0
  248. valuesets-0.3.1.dist-info/licenses/LICENSE +201 -0
@@ -0,0 +1,85 @@
1
+ name: insdc_missing_values
2
+ id: https://w3id.org/linkml/valuesets/bio/insdc_missing_values
3
+ prefixes:
4
+ NCIT: http://purl.obolibrary.org/obo/NCIT_
5
+ OBI: http://purl.obolibrary.org/obo/OBI_
6
+ IAO: http://purl.obolibrary.org/obo/IAO_
7
+ SIO: http://semanticscience.org/resource/SIO_
8
+ insdc: https://www.insdc.org/controlled-vocabulary/missing-value/
9
+ valuesets: https://w3id.org/valuesets/
10
+ default_prefix: valuesets
11
+ slots:
12
+ insdc_missing_value:
13
+ description: INSDC (International Nucleotide Sequence Database Collaboration) controlled vocabulary for missing values
14
+ in sequence records
15
+ range: InsdcMissingValueEnum
16
+ enums:
17
+ InsdcMissingValueEnum:
18
+ description: INSDC (International Nucleotide Sequence Database Collaboration) controlled vocabulary for missing values
19
+ in sequence records
20
+ permissible_values:
21
+ NOT_APPLICABLE:
22
+ description: Information is inappropriate to report, can indicate that the standard itself fails to model or represent
23
+ the information appropriately
24
+ meaning: NCIT:C48660
25
+ title: not applicable
26
+ MISSING:
27
+ description: Not stated explicitly or implied by any other means
28
+ meaning: NCIT:C54031
29
+ title: missing
30
+ NOT_COLLECTED:
31
+ description: Information of an expected format was not given because it has never been collected
32
+ meaning: NCIT:C142610
33
+ title: Missing Data
34
+ annotations:
35
+ note: NCIT:C142610 represents Missing Data which encompasses data not collected
36
+ NOT_PROVIDED:
37
+ description: Information of an expected format was not given, a value may be given at the later stage
38
+ meaning: NCIT:C126101
39
+ title: Not Available
40
+ annotations:
41
+ note: Using NCIT:C126101 (Not Available) as a general term for data not provided
42
+ RESTRICTED_ACCESS:
43
+ description: Information exists but cannot be released openly because of privacy concerns
44
+ meaning: NCIT:C67110
45
+ title: Data Not Releasable
46
+ annotations:
47
+ note: NCIT:C67110 represents Data Not Releasable due to confidentiality
48
+ MISSING_CONTROL_SAMPLE:
49
+ description: Information is not applicable to control samples, negative control samples (e.g. blank sample or clear
50
+ sample)
51
+ annotations:
52
+ note: No specific ontology term found for missing control sample data
53
+ MISSING_SAMPLE_GROUP:
54
+ description: Information can not be provided for a sample group where a selection of samples is used to represent
55
+ a species, location or some other attribute/metric
56
+ annotations:
57
+ note: No specific ontology term found for missing sample group data
58
+ MISSING_SYNTHETIC_CONSTRUCT:
59
+ description: Information does not exist for a synthetic construct
60
+ annotations:
61
+ note: No specific ontology term found for missing synthetic construct data
62
+ MISSING_LAB_STOCK:
63
+ description: Information is not collected for a lab stock and its cultivation, e.g. stock centers, culture collections,
64
+ seed banks
65
+ annotations:
66
+ note: No specific ontology term found for missing lab stock data
67
+ MISSING_THIRD_PARTY_DATA:
68
+ description: Information has not been revealed by another party
69
+ meaning: NCIT:C67329
70
+ title: Source Data Not Available
71
+ annotations:
72
+ note: NCIT:C67329 represents Source Data Not Available
73
+ MISSING_DATA_AGREEMENT_ESTABLISHED_PRE_2023:
74
+ description: Information can not be reported due to a data agreement established before metadata standards were introduced
75
+ in 2023
76
+ annotations:
77
+ note: No specific ontology term for data missing due to pre-2023 agreements
78
+ MISSING_ENDANGERED_SPECIES:
79
+ description: Information can not be reported due to endangered species concerns
80
+ annotations:
81
+ note: No specific ontology term for data withheld due to endangered species
82
+ MISSING_HUMAN_IDENTIFIABLE:
83
+ description: Information can not be reported due to identifiable human data concerns
84
+ annotations:
85
+ note: No specific ontology term for data withheld due to human identifiability
@@ -0,0 +1,72 @@
1
+ name: lipid_categories
2
+ title: Lipid Categories
3
+ description: Major lipid categories from SwissLipids classification
4
+ id: https://w3id.org/valuesets/bio/lipid_categories
5
+ imports:
6
+ - ../core
7
+ prefixes:
8
+ linkml: https://w3id.org/linkml/
9
+ SLM: https://swisslipids.org/rdf/SLM_
10
+ CHEBI: http://purl.obolibrary.org/obo/CHEBI_
11
+ valuesets: https://w3id.org/valuesets/
12
+ default_prefix: valuesets
13
+ slots:
14
+ lipid_category:
15
+ description: Major categories of lipids based on SwissLipids classification
16
+ range: LipidCategory
17
+ enums:
18
+ LipidCategory:
19
+ title: Lipid Category
20
+ description: Major categories of lipids based on SwissLipids classification
21
+ permissible_values:
22
+ LIPID:
23
+ description: Lipid
24
+ meaning: CHEBI:18059
25
+ broad_mappings:
26
+ - SLM:000389145
27
+ FATTY_ACYLS_AND_DERIVATIVES:
28
+ description: Fatty acyls and derivatives
29
+ meaning: CHEBI:24027
30
+ aliases:
31
+ - fatty-acyl group
32
+ broad_mappings:
33
+ - SLM:000390054
34
+ GLYCEROLIPIDS:
35
+ description: Glycerolipids
36
+ meaning: CHEBI:35741
37
+ aliases:
38
+ - glycerolipid
39
+ exact_mappings:
40
+ - SLM:000117142
41
+ GLYCEROPHOSPHOLIPIDS:
42
+ description: Glycerophospholipids
43
+ meaning: CHEBI:37739
44
+ aliases:
45
+ - glycerophospholipid
46
+ exact_mappings:
47
+ - SLM:000001193
48
+ SPHINGOLIPIDS:
49
+ description: Sphingolipids
50
+ meaning: CHEBI:26739
51
+ aliases:
52
+ - sphingolipid
53
+ exact_mappings:
54
+ - SLM:000000525
55
+ STEROIDS_AND_DERIVATIVES:
56
+ description: Steroids and derivatives
57
+ meaning: CHEBI:35341
58
+ aliases:
59
+ - steroid
60
+ exact_mappings:
61
+ - SLM:000500463
62
+ narrow_mappings:
63
+ - CHEBI:15889
64
+ PRENOL_LIPIDS:
65
+ description: Prenol Lipids
66
+ meaning: CHEBI:24913
67
+ aliases:
68
+ - isoprenoid
69
+ exact_mappings:
70
+ - SLM:000508860
71
+ narrow_mappings:
72
+ - CHEBI:16019
@@ -0,0 +1,125 @@
1
+ name: plant_biology
2
+ title: Plant Biology Value Sets
3
+ description: 'Value sets related to plant biology, including reproductive systems,
4
+
5
+ breeding systems, and other plant-specific characteristics.'
6
+ id: https://w3id.org/linkml/valuesets/bio/plant_biology
7
+ imports:
8
+ - linkml:types
9
+ prefixes:
10
+ valuesets: https://w3id.org/valuesets/
11
+ GSSO: http://purl.obolibrary.org/obo/GSSO_
12
+ PATO: http://purl.obolibrary.org/obo/PATO_
13
+ PO: http://purl.obolibrary.org/obo/PO_
14
+ TO: http://purl.obolibrary.org/obo/TO_
15
+ ECOCORE: http://purl.obolibrary.org/obo/ECOCORE_
16
+ default_prefix: valuesets
17
+ slots:
18
+ plant_sexual_system:
19
+ description: Sexual systems in plants, describing the distribution and types of reproductive organs (flowers) within and
20
+ among individual plants
21
+ range: PlantSexualSystem
22
+ enums:
23
+ PlantSexualSystem:
24
+ description: 'Sexual systems in plants, describing the distribution and types of
25
+
26
+ reproductive organs (flowers) within and among individual plants.'
27
+ permissible_values:
28
+ ANDRODIOECIOUS:
29
+ text: ANDRODIOECIOUS
30
+ meaning: GSSO:011874
31
+ description: A sexual system in which males and hermaphrodites coexist in a population
32
+ ANDROECIOUS:
33
+ text: ANDROECIOUS
34
+ description: Having only male flowers (staminate flowers)
35
+ ANDROGYNOMONOECIOUS:
36
+ text: ANDROGYNOMONOECIOUS
37
+ description: Having male, female, and bisexual flowers on the same plant
38
+ ANDROGYNOUS:
39
+ text: ANDROGYNOUS
40
+ description: Having both male and female reproductive organs; hermaphroditic
41
+ ANDROMONOECIOUS:
42
+ text: ANDROMONOECIOUS
43
+ meaning: GSSO:011870
44
+ description: Having both male and hermaphroditic flowers on the same plant
45
+ BISEXUAL:
46
+ text: BISEXUAL
47
+ description: Having both male and female reproductive organs in the same flower
48
+ DICHOGAMOUS:
49
+ text: DICHOGAMOUS
50
+ description: Having male and female organs that mature at different times
51
+ DICLINOUS:
52
+ text: DICLINOUS
53
+ description: Having unisexual flowers (either male or female, not both)
54
+ DIOECIOUS:
55
+ text: DIOECIOUS
56
+ meaning: GSSO:011872
57
+ description: Having male and female flowers on separate plants
58
+ GYNODIOECIOUS:
59
+ text: GYNODIOECIOUS
60
+ meaning: GSSO:011873
61
+ description: Having female and hermaphroditic plants in the same population
62
+ GYNOECIOUS:
63
+ text: GYNOECIOUS
64
+ description: Having only female flowers (pistillate flowers)
65
+ GYNOMONOECIOUS:
66
+ text: GYNOMONOECIOUS
67
+ meaning: GSSO:011869
68
+ description: Having both female and hermaphroditic flowers on the same plant
69
+ HERMAPHRODITIC:
70
+ text: HERMAPHRODITIC
71
+ description: Having both male and female reproductive organs
72
+ meaning: PATO:0001340
73
+ title: hermaphrodite
74
+ IMPERFECT:
75
+ text: IMPERFECT
76
+ description: Flowers lacking either stamens or pistils (unisexual)
77
+ MONOCLINOUS:
78
+ text: MONOCLINOUS
79
+ description: Having bisexual flowers (both male and female organs)
80
+ MONOECIOUS:
81
+ text: MONOECIOUS
82
+ meaning: GSSO:011868
83
+ description: Having separate male and female flowers on the same plant
84
+ PERFECT:
85
+ text: PERFECT
86
+ description: Flowers having both stamens and pistils (bisexual)
87
+ POLYGAMODIOECIOUS:
88
+ text: POLYGAMODIOECIOUS
89
+ description: Having male, female, and bisexual flowers on separate plants
90
+ POLYGAMOMONOECIOUS:
91
+ text: POLYGAMOMONOECIOUS
92
+ description: Having male, female, and bisexual flowers on the same plant
93
+ POLYGAMOUS:
94
+ text: POLYGAMOUS
95
+ description: Having male, female, and bisexual flowers
96
+ PROTANDROUS:
97
+ text: PROTANDROUS
98
+ meaning: PATO:0040053
99
+ description: Starting as male and changing to female at a later stage
100
+ PROTOGYNOUS:
101
+ text: PROTOGYNOUS
102
+ meaning: PATO:0040052
103
+ description: Starting as female and changing to male at a later stage
104
+ SUBANDROECIOUS:
105
+ text: SUBANDROECIOUS
106
+ description: Predominantly male plants with occasional hermaphroditic flowers
107
+ SUBDIOECIOUS:
108
+ text: SUBDIOECIOUS
109
+ description: Predominantly dioecious with occasional hermaphroditic individuals
110
+ SUBGYNOECIOUS:
111
+ text: SUBGYNOECIOUS
112
+ description: Predominantly female plants with occasional hermaphroditic flowers
113
+ SYNOECIOUS:
114
+ text: SYNOECIOUS
115
+ description: Having male and female organs in the same structure
116
+ TRIMONOECIOUS:
117
+ text: TRIMONOECIOUS
118
+ description: Having male, female, and bisexual flowers on the same plant
119
+ TRIOECIOUS:
120
+ text: TRIOECIOUS
121
+ meaning: GSSO:011875
122
+ description: Having males, females, and hermaphrodites in the same population
123
+ UNISEXUAL:
124
+ text: UNISEXUAL
125
+ description: Having only one sex (either male or female reproductive organs)
@@ -0,0 +1,77 @@
1
+ name: plant_developmental_stages
2
+ title: Plant Developmental Stages Value Sets
3
+ description: Value sets for plant developmental stages from germination through senescence
4
+ id: https://w3id.org/common-value-sets/plant_developmental_stages
5
+ imports:
6
+ - linkml:types
7
+ prefixes:
8
+ CVS: https://w3id.org/common-value-sets/
9
+ linkml: https://w3id.org/linkml/
10
+ PO: http://purl.obolibrary.org/obo/PO_
11
+ valuesets: https://w3id.org/valuesets/
12
+ default_prefix: valuesets
13
+ slots:
14
+ plant_developmental_stage:
15
+ description: Major developmental stages in the plant life cycle, from seed germination through senescence
16
+ range: PlantDevelopmentalStage
17
+ enums:
18
+ PlantDevelopmentalStage:
19
+ description: Major developmental stages in the plant life cycle, from seed germination through senescence. Based on the
20
+ Plant Ontology (PO) standardized stages.
21
+ permissible_values:
22
+ SEED_GERMINATION_STAGE:
23
+ description: Stage beginning with seed imbibition and ending with radicle emergence
24
+ meaning: PO:0007057
25
+ SEEDLING_STAGE:
26
+ description: Stage from germination until development of first adult vascular leaf
27
+ meaning: PO:0007131
28
+ aliases:
29
+ - seedling development stage
30
+ VEGETATIVE_GROWTH_STAGE:
31
+ description: Stage of growth before reproductive structure formation
32
+ meaning: PO:0007134
33
+ aliases:
34
+ - sporophyte vegetative stage
35
+ FLOWERING_STAGE:
36
+ description: Stage when flowers open with pollen release and/or receptive stigma
37
+ meaning: PO:0007616
38
+ FRUIT_DEVELOPMENT_STAGE:
39
+ description: Stage of fruit formation through ripening
40
+ meaning: PO:0001002
41
+ SEED_DEVELOPMENT_STAGE:
42
+ description: Stage from fertilization to mature seed
43
+ meaning: PO:0001170
44
+ SENESCENCE_STAGE:
45
+ description: Stage of aging with loss of function and organ deterioration
46
+ meaning: PO:0007017
47
+ aliases:
48
+ - sporophyte senescent stage
49
+ DORMANCY_STAGE:
50
+ description: Stage of suspended physiological activity and growth
51
+ meaning: PO:0007132
52
+ aliases:
53
+ - sporophyte dormant stage
54
+ EMBRYO_DEVELOPMENT_STAGE:
55
+ description: Stage from zygote first division to seed germination initiation
56
+ meaning: PO:0007631
57
+ aliases:
58
+ - plant embryo development stage
59
+ ROOT_DEVELOPMENT_STAGE:
60
+ description: Stages in root growth and development
61
+ meaning: PO:0007520
62
+ LEAF_DEVELOPMENT_STAGE:
63
+ description: Stages in leaf formation and expansion
64
+ meaning: PO:0001050
65
+ REPRODUCTIVE_STAGE:
66
+ description: Stage from reproductive structure initiation to senescence onset
67
+ meaning: PO:0007130
68
+ aliases:
69
+ - sporophyte reproductive stage
70
+ MATURITY_STAGE:
71
+ description: Stage when plant or plant embryo reaches full development
72
+ meaning: PO:0001081
73
+ aliases:
74
+ - mature plant embryo stage
75
+ POST_HARVEST_STAGE:
76
+ description: Stage after harvest when plant parts are detached from parent plant
77
+ default_range: string
@@ -0,0 +1,108 @@
1
+ name: plant_sex
2
+ id: https://w3id.org/linkml/valuesets/bio/plant_sex
3
+ prefixes:
4
+ GSSO: http://purl.obolibrary.org/obo/GSSO_
5
+ PATO: http://purl.obolibrary.org/obo/PATO_
6
+ UBERON: http://purl.obolibrary.org/obo/UBERON_
7
+ ECOCORE: http://purl.obolibrary.org/obo/ECOCORE_
8
+ mixs: https://genomicsstandardsconsortium.github.io/mixs/
9
+ valuesets: https://w3id.org/valuesets/
10
+ default_prefix: valuesets
11
+ slots:
12
+ plant_sex:
13
+ description: Plant reproductive and sexual system types
14
+ range: PlantSexEnum
15
+ enums:
16
+ PlantSexEnum:
17
+ description: Plant reproductive and sexual system types
18
+ permissible_values:
19
+ ANDRODIOECIOUS:
20
+ description: Having male and hermaphrodite flowers on separate plants
21
+ title: Androdioecious
22
+ ANDROECIOUS:
23
+ description: Having only male flowers
24
+ title: Androecious
25
+ ANDROGYNOMONOECIOUS:
26
+ description: Having male, female, and hermaphrodite flowers on the same plant
27
+ title: Androgynomonoecious
28
+ ANDROGYNOUS:
29
+ description: Having both male and female reproductive organs in the same flower
30
+ title: Androgynous
31
+ ANDROMONOECIOUS:
32
+ description: Having male and hermaphrodite flowers on the same plant
33
+ title: Andromonoecious
34
+ BISEXUAL:
35
+ description: Having both male and female reproductive organs
36
+ title: Bisexual
37
+ DICHOGAMOUS:
38
+ description: Male and female organs mature at different times
39
+ title: Dichogamous
40
+ DICLINOUS:
41
+ description: Having male and female reproductive organs in separate flowers
42
+ title: Diclinous
43
+ DIOECIOUS:
44
+ description: Having male and female flowers on separate plants
45
+ meaning: GSSO:011872
46
+ title: Dioecious
47
+ GYNODIOECIOUS:
48
+ description: Having female and hermaphrodite flowers on separate plants
49
+ title: Gynodioecious
50
+ GYNOECIOUS:
51
+ description: Having only female flowers
52
+ title: Gynoecious
53
+ GYNOMONOECIOUS:
54
+ description: Having female and hermaphrodite flowers on the same plant
55
+ title: Gynomonoecious
56
+ HERMAPHRODITIC:
57
+ description: Having both male and female reproductive organs
58
+ meaning: UBERON:0007197
59
+ title: hermaphroditic organism
60
+ IMPERFECT:
61
+ description: Flower lacking either male or female reproductive organs
62
+ title: Imperfect
63
+ MONOCLINOUS:
64
+ description: Having both male and female reproductive organs in the same flower
65
+ title: Monoclinous
66
+ MONOECIOUS:
67
+ description: Having male and female flowers on the same plant
68
+ meaning: GSSO:011868
69
+ title: Monoecious
70
+ PERFECT:
71
+ description: Flower having both male and female reproductive organs
72
+ title: Perfect
73
+ POLYGAMODIOECIOUS:
74
+ description: Having male, female, and hermaphrodite flowers on separate plants
75
+ title: Polygamodioecious
76
+ POLYGAMOMONOECIOUS:
77
+ description: Having male, female, and hermaphrodite flowers on the same plant
78
+ title: Polygamomonoecious
79
+ POLYGAMOUS:
80
+ description: Having male, female, and hermaphrodite flowers
81
+ title: Polygamous
82
+ PROTANDROUS:
83
+ description: Male organs mature before female organs
84
+ title: Protandrous
85
+ PROTOGYNOUS:
86
+ description: Female organs mature before male organs
87
+ title: Protogynous
88
+ SUBANDROECIOUS:
89
+ description: Mostly male flowers with occasional hermaphrodite flowers
90
+ title: Subandroecious
91
+ SUBDIOECIOUS:
92
+ description: Mostly dioecious with occasional hermaphrodite flowers
93
+ title: Subdioecious
94
+ SUBGYNOECIOUS:
95
+ description: Mostly female flowers with occasional hermaphrodite flowers
96
+ title: Subgynoecious
97
+ SYNOECIOUS:
98
+ description: Having male and female organs fused together
99
+ title: Synoecious
100
+ TRIMONOECIOUS:
101
+ description: Having male, female, and hermaphrodite flowers on the same plant
102
+ title: Trimonoecious
103
+ TRIOECIOUS:
104
+ description: Having male, female, and hermaphrodite flowers on separate plants
105
+ title: Trioecious
106
+ UNISEXUAL:
107
+ description: Having only one sex of reproductive organs
108
+ title: Unisexual
@@ -0,0 +1,63 @@
1
+ name: protein_evidence
2
+ title: Protein Evidence Value Sets
3
+ description: Value sets related to protein evidence and annotation status
4
+ id: https://w3id.org/common-value-sets/protein_evidence
5
+ imports:
6
+ - linkml:types
7
+ prefixes:
8
+ CVS: https://w3id.org/common-value-sets/
9
+ linkml: https://w3id.org/linkml/
10
+ valuesets: https://w3id.org/valuesets/
11
+ default_prefix: valuesets
12
+ slots:
13
+ protein_evidence_for_existence:
14
+ description: The evidence for the existence of a biological entity
15
+ range: ProteinEvidenceForExistence
16
+ ref_seq_status:
17
+ description: RefSeq status codes, taken from https://www
18
+ range: RefSeqStatusType
19
+ enums:
20
+ ProteinEvidenceForExistence:
21
+ description: The evidence for the existence of a biological entity. See https://www.uniprot.org/help/protein_existence
22
+ and https://www.ncbi.nlm.nih.gov/genbank/evidence/.
23
+ permissible_values:
24
+ EXPERIMENTAL_EVIDENCE_AT_PROTEIN_LEVEL:
25
+ description: Indicates that there is clear experimental evidence for the existence of the protein. The criteria include
26
+ partial or complete Edman sequencing, clear identification by mass spectrometry, X-ray or NMR structure, good quality
27
+ protein-protein interaction or detection of the protein by antibodies.
28
+ EXPERIMENTAL_EVIDENCE_AT_TRANSCRIPT_LEVEL:
29
+ description: Indicates that the existence of a protein has not been strictly proven but that expression data (such
30
+ as existence of cDNA(s), RT-PCR or Northern blots) indicate the existence of a transcript.
31
+ PROTEIN_INFERRED_BY_HOMOLOGY:
32
+ description: Indicates that the existence of a protein is probable because clear orthologs exist in closely related
33
+ species.
34
+ PROTEIN_PREDICTED:
35
+ description: Used for entries without evidence at protein, transcript, or homology levels.
36
+ PROTEIN_UNCERTAIN:
37
+ description: Indicates that the existence of the protein is unsure.
38
+ RefSeqStatusType:
39
+ description: RefSeq status codes, taken from https://www.ncbi.nlm.nih.gov/genbank/evidence/.
40
+ permissible_values:
41
+ MODEL:
42
+ description: The RefSeq record is provided by the NCBI Genome Annotation pipeline and is not subject to individual
43
+ review or revision between annotation runs.
44
+ INFERRED:
45
+ description: The RefSeq record has been predicted by genome sequence analysis, but it is not yet supported by experimental
46
+ evidence. The record may be partially supported by homology data.
47
+ PREDICTED:
48
+ description: The RefSeq record has not yet been subject to individual review, and some aspect of the RefSeq record
49
+ is predicted.
50
+ PROVISIONAL:
51
+ description: The RefSeq record has not yet been subject to individual review. The initial sequence-to-gene association
52
+ has been established by outside collaborators or NCBI staff.
53
+ REVIEWED:
54
+ description: The RefSeq record has been reviewed by NCBI staff or by a collaborator. The NCBI review process includes
55
+ assessing available sequence data and the literature. Some RefSeq records may incorporate expanded sequence and
56
+ annotation information.
57
+ VALIDATED:
58
+ description: The RefSeq record has undergone an initial review to provide the preferred sequence standard. The record
59
+ has not yet been subject to final review at which time additional functional information may be provided.
60
+ WGS:
61
+ description: The RefSeq record is provided to represent a collection of whole genome shotgun sequences. These records
62
+ are not subject to individual review or revisions between genome updates.
63
+ default_range: string
@@ -0,0 +1,116 @@
1
+ name: proteomics_standards
2
+ title: Proteomics Standards
3
+ description: Controlled vocabularies for mass spectrometry and proteomics data annotation from HUPO-PSI standards
4
+ id: https://w3id.org/common-value-sets/bio/proteomics_standards
5
+ imports:
6
+ - linkml:types
7
+ - ../core
8
+ prefixes:
9
+ linkml: https://w3id.org/linkml/
10
+ MS: http://purl.obolibrary.org/obo/MS_
11
+ PRIDE: http://purl.obolibrary.org/obo/PRIDE_
12
+ UO: http://purl.obolibrary.org/obo/UO_
13
+ cvs: https://w3id.org/common-value-sets/
14
+ valuesets: https://w3id.org/valuesets/
15
+ default_prefix: valuesets
16
+ slots:
17
+ peak_annotation_series_label:
18
+ description: Types of peak annotations in mass spectrometry data
19
+ range: PeakAnnotationSeriesLabel
20
+ peptide_ion_series:
21
+ description: Types of peptide fragment ion series in mass spectrometry
22
+ range: PeptideIonSeries
23
+ mass_error_unit:
24
+ description: Units for expressing mass error in mass spectrometry
25
+ range: MassErrorUnit
26
+ enums:
27
+ PeakAnnotationSeriesLabel:
28
+ title: Peak Annotation Series Label
29
+ description: Types of peak annotations in mass spectrometry data
30
+ permissible_values:
31
+ PEPTIDE:
32
+ description: Peptide fragment ion
33
+ exact_mappings:
34
+ - PRIDE:0000187
35
+ INTERNAL:
36
+ description: Internal fragment ion
37
+ PRECURSOR:
38
+ description: Precursor ion
39
+ exact_mappings:
40
+ - PRIDE:0000263
41
+ - MS:1001523
42
+ IMMONIUM:
43
+ description: Immonium ion
44
+ exact_mappings:
45
+ - PRIDE:0000239
46
+ - MS:1001239
47
+ REFERENCE:
48
+ description: Reference peak or calibrant
49
+ NAMED_COMPOUND:
50
+ description: Named chemical compound
51
+ FORMULA:
52
+ description: Chemical formula
53
+ SMILES:
54
+ description: SMILES structure notation
55
+ UNANNOTATED:
56
+ description: Unannotated peak
57
+ PeptideIonSeries:
58
+ title: Peptide Ion Series
59
+ description: Types of peptide fragment ion series in mass spectrometry
60
+ permissible_values:
61
+ B:
62
+ description: B ion series - N-terminal fragment with CO
63
+ exact_mappings:
64
+ - PRIDE:0000194
65
+ Y:
66
+ description: Y ion series - C-terminal fragment with H
67
+ exact_mappings:
68
+ - PRIDE:0000193
69
+ - MS:1001220
70
+ A:
71
+ description: A ion series - N-terminal fragment minus CO
72
+ exact_mappings:
73
+ - PRIDE:0000233
74
+ X:
75
+ description: X ion series - C-terminal fragment plus CO
76
+ exact_mappings:
77
+ - PRIDE:0000227
78
+ C:
79
+ description: C ion series - N-terminal fragment with NH3
80
+ exact_mappings:
81
+ - PRIDE:0000236
82
+ Z:
83
+ description: Z ion series - C-terminal fragment minus NH
84
+ exact_mappings:
85
+ - PRIDE:0000230
86
+ - MS:1001230
87
+ D:
88
+ description: D ion series - partial side chain cleavage
89
+ V:
90
+ description: V ion series - side chain loss from y ion
91
+ W:
92
+ description: W ion series - side chain loss from z ion
93
+ DA:
94
+ description: DA ion series - a ion with side chain loss
95
+ DB:
96
+ description: DB ion series - b ion with side chain loss
97
+ WA:
98
+ description: WA ion series - a ion with tryptophan side chain loss
99
+ WB:
100
+ description: WB ion series - b ion with tryptophan side chain loss
101
+ MassErrorUnit:
102
+ title: Mass Error Unit
103
+ description: Units for expressing mass error in mass spectrometry
104
+ permissible_values:
105
+ PPM:
106
+ description: Parts per million - relative mass error
107
+ exact_mappings:
108
+ - UO:0000169
109
+ DA:
110
+ description: Dalton - absolute mass error
111
+ aliases:
112
+ - Dalton
113
+ - u
114
+ - amu
115
+ exact_mappings:
116
+ - UO:0000221