mzcv 0.2.0

Handle controlled vocanulaires (CVs) and ontologies, both statically and dynamically
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
use std::num::NonZeroU8;

// Example IDs:
// NCIT:C25330
// NCIT:R100
// NCIT:P383
// MS:1000014
// UO:0000245
// BAO_0000925
// BFO:0000015
// GAZ:00002933
// AfPO_0000233 // In URL
// BTO:0004947
// PRIDE:0000521
// MOD:01188
// XLMOD:07097
// GNO:G00001NT // Name and ID are identical
// GNO:00000015

/// Controlled vocabularies all ontobee listed controlled vocabulaires are present as well as PRIDE and RESID
#[derive(Clone, Copy, Debug, Eq, Hash, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[repr(u16)]
#[allow(
    clippy::upper_case_acronyms,
    non_camel_case_types,
    clippy::doc_markdown
)]
pub enum ControlledVocabulary {
    ///  Alzheimer's Disease Ontology
    ADO,
    ///  Anatomical Entity Ontology
    AEO,
    ///  Allotrope Foundation Ontology
    AFO,
    ///  African Population Ontology
    AfPO,
    ///  Agronomy Ontology
    AGRO,
    ///  Ontology for the Anatomy of the Insect SkeletoMuscular system (AISM)
    AISM,
    ///  The Amphioxus Development and Anatomy Ontology
    AMPHX,
    ///  Ascomycete phenotype ontology
    APO,
    ///  Apollo Structured Vocabulary
    APOLLO_SV,
    ///  Antibiotic Resistance Ontology
    ARO,
    ///  BioAssay Ontology
    BAO,
    ///  Beta Cell Genomics Ontology
    BCGO,
    ///  Biological Collections Ontology
    BCO,
    ///  Basic Formal Ontology
    BFO,
    ///  Basic Formal Ontology (BFO) 1.1
    BFO11,
    ///  Bacteria Infectious Disease Ontology
    BIDO,
    ///  Biomarker Ontology
    BMONT,
    ///  Biological Spatial Ontology
    BSPO,
    ///  BRENDA tissue / enzyme source
    BTO,
    ///  Common Anatomy Reference Ontology
    CARO,
    ///  Common Coordinate Framework Ontology
    CCFO,
    ///  Comparative Data Analysis Ontology
    CDAO,
    ///  Compositional Dietary Nutrition Ontology
    CDNO,
    ///  Cephalopod Ontology
    CEPH,
    ///  Chemical Entities of Biological Interest
    CHEBI,
    ///  Chemical Information Ontology
    CHEMINF,
    ///  CHEBI Integrated Role Ontology
    CHIRO,
    ///  Chemical Methods Ontology
    CHMO,
    ///  Coronavirus Infectious Disease Ontology
    CIDO,
    ///  Confidence Information Ontology
    CIO,
    ///  Cell Ontology
    CL,
    ///  Collembola Anatomy Ontology
    CLAO,
    ///  Cell Line Ontology
    CLO,
    ///  Cell Line Ontology - Human Pluripotent Stem Cell Registry
    CLO_hPSCreg,
    ///  Cell Line Ontology - Chinese National Infrastructure of Cell Line Resource
    CLO_NICR,
    ///  Clytia hemisphaerica Development and Anatomy Ontology
    CLYH,
    ///  CranioMaxilloFacial ontology
    CMF,
    ///  Clinical measurement ontology
    CMO,
    ///  Core Ontology for Biology and Biomedicine
    COB,
    ///  Coleoptera Anatomy Ontology (COLAO)
    COLAO,
    ///  Contributor Role Ontology
    CRO,
    ///  OAE CTCAE view
    CTCAE_OAEview,
    ///  Ctenophore Ontology
    CTENO,
    ///  CTO: Core Ontology of Clinical Trials
    CTO,
    ///  Cardiovascular Disease Ontology
    CVDO,
    ///  Ontology of Document Acts
    d_acts,
    ///  Dictyostelium discoideum anatomy
    DDANAT,
    ///  Dictyostelium discoideum phenotype ontology
    DDPHENO,
    ///  Drug-drug Interaction and Drug-drug Interaction Evidence Ontology
    DIDEO,
    ///  The Drug-Drug Interactions Ontology
    DINTO,
    ///  Disease Drivers Ontology
    DISDRIV,
    ///  Human Disease Ontology
    DOID,
    ///  The Drug Ontology
    DRON,
    ///  Data Use Ontology
    DUO,
    ///  The Echinoderm Anatomy and Development Ontology
    ECAO,
    ///  Evidence and Conclusion Ontology
    ECO,
    ///  An ontology of core ecological entities
    ECOCORE,
    ///  Environmental conditions, treatments and exposures ontology
    ECTO,
    ///  EMBRACE Data and Methods
    EDAM,
    ///  Experimental Factor Ontology
    EFO,
    ///  Human developmental anatomy, abstract
    EHDAA2,
    ///  Mouse Developmental Anatomy Ontology
    EMAPA,
    ///  Environment Ontology
    ENVO,
    ///  Epilepsy Ontology
    EPIO,
    ///  Epidemiology Ontology
    EPO,
    ///  eagle-i resource ontology
    ERO,
    ///  VEuPathDB ontology
    EUPATH,
    ///  Exercise Medicine Ontology
    EXMO,
    ///  Exposure ontology
    ExO,
    ///  Fungal gross anatomy
    FAO,
    ///  Biological Imaging Methods Ontology
    FBbi,
    ///  Drosophila gross anatomy
    FBbt,
    ///  Drosophila Phenotype Ontology
    FBcv,
    ///  Drosophila development
    FBdv,
    ///  Food Interactions with Drugs Evidence Ontology
    FIDEO,
    ///  Physico-chemical methods and properties
    FIX,
    ///  Flora Phenotype Ontology
    FLOPO,
    ///  Foundational Model of Anatomy Ontology (subset)
    FMA,
    ///  Food-Biomarker Ontology
    FOBI,
    ///  Food Ontology
    FOODON,
    ///  FuTRES Ontology of Vertebrate Traits
    FOVT,
    ///  Fission Yeast Phenotype Ontology
    FYPO,
    ///  Plant Gall Ontology
    GALLONT,
    ///  Gazetteer
    GAZ,
    ///  Genomics Cohorts Knowledge Ontology
    GECKO,
    ///  Genomic Epidemiology Ontology
    GENEPIO,
    ///  Genotype Ontology
    GENO,
    ///  Geographical Entity Ontology
    GEO,
    ///  Glycan Naming and Subsumption Ontology (GNOme)
    GNO,
    ///  Gene Ontology
    GO,
    ///  Gender, Sex, and Sexual Orientation (GSSO) ontology
    GSSO,
    ///  Human Ancestry Ontology
    HANCESTRO,
    ///  Hymenoptera Anatomy Ontology
    HAO,
    ///  Human Interaction Network Ontology
    HINO,
    ///  Homology Ontology
    HOM,
    ///  Human Phenotype Ontology (HPO)
    HP,
    ///  Human Developmental Stages
    HsapDv,
    ///  Health Surveillance Ontology
    HSO,
    ///  Hypertension Ontology
    HTN,
    ///  Information Artifact Ontology
    IAO,
    ///  IAO Ontology Metadata
    IAO_Onto_Meta,
    ///  International Classification of Disease Ontology
    ICDO,
    ///  Integrative and Conjugative Element Ontology
    ICEO,
    ///  Informed Consent Ontology
    ICO,
    ///  Infectious Disease Ontology
    IDO,
    ///  Brucellosis Ontology
    IDOBRU,
    ///  Malaria Ontology
    IDOMAL,
    ///  Interaction Network Ontology
    INO,
    ///  Kinetic Simulation Algorithm Ontology
    KISAO,
    ///  Kidney Tissue Atlas Ontology
    KTAO,
    ///  clinical LABoratory Ontology
    LABO,
    ///  Lepidoptera Anatomy Ontology
    LEPAO,
    ///  CLO LINCS view
    LINCS_CLOview,
    ///  LTHIDO
    LTHIDO,
    ///  Mouse adult gross anatomy
    MA,
    ///  Mathematical modeling ontology
    MAMO,
    ///  Medical Action Ontology
    MAXO,
    ///  Microbial Conditions Ontology
    MCO,
    ///  Model Card Report Ontology
    MCRO,
    ///  Mental Functioning Ontology
    MF,
    ///  Mammalian Feeding Muscle Ontology
    MFMO,
    ///  Emotion Ontology
    MFOEM,
    ///  Mental Disease Ontology
    MFOMD,
    ///  Molecular Interactions Controlled Vocabulary
    MI,
    ///  MIAPA Ontology
    MIAPA,
    ///  Ontology of Prokaryotic Phenotypic and Metabolic Characters
    MICRO,
    ///  Mycosis Infectious Disease Ontology
    MIDO,
    ///  microRNA Ontology
    miRNAO,
    ///  Mosquito insecticide resistance
    MIRO,
    ///  Measurement method ontology
    MMO,
    ///  Mouse Developmental Stages
    MmusDv,
    ///  Protein modification
    MOD,
    ///  Mondo Disease Ontology
    MONDO,
    ///  Molecular Process Ontology
    MOP,
    ///  Mammalian Phenotype Ontology
    MP,
    ///  Mouse pathology
    MPATH,
    ///  Minimum PDDI Information Ontology
    MPIO,
    ///  MHC Restriction Ontology
    MRO,
    ///  The PSI-MS Controlled Vocabulary [https://www.ebi.ac.uk/ols4/ontologies/ms](https://www.ebi.ac.uk/ols4/ontologies/ms)
    MS,
    ///  Neuro Behavior Ontology
    NBO,
    ///  NCBI organismal classification
    NCBITaxon,
    ///  NCI Thesaurus OBO Edition
    NCIT,
    ///  Non-Coding RNA Ontology
    NCRO,
    ///  National Drug File Reference Terminology
    NDF_RT,
    ///  NFO
    NFO,
    ///  Next Generation Biobanking Ontology
    NGBO,
    ///  NOMEN - A nomenclatural ontology for biological names
    NOMEN,
    ///  Ontology of Adverse Events
    OAE,
    ///  Ontology of Arthropod Circulatory Systems
    OARCS,
    ///  Ontology of Biological Attributes
    OBA,
    ///  Ontology of Biological and Clinical Statistics
    OBCS,
    ///  Ontology for Biomedical Investigations
    OBI,
    ///  OBI NIAID-GSC-BRC view
    OBI_NIAID_GSC_BRC_view,
    ///  Ontology for Biobanking
    OBIB,
    ///  OBI web service, development version
    OBIws,
    ///  Occupation Ontology
    OCCO,
    ///  Ontology of Chemical Elements
    OCE,
    ///  Ontology of Chinese Medicine for Rheumatism
    OCMR,
    ///  OCRe
    OCRe,
    ///  Ontology of Cardiovascular Drug Adverse Events
    OCVDAE,
    ///  Ontology of Drug Adverse Events
    ODAE,
    ///  Ontologyof Drug Neuropathy Adverse Events
    ODNAE,
    ///  The Ontology of Genes and Genomes
    OGG,
    ///  Ontology of Genes and Genomes - Arabidopsis thaliana
    OGG_At,
    ///  Ontology of Genes and Genomes - Brucella
    OGG_Bru,
    ///  Ontology of Genes and Genomes - Caenorhabditis elegans
    OGG_Ce,
    ///  Ontology of Genes and Genomes - Fruit Fly
    OGG_Dm,
    ///  Ontology of Genes and Genomes - Zebrafish
    OGG_Dr,
    ///  Ontology of Genes and Genomes - Mouse
    OGG_Mm,
    ///  Ontology of Genes and Genomes - Plasmodium falciparum
    OGG_Pf,
    ///  Ontology of Genes and Genomes - Yeast
    OGG_Sc,
    ///  Ontology for genetic interval
    OGI,
    ///  Ontology for General Medical Science
    OGMS,
    ///  Ontology of Genetic Susceptibility Factor
    OGSF,
    ///  Oral Health and Disease Ontology
    OHD,
    ///  Ontology of Host-Microbiome Interactions
    OHMI,
    ///  Ontology of Host Pathogen Interactions
    OHPI,
    ///  Medaka Developmental Stages
    OlatDv,
    ///  Ontology for Linking Biological and Medical Ontologies
    OLOBO,
    ///  Ontology of units of Measure
    OM,
    ///  Ontologized MIABIS
    OMIABIS,
    ///  Ontology for MIRNA Target
    OMIT,
    ///  OBO Metadata Ontology
    OMO,
    ///  Ontology of Microbial Phenotypes
    OMP,
    ///  Ontology for Modeling and Representation of Social Entities
    OMRSE,
    ///  Ontology for Nutritional Epidemiology
    ONE,
    ///  Ontology for Nutritional Studies
    ONS,
    ///  OntoAvida: ontology for Avida digital evolution platform
    ONTOAVIDA,
    ///  Obstetric and Neonatal Ontology
    ONTONEO,
    ///  Ontology of Organizational Structures of Trauma centers and Trauma systems
    OOSTT,
    ///  Ontology for Parasite LifeCycle
    OPL,
    ///  Ontology of Precision Medicine and Investigation
    OPMI,
    ///  Ontology of RNA Sequencing
    ORNASEQ,
    ///  Ontology for Stem Cell Investigations
    OSCI,
    ///  Ontology of Vaccine Adverse Events
    OVAE,
    ///  Phenotype And Trait Ontology
    PATO,
    ///  Provisional Cell Ontology
    PCL,
    ///  Population and Community Ontology
    PCO,
    ///  The Prescription of Drugs Ontology
    PDRO,
    ///  Platynereis Developmental Stages
    PdumDv,
    ///  Plant Experimental Conditions Ontology
    PECO,
    ///  Promoting Health Aging through Semantic Enrichment of Solitude Research (PHASES) Ontology
    PHASES,
    ///  Pathogen Host Interaction Phenotype Ontology
    PHIPO,
    ///  Parasite Infectious Disease Ontology
    PIDO,
    ///  planaria-ontology
    PLANA,
    ///  Planarian Phenotype Ontology
    PLANP,
    ///  Proper Name Ontology
    PNO,
    ///  Plant Ontology
    PO,
    ///  Porifera Ontology
    PORO,
    ///  Plant Phenology Ontology
    PPO,
    ///  PRotein Ontology (PRO)
    PR,
    /// The PRIDE Controlled Vocabulary <https://www.ebi.ac.uk/ols4/ontologies/pride>
    PRIDE,
    ///  Process Chemistry Ontology
    PROCO,
    ///  Performance Summary Display Ontology
    PSDO,
    ///  Plant Stress Ontology
    PSO,
    ///  Pathway ontology
    PW,
    ///  Radiation Biology Ontology
    RBO,
    /// Reagent Ontology
    REO,
    /// RESID top down modifications ontology
    RESID,
    ///  Physico-chemical process
    REX,
    ///  RNA ontology
    RNAO,
    ///  Relation Ontology
    RO,
    ///  Rat Strain Ontology
    RS,
    ///  Name Reaction Ontology
    RXNO,
    ///  Systems Biology Ontology
    SBO,
    ///  Sickle Cell Disease Ontology
    SCDO,
    ///  Sustainability Core Ontology
    SCO,
    ///  Sustainable Development Goals Interface Ontology
    SDGIO,
    ///  Sample processing and separation techniques
    SEP,
    ///  Scientific Evidence and Provenance Information Ontology
    SEPIO,
    ///  Social Insect Behavior Ontology
    SIBO,
    ///  Semanticscience Integrated Ontology
    SIO,
    ///  Space Life Sciences Ontology
    SLSO,
    ///  Sequence types and features ontology
    SO,
    ///  Spider Ontology
    SPD,
    ///  The Statistical Methods Ontology
    STATO,
    ///  Software ontology
    SWO,
    ///  Symptom Ontology
    SYMP,
    ///  terms4FAIRskills
    T4FS,
    ///  Tick Anatomy Ontology
    TADS,
    ///  Taxonomic rank vocabulary
    TAXRANK,
    ///  Mosquito gross anatomy ontology
    TGMA,
    ///  Plant Trait Ontology
    TO,
    ///  Pathogen Transmission Ontology
    TRANS,
    ///  Transportation System Ontology
    TSO,
    ///  Teleost taxonomy ontology
    TTO,
    ///  Toxic Process Ontology
    TXPO,
    ///  Uberon multi-species anatomy ontology
    UBERON,
    ///  Uber anatomy ontology, basic version
    uberon_basic,
    ///  uberon_collected_metazoa
    uberon_collected_metazoa,
    ///  uberon_depictions
    uberon_depictions,
    ///  Units of measurement ontology
    UO,
    ///  Unipathway
    UPA,
    ///  Unified Phenotype Ontology (uPheno)
    UPHENO,
    ///  Variation Ontology
    VariO,
    ///  Vertebrate Breed Ontology
    VBO,
    ///  Vaccination Informed Consent Ontology
    VICO,
    ///  Virus Infectious Disease Ontology
    VIDO,
    ///  Vaccine Investigation Ontology
    VIO,
    ///  VIVO-ISF
    VIVO_ISF,
    ///  Vaccine Ontology
    VO,
    ///  Vertebrate trait ontology
    VT,
    ///  Vertebrate Taxonomy Ontology
    VTO,
    ///  C. elegans Gross Anatomy Ontology
    WBbt,
    ///  C. elegans development ontology
    WBls,
    ///  C. elegans phenotype
    WBPhenotype,
    ///  Xenopus Anatomy Ontology
    XAO,
    ///  Experimental condition ontology
    XCO,
    ///  Cross-linker reagents ontology
    XL,
    ///  HUPO-PSI cross-linking and derivatization reagents controlled vocabulary
    XLMOD,
    ///  Xenopus Phenotype Ontology
    XPO,
    ///  Zebrafish Experimental Conditions Ontology
    ZECO,
    ///  Zebrafish anatomy and development ontology
    ZFA,
    ///  Zebrafish developmental stages ontology
    ZFS,
    ///  Zebrafish Phenotype Ontology
    ZP,
    /// An unknown ontology
    Unknown,
}

impl ControlledVocabulary {
    /// Render the controlled vocabulary's short identifier as a string.
    ///
    /// This is useful for constructing text buffers where the controlled
    /// vocabulary is known at compile time.
    pub const fn as_str(self) -> &'static str {
        match self {
            Self::ADO => "ADO",
            Self::AEO => "AEO",
            Self::AFO => "AFO",
            Self::AfPO => "AfPO",
            Self::AGRO => "AGRO",
            Self::AISM => "AISM",
            Self::AMPHX => "AMPHX",
            Self::APO => "APO",
            Self::APOLLO_SV => "APOLLO_SV",
            Self::ARO => "ARO",
            Self::BAO => "BAO",
            Self::BCGO => "BCGO",
            Self::BCO => "BCO",
            Self::BFO => "BFO",
            Self::BFO11 => "BFO11",
            Self::BIDO => "BIDO",
            Self::BMONT => "BMONT",
            Self::BSPO => "BSPO",
            Self::BTO => "BTO",
            Self::CARO => "CARO",
            Self::CCFO => "CCFO",
            Self::CDAO => "CDAO",
            Self::CDNO => "CDNO",
            Self::CEPH => "CEPH",
            Self::CHEBI => "CHEBI",
            Self::CHEMINF => "CHEMINF",
            Self::CHIRO => "CHIRO",
            Self::CHMO => "CHMO",
            Self::CIDO => "CIDO",
            Self::CIO => "CIO",
            Self::CL => "CL",
            Self::CLAO => "CLAO",
            Self::CLO => "CLO",
            Self::CLO_hPSCreg => "CLO-hPSCreg",
            Self::CLO_NICR => "CLO-NICR",
            Self::CLYH => "CLYH",
            Self::CMF => "CMF",
            Self::CMO => "CMO",
            Self::COB => "COB",
            Self::COLAO => "COLAO",
            Self::CRO => "CRO",
            Self::CTCAE_OAEview => "CTCAE-OAEview",
            Self::CTENO => "CTENO",
            Self::CTO => "CTO",
            Self::CVDO => "CVDO",
            Self::d_acts => "d-acts",
            Self::DDANAT => "DDANAT",
            Self::DDPHENO => "DDPHENO",
            Self::DIDEO => "DIDEO",
            Self::DINTO => "DINTO",
            Self::DISDRIV => "DISDRIV",
            Self::DOID => "DOID",
            Self::DRON => "DRON",
            Self::DUO => "DUO",
            Self::ECAO => "ECAO",
            Self::ECO => "ECO",
            Self::ECOCORE => "ECOCORE",
            Self::ECTO => "ECTO",
            Self::EDAM => "EDAM",
            Self::EFO => "EFO",
            Self::EHDAA2 => "EHDAA2",
            Self::EMAPA => "EMAPA",
            Self::ENVO => "ENVO",
            Self::EPIO => "EPIO",
            Self::EPO => "EPO",
            Self::ERO => "ERO",
            Self::EUPATH => "EUPATH",
            Self::EXMO => "EXMO",
            Self::ExO => "ExO",
            Self::FAO => "FAO",
            Self::FBbi => "FBbi",
            Self::FBbt => "FBbt",
            Self::FBcv => "FBcv",
            Self::FBdv => "FBdv",
            Self::FIDEO => "FIDEO",
            Self::FIX => "FIX",
            Self::FLOPO => "FLOPO",
            Self::FMA => "FMA",
            Self::FOBI => "FOBI",
            Self::FOODON => "FOODON",
            Self::FOVT => "FOVT",
            Self::FYPO => "FYPO",
            Self::GALLONT => "GALLONT",
            Self::GAZ => "GAZ",
            Self::GECKO => "GECKO",
            Self::GENEPIO => "GENEPIO",
            Self::GENO => "GENO",
            Self::GEO => "GEO",
            Self::GNO => "GNO",
            Self::GO => "GO",
            Self::GSSO => "GSSO",
            Self::HANCESTRO => "HANCESTRO",
            Self::HAO => "HAO",
            Self::HINO => "HINO",
            Self::HOM => "HOM",
            Self::HP => "HP",
            Self::HsapDv => "HsapDv",
            Self::HSO => "HSO",
            Self::HTN => "HTN",
            Self::IAO => "IAO",
            Self::IAO_Onto_Meta => "IAO-Onto-Meta",
            Self::ICDO => "ICDO",
            Self::ICEO => "ICEO",
            Self::ICO => "ICO",
            Self::IDO => "IDO",
            Self::IDOBRU => "IDOBRU",
            Self::IDOMAL => "IDOMAL",
            Self::INO => "INO",
            Self::KISAO => "KISAO",
            Self::KTAO => "KTAO",
            Self::LABO => "LABO",
            Self::LEPAO => "LEPAO",
            Self::LINCS_CLOview => "LINCS-CLOview",
            Self::LTHIDO => "LTHIDO",
            Self::MA => "MA",
            Self::MAMO => "MAMO",
            Self::MAXO => "MAXO",
            Self::MCO => "MCO",
            Self::MCRO => "MCRO",
            Self::MF => "MF",
            Self::MFMO => "MFMO",
            Self::MFOEM => "MFOEM",
            Self::MFOMD => "MFOMD",
            Self::MI => "MI",
            Self::MIAPA => "MIAPA",
            Self::MICRO => "MICRO",
            Self::MIDO => "MIDO",
            Self::miRNAO => "miRNAO",
            Self::MIRO => "MIRO",
            Self::MMO => "MMO",
            Self::MmusDv => "MmusDv",
            Self::MOD => "MOD",
            Self::MONDO => "MONDO",
            Self::MOP => "MOP",
            Self::MP => "MP",
            Self::MPATH => "MPATH",
            Self::MPIO => "MPIO",
            Self::MRO => "MRO",
            Self::MS => "MS",
            Self::NBO => "NBO",
            Self::NCBITaxon => "NCBITaxon",
            Self::NCIT => "NCIT",
            Self::NCRO => "NCRO",
            Self::NDF_RT => "NDF-RT",
            Self::NFO => "NFO",
            Self::NGBO => "NGBO",
            Self::NOMEN => "NOMEN",
            Self::OAE => "OAE",
            Self::OARCS => "OARCS",
            Self::OBA => "OBA",
            Self::OBCS => "OBCS",
            Self::OBI => "OBI",
            Self::OBI_NIAID_GSC_BRC_view => "OBI-NIAID-GSC-BRC-view",
            Self::OBIB => "OBIB",
            Self::OBIws => "OBIws",
            Self::OCCO => "OCCO",
            Self::OCE => "OCE",
            Self::OCMR => "OCMR",
            Self::OCRe => "OCRe",
            Self::OCVDAE => "OCVDAE",
            Self::ODAE => "ODAE",
            Self::ODNAE => "ODNAE",
            Self::OGG => "OGG",
            Self::OGG_At => "OGG-At",
            Self::OGG_Bru => "OGG-Bru",
            Self::OGG_Ce => "OGG-Ce",
            Self::OGG_Dm => "OGG-Dm",
            Self::OGG_Dr => "OGG-Dr",
            Self::OGG_Mm => "OGG-Mm",
            Self::OGG_Pf => "OGG-Pf",
            Self::OGG_Sc => "OGG-Sc",
            Self::OGI => "OGI",
            Self::OGMS => "OGMS",
            Self::OGSF => "OGSF",
            Self::OHD => "OHD",
            Self::OHMI => "OHMI",
            Self::OHPI => "OHPI",
            Self::OlatDv => "OlatDv",
            Self::OLOBO => "OLOBO",
            Self::OM => "OM",
            Self::OMIABIS => "OMIABIS",
            Self::OMIT => "OMIT",
            Self::OMO => "OMO",
            Self::OMP => "OMP",
            Self::OMRSE => "OMRSE",
            Self::ONE => "ONE",
            Self::ONS => "ONS",
            Self::ONTOAVIDA => "ONTOAVIDA",
            Self::ONTONEO => "ONTONEO",
            Self::OOSTT => "OOSTT",
            Self::OPL => "OPL",
            Self::OPMI => "OPMI",
            Self::ORNASEQ => "ORNASEQ",
            Self::OSCI => "OSCI",
            Self::OVAE => "OVAE",
            Self::PATO => "PATO",
            Self::PCL => "PCL",
            Self::PCO => "PCO",
            Self::PDRO => "PDRO",
            Self::PdumDv => "PdumDv",
            Self::PECO => "PECO",
            Self::PHASES => "PHASES",
            Self::PHIPO => "PHIPO",
            Self::PIDO => "PIDO",
            Self::PLANA => "PLANA",
            Self::PLANP => "PLANP",
            Self::PNO => "PNO",
            Self::PO => "PO",
            Self::PORO => "PORO",
            Self::PPO => "PPO",
            Self::PR => "PR",
            Self::PRIDE => "PRIDE",
            Self::PROCO => "PROCO",
            Self::PSDO => "PSDO",
            Self::PSO => "PSO",
            Self::PW => "PW",
            Self::RBO => "RBO",
            Self::REO => "REO",
            Self::RESID => "RESID",
            Self::REX => "REX",
            Self::RNAO => "RNAO",
            Self::RO => "RO",
            Self::RS => "RS",
            Self::RXNO => "RXNO",
            Self::SBO => "SBO",
            Self::SCDO => "SCDO",
            Self::SCO => "SCO",
            Self::SDGIO => "SDGIO",
            Self::SEP => "SEP",
            Self::SEPIO => "SEPIO",
            Self::SIBO => "SIBO",
            Self::SIO => "SIO",
            Self::SLSO => "SLSO",
            Self::SO => "SO",
            Self::SPD => "SPD",
            Self::STATO => "STATO",
            Self::SWO => "SWO",
            Self::SYMP => "SYMP",
            Self::T4FS => "T4FS",
            Self::TADS => "TADS",
            Self::TAXRANK => "TAXRANK",
            Self::TGMA => "TGMA",
            Self::TO => "TO",
            Self::TRANS => "TRANS",
            Self::TSO => "TSO",
            Self::TTO => "TTO",
            Self::TXPO => "TXPO",
            Self::UBERON => "UBERON",
            Self::uberon_basic => "uberon-basic",
            Self::uberon_collected_metazoa => "uberon_collected_metazoa",
            Self::uberon_depictions => "uberon_depictions",
            Self::UO => "UO",
            Self::UPA => "UPA",
            Self::UPHENO => "UPHENO",
            Self::VariO => "VariO",
            Self::VBO => "VBO",
            Self::VICO => "VICO",
            Self::VIDO => "VIDO",
            Self::VIO => "VIO",
            Self::VIVO_ISF => "VIVO-ISF",
            Self::VO => "VO",
            Self::VT => "VT",
            Self::VTO => "VTO",
            Self::WBbt => "WBbt",
            Self::WBls => "WBls",
            Self::WBPhenotype => "WBPhenotype",
            Self::XAO => "XAO",
            Self::XCO => "XCO",
            Self::XL => "XL",
            Self::XLMOD => "XLMOD",
            Self::XPO => "XPO",
            Self::ZECO => "ZECO",
            Self::ZFA => "ZFA",
            Self::ZFS => "ZFS",
            Self::ZP => "ZP",
            Self::Unknown => "?",
        }
    }

    /// Render the controlled vocabulary's short identifier as bytes.
    ///
    /// This is useful for constructing byte arrays where the controlled
    /// vocabulary is known at compile time, as in some XML data files.
    pub const fn as_bytes(self) -> &'static [u8] {
        self.as_str().as_bytes()
    }

    /// Create a CURIE for this ontology in a `const` context
    pub const fn curie(self, value: AccessionCode) -> Curie {
        Curie {
            cv: self,
            accession: value,
        }
    }
}

impl From<&str> for ControlledVocabulary {
    fn from(value: &str) -> Self {
        match value {
            "ADO" => Self::ADO,
            "AEO" => Self::AEO,
            "AFO" => Self::AFO,
            "AfPO" => Self::AfPO,
            "AGRO" => Self::AGRO,
            "AISM" => Self::AISM,
            "AMPHX" => Self::AMPHX,
            "APO" => Self::APO,
            "APOLLO_SV" => Self::APOLLO_SV,
            "ARO" => Self::ARO,
            "BAO" => Self::BAO,
            "BCGO" => Self::BCGO,
            "BCO" => Self::BCO,
            "BFO" => Self::BFO,
            "BFO11" => Self::BFO11,
            "BIDO" => Self::BIDO,
            "BMONT" => Self::BMONT,
            "BSPO" => Self::BSPO,
            "BTO" => Self::BTO,
            "CARO" => Self::CARO,
            "CCFO" => Self::CCFO,
            "CDAO" => Self::CDAO,
            "CDNO" => Self::CDNO,
            "CEPH" => Self::CEPH,
            "CHEBI" => Self::CHEBI,
            "CHEMINF" => Self::CHEMINF,
            "CHIRO" => Self::CHIRO,
            "CHMO" => Self::CHMO,
            "CIDO" => Self::CIDO,
            "CIO" => Self::CIO,
            "CL" => Self::CL,
            "CLAO" => Self::CLAO,
            "CLO" => Self::CLO,
            "CLO-hPSCreg" | "CLO_hPSCreg" => Self::CLO_hPSCreg,
            "CLO-NICR" | "CLO_NICR" => Self::CLO_NICR,
            "CLYH" => Self::CLYH,
            "CMF" => Self::CMF,
            "CMO" => Self::CMO,
            "COB" => Self::COB,
            "COLAO" => Self::COLAO,
            "CRO" => Self::CRO,
            "CTCAE-OAEview" | "CTCAE_OAEview" => Self::CTCAE_OAEview,
            "CTENO" => Self::CTENO,
            "CTO" => Self::CTO,
            "CVDO" => Self::CVDO,
            "d-acts" | "d_acts" => Self::d_acts,
            "DDANAT" => Self::DDANAT,
            "DDPHENO" => Self::DDPHENO,
            "DIDEO" => Self::DIDEO,
            "DINTO" => Self::DINTO,
            "DISDRIV" => Self::DISDRIV,
            "DOID" => Self::DOID,
            "DRON" => Self::DRON,
            "DUO" => Self::DUO,
            "ECAO" => Self::ECAO,
            "ECO" => Self::ECO,
            "ECOCORE" => Self::ECOCORE,
            "ECTO" => Self::ECTO,
            "EDAM" => Self::EDAM,
            "EFO" => Self::EFO,
            "EHDAA2" => Self::EHDAA2,
            "EMAPA" => Self::EMAPA,
            "ENVO" => Self::ENVO,
            "EPIO" => Self::EPIO,
            "EPO" => Self::EPO,
            "ERO" => Self::ERO,
            "EUPATH" => Self::EUPATH,
            "EXMO" => Self::EXMO,
            "ExO" => Self::ExO,
            "FAO" => Self::FAO,
            "FBbi" => Self::FBbi,
            "FBbt" => Self::FBbt,
            "FBcv" => Self::FBcv,
            "FBdv" => Self::FBdv,
            "FIDEO" => Self::FIDEO,
            "FIX" => Self::FIX,
            "FLOPO" => Self::FLOPO,
            "FMA" => Self::FMA,
            "FOBI" => Self::FOBI,
            "FOODON" => Self::FOODON,
            "FOVT" => Self::FOVT,
            "FYPO" => Self::FYPO,
            "GALLONT" => Self::GALLONT,
            "GAZ" => Self::GAZ,
            "GECKO" => Self::GECKO,
            "GENEPIO" => Self::GENEPIO,
            "GENO" => Self::GENO,
            "GEO" => Self::GEO,
            "GNO" | "GNOME" | "G" => Self::GNO,
            "GO" => Self::GO,
            "GSSO" => Self::GSSO,
            "HANCESTRO" => Self::HANCESTRO,
            "HAO" => Self::HAO,
            "HINO" => Self::HINO,
            "HOM" => Self::HOM,
            "HP" => Self::HP,
            "HsapDv" => Self::HsapDv,
            "HSO" => Self::HSO,
            "HTN" => Self::HTN,
            "IAO" => Self::IAO,
            "IAO-Onto-Meta" | "IAO_Onto_Meta" => Self::IAO_Onto_Meta,
            "ICDO" => Self::ICDO,
            "ICEO" => Self::ICEO,
            "ICO" => Self::ICO,
            "IDO" => Self::IDO,
            "IDOBRU" => Self::IDOBRU,
            "IDOMAL" => Self::IDOMAL,
            "INO" => Self::INO,
            "KISAO" => Self::KISAO,
            "KTAO" => Self::KTAO,
            "LABO" => Self::LABO,
            "LEPAO" => Self::LEPAO,
            "LINCS-CLOview" | "LINCS_CLOview" => Self::LINCS_CLOview,
            "LTHIDO" => Self::LTHIDO,
            "MA" => Self::MA,
            "MAMO" => Self::MAMO,
            "MAXO" => Self::MAXO,
            "MCO" => Self::MCO,
            "MCRO" => Self::MCRO,
            "MF" => Self::MF,
            "MFMO" => Self::MFMO,
            "MFOEM" => Self::MFOEM,
            "MFOMD" => Self::MFOMD,
            "MI" => Self::MI,
            "MIAPA" => Self::MIAPA,
            "MICRO" => Self::MICRO,
            "MIDO" => Self::MIDO,
            "miRNAO" => Self::miRNAO,
            "MIRO" => Self::MIRO,
            "MMO" => Self::MMO,
            "MmusDv" => Self::MmusDv,
            "MOD" | "PSI-MOD" => Self::MOD,
            "MONDO" => Self::MONDO,
            "MOP" => Self::MOP,
            "MP" => Self::MP,
            "MPATH" => Self::MPATH,
            "MPIO" => Self::MPIO,
            "MRO" => Self::MRO,
            "MS" | "PSI-MS" => Self::MS,
            "NBO" => Self::NBO,
            "NCBITaxon" => Self::NCBITaxon,
            "NCIT" => Self::NCIT,
            "NCRO" => Self::NCRO,
            "NDF-RT" | "NDF_RT" => Self::NDF_RT,
            "NFO" => Self::NFO,
            "NGBO" => Self::NGBO,
            "NOMEN" => Self::NOMEN,
            "OAE" => Self::OAE,
            "OARCS" => Self::OARCS,
            "OBA" => Self::OBA,
            "OBCS" => Self::OBCS,
            "OBI" => Self::OBI,
            "OBI-NIAID-GSC-BRC-view" | "OBI_NIAID_GSC_BRC_view" => Self::OBI_NIAID_GSC_BRC_view,
            "OBIB" => Self::OBIB,
            "OBIws" => Self::OBIws,
            "OCCO" => Self::OCCO,
            "OCE" => Self::OCE,
            "OCMR" => Self::OCMR,
            "OCRe" => Self::OCRe,
            "OCVDAE" => Self::OCVDAE,
            "ODAE" => Self::ODAE,
            "ODNAE" => Self::ODNAE,
            "OGG" => Self::OGG,
            "OGG-At" | "OGG_At" => Self::OGG_At,
            "OGG-Bru" | "OGG_Bru" => Self::OGG_Bru,
            "OGG-Ce" | "OGG_Ce" => Self::OGG_Ce,
            "OGG-Dm" | "OGG_Dm" => Self::OGG_Dm,
            "OGG-Dr" | "OGG_Dr" => Self::OGG_Dr,
            "OGG-Mm" | "OGG_Mm" => Self::OGG_Mm,
            "OGG-Pf" | "OGG_Pf" => Self::OGG_Pf,
            "OGG-Sc" | "OGG_Sc" => Self::OGG_Sc,
            "OGI" => Self::OGI,
            "OGMS" => Self::OGMS,
            "OGSF" => Self::OGSF,
            "OHD" => Self::OHD,
            "OHMI" => Self::OHMI,
            "OHPI" => Self::OHPI,
            "OlatDv" => Self::OlatDv,
            "OLOBO" => Self::OLOBO,
            "OM" => Self::OM,
            "OMIABIS" => Self::OMIABIS,
            "OMIT" => Self::OMIT,
            "OMO" => Self::OMO,
            "OMP" => Self::OMP,
            "OMRSE" => Self::OMRSE,
            "ONE" => Self::ONE,
            "ONS" => Self::ONS,
            "ONTOAVIDA" => Self::ONTOAVIDA,
            "ONTONEO" => Self::ONTONEO,
            "OOSTT" => Self::OOSTT,
            "OPL" => Self::OPL,
            "OPMI" => Self::OPMI,
            "ORNASEQ" => Self::ORNASEQ,
            "OSCI" => Self::OSCI,
            "OVAE" => Self::OVAE,
            "PATO" => Self::PATO,
            "PCL" => Self::PCL,
            "PCO" => Self::PCO,
            "PDRO" => Self::PDRO,
            "PdumDv" => Self::PdumDv,
            "PECO" => Self::PECO,
            "PHASES" => Self::PHASES,
            "PHIPO" => Self::PHIPO,
            "PIDO" => Self::PIDO,
            "PLANA" => Self::PLANA,
            "PLANP" => Self::PLANP,
            "PNO" => Self::PNO,
            "PO" => Self::PO,
            "PORO" => Self::PORO,
            "PPO" => Self::PPO,
            "PR" => Self::PR,
            "PRIDE" => Self::PRIDE,
            "PROCO" => Self::PROCO,
            "PSDO" => Self::PSDO,
            "PSO" => Self::PSO,
            "PW" => Self::PW,
            "RBO" => Self::RBO,
            "REO" => Self::REO,
            "RESID" => Self::RESID,
            "REX" => Self::REX,
            "RNAO" => Self::RNAO,
            "RO" => Self::RO,
            "RS" => Self::RS,
            "RXNO" => Self::RXNO,
            "SBO" => Self::SBO,
            "SCDO" => Self::SCDO,
            "SCO" => Self::SCO,
            "SDGIO" => Self::SDGIO,
            "SEP" => Self::SEP,
            "SEPIO" => Self::SEPIO,
            "SIBO" => Self::SIBO,
            "SIO" => Self::SIO,
            "SLSO" => Self::SLSO,
            "SO" => Self::SO,
            "SPD" => Self::SPD,
            "STATO" => Self::STATO,
            "SWO" => Self::SWO,
            "SYMP" => Self::SYMP,
            "T4FS" => Self::T4FS,
            "TADS" => Self::TADS,
            "TAXRANK" => Self::TAXRANK,
            "TGMA" => Self::TGMA,
            "TO" => Self::TO,
            "TRANS" => Self::TRANS,
            "TSO" => Self::TSO,
            "TTO" => Self::TTO,
            "TXPO" => Self::TXPO,
            "UBERON" => Self::UBERON,
            "uberon-basic" | "uberon_basic" => Self::uberon_basic,
            "uberon_collected_metazoa" => Self::uberon_collected_metazoa,
            "uberon_depictions" => Self::uberon_depictions,
            "UO" => Self::UO,
            "UPA" => Self::UPA,
            "UPHENO" => Self::UPHENO,
            "VariO" => Self::VariO,
            "VBO" => Self::VBO,
            "VICO" => Self::VICO,
            "VIDO" => Self::VIDO,
            "VIO" => Self::VIO,
            "VIVO-ISF" | "VIVO_ISF" => Self::VIVO_ISF,
            "VO" => Self::VO,
            "VT" => Self::VT,
            "VTO" => Self::VTO,
            "WBbt" => Self::WBbt,
            "WBls" => Self::WBls,
            "WBPhenotype" => Self::WBPhenotype,
            "XAO" => Self::XAO,
            "XCO" => Self::XCO,
            "XL" => Self::XL,
            "XLMOD" => Self::XLMOD,
            "XPO" => Self::XPO,
            "ZECO" => Self::ZECO,
            "ZFA" => Self::ZFA,
            "ZFS" => Self::ZFS,
            "ZP" => Self::ZP,
            _ => Self::Unknown,
        }
    }
}

impl std::str::FromStr for ControlledVocabulary {
    type Err = ();

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        Ok(s.into())
    }
}

impl std::fmt::Display for ControlledVocabulary {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.write_str(self.as_str())
    }
}

/// A CURIE is a namespace + accession identifier
#[derive(Clone, Copy, Debug, Eq, Hash, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct Curie {
    /// The controlled vocabulary
    pub cv: ControlledVocabulary,
    /// The accession code
    pub accession: AccessionCode,
}

/// A curie. For documentation reasons a full term definition is also allowed. So both examples
/// give the exact same `Curie` result:
/// ```
/// use mzcv::curie;
/// curie!(MS:1002357);
/// curie!(MS:1002357|PSM-level probability);
/// ```
#[macro_export]
macro_rules! curie {
    ($ns:ident:$acc:tt) => {
        $crate::Curie {
            cv: $crate::ControlledVocabulary::$ns,
            accession: $crate::accession_code!($acc),
        }
    };
    ($ns:ident:$acc:literal|$($name:tt)+) => {
        $crate::curie!($ns:$acc)
    };
}

impl std::fmt::Display for Curie {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "{}:{}", self.cv, self.accession)
    }
}

/// An error that occured when parsing a CURIE
#[derive(Debug)]
pub enum CURIEParsingError {
    /// The CV name was not recognised
    UnknownControlledVocabulary,
    /// The accession code could not be parsed
    AccessionParsingError(AccessionCodeParseError),
    /// No name separator ':' could be found
    MissingNamespaceSeparator,
}

impl std::str::FromStr for Curie {
    type Err = CURIEParsingError;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        if let Some((cv, accession)) = s.split_once(':').or_else(|| s.split_once('_')) {
            let cv = cv.into();
            let accession = accession
                .parse()
                .map_err(CURIEParsingError::AccessionParsingError)?;
            Ok(Self { cv, accession })
        } else {
            Err(CURIEParsingError::MissingNamespaceSeparator)
        }
    }
}

/// An accession code, Can either be a numeric code (u32 to 4 milion, so 9 fully utilised digits).
/// Or it can be an ASCII alphanumeric code (case-sensitive) of 1 to 8 characters.
#[derive(Clone, Copy, Debug, Eq, Hash, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum AccessionCode {
    /// A strictly numeric code
    Numeric(u32),
    /// An alphanumeric code, can be length 1 to 8 ASCII chars (no spaces allowed)
    Alphanumeric(NonZeroU8, [u8; 7]),
    // Maybe use ThinStr for dynamic strings, very likely this cannot be done together with an 8 byte inline string but it might be better in most ways
    //Big(ThinStr),
}

#[expect(
    clippy::unwrap_in_result,
    reason = "UTF8 reading cannot fail because that is checked before and returning an Err in that case cannot be done because std::fmt::Errors can/should not be made"
)]
impl std::fmt::Display for AccessionCode {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Self::Numeric(n) => write!(f, "{n:07}"),
            Self::Alphanumeric(first, bytes) => write!(
                f,
                "{}{}",
                char::from(first.get()),
                std::str::from_utf8(bytes.trim_ascii_end())
                    .expect("Invalid text in accession code")
            ),
        }
    }
}

/// Create an accession code, using this with a numeric code is match arm valid, using this with an alphanumeric code is const compatible.
/// ```rust ignore
/// match curie!(MS:000111) {
///     curie!(MS:0000111) => (),
///     x if x == curie!(MS:H000111G) => (),
///     _ => (),
/// }
/// ```
#[macro_export]
macro_rules! accession_code {
    ($acc:literal) => {
        // #[allow(clippy::zero_prefixed_literal)] cannot put allows on single expressions yet
        $crate::AccessionCode::Numeric($acc)
    };
    ($acc:tt) => {
        const {
            const BYTES: &[u8] = stringify!($acc).as_bytes();
            assert!(BYTES[0] != 0);
            assert!(BYTES.is_ascii());
            match BYTES {
                [a, b, c, d, e, f, g, h] => $crate::AccessionCode::Alphanumeric(
                    std::num::NonZeroU8::new(*a).unwrap(),
                    [*b, *c, *d, *e, *f, *g, *h],
                ),
                [a, b, c, d, e, f, g] => $crate::AccessionCode::Alphanumeric(
                    std::num::NonZeroU8::new(*a).unwrap(),
                    [*b, *c, *d, *e, *f, *g, 0x20],
                ),
                [a, b, c, d, e, f] => $crate::AccessionCode::Alphanumeric(
                    std::num::NonZeroU8::new(*a).unwrap(),
                    [*b, *c, *d, *e, *f, 0x20, 0x20],
                ),
                [a, b, c, d, e] => $crate::AccessionCode::Alphanumeric(
                    std::num::NonZeroU8::new(*a).unwrap(),
                    [*b, *c, *d, *e, 0x20, 0x20, 0x20],
                ),
                [a, b, c, d] => $crate::AccessionCode::Alphanumeric(
                    std::num::NonZeroU8::new(*a).unwrap(),
                    [*b, *c, *d, 0x20, 0x20, 0x20, 0x20],
                ),
                [a, b, c] => $crate::AccessionCode::Alphanumeric(
                    std::num::NonZeroU8::new(*a).unwrap(),
                    [*b, *c, 0x20, 0x20, 0x20, 0x20, 0x20],
                ),
                [a, b] => $crate::AccessionCode::Alphanumeric(
                    std::num::NonZeroU8::new(*a).unwrap(),
                    [*b, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20],
                ),
                [a] => $crate::AccessionCode::Alphanumeric(
                    std::num::NonZeroU8::new(*a).unwrap(),
                    [0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20],
                ),
                _ => panic!(concat!(
                    "Cannot convert ",
                    stringify!($acc),
                    " to accession code. Can only handle strings of 1 to 8 bytes"
                )),
            }
        }
    };
}

/// An error when parsing an accession code
#[derive(Debug)]
pub enum AccessionCodeParseError {
    /// An invalid character was encountered, only alphanumeric characters are allowed
    InvalidCharacters(String),
    /// The accession code was over 8 bytes
    TooLong(String),
    /// The accession code was empty
    Empty,
}

impl std::str::FromStr for AccessionCode {
    type Err = AccessionCodeParseError;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        if s.is_empty() {
            return Err(AccessionCodeParseError::Empty);
        }
        if s.chars().any(|c| !c.is_alphanumeric()) {
            return Err(AccessionCodeParseError::InvalidCharacters(s.to_string()));
        }
        s.parse::<u32>().map_or_else(
            |_| {
                if s.len() > 8 {
                    return Err(AccessionCodeParseError::TooLong(s.to_string()));
                }
                let mut bytes = [0x20; 7]; // Space
                bytes[..s.len() - 1].copy_from_slice(&s.as_bytes()[1..]);
                curie!(NCIT:P383);
                Ok(Self::Alphanumeric(
                    NonZeroU8::new(s.as_bytes()[0]).unwrap(),
                    bytes,
                ))
            },
            |u| Ok(Self::Numeric(u)),
        )
    }
}

/// A term, a CURIE plus its name
#[derive(Clone, Debug, Eq, Hash, PartialEq)]
pub struct Term {
    /// The CURIE (eg MS:0000000)
    pub accession: Curie,
    /// The name
    pub name: std::borrow::Cow<'static, str>, // Static Cow to allow to have term in match arms
}

/// Create a new term `term!(MS:1002357|PSM-level probability)`. The accession/name combination
/// is not validated.
#[macro_export]
macro_rules! term {
    ($ns:ident:$accession:literal|$($name:tt)+) =>  {
        $crate::mzspeclib::Term {
            accession: $crate::curie!($ns:$accession),
            name: std::borrow::Cow::Borrowed(stringify!($($name)+))
        }
    };
}

#[cfg(test)]
#[allow(
    clippy::missing_panics_doc,
    clippy::zero_prefixed_literal,
    clippy::unnested_or_patterns
)]
mod tests {
    use crate::Curie;

    #[test]
    fn parse_curies() {
        let options = [
            "NCIT:C25330",
            "NCIT:R100",
            "NCIT:P383",
            "MS:1000014",
            "UO:0000245",
            "BFO:0000015",
            "BAO_0000925", // Seen in one Obo file, but also quite common in URLs
            "GAZ:00002933",
            "AfPO_0000233",
            "BTO:0004947",
            "PRIDE:0000521",
            "MOD:01188",
            "XLMOD:07097",
            "GNO:G00001NT",
            "GNO:00000015",
        ];
        for option in options {
            let _curie: Curie = option.parse().unwrap();
        }
    }

    #[test]
    fn curie_macro() {
        assert_eq!("NCIT:C25330".parse::<Curie>().unwrap(), curie!(NCIT:C25330));
        assert_eq!("NCIT:R100".parse::<Curie>().unwrap(), curie!(NCIT:R100));
        assert_eq!("NCIT:P383".parse::<Curie>().unwrap(), curie!(NCIT:P383));
        assert_eq!("MS:1000014".parse::<Curie>().unwrap(), curie!(MS:1000014));
        assert_eq!("UO:0000245".parse::<Curie>().unwrap(), curie!(UO:0000245));
        assert_eq!("BFO:0000015".parse::<Curie>().unwrap(), curie!(BFO:0000015));
        assert_eq!("BTO:0004947".parse::<Curie>().unwrap(), curie!(BTO:0004947));
        assert_eq!(
            "PRIDE:0000521".parse::<Curie>().unwrap(),
            curie!(PRIDE:0000521)
        );
        assert_eq!("MOD:01188".parse::<Curie>().unwrap(), curie!(MOD:01188));
        assert_eq!("XLMOD:07097".parse::<Curie>().unwrap(), curie!(XLMOD:07097));
        assert_eq!(
            "GNO:G00001NT".parse::<Curie>().unwrap(),
            curie!(GNO:G00001NT)
        );
        assert_eq!(
            "GNO:00000015".parse::<Curie>().unwrap(),
            curie!(GNO:00000015)
        );
    }

    #[test]
    fn match_arm() {
        assert!(
            match "NCIT:C25330".parse::<Curie>().unwrap() {
                curie!(MS:0000111) | curie!(MS:0000112|hello world) => Err(()),
                x if x == curie!(MS:H000111G) => Err(()),
                x if x == curie!(NCIT:C25330) => Ok(()),
                _ => Err(()),
            }
            .is_ok()
        );
    }
}