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,465 @@
1
+ name: pigments_dyes
2
+ title: Pigments and Dyes Color Value Sets
3
+ description: 'Color value sets for pigments, dyes, paints, and other colorant materials used in art, industry, and manufacturing.
4
+
5
+ '
6
+ id: https://w3id.org/valuesets/materials_science/pigments_dyes
7
+ imports:
8
+ - linkml:types
9
+ prefixes:
10
+ linkml: https://w3id.org/linkml/
11
+ HEX: https://www.color-hex.com/color/
12
+ CHEBI: http://purl.obolibrary.org/obo/CHEBI_
13
+ NCIt: http://purl.obolibrary.org/obo/NCIT_
14
+ valuesets: https://w3id.org/valuesets/
15
+ default_prefix: valuesets
16
+ slots:
17
+ traditional_pigment:
18
+ description: Traditional artist pigments and their colors
19
+ range: TraditionalPigmentEnum
20
+ industrial_dye:
21
+ description: Industrial and textile dyes
22
+ range: IndustrialDyeEnum
23
+ food_coloring:
24
+ description: Food coloring and natural food dyes
25
+ range: FoodColoringEnum
26
+ automobile_paint_color:
27
+ description: Common automobile paint colors
28
+ range: AutomobilePaintColorEnum
29
+ enums:
30
+ TraditionalPigmentEnum:
31
+ description: Traditional artist pigments and their colors
32
+ permissible_values:
33
+ TITANIUM_WHITE:
34
+ title: titanium dioxide nanoparticle
35
+ description: Titanium white (Titanium dioxide)
36
+ meaning: CHEBI:51050
37
+ annotations:
38
+ hex: FFFFFF
39
+ chemical: TiO2
40
+ discovered: '1916'
41
+ ZINC_WHITE:
42
+ title: zinc oxide
43
+ description: Zinc white (Zinc oxide)
44
+ meaning: CHEBI:36560
45
+ annotations:
46
+ hex: FEFEFE
47
+ chemical: ZnO
48
+ LEAD_WHITE:
49
+ description: Lead white (Basic lead carbonate) - toxic
50
+ annotations:
51
+ hex: F8F8F8
52
+ chemical: 2PbCO3·Pb(OH)2
53
+ warning: highly toxic, historical use
54
+ CADMIUM_YELLOW:
55
+ title: cadmium selenide
56
+ description: Cadmium yellow (Cadmium sulfide)
57
+ meaning: CHEBI:50834
58
+ annotations:
59
+ hex: FFF600
60
+ chemical: CdS
61
+ warning: toxic
62
+ CHROME_YELLOW:
63
+ description: Chrome yellow (Lead chromate) - toxic
64
+ annotations:
65
+ hex: FFC200
66
+ chemical: PbCrO4
67
+ warning: highly toxic
68
+ NAPLES_YELLOW:
69
+ description: Naples yellow (Lead antimonate)
70
+ annotations:
71
+ hex: FDD5B1
72
+ chemical: Pb(SbO3)2
73
+ historical: ancient pigment
74
+ YELLOW_OCHRE:
75
+ description: Yellow ochre (Iron oxide hydroxide)
76
+ annotations:
77
+ hex: CC7722
78
+ chemical: FeO(OH)·nH2O
79
+ natural: earth pigment
80
+ CADMIUM_ORANGE:
81
+ description: Cadmium orange (Cadmium selenide)
82
+ annotations:
83
+ hex: FF6600
84
+ chemical: CdS·CdSe
85
+ warning: toxic
86
+ CADMIUM_RED:
87
+ title: cadmium selenide nanoparticle
88
+ description: Cadmium red (Cadmium selenide)
89
+ meaning: CHEBI:50835
90
+ annotations:
91
+ hex: E30022
92
+ chemical: CdSe
93
+ warning: toxic
94
+ VERMILION:
95
+ description: Vermilion/Cinnabar (Mercury sulfide)
96
+ annotations:
97
+ hex: E34234
98
+ chemical: HgS
99
+ warning: highly toxic
100
+ ALIZARIN_CRIMSON:
101
+ title: alizarin
102
+ description: Alizarin crimson (synthetic)
103
+ meaning: CHEBI:16866
104
+ annotations:
105
+ hex: E32636
106
+ chemical: C14H8O4
107
+ organic: synthetic organic
108
+ CARMINE:
109
+ description: Carmine (from cochineal insects)
110
+ annotations:
111
+ hex: '960018'
112
+ source: cochineal insects
113
+ natural: organic pigment
114
+ BURNT_SIENNA:
115
+ description: Burnt sienna (heated iron oxide)
116
+ annotations:
117
+ hex: E97451
118
+ chemical: Fe2O3
119
+ process: calcined raw sienna
120
+ RAW_SIENNA:
121
+ description: Raw sienna (Iron oxide with clay)
122
+ annotations:
123
+ hex: C69D52
124
+ chemical: Fe2O3 with clay
125
+ natural: earth pigment
126
+ BURNT_UMBER:
127
+ description: Burnt umber (heated iron/manganese oxide)
128
+ annotations:
129
+ hex: 8B4513
130
+ chemical: Fe2O3 + MnO2
131
+ process: calcined raw umber
132
+ RAW_UMBER:
133
+ description: Raw umber (Iron/manganese oxide)
134
+ annotations:
135
+ hex: 734A12
136
+ chemical: Fe2O3 + MnO2
137
+ natural: earth pigment
138
+ VAN_DYKE_BROWN:
139
+ description: Van Dyke brown (organic earth)
140
+ annotations:
141
+ hex: '664228'
142
+ source: peat, lignite
143
+ warning: fugitive color
144
+ PRUSSIAN_BLUE:
145
+ title: ferric ferrocyanide
146
+ description: Prussian blue (Ferric ferrocyanide)
147
+ meaning: CHEBI:30069
148
+ annotations:
149
+ hex: '003153'
150
+ chemical: Fe4[Fe(CN)6]3
151
+ discovered: '1706'
152
+ ULTRAMARINE:
153
+ description: Ultramarine blue (originally lapis lazuli)
154
+ annotations:
155
+ hex: 120A8F
156
+ chemical: Na8[Al6Si6O24]Sn
157
+ historical: most expensive pigment
158
+ COBALT_BLUE:
159
+ description: Cobalt blue (Cobalt aluminate)
160
+ annotations:
161
+ hex: 0047AB
162
+ chemical: CoAl2O4
163
+ CERULEAN_BLUE:
164
+ description: Cerulean blue (Cobalt stannate)
165
+ annotations:
166
+ hex: 2A52BE
167
+ chemical: Co2SnO4
168
+ PHTHALO_BLUE:
169
+ description: Phthalocyanine blue
170
+ annotations:
171
+ hex: 000F89
172
+ chemical: C32H16CuN8
173
+ modern: synthetic organic
174
+ VIRIDIAN:
175
+ description: Viridian (Chromium oxide green)
176
+ annotations:
177
+ hex: 40826D
178
+ chemical: Cr2O3·2H2O
179
+ CHROME_GREEN:
180
+ description: Chrome oxide green
181
+ annotations:
182
+ hex: 2E5E26
183
+ chemical: Cr2O3
184
+ PHTHALO_GREEN:
185
+ description: Phthalocyanine green
186
+ annotations:
187
+ hex: '123524'
188
+ chemical: C32H16ClCuN8
189
+ modern: synthetic organic
190
+ TERRE_VERTE:
191
+ description: Terre verte/Green earth
192
+ annotations:
193
+ hex: 6B7F59
194
+ chemical: complex silicate
195
+ natural: earth pigment
196
+ TYRIAN_PURPLE:
197
+ description: Tyrian purple (from murex snails)
198
+ annotations:
199
+ hex: 66023C
200
+ source: murex snails
201
+ historical: ancient royal purple
202
+ MANGANESE_VIOLET:
203
+ description: Manganese violet
204
+ annotations:
205
+ hex: 8B3E5F
206
+ chemical: NH4MnP2O7
207
+ MARS_BLACK:
208
+ description: Mars black (Synthetic iron oxide)
209
+ annotations:
210
+ hex: '010101'
211
+ chemical: Fe3O4
212
+ synthetic: iron oxide
213
+ IVORY_BLACK:
214
+ description: Ivory black (Bone char)
215
+ annotations:
216
+ hex: 1B1B1B
217
+ source: charred bones
218
+ LAMP_BLACK:
219
+ description: Lamp black (Carbon black)
220
+ annotations:
221
+ hex: 2B2B2B
222
+ chemical: C
223
+ source: soot
224
+ IndustrialDyeEnum:
225
+ description: Industrial and textile dyes
226
+ permissible_values:
227
+ INDIGO:
228
+ description: Indigo dye
229
+ annotations:
230
+ hex: 4B0082
231
+ source: originally plant-based, now synthetic
232
+ use: denim, textiles
233
+ ANILINE_BLACK:
234
+ description: Aniline black
235
+ annotations:
236
+ hex: '000000'
237
+ chemical: polyaniline
238
+ use: cotton dyeing
239
+ METHYLENE_BLUE:
240
+ description: Methylene blue
241
+ annotations:
242
+ hex: 1E90FF
243
+ chemical: C16H18ClN3S
244
+ use: biological stain, medical
245
+ CONGO_RED:
246
+ description: Congo red
247
+ meaning: CHEBI:34653
248
+ annotations:
249
+ hex: CC0000
250
+ chemical: C32H22N6Na2O6S2
251
+ use: pH indicator, textile
252
+ MALACHITE_GREEN:
253
+ description: Malachite green
254
+ meaning: CHEBI:72449
255
+ annotations:
256
+ hex: 0BDA51
257
+ chemical: C23H25ClN2
258
+ use: biological stain
259
+ CRYSTAL_VIOLET:
260
+ description: Crystal violet/Gentian violet
261
+ meaning: CHEBI:41688
262
+ annotations:
263
+ hex: 9400D3
264
+ chemical: C25H30ClN3
265
+ use: gram staining
266
+ EOSIN:
267
+ description: Eosin Y
268
+ meaning: CHEBI:52053
269
+ aliases:
270
+ - eosin YS dye
271
+ annotations:
272
+ hex: FF6B6B
273
+ chemical: C20H6Br4Na2O5
274
+ use: histology stain
275
+ SAFRANIN:
276
+ description: Safranin O
277
+ annotations:
278
+ hex: FF0066
279
+ chemical: C20H19ClN4
280
+ use: biological stain
281
+ ACID_ORANGE_7:
282
+ description: Acid Orange 7 (Orange II)
283
+ annotations:
284
+ hex: FF7F00
285
+ chemical: C16H11N2NaO4S
286
+ use: wool, silk dyeing
287
+ REACTIVE_BLACK_5:
288
+ description: Reactive Black 5
289
+ annotations:
290
+ hex: '000000'
291
+ use: cotton reactive dye
292
+ DISPERSE_BLUE_1:
293
+ description: Disperse Blue 1
294
+ annotations:
295
+ hex: 1560BD
296
+ use: polyester dyeing
297
+ VAT_BLUE_1:
298
+ description: Vat Blue 1 (Indanthrene blue)
299
+ annotations:
300
+ hex: 002F5C
301
+ use: cotton vat dyeing
302
+ FoodColoringEnum:
303
+ description: Food coloring and natural food dyes
304
+ permissible_values:
305
+ FD_C_RED_40:
306
+ description: FD&C Red No. 40 (Allura Red)
307
+ annotations:
308
+ hex: E40000
309
+ E_number: E129
310
+ use: beverages, candies
311
+ FD_C_YELLOW_5:
312
+ description: FD&C Yellow No. 5 (Tartrazine)
313
+ annotations:
314
+ hex: FFFF00
315
+ E_number: E102
316
+ use: beverages, desserts
317
+ FD_C_YELLOW_6:
318
+ description: FD&C Yellow No. 6 (Sunset Yellow)
319
+ annotations:
320
+ hex: FFA500
321
+ E_number: E110
322
+ use: snacks, beverages
323
+ FD_C_BLUE_1:
324
+ title: Brilliant Blue
325
+ description: FD&C Blue No. 1 (Brilliant Blue)
326
+ meaning: CHEBI:82411
327
+ annotations:
328
+ hex: 0033FF
329
+ E_number: E133
330
+ use: beverages, candies
331
+ FD_C_BLUE_2:
332
+ description: FD&C Blue No. 2 (Indigo Carmine)
333
+ annotations:
334
+ hex: 4B0082
335
+ E_number: E132
336
+ use: beverages, confections
337
+ FD_C_GREEN_3:
338
+ description: FD&C Green No. 3 (Fast Green)
339
+ annotations:
340
+ hex: 00FF00
341
+ E_number: E143
342
+ use: beverages, desserts
343
+ CARAMEL_COLOR:
344
+ description: Caramel coloring
345
+ annotations:
346
+ hex: 8B4513
347
+ E_number: E150
348
+ use: cola, sauces
349
+ ANNATTO:
350
+ description: Annatto (natural orange)
351
+ meaning: CHEBI:3136
352
+ aliases:
353
+ - bixin
354
+ annotations:
355
+ hex: FF6600
356
+ E_number: E160b
357
+ source: achiote seeds
358
+ TURMERIC:
359
+ title: curcumin
360
+ description: Turmeric/Curcumin (natural yellow)
361
+ meaning: CHEBI:3962
362
+ annotations:
363
+ hex: F0E442
364
+ E_number: E100
365
+ source: turmeric root
366
+ BEETROOT_RED:
367
+ description: Beetroot red/Betanin
368
+ meaning: CHEBI:3080
369
+ aliases:
370
+ - Betanin
371
+ annotations:
372
+ hex: BC2A4D
373
+ E_number: E162
374
+ source: beets
375
+ CHLOROPHYLL:
376
+ description: Chlorophyll (natural green)
377
+ meaning: CHEBI:28966
378
+ annotations:
379
+ hex: 4D7C0F
380
+ E_number: E140
381
+ source: plants
382
+ ANTHOCYANINS:
383
+ description: Anthocyanins (natural purple/red)
384
+ annotations:
385
+ hex: 6B3AA0
386
+ E_number: E163
387
+ source: berries, grapes
388
+ PAPRIKA_EXTRACT:
389
+ description: Paprika extract
390
+ annotations:
391
+ hex: E85D00
392
+ E_number: E160c
393
+ source: paprika peppers
394
+ SPIRULINA_BLUE:
395
+ description: Spirulina extract (phycocyanin)
396
+ annotations:
397
+ hex: 1E88E5
398
+ source: spirulina algae
399
+ natural: 'true'
400
+ AutomobilePaintColorEnum:
401
+ description: Common automobile paint colors
402
+ permissible_values:
403
+ ARCTIC_WHITE:
404
+ description: Arctic White
405
+ meaning: HEX:FFFFFF
406
+ annotations:
407
+ type: solid
408
+ MIDNIGHT_BLACK:
409
+ description: Midnight Black
410
+ meaning: HEX:000000
411
+ annotations:
412
+ type: metallic
413
+ SILVER_METALLIC:
414
+ description: Silver Metallic
415
+ meaning: HEX:C0C0C0
416
+ annotations:
417
+ type: metallic
418
+ GUNMETAL_GRAY:
419
+ description: Gunmetal Gray
420
+ meaning: HEX:2A3439
421
+ annotations:
422
+ type: metallic
423
+ RACING_RED:
424
+ description: Racing Red
425
+ meaning: HEX:CE1620
426
+ annotations:
427
+ type: solid
428
+ CANDY_APPLE_RED:
429
+ description: Candy Apple Red
430
+ meaning: HEX:FF0800
431
+ annotations:
432
+ type: metallic
433
+ ELECTRIC_BLUE:
434
+ description: Electric Blue
435
+ meaning: HEX:7DF9FF
436
+ annotations:
437
+ type: metallic
438
+ BRITISH_RACING_GREEN:
439
+ description: British Racing Green
440
+ meaning: HEX:004225
441
+ annotations:
442
+ type: solid
443
+ historical: British racing color
444
+ PEARL_WHITE:
445
+ description: Pearl White
446
+ meaning: HEX:F8F8FF
447
+ annotations:
448
+ type: pearl
449
+ finish: pearlescent
450
+ CHAMPAGNE_GOLD:
451
+ description: Champagne Gold
452
+ meaning: HEX:D4AF37
453
+ annotations:
454
+ type: metallic
455
+ COPPER_BRONZE:
456
+ description: Copper Bronze
457
+ meaning: HEX:B87333
458
+ annotations:
459
+ type: metallic
460
+ MIAMI_BLUE:
461
+ description: Miami Blue
462
+ meaning: HEX:00BFFF
463
+ annotations:
464
+ type: metallic
465
+ brand: Porsche
@@ -0,0 +1,186 @@
1
+ name: synthesis_methods
2
+ id: https://w3id.org/linkml/valuesets/materials_science/synthesis_methods
3
+ prefixes:
4
+ OBI: http://purl.obolibrary.org/obo/OBI_
5
+ CHMO: http://purl.obolibrary.org/obo/CHMO_
6
+ # linkml_common: https://w3id.org/linkml-common/
7
+ valuesets: https://w3id.org/valuesets/
8
+ default_prefix: valuesets
9
+ slots:
10
+ synthesis_method:
11
+ description: Common material synthesis and processing methods
12
+ range: SynthesisMethodEnum
13
+ crystal_growth_method:
14
+ description: Methods for growing single crystals
15
+ range: CrystalGrowthMethodEnum
16
+ additive_manufacturing:
17
+ description: 3D printing and additive manufacturing methods
18
+ range: AdditiveManufacturingEnum
19
+ enums:
20
+ SynthesisMethodEnum:
21
+ description: Common material synthesis and processing methods
22
+ permissible_values:
23
+ SOL_GEL:
24
+ description: Synthesis from solution through gel formation
25
+ title: Sol-Gel
26
+ aliases:
27
+ - sol-gel process
28
+ HYDROTHERMAL:
29
+ description: Synthesis using high temperature aqueous solutions
30
+ title: Hydrothermal
31
+ aliases:
32
+ - hydrothermal synthesis
33
+ SOLVOTHERMAL:
34
+ description: Synthesis using non-aqueous solvents at high temperature/pressure
35
+ title: Solvothermal
36
+ CVD:
37
+ description: Chemical Vapor Deposition
38
+ title: chemical vapour deposition
39
+ meaning: CHMO:0001314
40
+ aliases:
41
+ - Chemical Vapor Deposition
42
+ - CVD
43
+ PVD:
44
+ description: Physical Vapor Deposition
45
+ title: physical vapour deposition
46
+ meaning: CHMO:0001356
47
+ aliases:
48
+ - Physical Vapor Deposition
49
+ - PVD
50
+ ALD:
51
+ description: Atomic Layer Deposition
52
+ title: ALD
53
+ aliases:
54
+ - Atomic Layer Deposition
55
+ ELECTRODEPOSITION:
56
+ description: Deposition using electric current
57
+ title: electrochemical deposition
58
+ meaning: CHMO:0001331
59
+ aliases:
60
+ - electroplating
61
+ - Electrodeposition
62
+ - ELECTRODEPOSITION
63
+ BALL_MILLING:
64
+ description: Mechanical alloying using ball mill
65
+ title: Ball Milling
66
+ aliases:
67
+ - mechanical alloying
68
+ PRECIPITATION:
69
+ description: Formation of solid from solution
70
+ title: precipitation
71
+ meaning: CHMO:0001688
72
+ aliases:
73
+ - Precipitation
74
+ - PRECIPITATION
75
+ SINTERING:
76
+ description: Compacting and forming solid mass by heat/pressure
77
+ title: Sintering
78
+ MELT_PROCESSING:
79
+ description: Processing from molten state
80
+ title: Melt Processing
81
+ aliases:
82
+ - melt casting
83
+ SOLUTION_CASTING:
84
+ description: Casting from solution
85
+ title: Solution Casting
86
+ SPIN_COATING:
87
+ description: Coating by spinning substrate
88
+ title: Spin Coating
89
+ meaning: CHMO:0001472
90
+ DIP_COATING:
91
+ description: Coating by dipping in solution
92
+ title: Dip Coating
93
+ meaning: CHMO:0001471
94
+ SPRAY_COATING:
95
+ description: Coating by spraying
96
+ title: Spray Coating
97
+ CrystalGrowthMethodEnum:
98
+ description: Methods for growing single crystals
99
+ permissible_values:
100
+ CZOCHRALSKI:
101
+ description: Crystal pulling from melt
102
+ title: Czochralski Method
103
+ aliases:
104
+ - CZ
105
+ - crystal pulling
106
+ BRIDGMAN:
107
+ description: Directional solidification method
108
+ title: Bridgman Method
109
+ aliases:
110
+ - Bridgman-Stockbarger
111
+ FLOAT_ZONE:
112
+ description: Zone melting without crucible
113
+ title: Float Zone
114
+ aliases:
115
+ - FZ
116
+ - zone refining
117
+ FLUX_GROWTH:
118
+ description: Crystal growth from high temperature solution
119
+ title: Flux Growth
120
+ VAPOR_TRANSPORT:
121
+ description: Crystal growth via vapor phase transport
122
+ title: Vapor Transport
123
+ aliases:
124
+ - CVT
125
+ HYDROTHERMAL_GROWTH:
126
+ description: Crystal growth in aqueous solution under pressure
127
+ title: Hydrothermal Growth
128
+ LPE:
129
+ description: Liquid Phase Epitaxy
130
+ title: LPE
131
+ aliases:
132
+ - Liquid Phase Epitaxy
133
+ MBE:
134
+ description: Molecular Beam Epitaxy
135
+ title: molecular beam epitaxy
136
+ meaning: CHMO:0001341
137
+ aliases:
138
+ - Molecular Beam Epitaxy
139
+ - MBE
140
+ MOCVD:
141
+ description: Metal-Organic Chemical Vapor Deposition
142
+ title: MOCVD
143
+ aliases:
144
+ - MOVPE
145
+ AdditiveManufacturingEnum:
146
+ description: 3D printing and additive manufacturing methods
147
+ permissible_values:
148
+ FDM:
149
+ description: Fused Deposition Modeling
150
+ title: FDM
151
+ aliases:
152
+ - FFF
153
+ - Fused Filament Fabrication
154
+ SLA:
155
+ description: Stereolithography
156
+ title: SLA
157
+ aliases:
158
+ - Stereolithography
159
+ SLS:
160
+ description: Selective Laser Sintering
161
+ title: SLS
162
+ aliases:
163
+ - Selective Laser Sintering
164
+ SLM:
165
+ description: Selective Laser Melting
166
+ title: SLM
167
+ aliases:
168
+ - Selective Laser Melting
169
+ EBM:
170
+ description: Electron Beam Melting
171
+ title: EBM
172
+ aliases:
173
+ - Electron Beam Melting
174
+ BINDER_JETTING:
175
+ description: Powder bed with liquid binder
176
+ title: Binder Jetting
177
+ MATERIAL_JETTING:
178
+ description: Droplet deposition of materials
179
+ title: Material Jetting
180
+ aliases:
181
+ - PolyJet
182
+ DED:
183
+ description: Directed Energy Deposition
184
+ title: DED
185
+ aliases:
186
+ - Directed Energy Deposition