-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtcan.ofn
2175 lines (1637 loc) · 106 KB
/
tcan.ofn
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
Prefix(:=<http://ontology.phyloref.org/>)
Prefix(dc:=<http://purl.org/dc/elements/1.1/>)
Prefix(tc:=<http://rs.tdwg.org/ontology/voc/TaxonConcept#>)
Prefix(tn:=<http://rs.tdwg.org/ontology/voc/TaxonName#>)
Prefix(dwc:=<http://rs.tdwg.org/dwc/terms/>)
Prefix(obo:=<http://purl.obolibrary.org/obo/>)
Prefix(owl:=<http://www.w3.org/2002/07/owl#>)
Prefix(rdf:=<http://www.w3.org/1999/02/22-rdf-syntax-ns#>)
Prefix(xml:=<http://www.w3.org/XML/1998/namespace>)
Prefix(xsd:=<http://www.w3.org/2001/XMLSchema#>)
Prefix(rdfs:=<http://www.w3.org/2000/01/rdf-schema#>)
Prefix(skos:=<http://www.w3.org/2004/02/skos/core#>)
Prefix(tcan:=<http://ontology.phyloref.org/tcan.owl#>)
Prefix(dwciri:=<http://rs.tdwg.org/dwc/iri/>)
Prefix(dcterms:=<http://purl.org/dc/terms/>)
Prefix(tdwgcmn:=<http://rs.tdwg.org/ontology/voc/Common#>)
Prefix(openbiodiv:=<http://openbiodiv.net/>)
Ontology(<http://ontology.phyloref.org/tcan.owl>
<http://ontology.phyloref.org/2021-03-15/tcan.owl>
Annotation(dc:creator "Hilmar Lapp")
Annotation(dc:rights "Axioms under the namespace of this ontology are released under the Creative Commons Zero 1.0 public domain waiver. Terms and axioms imported from other sources are under the licenses of the vocabularies they are defined in (see rdfs:isDefinedBy annotations).")
Annotation(dc:title "Ontology for Taxon Concepts And Names")
Annotation(dcterms:source openbiodiv:ontology)
Annotation(dcterms:source obo:NOMEN)
Annotation(dcterms:source <http://rs.tdwg.org/dwc/iri/>)
Annotation(dcterms:source <http://rs.tdwg.org/dwc/terms/>)
Annotation(dcterms:source <http://rs.tdwg.org/ontology/voc/TaxonConcept>)
Annotation(dcterms:source <http://rs.tdwg.org/ontology/voc/TaxonName>)
Annotation(rdfs:comment "The Ontology for Taxon Concepts And Names (TCAN) is an application ontology for expressing, matching, and resolving taxon concepts and their names as encountered in the wild, such as in publications, taxon mentions, clade definitions, etc. One of the key use cases for which it is being developed is for expressing and matching specifiers (in essence taxon concepts) used in clade definitions.
The TCAN ontology is a synthesis of a variety of relevant vocabularies and ontologies, including in particular the TDWG TaxonName, TaxonConcept, and DarwinCore vocabularies; the NOMEN ontology (SpeciesFileGroup); the OpenBiodiv Ontology (Pensoft); and the Comparative Data Analysis Ontology (CDAO).
One of the express design goals of TCAN is to avoid as much as possible creating new terms, whether classes or properties. Hence, there will be few if any terms here that are not already present in its source vocabularies. Instead, TCAN considers its added value in the following.
(1) Provide an ontology for its application domain that stands on its own, meaning all necessary axioms are either directly included, or are imported from locations that resolve automatically and reliably.
(2) Select subsets suitable for its application domain from each source vocabulary, and drop extraneous axioms and annotations.
(3) Apply error corrections and replace non-standard annotation properties with standard ones. Ensure there are no parse nor reasoner errors.
(4) Supplement subclass, type, class expression and other axioms to promote alignment and interoperability between the source ontologies.
(5) Ensure expressivity is at least within the OWL-DL, and ideally within the OWL-EL profile.")
Declaration(Class(openbiodiv:ScientificName))
Declaration(Class(openbiodiv:TaxonomicConcept))
Declaration(Class(openbiodiv:TaxonomicConceptLabel))
Declaration(Class(openbiodiv:TaxonomicName))
Declaration(Class(openbiodiv:VernacularName))
Declaration(Class(obo:CDAO_0000138))
Declaration(Class(obo:NOMEN_0000003))
Declaration(Class(obo:NOMEN_0000005))
Declaration(Class(obo:NOMEN_0000006))
Declaration(Class(obo:NOMEN_0000007))
Declaration(Class(obo:NOMEN_0000008))
Declaration(Class(obo:NOMEN_0000009))
Declaration(Class(obo:NOMEN_0000010))
Declaration(Class(obo:NOMEN_0000011))
Declaration(Class(obo:NOMEN_0000014))
Declaration(Class(obo:NOMEN_0000015))
Declaration(Class(obo:NOMEN_0000016))
Declaration(Class(obo:NOMEN_0000019))
Declaration(Class(obo:NOMEN_0000020))
Declaration(Class(obo:NOMEN_0000026))
Declaration(Class(obo:NOMEN_0000027))
Declaration(Class(obo:NOMEN_0000029))
Declaration(Class(obo:NOMEN_0000030))
Declaration(Class(obo:NOMEN_0000033))
Declaration(Class(obo:NOMEN_0000034))
Declaration(Class(obo:NOMEN_0000036))
Declaration(Class(obo:NOMEN_0000037))
Declaration(Class(obo:NOMEN_0000043))
Declaration(Class(obo:NOMEN_0000055))
Declaration(Class(obo:NOMEN_0000056))
Declaration(Class(obo:NOMEN_0000057))
Declaration(Class(obo:NOMEN_0000062))
Declaration(Class(obo:NOMEN_0000063))
Declaration(Class(obo:NOMEN_0000064))
Declaration(Class(obo:NOMEN_0000065))
Declaration(Class(obo:NOMEN_0000066))
Declaration(Class(obo:NOMEN_0000067))
Declaration(Class(obo:NOMEN_0000068))
Declaration(Class(obo:NOMEN_0000069))
Declaration(Class(obo:NOMEN_0000070))
Declaration(Class(obo:NOMEN_0000071))
Declaration(Class(obo:NOMEN_0000072))
Declaration(Class(obo:NOMEN_0000073))
Declaration(Class(obo:NOMEN_0000074))
Declaration(Class(obo:NOMEN_0000075))
Declaration(Class(obo:NOMEN_0000076))
Declaration(Class(obo:NOMEN_0000077))
Declaration(Class(obo:NOMEN_0000078))
Declaration(Class(obo:NOMEN_0000079))
Declaration(Class(obo:NOMEN_0000080))
Declaration(Class(obo:NOMEN_0000081))
Declaration(Class(obo:NOMEN_0000082))
Declaration(Class(obo:NOMEN_0000083))
Declaration(Class(obo:NOMEN_0000084))
Declaration(Class(obo:NOMEN_0000085))
Declaration(Class(obo:NOMEN_0000086))
Declaration(Class(obo:NOMEN_0000087))
Declaration(Class(obo:NOMEN_0000088))
Declaration(Class(obo:NOMEN_0000089))
Declaration(Class(obo:NOMEN_0000090))
Declaration(Class(obo:NOMEN_0000091))
Declaration(Class(obo:NOMEN_0000092))
Declaration(Class(obo:NOMEN_0000104))
Declaration(Class(obo:NOMEN_0000107))
Declaration(Class(obo:NOMEN_0000109))
Declaration(Class(obo:NOMEN_0000110))
Declaration(Class(obo:NOMEN_0000111))
Declaration(Class(obo:NOMEN_0000113))
Declaration(Class(obo:NOMEN_0000114))
Declaration(Class(obo:NOMEN_0000115))
Declaration(Class(obo:NOMEN_0000116))
Declaration(Class(obo:NOMEN_0000117))
Declaration(Class(obo:NOMEN_0000118))
Declaration(Class(obo:NOMEN_0000125))
Declaration(Class(obo:NOMEN_0000126))
Declaration(Class(obo:NOMEN_0000127))
Declaration(Class(obo:NOMEN_0000128))
Declaration(Class(obo:NOMEN_0000129))
Declaration(Class(obo:NOMEN_0000168))
Declaration(Class(obo:NOMEN_0000169))
Declaration(Class(obo:NOMEN_0000174))
Declaration(Class(obo:NOMEN_0000191))
Declaration(Class(obo:NOMEN_0000192))
Declaration(Class(obo:NOMEN_0000193))
Declaration(Class(obo:NOMEN_0000194))
Declaration(Class(obo:NOMEN_0000197))
Declaration(Class(obo:NOMEN_0000199))
Declaration(Class(obo:NOMEN_0000201))
Declaration(Class(obo:NOMEN_0000206))
Declaration(Class(obo:NOMEN_0000217))
Declaration(Class(obo:NOMEN_0000223))
Declaration(Class(obo:NOMEN_0000224))
Declaration(Class(obo:NOMEN_0000225))
Declaration(Class(obo:NOMEN_0000226))
Declaration(Class(obo:NOMEN_0000293))
Declaration(Class(obo:NOMEN_0000295))
Declaration(Class(obo:NOMEN_0000296))
Declaration(Class(obo:NOMEN_0000297))
Declaration(Class(obo:NOMEN_0000298))
Declaration(Class(obo:NOMEN_0000299))
Declaration(Class(obo:NOMEN_0000300))
Declaration(Class(obo:NOMEN_0000301))
Declaration(Class(obo:NOMEN_0000302))
Declaration(Class(obo:NOMEN_0000304))
Declaration(Class(obo:NOMEN_0000305))
Declaration(Class(obo:NOMEN_0000306))
Declaration(Class(obo:NOMEN_0000307))
Declaration(Class(obo:NOMEN_0000308))
Declaration(Class(obo:NOMEN_0000309))
Declaration(Class(obo:NOMEN_0000310))
Declaration(Class(obo:NOMEN_0000311))
Declaration(Class(obo:NOMEN_0000312))
Declaration(Class(obo:NOMEN_0000313))
Declaration(Class(obo:NOMEN_0000314))
Declaration(Class(obo:NOMEN_0000315))
Declaration(Class(obo:NOMEN_0000316))
Declaration(Class(obo:NOMEN_0000317))
Declaration(Class(obo:NOMEN_0000318))
Declaration(Class(obo:NOMEN_0000319))
Declaration(Class(obo:NOMEN_0000320))
Declaration(Class(obo:NOMEN_0000321))
Declaration(Class(obo:NOMEN_0000322))
Declaration(Class(obo:NOMEN_0000323))
Declaration(Class(obo:NOMEN_0000324))
Declaration(Class(obo:NOMEN_0000325))
Declaration(Class(obo:NOMEN_0000326))
Declaration(Class(obo:NOMEN_0000327))
Declaration(Class(obo:NOMEN_0000328))
Declaration(Class(obo:NOMEN_0000329))
Declaration(Class(obo:NOMEN_0000330))
Declaration(Class(obo:NOMEN_0000331))
Declaration(Class(obo:NOMEN_0000332))
Declaration(Class(obo:NOMEN_0000333))
Declaration(Class(obo:NOMEN_0000334))
Declaration(Class(obo:NOMEN_0000335))
Declaration(Class(obo:NOMEN_0000336))
Declaration(Class(obo:NOMEN_0000337))
Declaration(Class(obo:NOMEN_0000338))
Declaration(Class(obo:NOMEN_0000339))
Declaration(Class(obo:NOMEN_0000341))
Declaration(Class(obo:NOMEN_0000342))
Declaration(Class(obo:NOMEN_0000343))
Declaration(Class(obo:NOMEN_0000344))
Declaration(Class(obo:NOMEN_0000345))
Declaration(Class(obo:NOMEN_0000346))
Declaration(Class(obo:NOMEN_0000347))
Declaration(Class(obo:NOMEN_0000348))
Declaration(Class(obo:NOMEN_0000349))
Declaration(Class(obo:NOMEN_0000350))
Declaration(Class(obo:NOMEN_0000351))
Declaration(Class(obo:NOMEN_0000352))
Declaration(Class(obo:NOMEN_0000353))
Declaration(Class(obo:NOMEN_0000354))
Declaration(Class(obo:NOMEN_0000355))
Declaration(Class(obo:NOMEN_0000356))
Declaration(Class(obo:NOMEN_0000357))
Declaration(Class(obo:NOMEN_0000358))
Declaration(Class(obo:NOMEN_0000359))
Declaration(Class(obo:NOMEN_0000360))
Declaration(Class(obo:NOMEN_0000361))
Declaration(Class(obo:NOMEN_0000363))
Declaration(Class(obo:NOMEN_0000364))
Declaration(Class(obo:NOMEN_0000365))
Declaration(Class(obo:NOMEN_0000366))
Declaration(Class(obo:NOMEN_0000367))
Declaration(Class(obo:NOMEN_0000368))
Declaration(Class(obo:NOMEN_0000377))
Declaration(Class(obo:NOMEN_0000379))
Declaration(Class(obo:NOMEN_0000380))
Declaration(Class(obo:NOMEN_0000381))
Declaration(Class(obo:NOMEN_0000382))
Declaration(Class(obo:NOMEN_0000383))
Declaration(Class(obo:NOMEN_0000384))
Declaration(Class(obo:NOMEN_0000385))
Declaration(Class(obo:NOMEN_0000386))
Declaration(Class(obo:NOMEN_0000387))
Declaration(Class(obo:NOMEN_0000388))
Declaration(Class(dwc:Taxon))
Declaration(Class(<http://rs.tdwg.org/ontology/voc/Specimen#Specimen>))
Declaration(Class(tc:TaxonConcept))
Declaration(Class(tn:NomenclaturalCodeTerm))
Declaration(Class(tn:NomenclaturalType))
Declaration(Class(tn:NomenclaturalTypeTypeTerm))
Declaration(Class(tn:TaxonName))
Declaration(Class(<http://rs.tdwg.org/ontology/voc/TaxonRank#TaxonRankTerm>))
Declaration(ObjectProperty(openbiodiv:nameAccordingTo))
Declaration(ObjectProperty(openbiodiv:replacementName))
Declaration(ObjectProperty(openbiodiv:scientificName))
Declaration(ObjectProperty(openbiodiv:taxonomicConceptLabel))
Declaration(ObjectProperty(openbiodiv:taxonomicName))
Declaration(ObjectProperty(dwciri:nameAccordingTo))
Declaration(ObjectProperty(dwciri:scientificName))
Declaration(ObjectProperty(tc:accordingTo))
Declaration(ObjectProperty(tc:hasName))
Declaration(ObjectProperty(tn:basionymFor))
Declaration(ObjectProperty(tn:hasBasionym))
Declaration(ObjectProperty(tn:nomenclaturalCode))
Declaration(ObjectProperty(tn:rank))
Declaration(ObjectProperty(tn:typeName))
Declaration(ObjectProperty(tn:typeOfType))
Declaration(ObjectProperty(tn:typeSpecimen))
Declaration(ObjectProperty(tn:typifiedBy))
Declaration(DataProperty(dwc:accordingTo))
Declaration(DataProperty(dwc:nameAccordingTo))
Declaration(DataProperty(dwc:scientificName))
Declaration(DataProperty(tn:authorship))
Declaration(DataProperty(tn:cultivarNameGroup))
Declaration(DataProperty(tn:genusPart))
Declaration(DataProperty(tn:infragenericEpithet))
Declaration(DataProperty(tn:infraspecificEpithet))
Declaration(DataProperty(tn:nameComplete))
Declaration(DataProperty(tn:rankString))
Declaration(DataProperty(tn:specificEpithet))
Declaration(DataProperty(tn:typificationString))
Declaration(DataProperty(tn:uninomial))
Declaration(DataProperty(tn:year))
Declaration(NamedIndividual(tcan:ICNP))
Declaration(NamedIndividual(tcan:ICTV))
Declaration(NamedIndividual(tn:Allolectotype))
Declaration(NamedIndividual(tn:Alloneotype))
Declaration(NamedIndividual(tn:Allotype))
Declaration(NamedIndividual(tn:Bacteriological))
Declaration(NamedIndividual(tn:Cotype))
Declaration(NamedIndividual(tn:Epitype))
Declaration(NamedIndividual(tn:ExEpitype))
Declaration(NamedIndividual(tn:ExHolotype))
Declaration(NamedIndividual(tn:ExIsotype))
Declaration(NamedIndividual(tn:ExLectotype))
Declaration(NamedIndividual(tn:ExNeotype))
Declaration(NamedIndividual(tn:ExParatype))
Declaration(NamedIndividual(tn:ExSyntype))
Declaration(NamedIndividual(tn:ExType))
Declaration(NamedIndividual(tn:Hapantotype))
Declaration(NamedIndividual(tn:Holotype))
Declaration(NamedIndividual(tn:ICBN))
Declaration(NamedIndividual(tn:ICNCP))
Declaration(NamedIndividual(tn:ICZN))
Declaration(NamedIndividual(tn:Iconotype))
Declaration(NamedIndividual(tn:Isolectotype))
Declaration(NamedIndividual(tn:Isoneotype))
Declaration(NamedIndividual(tn:Isosyntype))
Declaration(NamedIndividual(tn:Isotype))
Declaration(NamedIndividual(tn:Lectotype))
Declaration(NamedIndividual(tn:Neotype))
Declaration(NamedIndividual(tn:NotAType))
Declaration(NamedIndividual(tn:Paralectotype))
Declaration(NamedIndividual(tn:Paraneotype))
Declaration(NamedIndividual(tn:Paratype))
Declaration(NamedIndividual(tn:Plastoholotype))
Declaration(NamedIndividual(tn:Plastoisotype))
Declaration(NamedIndividual(tn:Plastolectotype))
Declaration(NamedIndividual(tn:Plastoneotype))
Declaration(NamedIndividual(tn:Plastoparatype))
Declaration(NamedIndividual(tn:Plastosyntype))
Declaration(NamedIndividual(tn:Plastotype))
Declaration(NamedIndividual(tn:SecondaryType))
Declaration(NamedIndividual(tn:SupplementaryType))
Declaration(NamedIndividual(tn:Syntype))
Declaration(NamedIndividual(tn:Topotype))
Declaration(NamedIndividual(tn:Type))
Declaration(NamedIndividual(tn:Viral))
Declaration(AnnotationProperty(obo:NOMEN_0000017))
Declaration(AnnotationProperty(obo:NOMEN_0000018))
Declaration(AnnotationProperty(dc:creator))
Declaration(AnnotationProperty(dc:description))
Declaration(AnnotationProperty(dc:publisher))
Declaration(AnnotationProperty(dc:relation))
Declaration(AnnotationProperty(dc:rights))
Declaration(AnnotationProperty(dc:title))
Declaration(AnnotationProperty(dcterms:issued))
Declaration(AnnotationProperty(dcterms:modified))
Declaration(AnnotationProperty(dcterms:source))
Declaration(AnnotationProperty(tdwgcmn:tcsEquivalence))
Declaration(AnnotationProperty(skos:altLabel))
Declaration(AnnotationProperty(skos:prefLabel))
############################
# Annotation Properties
############################
# Annotation Property: obo:NOMEN_0000017 (synonym)
AnnotationAssertion(rdfs:label obo:NOMEN_0000017 "synonym"@en)
# Annotation Property: obo:NOMEN_0000018 (abbreviation)
AnnotationAssertion(rdfs:label obo:NOMEN_0000018 "abbreviation"@en)
############################
# Object Properties
############################
# Object Property: openbiodiv:nameAccordingTo (openbiodiv:nameAccordingTo)
AnnotationAssertion(rdfs:comment openbiodiv:nameAccordingTo "The reference to the source in which the specific taxonomic
concept circumscription is defined or implied - traditionally signified by
the Latin 'sensu' or 'sec.'' (from secundum, meaning 'according to').
For taxa that are relevantly circumscribed by identifications, a reference
to the keys, monographs, experts and other sources should be given. Should
only be used with IRI's"@en)
AnnotationAssertion(rdfs:isDefinedBy openbiodiv:nameAccordingTo openbiodiv:openbiodiv-ontology)
SubObjectPropertyOf(openbiodiv:nameAccordingTo dwciri:nameAccordingTo)
# Object Property: openbiodiv:replacementName (has replacement name)
AnnotationAssertion(rdfs:comment openbiodiv:replacementName "This is a uni-directional property. Its meaning
is that one Linnaean name links to a different Linnaean name via the
usage of this property, then the object name is more accurate and should be
preferred given the information that system currently holds. This property is only
defined for Linnaean names."@en)
AnnotationAssertion(rdfs:isDefinedBy openbiodiv:replacementName openbiodiv:openbiodiv-ontology)
AnnotationAssertion(rdfs:label openbiodiv:replacementName "has replacement name"@en)
TransitiveObjectProperty(openbiodiv:replacementName)
# Object Property: openbiodiv:scientificName (has scientific name)
AnnotationAssertion(rdfs:isDefinedBy openbiodiv:scientificName openbiodiv:openbiodiv-ontology)
AnnotationAssertion(rdfs:label openbiodiv:scientificName "has scientific name"@en)
SubObjectPropertyOf(openbiodiv:scientificName openbiodiv:taxonomicName)
SubObjectPropertyOf(openbiodiv:scientificName dwciri:scientificName)
ObjectPropertyDomain(openbiodiv:scientificName openbiodiv:TaxonomicConcept)
ObjectPropertyRange(openbiodiv:scientificName openbiodiv:ScientificName)
# Object Property: openbiodiv:taxonomicConceptLabel (has taxon concept label)
AnnotationAssertion(rdfs:isDefinedBy openbiodiv:taxonomicConceptLabel openbiodiv:openbiodiv-ontology)
AnnotationAssertion(rdfs:label openbiodiv:taxonomicConceptLabel "has taxon concept label"@en)
SubObjectPropertyOf(openbiodiv:taxonomicConceptLabel openbiodiv:scientificName)
ObjectPropertyDomain(openbiodiv:taxonomicConceptLabel openbiodiv:TaxonomicConcept)
ObjectPropertyRange(openbiodiv:taxonomicConceptLabel openbiodiv:TaxonomicConceptLabel)
# Object Property: openbiodiv:taxonomicName (has taxonomic name)
AnnotationAssertion(rdfs:isDefinedBy openbiodiv:taxonomicName openbiodiv:openbiodiv-ontology)
AnnotationAssertion(rdfs:label openbiodiv:taxonomicName "has taxonomic name"@en)
SubObjectPropertyOf(openbiodiv:taxonomicName tc:hasName)
ObjectPropertyDomain(openbiodiv:taxonomicName openbiodiv:TaxonomicConcept)
ObjectPropertyRange(openbiodiv:taxonomicName openbiodiv:TaxonomicName)
# Object Property: dwciri:nameAccordingTo (name according to)
AnnotationAssertion(rdfs:comment dwciri:nameAccordingTo "the IRI version of dwc:nameAccordingTo"@en)
AnnotationAssertion(rdfs:isDefinedBy dwciri:nameAccordingTo <http://rs.tdwg.org/dwc/iri/>)
AnnotationAssertion(rdfs:label dwciri:nameAccordingTo "name according to"@en)
AnnotationAssertion(rdfs:seeAlso dwciri:nameAccordingTo dwc:nameAccordingTo)
SubObjectPropertyOf(dwciri:nameAccordingTo tc:accordingTo)
# Object Property: dwciri:scientificName (scientific name)
AnnotationAssertion(rdfs:comment dwciri:scientificName "the IRI version of dwc:scientificName"@en)
AnnotationAssertion(rdfs:isDefinedBy dwciri:scientificName <http://rs.tdwg.org/dwc/iri/>)
AnnotationAssertion(rdfs:label dwciri:scientificName "scientific name"@en)
AnnotationAssertion(rdfs:seeAlso dwciri:scientificName dwc:scientificName)
SubObjectPropertyOf(dwciri:scientificName openbiodiv:taxonomicName)
# Object Property: tc:accordingTo (according to)
AnnotationAssertion(rdfs:comment tc:accordingTo "Information about the authorship of this concept which uses the Name in their
sense (i.e. secundum, sensu). Could be an institution or collection or team of individuals.
Equivalent to TCS /DataSet/TaxonConcepts/TaxonConcept/AccordingTo/AccordingToDetailed ")
AnnotationAssertion(rdfs:isDefinedBy tc:accordingTo <http://rs.tdwg.org/ontology/voc/TaxonConcept>)
AnnotationAssertion(rdfs:label tc:accordingTo "according to")
ObjectPropertyDomain(tc:accordingTo tc:TaxonConcept)
# Object Property: tc:hasName (Has Name)
AnnotationAssertion(rdfs:comment tc:hasName "The TaxonName for this concept. Equivalent to TCS
/DataSet/TaxonConcepts/TaxonConcept/Name ")
AnnotationAssertion(rdfs:isDefinedBy tc:hasName <http://rs.tdwg.org/ontology/voc/TaxonConcept>)
AnnotationAssertion(rdfs:label tc:hasName "Has Name")
ObjectPropertyDomain(tc:hasName tc:TaxonConcept)
ObjectPropertyRange(tc:hasName tn:TaxonName)
# Object Property: tn:basionymFor (Basionym For)
AnnotationAssertion(tdwgcmn:tcsEquivalence tn:basionymFor "No equivalent in TCS but is inverse of ScientificName/Basionym ")
AnnotationAssertion(rdfs:comment tn:basionymFor " Relationship between a basionym and a new combination of the name. ")
AnnotationAssertion(rdfs:isDefinedBy tn:basionymFor <http://rs.tdwg.org/ontology/voc/TaxonName>)
AnnotationAssertion(rdfs:label tn:basionymFor "Basionym For")
InverseObjectProperties(tn:basionymFor tn:hasBasionym)
ObjectPropertyDomain(tn:basionymFor tn:TaxonName)
ObjectPropertyRange(tn:basionymFor tn:TaxonName)
# Object Property: tn:hasBasionym (Has Basionym)
AnnotationAssertion(tdwgcmn:tcsEquivalence tn:hasBasionym "ScientificName/Basionym")
AnnotationAssertion(rdfs:comment tn:hasBasionym " The basionym of this name if it is a new combination. The current name is a recombination (comb. nov.) of the name pointed to and the name pointed to is not, itself, a
recombination.")
AnnotationAssertion(rdfs:isDefinedBy tn:hasBasionym <http://rs.tdwg.org/ontology/voc/TaxonName>)
AnnotationAssertion(rdfs:label tn:hasBasionym "Has Basionym")
ObjectPropertyDomain(tn:hasBasionym tn:TaxonName)
ObjectPropertyRange(tn:hasBasionym tn:TaxonName)
# Object Property: tn:nomenclaturalCode (Nomenclatural Code)
AnnotationAssertion(tdwgcmn:tcsEquivalence tn:nomenclaturalCode "ScientificName@nomenclaturalCode")
AnnotationAssertion(rdfs:comment tn:nomenclaturalCode "The nomenclatural code that governs a taxon name or rank. By definition all taxon names are governed by one of the codes of nomenclature. These include ICBN, ICZN, ICNCP and others.")
AnnotationAssertion(rdfs:isDefinedBy tn:nomenclaturalCode <http://rs.tdwg.org/ontology/voc/TaxonName>)
AnnotationAssertion(rdfs:label tn:nomenclaturalCode "Nomenclatural Code")
ObjectPropertyRange(tn:nomenclaturalCode tn:NomenclaturalCodeTerm)
# Object Property: tn:rank (Rank)
AnnotationAssertion(dc:relation tn:rank tn:rankString)
AnnotationAssertion(tdwgcmn:tcsEquivalence tn:rank "ScientificName/Rank/@code")
AnnotationAssertion(rdfs:comment tn:rank "The taxonomic rank of this name. This is a link to an instance of TaxonomicRank. Compare with the rankString property.")
AnnotationAssertion(rdfs:isDefinedBy tn:rank <http://rs.tdwg.org/ontology/voc/TaxonName>)
AnnotationAssertion(rdfs:label tn:rank "Rank")
ObjectPropertyDomain(tn:rank tn:TaxonName)
ObjectPropertyRange(tn:rank <http://rs.tdwg.org/ontology/voc/TaxonRank#TaxonRankTerm>)
# Object Property: tn:typeName (Type Name)
AnnotationAssertion(rdfs:comment tn:typeName "The name that is the type. TaxonNames at ranks above species level are typified by the NAME of a lower taxon. Ultimately, by following the chain of type names, all names resolve to
a type species and so a type specimen. This property is mutually exclusive with typeSpecimen. A name can't have both. Equivalent to TCS ScientificName/Typification/TypeName. ")
AnnotationAssertion(rdfs:isDefinedBy tn:typeName <http://rs.tdwg.org/ontology/voc/TaxonName>)
AnnotationAssertion(rdfs:label tn:typeName "Type Name")
ObjectPropertyDomain(tn:typeName tn:NomenclaturalType)
ObjectPropertyRange(tn:typeName tn:TaxonName)
# Object Property: tn:typeOfType (Type of Type)
AnnotationAssertion(rdfs:comment tn:typeOfType "The kind of type this specimen is e.g. paratype, isotype, holotype etc. Types can be of different kinds. Equivalent to TCS
ScientificName/Typification/TypeVouchers/TypeVoucher@typeOfType ")
AnnotationAssertion(rdfs:isDefinedBy tn:typeOfType <http://rs.tdwg.org/ontology/voc/TaxonName>)
AnnotationAssertion(rdfs:label tn:typeOfType "Type of Type")
ObjectPropertyDomain(tn:typeOfType tn:NomenclaturalType)
ObjectPropertyRange(tn:typeOfType tn:NomenclaturalTypeTypeTerm)
# Object Property: tn:typeSpecimen (Type Specimen)
AnnotationAssertion(rdfs:comment tn:typeSpecimen "The specimen that is the type. TaxonNames at ranks of family and below are typified by a specimen. This property is mutually exclusive with typeName. Equivalent to TCS
ScientificName/Typification/TypeVouchers/TypeVoucher ")
AnnotationAssertion(rdfs:isDefinedBy tn:typeSpecimen <http://rs.tdwg.org/ontology/voc/TaxonName>)
AnnotationAssertion(rdfs:label tn:typeSpecimen "Type Specimen")
ObjectPropertyDomain(tn:typeSpecimen tn:NomenclaturalType)
ObjectPropertyRange(tn:typeSpecimen <http://rs.tdwg.org/ontology/voc/Specimen#Specimen>)
# Object Property: tn:typifiedBy (Typified By)
AnnotationAssertion(dc:relation tn:typifiedBy tn:typificationString)
AnnotationAssertion(tdwgcmn:tcsEquivalence tn:typifiedBy "ScientificName/Typification")
AnnotationAssertion(rdfs:comment tn:typifiedBy "A NomenclaturalType that typifies this name. An instance of NomenclaturalType that contains a type specimen or name for this name. See also note with NomenclaturalType class. See
also the typificationString property.")
AnnotationAssertion(rdfs:isDefinedBy tn:typifiedBy <http://rs.tdwg.org/ontology/voc/TaxonName>)
AnnotationAssertion(rdfs:label tn:typifiedBy "Typified By")
ObjectPropertyDomain(tn:typifiedBy tn:TaxonName)
ObjectPropertyRange(tn:typifiedBy tn:NomenclaturalType)
############################
# Data Properties
############################
# Data Property: dwc:accordingTo (According To)
AnnotationAssertion(rdfs:comment dwc:accordingTo "Abstract term to attribute information to a source."@en)
AnnotationAssertion(rdfs:isDefinedBy dwc:accordingTo <http://rs.tdwg.org/dwc/terms/>)
AnnotationAssertion(rdfs:label dwc:accordingTo "According To"@en)
# Data Property: dwc:nameAccordingTo (Name According To)
AnnotationAssertion(dc:description dwc:nameAccordingTo "Example: \"McCranie, J. R., D. B. Wake, and L. D. Wilson. 1996. The taxonomic status of Bolitoglossa schmidti, with comments on the biology of the Mesoamerican salamander Bolitoglossa dofleini (Caudata: Plethodontidae). Carib. J. Sci. 32:395-398.\", \"Werner Greuter 2008\", \"Lilljeborg 1861, Upsala Univ. Arsskrift, Math. Naturvet., pp. 4, 5\""@en)
AnnotationAssertion(rdfs:comment dwc:nameAccordingTo "The reference to the source in which the specific taxon concept circumscription is defined or implied - traditionally signified by the Latin \"sensu\" or \"sec.\" (from secundum, meaning \"according to\"). For taxa that result from identifications, a reference to the keys, monographs, experts and other sources should be given."@en)
AnnotationAssertion(rdfs:isDefinedBy dwc:nameAccordingTo <http://rs.tdwg.org/dwc/terms/>)
AnnotationAssertion(rdfs:label dwc:nameAccordingTo "Name According To"@en)
SubDataPropertyOf(dwc:nameAccordingTo dwc:accordingTo)
# Data Property: dwc:scientificName (Has Scientific Name)
AnnotationAssertion(dc:description dwc:scientificName "Examples: \"Coleoptera\" (order), \"Vespertilionidae\" (family), \"Manis\" (genus), \"Ctenomys sociabilis\" (genus + specificEpithet), \"Ambystoma tigrinum diaboli\" (genus + specificEpithet + infraspecificEpithet), \"Roptrocerus typographi (Györfi, 1952)\" (genus + specificEpithet + scientificNameAuthorship), \"Quercus agrifolia var. oxyadenia (Torr.) J.T. Howell\" (genus + specificEpithet + taxonRank + infraspecificEpithet + scientificNameAuthorship)"@en)
AnnotationAssertion(rdfs:comment dwc:scientificName "The full scientific name, with authorship and date information if known. When forming part of an Identification, this should be the name in lowest level taxonomic rank that can be determined. This term should not contain identification qualifications, which should instead be supplied in the IdentificationQualifier term."@en)
AnnotationAssertion(rdfs:isDefinedBy dwc:scientificName <http://rs.tdwg.org/dwc/terms/>)
AnnotationAssertion(rdfs:label dwc:scientificName "Has Scientific Name"@en)
# Data Property: tn:authorship (Authorship)
AnnotationAssertion(tdwgcmn:tcsEquivalence tn:authorship "ScientificName/CanonicalAuthorship/Simple")
AnnotationAssertion(rdfs:comment tn:authorship " The full author string used for this name. The full code-appropriate author team string for this name at this rank. Use this property for all names including both original
combinations and new combinations of bi and trinomial names (where some of the authors may be in brackets). If the TaxonName instance contains any details about authorship a representation of
them should be included in this property.")
AnnotationAssertion(rdfs:isDefinedBy tn:authorship <http://rs.tdwg.org/ontology/voc/TaxonName>)
AnnotationAssertion(rdfs:label tn:authorship "Authorship")
DataPropertyDomain(tn:authorship tn:TaxonName)
DataPropertyRange(tn:authorship xsd:string)
# Data Property: tn:cultivarNameGroup (Cultivar Name or Cultivar Group Name)
AnnotationAssertion(tdwgcmn:tcsEquivalence tn:cultivarNameGroup "ScientificName/CanonicalName/CultivarNameGroup")
AnnotationAssertion(rdfs:comment tn:cultivarNameGroup " The cultivar or related name governed by ICNCP. The name of the Cultivar, Cultivar Group, grex, convar or graft chimera under the International Code for the Nomenclature of
Cultivated Plants. Only include here the string of the name. i.e. omit the single quotes around cultivar names, the word Group that denotes cultivar group and the + sign used in chimeras.
These symbols can be added in later on the basis of the rank of the name. For example the use of the word 'Group' is language dependent.")
AnnotationAssertion(rdfs:isDefinedBy tn:cultivarNameGroup <http://rs.tdwg.org/ontology/voc/TaxonName>)
AnnotationAssertion(rdfs:label tn:cultivarNameGroup "Cultivar Name or Cultivar Group Name")
DataPropertyDomain(tn:cultivarNameGroup tn:TaxonName)
DataPropertyRange(tn:cultivarNameGroup xsd:string)
# Data Property: tn:genusPart (Genus Part)
AnnotationAssertion(tdwgcmn:tcsEquivalence tn:genusPart "ScientificName/CanonicalName/Genus")
AnnotationAssertion(rdfs:comment tn:genusPart " The genus part of a bi or trinomial name. The name of the genus for names below the rank of genus. This property should not be used for names at and above the rank of genus. For
names at and above genus rank the uninomial property should be used.")
AnnotationAssertion(rdfs:isDefinedBy tn:genusPart <http://rs.tdwg.org/ontology/voc/TaxonName>)
AnnotationAssertion(rdfs:label tn:genusPart "Genus Part")
DataPropertyDomain(tn:genusPart tn:TaxonName)
DataPropertyRange(tn:genusPart xsd:string)
# Data Property: tn:infragenericEpithet (Infrageneric Epithet)
AnnotationAssertion(tdwgcmn:tcsEquivalence tn:infragenericEpithet "ScientificName/CanonicalName/InfragenericEpithet")
AnnotationAssertion(rdfs:comment tn:infragenericEpithet " The infrageneric part of a binomial name at ranks above species but below genus. Names at ranks between species and genus are composed of two words; the genus and this
infrageneric epithet. This property should therefore always be accompanied by the genusPart property. If the infragenericEpithet property is present the uninomial, infraspecificEpithet,
specificEpithet and subspecificEpithet properties should be absent.")
AnnotationAssertion(rdfs:isDefinedBy tn:infragenericEpithet <http://rs.tdwg.org/ontology/voc/TaxonName>)
AnnotationAssertion(rdfs:label tn:infragenericEpithet "Infrageneric Epithet")
DataPropertyDomain(tn:infragenericEpithet tn:TaxonName)
DataPropertyRange(tn:infragenericEpithet xsd:string)
# Data Property: tn:infraspecificEpithet (Infraspecific Epithet)
AnnotationAssertion(tdwgcmn:tcsEquivalence tn:infraspecificEpithet "ScientificName/CanonicalName/InfraspecificEpithet")
AnnotationAssertion(rdfs:comment tn:infraspecificEpithet " The infraspecific epithet part of a trinomial name below the rank of species. Names at ranks below species are composed of three words; the genus epithet, the specific epithet and
an infraspecific epithet. This property should therefore always be accompanied by the genusPart property and a specificEpithet property. If the specificEpithet property is present the
uninomial and infragenusPart properties should be absent. ")
AnnotationAssertion(rdfs:isDefinedBy tn:infraspecificEpithet <http://rs.tdwg.org/ontology/voc/TaxonName>)
AnnotationAssertion(rdfs:label tn:infraspecificEpithet "Infraspecific Epithet")
DataPropertyDomain(tn:infraspecificEpithet tn:TaxonName)
DataPropertyRange(tn:infraspecificEpithet xsd:string)
# Data Property: tn:nameComplete (Name Complete)
AnnotationAssertion(tdwgcmn:tcsEquivalence tn:nameComplete "ScientificName/CanonicalName/Simple")
AnnotationAssertion(rdfs:comment tn:nameComplete " The complete uninomial, binomial or trinomial name without any authority or year components. Every TaxonName should have a DublinCore:title property that contains the complete
name string including authors and year (where appropriate).")
AnnotationAssertion(rdfs:isDefinedBy tn:nameComplete <http://rs.tdwg.org/ontology/voc/TaxonName>)
AnnotationAssertion(rdfs:label tn:nameComplete "Name Complete")
DataPropertyDomain(tn:nameComplete tn:TaxonName)
DataPropertyRange(tn:nameComplete xsd:string)
# Data Property: tn:rankString (Rank String)
AnnotationAssertion(dc:relation tn:rankString tn:rank)
AnnotationAssertion(tdwgcmn:tcsEquivalence tn:rankString "ScientificName/Rank")
AnnotationAssertion(rdfs:comment tn:rankString "The taxonomic rank of this name as a string. A string representation of the rank of this name. It is highly recommended that the rank property be used along with this one unless
the correct rank is not available in the rank vocabulary.")
AnnotationAssertion(rdfs:isDefinedBy tn:rankString <http://rs.tdwg.org/ontology/voc/TaxonName>)
AnnotationAssertion(rdfs:label tn:rankString "Rank String")
DataPropertyDomain(tn:rankString tn:TaxonName)
DataPropertyRange(tn:rankString xsd:string)
# Data Property: tn:specificEpithet (Specific Epithet)
AnnotationAssertion(tdwgcmn:tcsEquivalence tn:specificEpithet "ScientificName/CanonicalName/SpecificEpithet")
AnnotationAssertion(rdfs:comment tn:specificEpithet " The specific epithet part of a binomial or trinomial name at or below the rank of species. Names at ranks of species and below are composed of two or three words; the genus
epithet, the specific epithet and possibly an infraspecific epithet. This property should therefore always be accompanied by the genusPart property. If the specificEpithet property is present
the uninomial and infragenericEpithet properties should be absent.")
AnnotationAssertion(rdfs:isDefinedBy tn:specificEpithet <http://rs.tdwg.org/ontology/voc/TaxonName>)
AnnotationAssertion(rdfs:label tn:specificEpithet "Specific Epithet")
DataPropertyDomain(tn:specificEpithet tn:TaxonName)
DataPropertyRange(tn:specificEpithet xsd:string)
# Data Property: tn:typificationString (Typified String)
AnnotationAssertion(dc:relation tn:typificationString tn:typifiedBy)
AnnotationAssertion(tdwgcmn:tcsEquivalence tn:typificationString "ScientificName/Typification/Simple")
AnnotationAssertion(rdfs:comment tn:typificationString "A string representing the typification of this name. See also the typifiedBy property.")
AnnotationAssertion(rdfs:isDefinedBy tn:typificationString <http://rs.tdwg.org/ontology/voc/TaxonName>)
AnnotationAssertion(rdfs:label tn:typificationString "Typified String")
DataPropertyDomain(tn:typificationString tn:TaxonName)
DataPropertyRange(tn:typificationString xsd:string)
# Data Property: tn:uninomial (Uninomial)
AnnotationAssertion(tdwgcmn:tcsEquivalence tn:uninomial "ScientificName/CanonicalName/Uninomial")
AnnotationAssertion(rdfs:comment tn:uninomial " Family, genus, infrafamilial, suprafamilial or other uninomial name. This property should be used for any 'single word' names. These include Family, genus, infrafamilial, and
suprafamilial names. Note that this property should be used for Genus names. The genus field should only be used for names below rank of genus. ")
AnnotationAssertion(rdfs:isDefinedBy tn:uninomial <http://rs.tdwg.org/ontology/voc/TaxonName>)
AnnotationAssertion(rdfs:label tn:uninomial "Uninomial")
SubDataPropertyOf(tn:uninomial dwc:scientificName)
DataPropertyDomain(tn:uninomial tn:TaxonName)
DataPropertyRange(tn:uninomial xsd:string)
# Data Property: tn:year (Publication Year)
AnnotationAssertion(tdwgcmn:tcsEquivalence tn:year "ScientificName/Year")
AnnotationAssertion(rdfs:comment tn:year " The year of publication of this name. This is the year this name was published. If it is a new combination of the name then it is the year of publication of the combination not
the basionym. It should be the same as the year given in the publishedIn property. In zoology the place of first publication of a new combination is rarely given as it is not considered a
nomenclatural act unless it leads to homonymy. For new combinations of names in zoology it may therefore be inappropriate to supply this property or the publishedIn, combintationAuthorship or
combintationAuthorTeam properties. The main role of this property is to aid disambiguation where author strings may be confusing. This property is not restricted to a date type as feedback
from TCS suggested that this restriction was inappropriate.")
AnnotationAssertion(rdfs:isDefinedBy tn:year <http://rs.tdwg.org/ontology/voc/TaxonName>)
AnnotationAssertion(rdfs:label tn:year "Publication Year")
DataPropertyDomain(tn:year tn:TaxonName)
DataPropertyRange(tn:year xsd:string)
############################
# Classes
############################
# Class: openbiodiv:ScientificName (Scientific Name)
AnnotationAssertion(rdfs:isDefinedBy openbiodiv:ScientificName openbiodiv:openbiodiv-ontology)
AnnotationAssertion(rdfs:label openbiodiv:ScientificName "Scientific Name"@en)
EquivalentClasses(openbiodiv:ScientificName obo:NOMEN_0000036)
SubClassOf(openbiodiv:ScientificName openbiodiv:TaxonomicName)
# Class: openbiodiv:TaxonomicConcept (openbiodiv:TaxonomicConcept)
AnnotationAssertion(rdfs:comment openbiodiv:TaxonomicConcept "A taxonomic concept in the sense of Berendsohn"@en)
AnnotationAssertion(rdfs:isDefinedBy openbiodiv:TaxonomicConcept openbiodiv:openbiodiv-ontology)
EquivalentClasses(openbiodiv:TaxonomicConcept dwc:Taxon)
EquivalentClasses(Annotation(rdfs:isDefinedBy :tcan.owl) openbiodiv:TaxonomicConcept tc:TaxonConcept)
# Class: openbiodiv:TaxonomicConceptLabel (Taxon Concept Label)
AnnotationAssertion(rdfs:comment openbiodiv:TaxonomicConceptLabel "A taxon concept label is a taxonomic name
usage accompanied by an additional part, consisting of 'sec.' + an identifier
or a literature reference of a work containing the expression of a taxon concept
(treatment)."@en)
AnnotationAssertion(rdfs:isDefinedBy openbiodiv:TaxonomicConceptLabel openbiodiv:openbiodiv-ontology)
AnnotationAssertion(rdfs:label openbiodiv:TaxonomicConceptLabel "Taxon Concept Label"@en)
# Class: openbiodiv:TaxonomicName (openbiodiv:TaxonomicName)
AnnotationAssertion(rdfs:isDefinedBy openbiodiv:TaxonomicName openbiodiv:openbiodiv-ontology)
AnnotationAssertion(skos:altLabel openbiodiv:TaxonomicName "Biological Name"@en)
AnnotationAssertion(skos:prefLabel openbiodiv:TaxonomicName "Taxonomic Name"@en)
EquivalentClasses(openbiodiv:TaxonomicName tn:TaxonName)
SubClassOf(openbiodiv:TaxonomicName obo:NOMEN_0000030)
# Class: openbiodiv:VernacularName (Vernacular Name)
AnnotationAssertion(rdfs:isDefinedBy openbiodiv:VernacularName openbiodiv:openbiodiv-ontology)
AnnotationAssertion(rdfs:label openbiodiv:VernacularName "Vernacular Name"@en)
EquivalentClasses(openbiodiv:VernacularName obo:NOMEN_0000037)
SubClassOf(openbiodiv:VernacularName openbiodiv:TaxonomicName)
# Class: obo:CDAO_0000138 (TU)
AnnotationAssertion(rdfs:isDefinedBy obo:CDAO_0000138 obo:cdao.owl)
AnnotationAssertion(rdfs:label obo:CDAO_0000138 "TU"@en)
# Class: obo:NOMEN_0000003 (ICZN nonorder)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000003 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000003 "ICZN nonorder"@en)
SubClassOf(obo:NOMEN_0000003 obo:NOMEN_0000317)
# Class: obo:NOMEN_0000005 (ICN autonym)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000005 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000005 "ICN autonym"@en)
SubClassOf(obo:NOMEN_0000005 obo:NOMEN_0000384)
# Class: obo:NOMEN_0000006 (ICN subdivision of species and infraspecies)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000006 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000006 "ICN subdivision of species and infraspecies"@en)
SubClassOf(obo:NOMEN_0000006 obo:NOMEN_0000339)
# Class: obo:NOMEN_0000007 (ICN validly published name)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000007 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000007 "ICN validly published name"@en)
SubClassOf(obo:NOMEN_0000007 obo:NOMEN_0000383)
DisjointClasses(obo:NOMEN_0000007 obo:NOMEN_0000008)
# Class: obo:NOMEN_0000008 (ICN invalidly published name)
AnnotationAssertion(rdfs:comment obo:NOMEN_0000008 "invalidum")
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000008 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000008 "ICN invalidly published name"@en)
SubClassOf(obo:NOMEN_0000008 obo:NOMEN_0000383)
# Class: obo:NOMEN_0000009 (ICN conserved name)
AnnotationAssertion(obo:NOMEN_0000018 obo:NOMEN_0000009 "nom. cons.")
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000009 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000009 "ICN conserved name"@en)
SubClassOf(obo:NOMEN_0000009 obo:NOMEN_0000384)
# Class: obo:NOMEN_0000010 (ICN correct name)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000010 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000010 "ICN correct name"@en)
SubClassOf(obo:NOMEN_0000010 obo:NOMEN_0000384)
DisjointClasses(obo:NOMEN_0000010 obo:NOMEN_0000011)
# Class: obo:NOMEN_0000011 (ICN incorrect name)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000011 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000011 "ICN incorrect name"@en)
SubClassOf(obo:NOMEN_0000011 obo:NOMEN_0000384)
# Class: obo:NOMEN_0000014 (ICN incorrect original spelling)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000014 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000014 "ICN incorrect original spelling"@en)
SubClassOf(obo:NOMEN_0000014 obo:NOMEN_0000386)
# Class: obo:NOMEN_0000015 (ICN superfluous)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000015 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000015 "ICN superfluous"@en)
SubClassOf(obo:NOMEN_0000015 obo:NOMEN_0000386)
# Class: obo:NOMEN_0000016 (ICN homonym)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000016 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000016 "ICN homonym"@en)
SubClassOf(obo:NOMEN_0000016 obo:NOMEN_0000386)
# Class: obo:NOMEN_0000019 (ICN as synonym)
AnnotationAssertion(obo:NOMEN_0000018 obo:NOMEN_0000019 "pro syn.")
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000019 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000019 "ICN as synonym"@en)
SubClassOf(obo:NOMEN_0000019 obo:NOMEN_0000008)
# Class: obo:NOMEN_0000020 (ICN conserved spelling)
AnnotationAssertion(obo:NOMEN_0000018 obo:NOMEN_0000020 "orth. cons.")
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000020 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000020 "ICN conserved spelling"@en)
SubClassOf(obo:NOMEN_0000020 obo:NOMEN_0000384)
# Class: obo:NOMEN_0000026 (ICZN excluded)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000026 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000026 "ICZN excluded"@en)
SubClassOf(obo:NOMEN_0000026 obo:NOMEN_0000168)
# Class: obo:NOMEN_0000027 (nomenclatural rank)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000027 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000027 "nomenclatural rank"@en)
SubClassOf(obo:NOMEN_0000027 <http://rs.tdwg.org/ontology/voc/TaxonRank#TaxonRankTerm>)
# Class: obo:NOMEN_0000029 (name)
AnnotationAssertion(rdfs:comment obo:NOMEN_0000029 "The name that identifies a thing.")
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000029 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000029 "name"@en)
# Class: obo:NOMEN_0000030 (biological name)
AnnotationAssertion(rdfs:comment obo:NOMEN_0000030 "The name that identifies a biological thing.")
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000030 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000030 "biological name"@en)
SubClassOf(obo:NOMEN_0000030 obo:NOMEN_0000029)
# Class: obo:NOMEN_0000033 (above nomenclatural codes)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000033 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000033 "above nomenclatural codes"@en)
SubClassOf(obo:NOMEN_0000033 obo:NOMEN_0000027)
# Class: obo:NOMEN_0000034 (domain)
AnnotationAssertion(obo:NOMEN_0000017 obo:NOMEN_0000034 "empire")
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000034 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000034 "domain"@en)
SubClassOf(obo:NOMEN_0000034 obo:NOMEN_0000033)
# Class: obo:NOMEN_0000036 (scientific name)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000036 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000036 "scientific name"@en)
SubClassOf(obo:NOMEN_0000036 obo:NOMEN_0000030)
SubClassOf(Annotation(rdfs:isDefinedBy :tcan.owl) obo:NOMEN_0000036 tn:TaxonName)
# Class: obo:NOMEN_0000037 (vernacular name)
AnnotationAssertion(obo:NOMEN_0000017 obo:NOMEN_0000037 "common name")
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000037 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000037 "vernacular name"@en)
SubClassOf(obo:NOMEN_0000037 obo:NOMEN_0000030)
# Class: obo:NOMEN_0000043 (ICZN homonym)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000043 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000043 "ICZN homonym"@en)
SubClassOf(obo:NOMEN_0000043 obo:NOMEN_0000226)
# Class: obo:NOMEN_0000055 (ICZN fossil)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000055 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000055 "ICZN fossil"@en)
SubClassOf(obo:NOMEN_0000055 obo:NOMEN_0000107)
# Class: obo:NOMEN_0000056 (ICN hybrid)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000056 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000056 "ICN hybrid"@en)
SubClassOf(obo:NOMEN_0000056 obo:NOMEN_0000109)
# Class: obo:NOMEN_0000057 (ICN fossil)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000057 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000057 "ICN fossil"@en)
SubClassOf(obo:NOMEN_0000057 obo:NOMEN_0000109)
# Class: obo:NOMEN_0000062 (ICNP nomenclatural rank)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000062 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000062 "ICNP nomenclatural rank"@en)
SubClassOf(Annotation(rdfs:isDefinedBy :tcan.owl) obo:NOMEN_0000062 ObjectIntersectionOf(obo:NOMEN_0000027 ObjectHasValue(tn:nomenclaturalCode tcan:ICNP)))
# Class: obo:NOMEN_0000063 (ICNP above family-group)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000063 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000063 "ICNP above family-group"@en)
SubClassOf(obo:NOMEN_0000063 obo:NOMEN_0000062)
# Class: obo:NOMEN_0000064 (ICNP family-group)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000064 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000064 "ICNP family-group"@en)
SubClassOf(obo:NOMEN_0000064 obo:NOMEN_0000062)
# Class: obo:NOMEN_0000065 (ICNP genus-group)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000065 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000065 "ICNP genus-group"@en)
SubClassOf(obo:NOMEN_0000065 obo:NOMEN_0000062)
# Class: obo:NOMEN_0000066 (ICNP species-group)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000066 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000066 "ICNP species-group"@en)
SubClassOf(obo:NOMEN_0000066 obo:NOMEN_0000062)
# Class: obo:NOMEN_0000067 (ICNP species)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000067 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000067 "ICNP species"@en)
SubClassOf(obo:NOMEN_0000067 obo:NOMEN_0000066)
# Class: obo:NOMEN_0000068 (ICNP subspecies)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000068 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000068 "ICNP subspecies"@en)
SubClassOf(obo:NOMEN_0000068 obo:NOMEN_0000066)
# Class: obo:NOMEN_0000069 (ICNP genus)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000069 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000069 "ICNP genus"@en)
SubClassOf(obo:NOMEN_0000069 obo:NOMEN_0000065)
# Class: obo:NOMEN_0000070 (ICNP subgenus)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000070 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000070 "ICNP subgenus"@en)
SubClassOf(obo:NOMEN_0000070 obo:NOMEN_0000065)
# Class: obo:NOMEN_0000071 (ICNP family)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000071 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000071 "ICNP family"@en)
SubClassOf(obo:NOMEN_0000071 obo:NOMEN_0000064)
# Class: obo:NOMEN_0000072 (ICNP subfamily)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000072 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000072 "ICNP subfamily"@en)
SubClassOf(obo:NOMEN_0000072 obo:NOMEN_0000064)
# Class: obo:NOMEN_0000073 (ICNP tribe)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000073 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000073 "ICNP tribe"@en)
SubClassOf(obo:NOMEN_0000073 obo:NOMEN_0000064)
# Class: obo:NOMEN_0000074 (ICNP subtribe)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000074 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000074 "ICNP subtribe"@en)
SubClassOf(obo:NOMEN_0000074 obo:NOMEN_0000064)
# Class: obo:NOMEN_0000075 (ICNP order)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000075 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000075 "ICNP order"@en)
SubClassOf(obo:NOMEN_0000075 obo:NOMEN_0000063)
# Class: obo:NOMEN_0000076 (ICNP suborder)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000076 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000076 "ICNP suborder"@en)
SubClassOf(obo:NOMEN_0000076 obo:NOMEN_0000063)
# Class: obo:NOMEN_0000077 (ICNP class)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000077 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000077 "ICNP class"@en)
SubClassOf(obo:NOMEN_0000077 obo:NOMEN_0000063)
# Class: obo:NOMEN_0000078 (ICNP subclass)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000078 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000078 "ICNP subclass"@en)
SubClassOf(obo:NOMEN_0000078 obo:NOMEN_0000063)
# Class: obo:NOMEN_0000079 (ICNP kingdom)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000079 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000079 "ICNP kingdom"@en)
SubClassOf(obo:NOMEN_0000079 obo:NOMEN_0000063)
# Class: obo:NOMEN_0000080 (ICNP phylum)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000080 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000080 "ICNP phylum"@en)
SubClassOf(obo:NOMEN_0000080 obo:NOMEN_0000063)
# Class: obo:NOMEN_0000081 (ICNP effectively published name)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000081 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000081 "ICNP effectively published name"@en)
SubClassOf(obo:NOMEN_0000081 obo:NOMEN_0000110)
# Class: obo:NOMEN_0000082 (ICNP not effectively published name)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000082 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000082 "ICNP not effectively published name"@en)
SubClassOf(obo:NOMEN_0000082 obo:NOMEN_0000110)
# Class: obo:NOMEN_0000083 (ICNP invalidly published name)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000083 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000083 "ICNP invalidly published name"@en)
SubClassOf(obo:NOMEN_0000083 obo:NOMEN_0000081)
# Class: obo:NOMEN_0000084 (ICNP validly published name)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000084 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000084 "ICNP validly published name"@en)
SubClassOf(obo:NOMEN_0000084 obo:NOMEN_0000081)
# Class: obo:NOMEN_0000085 (ICNP illegitimate name)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000085 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000085 "ICNP illegitimate name"@en)
SubClassOf(obo:NOMEN_0000085 obo:NOMEN_0000084)
# Class: obo:NOMEN_0000086 (ICNP legitimate name)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000086 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000086 "ICNP legitimate name"@en)
SubClassOf(obo:NOMEN_0000086 obo:NOMEN_0000084)
# Class: obo:NOMEN_0000087 (ICNP correct name)
AnnotationAssertion(rdfs:isDefinedBy obo:NOMEN_0000087 obo:NOMEN)
AnnotationAssertion(rdfs:label obo:NOMEN_0000087 "ICNP correct name"@en)
SubClassOf(obo:NOMEN_0000087 obo:NOMEN_0000086)