-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorcs-edit.owl
9227 lines (7914 loc) · 750 KB
/
orcs-edit.owl
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://purl.obolibrary.org/obo/orcs/>)
Prefix(dc:=<http://purl.org/dc/elements/1.1/>)
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(cito:=<http://purl.org/spar/cito/>)
Prefix(foaf:=<http://xmlns.com/foaf/0.1/>)
Prefix(obda:=<https://w3id.org/obda/vocabulary#>)
Prefix(rdfs:=<http://www.w3.org/2000/01/rdf-schema#>)
Prefix(skos:=<http://www.w3.org/2004/02/skos/core#>)
Prefix(swrl:=<http://www.w3.org/2003/11/swrl#>)
Prefix(swrla:=<http://swrl.stanford.edu/ontologies/3.3/swrla.owl#>)
Prefix(swrlb:=<http://www.w3.org/2003/11/swrlb#>)
Prefix(terms:=<http://purl.org/dc/terms/>)
Prefix(protege:=<http://protege.stanford.edu/plugins/owl/protege#>)
Prefix(subsets:=<http://purl.obolibrary.org/obo/ro/subsets#>)
Prefix(oboInOwl:=<http://www.geneontology.org/formats/oboInOwl#>)
Prefix(apollo_sv:=<http://purl.obolibrary.org/obo/apollo_sv.owl/>)
Prefix(oboInOwl1:=<ttp://www.geneontology.org/formats/oboInOwl#>)
Ontology(<http://purl.obolibrary.org/obo/orcs/>
Import(<http://purl.obolibrary.org/obo/orcs/imports/bfo_import.owl>)
Import(<http://purl.obolibrary.org/obo/orcs/imports/d-acts_import.owl>)
Import(<http://purl.obolibrary.org/obo/orcs/imports/pno_import.owl>)
Import(<http://purl.obolibrary.org/obo/orcs/releases/2022-01-24/imports/omrse_import.owl>)
Import(<http://purl.obolibrary.org/obo/orcs/releases/2022-01-24/imports/ro-annotations_import.owl>)
Import(<http://purl.obolibrary.org/obo/orcs/releases/2022-01-24/imports/ro-core_import.owl>)
Import(<http://purl.obolibrary.org/obo/orcs/releases/2022-01-24/imports/ro-el-constraints_import.owl>)
Import(<http://purl.obolibrary.org/obo/orcs/releases/2022-01-24/imports/ro-generated-axioms_import.owl>)
Import(<http://purl.obolibrary.org/obo/orcs/releases/2022-01-24/imports/ro-rohom_import.owl>)
Import(<http://purl.obolibrary.org/obo/orcs/releases/2022-01-24/imports/ro-temporal-constraints_import.owl>)
Annotation(dc:contributor "Amanda Hicks")
Annotation(dc:contributor "Josh Hanna")
Annotation(dc:contributor "Mathias Brochhausen")
Annotation(dc:contributor "Matthew Diller")
Annotation(dc:contributor "S. Clint Dowland")
Annotation(dc:contributor "William R. Hogan")
Annotation(dc:date "2019-08-03")
Annotation(dc:description "The Ontology for Representing CDM Semantics (ORCS) is an application ontology that was developed to transform common-data-model-based data into ontologically-based data such as RDF, RDF*, OWL2, or Referent Tracking tuples. Although initially developed for such transformations of PCORnet Common Data Model (CDM) based data, ongoing and future work involves other CDMs such as OMOP."@en)
Annotation(dc:title "Ontology for Representing CDM Semantics"@en)
Declaration(Class(<http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#C49474>))
Declaration(Class(obo:APOLLO_SV_00000242))
Declaration(Class(obo:APOLLO_SV_00000376))
Declaration(Class(obo:APOLLO_SV_00000395))
Declaration(Class(obo:APOLLO_SV_00000429))
Declaration(Class(obo:BFO_0000001))
Declaration(Class(obo:BFO_0000002))
Declaration(Class(obo:BFO_0000003))
Declaration(Class(obo:BFO_0000004))
Declaration(Class(obo:BFO_0000008))
Declaration(Class(obo:BFO_0000011))
Declaration(Class(obo:BFO_0000015))
Declaration(Class(obo:BFO_0000016))
Declaration(Class(obo:BFO_0000017))
Declaration(Class(obo:BFO_0000019))
Declaration(Class(obo:BFO_0000020))
Declaration(Class(obo:BFO_0000030))
Declaration(Class(obo:BFO_0000031))
Declaration(Class(obo:BFO_0000035))
Declaration(Class(obo:BFO_0000038))
Declaration(Class(obo:BFO_0000040))
Declaration(Class(obo:BFO_0000141))
Declaration(Class(obo:BFO_0000148))
Declaration(Class(obo:BFO_0000182))
Declaration(Class(obo:BFO_0000202))
Declaration(Class(obo:BFO_0000203))
Declaration(Class(obo:ENVO_00002004))
Declaration(Class(obo:ENVO_00003074))
Declaration(Class(obo:ENVO_00003075))
Declaration(Class(obo:ENVO_01000010))
Declaration(Class(obo:ENVO_01000254))
Declaration(Class(obo:ENVO_01000604))
Declaration(Class(obo:IAO_0000027))
Declaration(Class(obo:IAO_0000028))
Declaration(Class(obo:IAO_0000030))
Declaration(Class(obo:IAO_0000578))
Declaration(Class(obo:IAO_0000650))
Declaration(Class(obo:IAO_0020000))
Declaration(Class(obo:IAO_0020020))
Declaration(Class(obo:IAO_0021003))
Declaration(Class(obo:NCBITaxon_9606))
Declaration(Class(obo:NCIT_C53489))
Declaration(Class(obo:OBI_0000011))
Declaration(Class(obo:OGMS_0000031))
Declaration(Class(obo:OGMS_0000073))
Declaration(Class(obo:OGMS_0000096))
Declaration(Class(obo:OGMS_0000097))
Declaration(Class(obo:OGMS_0000099))
Declaration(Class(obo:OGMS_0000100))
Declaration(Class(obo:OGMS_0000104))
Declaration(Class(obo:OGMS_0000123))
Declaration(Class(obo:OMRSE_00000011))
Declaration(Class(obo:OMRSE_00000012))
Declaration(Class(obo:OMRSE_00000098))
Declaration(Class(obo:OMRSE_00000099))
Declaration(Class(obo:OMRSE_00000100))
Declaration(Class(obo:OMRSE_00000101))
Declaration(Class(obo:OMRSE_00000126))
Declaration(Class(obo:OMRSE_00000127))
Declaration(Class(obo:OMRSE_00000128))
Declaration(Class(obo:OMRSE_00000132))
Declaration(Class(obo:OMRSE_00000133))
Declaration(Class(obo:OMRSE_00000134))
Declaration(Class(obo:OMRSE_00000180))
Declaration(Class(obo:OMRSE_00000201))
Declaration(Class(obo:OMRSE_00000205))
Declaration(Class(obo:OMRSE_00000209))
Declaration(Class(obo:OMRSE_00000213))
Declaration(Class(obo:OMRSE_00000220))
Declaration(Class(obo:ORCS_00000027))
Declaration(Class(obo:ORCS_00000028))
Declaration(Class(obo:ORCS_00000030))
Declaration(Class(obo:ORCS_00000031))
Declaration(Class(obo:ORCS_00000032))
Declaration(Class(obo:ORCS_00000033))
Declaration(Class(obo:ORCS_00000034))
Declaration(Class(obo:ORCS_00000035))
Declaration(Class(obo:ORCS_00000036))
Declaration(Class(obo:ORCS_00000037))
Declaration(Class(obo:ORCS_00000038))
Declaration(Class(obo:ORCS_00000039))
Declaration(Class(obo:ORCS_00000040))
Declaration(Class(obo:ORCS_00000041))
Declaration(Class(obo:ORCS_00000042))
Declaration(Class(obo:ORCS_00000043))
Declaration(Class(obo:ORCS_00000044))
Declaration(Class(obo:ORCS_00000045))
Declaration(Class(obo:ORCS_00000046))
Declaration(Class(obo:ORCS_00000047))
Declaration(Class(obo:ORCS_00000048))
Declaration(Class(obo:ORCS_00000049))
Declaration(Class(obo:ORCS_00000050))
Declaration(Class(obo:ORCS_00000051))
Declaration(Class(obo:ORCS_00000052))
Declaration(Class(obo:ORCS_00000053))
Declaration(Class(obo:ORCS_00000054))
Declaration(Class(obo:ORCS_00000055))
Declaration(Class(obo:ORCS_00000056))
Declaration(Class(obo:ORCS_00000057))
Declaration(Class(obo:ORCS_00000058))
Declaration(Class(obo:ORCS_00000059))
Declaration(Class(obo:ORCS_00000060))
Declaration(Class(obo:ORCS_00000061))
Declaration(Class(obo:ORCS_00000062))
Declaration(Class(obo:ORCS_00000063))
Declaration(Class(obo:ORCS_00000064))
Declaration(Class(obo:ORCS_00000065))
Declaration(Class(obo:ORCS_00000066))
Declaration(Class(obo:ORCS_00000067))
Declaration(Class(obo:ORCS_00000068))
Declaration(Class(obo:ORCS_00000069))
Declaration(Class(obo:ORCS_00000070))
Declaration(Class(obo:ORCS_00000071))
Declaration(Class(obo:ORCS_00000072))
Declaration(Class(obo:ORCS_00000073))
Declaration(Class(obo:ORCS_00000074))
Declaration(Class(obo:ORCS_00000075))
Declaration(Class(obo:ORCS_00000076))
Declaration(Class(obo:ORCS_00000077))
Declaration(Class(obo:ORCS_00000078))
Declaration(Class(obo:ORCS_00000079))
Declaration(Class(obo:ORCS_00000080))
Declaration(Class(obo:ORCS_00000081))
Declaration(Class(obo:ORCS_00000082))
Declaration(Class(obo:ORCS_00000083))
Declaration(Class(obo:ORCS_00000091))
Declaration(Class(obo:ORCS_00000092))
Declaration(Class(obo:ORCS_00000093))
Declaration(Class(obo:ORCS_00000094))
Declaration(Class(obo:ORCS_00000095))
Declaration(Class(obo:ORCS_00000096))
Declaration(Class(obo:ORCS_00000097))
Declaration(Class(obo:ORCS_00000098))
Declaration(Class(obo:ORCS_00000099))
Declaration(Class(obo:ORCS_00000100))
Declaration(Class(obo:ORCS_00000123))
Declaration(Class(obo:ORCS_00000124))
Declaration(Class(obo:ORCS_00000125))
Declaration(Class(obo:ORCS_00000126))
Declaration(Class(obo:ORCS_00000127))
Declaration(Class(obo:ORCS_00000128))
Declaration(Class(obo:ORCS_00000129))
Declaration(Class(obo:ORCS_00000130))
Declaration(Class(obo:ORCS_00000131))
Declaration(Class(obo:ORCS_00000132))
Declaration(Class(obo:ORCS_00000133))
Declaration(Class(obo:ORCS_00000134))
Declaration(Class(obo:ORCS_00000135))
Declaration(Class(obo:ORCS_00000136))
Declaration(Class(obo:ORCS_00000137))
Declaration(Class(obo:ORCS_00000138))
Declaration(Class(obo:ORCS_00000139))
Declaration(Class(obo:ORCS_00000140))
Declaration(Class(obo:ORCS_00000141))
Declaration(Class(obo:ORCS_00000142))
Declaration(Class(obo:ORCS_00000143))
Declaration(Class(obo:ORCS_00000144))
Declaration(Class(obo:ORCS_00000145))
Declaration(Class(obo:ORCS_00000146))
Declaration(Class(obo:ORCS_00000147))
Declaration(Class(obo:ORCS_00000148))
Declaration(Class(obo:ORCS_00000149))
Declaration(Class(obo:ORCS_00000150))
Declaration(Class(obo:ORCS_00000151))
Declaration(Class(obo:ORCS_00000152))
Declaration(Class(obo:ORCS_00000153))
Declaration(Class(obo:ORCS_00000154))
Declaration(Class(obo:ORCS_00000155))
Declaration(Class(obo:ORCS_00000156))
Declaration(Class(obo:ORCS_00000157))
Declaration(Class(obo:ORCS_00000158))
Declaration(Class(obo:ORCS_00000159))
Declaration(Class(obo:ORCS_00000160))
Declaration(Class(obo:ORCS_00000161))
Declaration(Class(obo:ORCS_00000162))
Declaration(Class(obo:ORCS_00000163))
Declaration(Class(obo:ORCS_00000164))
Declaration(Class(obo:ORCS_00000165))
Declaration(Class(obo:PATO_0000047))
Declaration(Class(obo:PATO_0000169))
Declaration(Class(obo:PATO_0000383))
Declaration(Class(obo:PATO_0000384))
Declaration(Class(obo:PATO_0001421))
Declaration(Class(obo:PATO_0001422))
Declaration(Class(obo:PATO_0001894))
Declaration(Class(obo:PATO_0001995))
Declaration(Class(obo:RO_0002577))
Declaration(Class(obo:UBERON_0000002))
Declaration(Class(obo:UBERON_0000004))
Declaration(Class(obo:UBERON_0000014))
Declaration(Class(obo:UBERON_0000020))
Declaration(Class(obo:UBERON_0000021))
Declaration(Class(obo:UBERON_0000022))
Declaration(Class(obo:UBERON_0000042))
Declaration(Class(obo:UBERON_0000057))
Declaration(Class(obo:UBERON_0000061))
Declaration(Class(obo:UBERON_0000062))
Declaration(Class(obo:UBERON_0000064))
Declaration(Class(obo:UBERON_0000071))
Declaration(Class(obo:UBERON_0000079))
Declaration(Class(obo:UBERON_0000104))
Declaration(Class(obo:UBERON_0000105))
Declaration(Class(obo:UBERON_0000165))
Declaration(Class(obo:UBERON_0000172))
Declaration(Class(obo:UBERON_0000173))
Declaration(Class(obo:UBERON_0000174))
Declaration(Class(obo:UBERON_0000177))
Declaration(Class(obo:UBERON_0000178))
Declaration(Class(obo:UBERON_0000179))
Declaration(Class(obo:UBERON_0000310))
Declaration(Class(obo:UBERON_0000456))
Declaration(Class(obo:UBERON_0000463))
Declaration(Class(obo:UBERON_0000465))
Declaration(Class(obo:UBERON_0000473))
Declaration(Class(obo:UBERON_0000479))
Declaration(Class(obo:UBERON_0000481))
Declaration(Class(obo:UBERON_0000945))
Declaration(Class(obo:UBERON_0000955))
Declaration(Class(obo:UBERON_0000970))
Declaration(Class(obo:UBERON_0000977))
Declaration(Class(obo:UBERON_0000989))
Declaration(Class(obo:UBERON_0000991))
Declaration(Class(obo:UBERON_0000992))
Declaration(Class(obo:UBERON_0000995))
Declaration(Class(obo:UBERON_0000996))
Declaration(Class(obo:UBERON_0001037))
Declaration(Class(obo:UBERON_0001052))
Declaration(Class(obo:UBERON_0001062))
Declaration(Class(obo:UBERON_0001088))
Declaration(Class(obo:UBERON_0001089))
Declaration(Class(obo:UBERON_0001155))
Declaration(Class(obo:UBERON_0001264))
Declaration(Class(obo:UBERON_0001359))
Declaration(Class(obo:UBERON_0001560))
Declaration(Class(obo:UBERON_0001690))
Declaration(Class(obo:UBERON_0001705))
Declaration(Class(obo:UBERON_0001827))
Declaration(Class(obo:UBERON_0001836))
Declaration(Class(obo:UBERON_0001913))
Declaration(Class(obo:UBERON_0001968))
Declaration(Class(obo:UBERON_0001969))
Declaration(Class(obo:UBERON_0001970))
Declaration(Class(obo:UBERON_0001977))
Declaration(Class(obo:UBERON_0001988))
Declaration(Class(obo:UBERON_0002046))
Declaration(Class(obo:UBERON_0002048))
Declaration(Class(obo:UBERON_0002075))
Declaration(Class(obo:UBERON_0002106))
Declaration(Class(obo:UBERON_0002107))
Declaration(Class(obo:UBERON_0002113))
Declaration(Class(obo:UBERON_0002268))
Declaration(Class(obo:UBERON_0002358))
Declaration(Class(obo:UBERON_0002367))
Declaration(Class(obo:UBERON_0002368))
Declaration(Class(obo:UBERON_0002369))
Declaration(Class(obo:UBERON_0002371))
Declaration(Class(obo:UBERON_0002409))
Declaration(Class(obo:UBERON_0002530))
Declaration(Class(obo:UBERON_0003133))
Declaration(Class(obo:UBERON_0003937))
Declaration(Class(obo:UBERON_0004921))
Declaration(Class(obo:UBERON_0005172))
Declaration(Class(obo:UBERON_0005173))
Declaration(Class(obo:UBERON_0005177))
Declaration(Class(obo:UBERON_0005178))
Declaration(Class(obo:UBERON_0005181))
Declaration(Class(obo:UBERON_0005399))
Declaration(Class(obo:UBERON_0006003))
Declaration(Class(obo:UBERON_0006314))
Declaration(Class(obo:UBERON_0006538))
Declaration(Class(obo:UBERON_0006539))
Declaration(Class(obo:UBERON_0006562))
Declaration(Class(obo:UBERON_0006858))
Declaration(Class(obo:UBERON_0006925))
Declaration(Class(obo:UBERON_0007109))
Declaration(Class(obo:UBERON_0007221))
Declaration(Class(obo:UBERON_0007311))
Declaration(Class(obo:UBERON_0007779))
Declaration(Class(obo:UBERON_0007794))
Declaration(Class(obo:UBERON_0008811))
Declaration(Class(obo:UBERON_0009564))
Declaration(Class(obo:UBERON_0010000))
Declaration(Class(obo:UBERON_0010147))
Declaration(Class(obo:UBERON_0010172))
Declaration(Class(obo:UBERON_0012168))
Declaration(Class(obo:UBERON_0013515))
Declaration(Class(obo:UBERON_0013522))
Declaration(Class(obo:UBERON_0013703))
Declaration(Class(obo:UBERON_0013755))
Declaration(Class(obo:UBERON_0013756))
Declaration(Class(obo:UBERON_0017672))
Declaration(Class(obo:UBERON_0034873))
Declaration(Class(obo:UBERON_0034929))
Declaration(Class(obo:UBERON_0034944))
Declaration(Class(obo:UBERON_0034947))
Declaration(Class(obo:UBERON_0035943))
Declaration(Class(obo:UBERON_0035944))
Declaration(Class(obo:UBERON_0035946))
Declaration(Class(obo:UBERON_0036017))
Declaration(Class(oboInOwl:ObsoleteClass))
Declaration(ObjectProperty(obo:BFO_0000050))
Declaration(ObjectProperty(obo:BFO_0000051))
Declaration(ObjectProperty(obo:BFO_0000054))
Declaration(ObjectProperty(obo:BFO_0000055))
Declaration(ObjectProperty(obo:BFO_0000062))
Declaration(ObjectProperty(obo:BFO_0000063))
Declaration(ObjectProperty(obo:BFO_0000108))
Declaration(ObjectProperty(obo:BFO_0000117))
Declaration(ObjectProperty(obo:BFO_0000118))
Declaration(ObjectProperty(obo:BFO_0000121))
Declaration(ObjectProperty(obo:BFO_0000132))
Declaration(ObjectProperty(obo:BFO_0000138))
Declaration(ObjectProperty(obo:BFO_0000139))
Declaration(ObjectProperty(obo:BFO_0000155))
Declaration(ObjectProperty(obo:BFO_0000156))
Declaration(ObjectProperty(obo:BFO_0000157))
Declaration(ObjectProperty(obo:BFO_0000184))
Declaration(ObjectProperty(obo:BFO_0000185))
Declaration(ObjectProperty(obo:IAO_0000136))
Declaration(ObjectProperty(obo:IAO_0000142))
Declaration(ObjectProperty(obo:IAO_0000219))
Declaration(ObjectProperty(obo:IAO_0020012))
Declaration(ObjectProperty(obo:OBI_0000293))
Declaration(ObjectProperty(obo:OBI_0000295))
Declaration(ObjectProperty(obo:OBI_0000299))
Declaration(ObjectProperty(obo:OBI_0000312))
Declaration(ObjectProperty(obo:RO_0000053))
Declaration(ObjectProperty(obo:RO_0000056))
Declaration(ObjectProperty(obo:RO_0000057))
Declaration(ObjectProperty(obo:RO_0000059))
Declaration(ObjectProperty(obo:RO_0001018))
Declaration(ObjectProperty(obo:RO_0001019))
Declaration(ObjectProperty(obo:RO_0001020))
Declaration(ObjectProperty(obo:RO_0001021))
Declaration(ObjectProperty(obo:RO_0001022))
Declaration(ObjectProperty(obo:RO_0001023))
Declaration(ObjectProperty(obo:RO_0001025))
Declaration(ObjectProperty(obo:RO_0002000))
Declaration(ObjectProperty(obo:RO_0002002))
Declaration(ObjectProperty(obo:RO_0002007))
Declaration(ObjectProperty(obo:RO_0002008))
Declaration(ObjectProperty(obo:RO_0002010))
Declaration(ObjectProperty(obo:RO_0002011))
Declaration(ObjectProperty(obo:RO_0002012))
Declaration(ObjectProperty(obo:RO_0002013))
Declaration(ObjectProperty(obo:RO_0002014))
Declaration(ObjectProperty(obo:RO_0002015))
Declaration(ObjectProperty(obo:RO_0002016))
Declaration(ObjectProperty(obo:RO_0002017))
Declaration(ObjectProperty(obo:RO_0002018))
Declaration(ObjectProperty(obo:RO_0002019))
Declaration(ObjectProperty(obo:RO_0002021))
Declaration(ObjectProperty(obo:RO_0002022))
Declaration(ObjectProperty(obo:RO_0002023))
Declaration(ObjectProperty(obo:RO_0002024))
Declaration(ObjectProperty(obo:RO_0002025))
Declaration(ObjectProperty(obo:RO_0002026))
Declaration(ObjectProperty(obo:RO_0002081))
Declaration(ObjectProperty(obo:RO_0002085))
Declaration(ObjectProperty(obo:RO_0002087))
Declaration(ObjectProperty(obo:RO_0002088))
Declaration(ObjectProperty(obo:RO_0002090))
Declaration(ObjectProperty(obo:RO_0002092))
Declaration(ObjectProperty(obo:RO_0002131))
Declaration(ObjectProperty(obo:RO_0002150))
Declaration(ObjectProperty(obo:RO_0002151))
Declaration(ObjectProperty(obo:RO_0002163))
Declaration(ObjectProperty(obo:RO_0002170))
Declaration(ObjectProperty(obo:RO_0002176))
Declaration(ObjectProperty(obo:RO_0002178))
Declaration(ObjectProperty(obo:RO_0002180))
Declaration(ObjectProperty(obo:RO_0002201))
Declaration(ObjectProperty(obo:RO_0002205))
Declaration(ObjectProperty(obo:RO_0002211))
Declaration(ObjectProperty(obo:RO_0002212))
Declaration(ObjectProperty(obo:RO_0002213))
Declaration(ObjectProperty(obo:RO_0002214))
Declaration(ObjectProperty(obo:RO_0002215))
Declaration(ObjectProperty(obo:RO_0002216))
Declaration(ObjectProperty(obo:RO_0002217))
Declaration(ObjectProperty(obo:RO_0002218))
Declaration(ObjectProperty(obo:RO_0002219))
Declaration(ObjectProperty(obo:RO_0002220))
Declaration(ObjectProperty(obo:RO_0002221))
Declaration(ObjectProperty(obo:RO_0002222))
Declaration(ObjectProperty(obo:RO_0002223))
Declaration(ObjectProperty(obo:RO_0002224))
Declaration(ObjectProperty(obo:RO_0002229))
Declaration(ObjectProperty(obo:RO_0002230))
Declaration(ObjectProperty(obo:RO_0002231))
Declaration(ObjectProperty(obo:RO_0002232))
Declaration(ObjectProperty(obo:RO_0002233))
Declaration(ObjectProperty(obo:RO_0002234))
Declaration(ObjectProperty(obo:RO_0002240))
Declaration(ObjectProperty(obo:RO_0002241))
Declaration(ObjectProperty(obo:RO_0002242))
Declaration(ObjectProperty(obo:RO_0002243))
Declaration(ObjectProperty(obo:RO_0002244))
Declaration(ObjectProperty(obo:RO_0002248))
Declaration(ObjectProperty(obo:RO_0002249))
Declaration(ObjectProperty(obo:RO_0002252))
Declaration(ObjectProperty(obo:RO_0002253))
Declaration(ObjectProperty(obo:RO_0002263))
Declaration(ObjectProperty(obo:RO_0002264))
Declaration(ObjectProperty(obo:RO_0002302))
Declaration(ObjectProperty(obo:RO_0002304))
Declaration(ObjectProperty(obo:RO_0002305))
Declaration(ObjectProperty(obo:RO_0002309))
Declaration(ObjectProperty(obo:RO_0002314))
Declaration(ObjectProperty(obo:RO_0002323))
Declaration(ObjectProperty(obo:RO_0002325))
Declaration(ObjectProperty(obo:RO_0002326))
Declaration(ObjectProperty(obo:RO_0002327))
Declaration(ObjectProperty(obo:RO_0002328))
Declaration(ObjectProperty(obo:RO_0002329))
Declaration(ObjectProperty(obo:RO_0002331))
Declaration(ObjectProperty(obo:RO_0002332))
Declaration(ObjectProperty(obo:RO_0002333))
Declaration(ObjectProperty(obo:RO_0002334))
Declaration(ObjectProperty(obo:RO_0002335))
Declaration(ObjectProperty(obo:RO_0002336))
Declaration(ObjectProperty(obo:RO_0002337))
Declaration(ObjectProperty(obo:RO_0002338))
Declaration(ObjectProperty(obo:RO_0002339))
Declaration(ObjectProperty(obo:RO_0002341))
Declaration(ObjectProperty(obo:RO_0002342))
Declaration(ObjectProperty(obo:RO_0002344))
Declaration(ObjectProperty(obo:RO_0002350))
Declaration(ObjectProperty(obo:RO_0002351))
Declaration(ObjectProperty(obo:RO_0002352))
Declaration(ObjectProperty(obo:RO_0002353))
Declaration(ObjectProperty(obo:RO_0002354))
Declaration(ObjectProperty(obo:RO_0002360))
Declaration(ObjectProperty(obo:RO_0002375))
Declaration(ObjectProperty(obo:RO_0002376))
Declaration(ObjectProperty(obo:RO_0002377))
Declaration(ObjectProperty(obo:RO_0002378))
Declaration(ObjectProperty(obo:RO_0002379))
Declaration(ObjectProperty(obo:RO_0002380))
Declaration(ObjectProperty(obo:RO_0002381))
Declaration(ObjectProperty(obo:RO_0002382))
Declaration(ObjectProperty(obo:RO_0002383))
Declaration(ObjectProperty(obo:RO_0002400))
Declaration(ObjectProperty(obo:RO_0002401))
Declaration(ObjectProperty(obo:RO_0002402))
Declaration(ObjectProperty(obo:RO_0002403))
Declaration(ObjectProperty(obo:RO_0002404))
Declaration(ObjectProperty(obo:RO_0002405))
Declaration(ObjectProperty(obo:RO_0002406))
Declaration(ObjectProperty(obo:RO_0002407))
Declaration(ObjectProperty(obo:RO_0002408))
Declaration(ObjectProperty(obo:RO_0002409))
Declaration(ObjectProperty(obo:RO_0002410))
Declaration(ObjectProperty(obo:RO_0002411))
Declaration(ObjectProperty(obo:RO_0002412))
Declaration(ObjectProperty(obo:RO_0002413))
Declaration(ObjectProperty(obo:RO_0002414))
Declaration(ObjectProperty(obo:RO_0002418))
Declaration(ObjectProperty(obo:RO_0002424))
Declaration(ObjectProperty(obo:RO_0002425))
Declaration(ObjectProperty(obo:RO_0002426))
Declaration(ObjectProperty(obo:RO_0002427))
Declaration(ObjectProperty(obo:RO_0002428))
Declaration(ObjectProperty(obo:RO_0002429))
Declaration(ObjectProperty(obo:RO_0002430))
Declaration(ObjectProperty(obo:RO_0002431))
Declaration(ObjectProperty(obo:RO_0002432))
Declaration(ObjectProperty(obo:RO_0002433))
Declaration(ObjectProperty(obo:RO_0002434))
Declaration(ObjectProperty(obo:RO_0002437))
Declaration(ObjectProperty(obo:RO_0002446))
Declaration(ObjectProperty(obo:RO_0002448))
Declaration(ObjectProperty(obo:RO_0002449))
Declaration(ObjectProperty(obo:RO_0002450))
Declaration(ObjectProperty(obo:RO_0002461))
Declaration(ObjectProperty(obo:RO_0002462))
Declaration(ObjectProperty(obo:RO_0002463))
Declaration(ObjectProperty(obo:RO_0002464))
Declaration(ObjectProperty(obo:RO_0002465))
Declaration(ObjectProperty(obo:RO_0002466))
Declaration(ObjectProperty(obo:RO_0002467))
Declaration(ObjectProperty(obo:RO_0002468))
Declaration(ObjectProperty(obo:RO_0002472))
Declaration(ObjectProperty(obo:RO_0002473))
Declaration(ObjectProperty(obo:RO_0002479))
Declaration(ObjectProperty(obo:RO_0002481))
Declaration(ObjectProperty(obo:RO_0002482))
Declaration(ObjectProperty(obo:RO_0002485))
Declaration(ObjectProperty(obo:RO_0002486))
Declaration(ObjectProperty(obo:RO_0002500))
Declaration(ObjectProperty(obo:RO_0002501))
Declaration(ObjectProperty(obo:RO_0002502))
Declaration(ObjectProperty(obo:RO_0002503))
Declaration(ObjectProperty(obo:RO_0002505))
Declaration(ObjectProperty(obo:RO_0002506))
Declaration(ObjectProperty(obo:RO_0002507))
Declaration(ObjectProperty(obo:RO_0002508))
Declaration(ObjectProperty(obo:RO_0002509))
Declaration(ObjectProperty(obo:RO_0002510))
Declaration(ObjectProperty(obo:RO_0002514))
Declaration(ObjectProperty(obo:RO_0002515))
Declaration(ObjectProperty(obo:RO_0002516))
Declaration(ObjectProperty(obo:RO_0002517))
Declaration(ObjectProperty(obo:RO_0002518))
Declaration(ObjectProperty(obo:RO_0002519))
Declaration(ObjectProperty(obo:RO_0002520))
Declaration(ObjectProperty(obo:RO_0002521))
Declaration(ObjectProperty(obo:RO_0002522))
Declaration(ObjectProperty(obo:RO_0002523))
Declaration(ObjectProperty(obo:RO_0002524))
Declaration(ObjectProperty(obo:RO_0002525))
Declaration(ObjectProperty(obo:RO_0002526))
Declaration(ObjectProperty(obo:RO_0002527))
Declaration(ObjectProperty(obo:RO_0002528))
Declaration(ObjectProperty(obo:RO_0002529))
Declaration(ObjectProperty(obo:RO_0002530))
Declaration(ObjectProperty(obo:RO_0002531))
Declaration(ObjectProperty(obo:RO_0002558))
Declaration(ObjectProperty(obo:RO_0002559))
Declaration(ObjectProperty(obo:RO_0002563))
Declaration(ObjectProperty(obo:RO_0002564))
Declaration(ObjectProperty(obo:RO_0002566))
Declaration(ObjectProperty(obo:RO_0002569))
Declaration(ObjectProperty(obo:RO_0002570))
Declaration(ObjectProperty(obo:RO_0002571))
Declaration(ObjectProperty(obo:RO_0002572))
Declaration(ObjectProperty(obo:RO_0002573))
Declaration(ObjectProperty(obo:RO_0002578))
Declaration(ObjectProperty(obo:RO_0002584))
Declaration(ObjectProperty(obo:RO_0002586))
Declaration(ObjectProperty(obo:RO_0002589))
Declaration(ObjectProperty(obo:RO_0002595))
Declaration(ObjectProperty(obo:RO_0002596))
Declaration(ObjectProperty(obo:RO_0002597))
Declaration(ObjectProperty(obo:RO_0002598))
Declaration(ObjectProperty(obo:RO_0002599))
Declaration(ObjectProperty(obo:RO_0002600))
Declaration(ObjectProperty(obo:RO_0002606))
Declaration(ObjectProperty(obo:RO_0002607))
Declaration(ObjectProperty(obo:RO_0002608))
Declaration(ObjectProperty(obo:RO_0002609))
Declaration(ObjectProperty(obo:RO_0002610))
Declaration(ObjectProperty(obo:RO_0002614))
Declaration(ObjectProperty(obo:RO_0002615))
Declaration(ObjectProperty(obo:RO_0002616))
Declaration(ObjectProperty(obo:RO_0002629))
Declaration(ObjectProperty(obo:RO_0002630))
Declaration(ObjectProperty(obo:RO_0003000))
Declaration(ObjectProperty(obo:RO_0003001))
Declaration(ObjectProperty(obo:RO_0003002))
Declaration(ObjectProperty(obo:RO_0003003))
Declaration(ObjectProperty(obo:RO_0003301))
Declaration(ObjectProperty(obo:RO_0003302))
Declaration(ObjectProperty(obo:RO_0003303))
Declaration(ObjectProperty(obo:RO_0003304))
Declaration(ObjectProperty(obo:RO_0003305))
Declaration(ObjectProperty(obo:RO_0003306))
Declaration(ObjectProperty(obo:RO_0003307))
Declaration(ObjectProperty(obo:RO_0003308))
Declaration(ObjectProperty(obo:RO_0003309))
Declaration(ObjectProperty(obo:RO_0003310))
Declaration(ObjectProperty(obo:RO_0003311))
Declaration(ObjectProperty(obo:RO_0004000))
Declaration(ObjectProperty(obo:RO_0004001))
Declaration(ObjectProperty(obo:RO_0004002))
Declaration(ObjectProperty(obo:RO_0004003))
Declaration(ObjectProperty(obo:RO_0004004))
Declaration(ObjectProperty(obo:RO_0004005))
Declaration(ObjectProperty(obo:RO_0004006))
Declaration(ObjectProperty(obo:RO_0004007))
Declaration(ObjectProperty(obo:RO_0004008))
Declaration(ObjectProperty(obo:RO_0004009))
Declaration(ObjectProperty(obo:RO_0004010))
Declaration(ObjectProperty(obo:RO_0004011))
Declaration(ObjectProperty(obo:RO_0004012))
Declaration(ObjectProperty(obo:RO_0004013))
Declaration(ObjectProperty(obo:RO_0004014))
Declaration(ObjectProperty(obo:RO_0004015))
Declaration(ObjectProperty(obo:RO_0004016))
Declaration(ObjectProperty(obo:RO_0004017))
Declaration(ObjectProperty(obo:RO_0004018))
Declaration(ObjectProperty(obo:RO_0004019))
Declaration(ObjectProperty(obo:RO_0004021))
Declaration(ObjectProperty(obo:RO_0004028))
Declaration(ObjectProperty(obo:RO_0004029))
Declaration(ObjectProperty(obo:RO_0004031))
Declaration(ObjectProperty(obo:RO_0004032))
Declaration(ObjectProperty(obo:RO_0004033))
Declaration(ObjectProperty(obo:RO_0004034))
Declaration(ObjectProperty(obo:RO_0004035))
Declaration(ObjectProperty(obo:RO_0004046))
Declaration(ObjectProperty(obo:RO_0004047))
Declaration(ObjectProperty(obo:RO_0009001))
Declaration(ObjectProperty(obo:RO_0009002))
Declaration(ObjectProperty(obo:RO_0009003))
Declaration(ObjectProperty(obo:RO_0009005))
Declaration(ObjectProperty(obo:RO_0009501))
Declaration(ObjectProperty(obo:RO_0010001))
Declaration(ObjectProperty(obo:RO_0010002))
Declaration(ObjectProperty(owl:topObjectProperty))
Declaration(DataProperty(obo:RO_0002029))
Declaration(NamedIndividual(obo:NCIT_C128691))
Declaration(NamedIndividual(obo:NCIT_C49469))
Declaration(NamedIndividual(obo:NCIT_C71891))
Declaration(NamedIndividual(obo:ORCS_00000135))
Declaration(NamedIndividual(obo:ORCS_00000166))
Declaration(NamedIndividual(obo:ORCS_00000167))
Declaration(NamedIndividual(obo:ORCS_00000168))
Declaration(NamedIndividual(obo:ORCS_00000169))
Declaration(AnnotationProperty(obo:BFO_0000179))
Declaration(AnnotationProperty(obo:BFO_0000180))
Declaration(AnnotationProperty(obo:IAO_0000111))
Declaration(AnnotationProperty(obo:IAO_0000112))
Declaration(AnnotationProperty(obo:IAO_0000114))
Declaration(AnnotationProperty(obo:IAO_0000115))
Declaration(AnnotationProperty(obo:IAO_0000116))
Declaration(AnnotationProperty(obo:IAO_0000117))
Declaration(AnnotationProperty(obo:IAO_0000118))
Declaration(AnnotationProperty(obo:IAO_0000119))
Declaration(AnnotationProperty(obo:IAO_0000232))
Declaration(AnnotationProperty(obo:IAO_0000233))
Declaration(AnnotationProperty(obo:IAO_0000412))
Declaration(AnnotationProperty(obo:IAO_0000424))
Declaration(AnnotationProperty(obo:IAO_0000425))
Declaration(AnnotationProperty(obo:IAO_0000426))
Declaration(AnnotationProperty(obo:IAO_0000589))
Declaration(AnnotationProperty(obo:IAO_0000600))
Declaration(AnnotationProperty(obo:IAO_0000601))
Declaration(AnnotationProperty(obo:IAO_0000602))
Declaration(AnnotationProperty(obo:IAO_0100001))
Declaration(AnnotationProperty(obo:ORCS_00000090))
Declaration(AnnotationProperty(obo:RO_0000052))
Declaration(AnnotationProperty(obo:RO_0001900))
Declaration(AnnotationProperty(obo:RO_0002161))
Declaration(AnnotationProperty(obo:RO_0002171))
Declaration(AnnotationProperty(obo:RO_0002172))
Declaration(AnnotationProperty(obo:RO_0002175))
Declaration(AnnotationProperty(obo:RO_0002259))
Declaration(AnnotationProperty(obo:RO_0002416))
Declaration(AnnotationProperty(obo:RO_0002419))
Declaration(AnnotationProperty(obo:RO_0002420))
Declaration(AnnotationProperty(obo:RO_0002421))
Declaration(AnnotationProperty(obo:RO_0002422))
Declaration(AnnotationProperty(obo:RO_0002423))
Declaration(AnnotationProperty(obo:RO_0002474))
Declaration(AnnotationProperty(obo:RO_0002475))
Declaration(AnnotationProperty(obo:RO_0002483))
Declaration(AnnotationProperty(obo:RO_0002484))
Declaration(AnnotationProperty(obo:RO_0002504))
Declaration(AnnotationProperty(obo:RO_0002535))
Declaration(AnnotationProperty(obo:RO_0002536))
Declaration(AnnotationProperty(obo:RO_0002537))
Declaration(AnnotationProperty(obo:RO_0002538))
Declaration(AnnotationProperty(obo:RO_0002539))
Declaration(AnnotationProperty(obo:RO_0002540))
Declaration(AnnotationProperty(obo:RO_0002541))
Declaration(AnnotationProperty(obo:RO_0002542))
Declaration(AnnotationProperty(obo:RO_0002543))
Declaration(AnnotationProperty(obo:RO_0002544))
Declaration(AnnotationProperty(obo:RO_0002545))
Declaration(AnnotationProperty(obo:RO_0002546))
Declaration(AnnotationProperty(obo:RO_0002547))
Declaration(AnnotationProperty(obo:RO_0002548))
Declaration(AnnotationProperty(obo:RO_0002549))
Declaration(AnnotationProperty(obo:RO_0002550))
Declaration(AnnotationProperty(obo:RO_0002560))
Declaration(AnnotationProperty(obo:RO_0002561))
Declaration(AnnotationProperty(obo:RO_0002562))
Declaration(AnnotationProperty(obo:RO_0002575))
Declaration(AnnotationProperty(obo:RO_0002579))
Declaration(AnnotationProperty(obo:RO_0002580))
Declaration(AnnotationProperty(obo:RO_0002581))
Declaration(AnnotationProperty(obo:RO_0002582))
Declaration(AnnotationProperty(obo:RO_0002594))
Declaration(AnnotationProperty(obo:RO_0002601))
Declaration(AnnotationProperty(obo:RO_0002602))
Declaration(AnnotationProperty(obo:RO_0002603))
Declaration(AnnotationProperty(obo:RO_0002604))
Declaration(AnnotationProperty(obo:RO_0002605))
Declaration(AnnotationProperty(obo:RO_0002611))
Declaration(AnnotationProperty(obo:RO_0002612))
Declaration(AnnotationProperty(obo:RO_0002613))
Declaration(AnnotationProperty(obo:RO_0002617))
Declaration(AnnotationProperty(obo:RO_0004048))
Declaration(AnnotationProperty(obo:RO_0004049))
Declaration(AnnotationProperty(obo:RO_0004050))
Declaration(AnnotationProperty(obo:RO_0040042))
Declaration(AnnotationProperty(obo:UBPROP_0000001))
Declaration(AnnotationProperty(obo:UBPROP_0000002))
Declaration(AnnotationProperty(obo:UBPROP_0000003))
Declaration(AnnotationProperty(obo:UBPROP_0000007))
Declaration(AnnotationProperty(obo:UBPROP_0000008))
Declaration(AnnotationProperty(obo:UBPROP_0000009))
Declaration(AnnotationProperty(obo:UBPROP_0000010))
Declaration(AnnotationProperty(obo:UBPROP_0000011))
Declaration(AnnotationProperty(obo:UBPROP_0000012))
Declaration(AnnotationProperty(obo:UBPROP_0000202))
Declaration(AnnotationProperty(apollo_sv:APOLLO_SV_0000040))
Declaration(AnnotationProperty(:ORCS_00000090))
Declaration(AnnotationProperty(subsets:ro-eco))
Declaration(AnnotationProperty(dc:contributor))
Declaration(AnnotationProperty(dc:creator))
Declaration(AnnotationProperty(dc:date))
Declaration(AnnotationProperty(dc:description))
Declaration(AnnotationProperty(dc:identifier))
Declaration(AnnotationProperty(dc:source))
Declaration(AnnotationProperty(dc:title))
Declaration(AnnotationProperty(cito:citesAsAuthority))
Declaration(AnnotationProperty(swrla:isRuleEnabled))
Declaration(AnnotationProperty(oboInOwl:SubsetProperty))
Declaration(AnnotationProperty(oboInOwl:created_by))
Declaration(AnnotationProperty(oboInOwl:creation_date))
Declaration(AnnotationProperty(oboInOwl:date_retrieved))
Declaration(AnnotationProperty(oboInOwl:external_class))
Declaration(AnnotationProperty(oboInOwl:external_ontology))
Declaration(AnnotationProperty(oboInOwl:hasAlternativeId))
Declaration(AnnotationProperty(oboInOwl:hasBroadSynonym))
Declaration(AnnotationProperty(oboInOwl:hasDbXref))
Declaration(AnnotationProperty(oboInOwl:hasExactSynonym))
Declaration(AnnotationProperty(oboInOwl:hasNarrowSynonym))
Declaration(AnnotationProperty(oboInOwl:hasOBONamespace))
Declaration(AnnotationProperty(oboInOwl:hasRelatedSynonym))
Declaration(AnnotationProperty(oboInOwl:hasScope))
Declaration(AnnotationProperty(oboInOwl:hasSynonymType))
Declaration(AnnotationProperty(oboInOwl:id))
Declaration(AnnotationProperty(oboInOwl:inSubset))
Declaration(AnnotationProperty(oboInOwl:ontology))
Declaration(AnnotationProperty(oboInOwl:source))
Declaration(AnnotationProperty(oboInOwl:taxon))
Declaration(AnnotationProperty(skos:definition))
Declaration(AnnotationProperty(skos:example))
Declaration(AnnotationProperty(skos:prefLabel))
Declaration(AnnotationProperty(skos:scopeNote))
Declaration(AnnotationProperty(foaf:depicted_by))
Declaration(AnnotationProperty(foaf:page))
Declaration(AnnotationProperty(oboInOwl1:created_by))
############################
# Annotation Properties
############################
# Annotation Property: obo:BFO_0000179 (BFO OWL specification label)
AnnotationAssertion(rdfs:label obo:BFO_0000179 "BFO OWL specification label")
AnnotationAssertion(rdfs:label obo:BFO_0000179 "BFO OWL specification label"@en)
# Annotation Property: obo:BFO_0000180 (BFO CLIF specification label)
AnnotationAssertion(rdfs:label obo:BFO_0000180 "BFO CLIF specification label")
AnnotationAssertion(rdfs:label obo:BFO_0000180 "BFO CLIF specification label"@en)
# Annotation Property: obo:IAO_0000112 (example of usage)
AnnotationAssertion(rdfs:label obo:IAO_0000112 "example of usage")
AnnotationAssertion(rdfs:label obo:IAO_0000112 "example of usage"@en)
# Annotation Property: obo:IAO_0000115 (definition)
AnnotationAssertion(rdfs:label obo:IAO_0000115 "definition")
AnnotationAssertion(rdfs:label obo:IAO_0000115 "definition"@en)
AnnotationAssertion(rdfs:label obo:IAO_0000115 "textual definition"^^xsd:string)
# Annotation Property: obo:IAO_0000116 (editor note)
AnnotationAssertion(rdfs:label obo:IAO_0000116 "editor note")
AnnotationAssertion(rdfs:label obo:IAO_0000116 "editor note"@en)
# Annotation Property: obo:IAO_0000117 (definition editor)
AnnotationAssertion(rdfs:label obo:IAO_0000117 "definition editor")
AnnotationAssertion(rdfs:label obo:IAO_0000117 "definition editor"@en)
AnnotationAssertion(rdfs:label obo:IAO_0000117 "term editor")
AnnotationAssertion(rdfs:label obo:IAO_0000117 "term editor"@en)
# Annotation Property: obo:IAO_0000118 (alternative term)
AnnotationAssertion(rdfs:label obo:IAO_0000118 "alternative term")
# Annotation Property: obo:IAO_0000119 (definition source)
AnnotationAssertion(rdfs:label obo:IAO_0000119 "definition source")
AnnotationAssertion(rdfs:label obo:IAO_0000119 "definition source"@en)
# Annotation Property: obo:IAO_0000232 (curator note)
AnnotationAssertion(rdfs:label obo:IAO_0000232 "curator note")
AnnotationAssertion(rdfs:label obo:IAO_0000232 "curator note"@en)
AnnotationAssertion(rdfs:label obo:IAO_0000232 "curator notes"^^xsd:string)
# Annotation Property: obo:IAO_0000412 (imported from)
AnnotationAssertion(rdfs:label obo:IAO_0000412 "imported from"@en)
# Annotation Property: obo:IAO_0000426 (first order logic expression)
AnnotationAssertion(obo:IAO_0000115 obo:IAO_0000426 "An assertion that holds between an OWL Object Property and a string or literal, where the value of the string or literal is a Common Logic sentence of collection of sentences that define the Object Property.")
SubAnnotationPropertyOf(obo:IAO_0000426 obo:RO_0002422)
# Annotation Property: obo:IAO_0000600 (elucidation)
AnnotationAssertion(rdfs:label obo:IAO_0000600 "elucidation")
AnnotationAssertion(rdfs:label obo:IAO_0000600 "elucidation"@en)
# Annotation Property: obo:IAO_0000601 (has associated axiom(nl))
AnnotationAssertion(rdfs:label obo:IAO_0000601 "has associated axiom(nl)")
AnnotationAssertion(rdfs:label obo:IAO_0000601 "has associated axiom(nl)"@en)
# Annotation Property: obo:IAO_0000602 (has associated axiom(fol))
AnnotationAssertion(rdfs:label obo:IAO_0000602 "has associated axiom(fol)")
AnnotationAssertion(rdfs:label obo:IAO_0000602 "has associated axiom(fol)"@en)
# Annotation Property: obo:ORCS_00000090 (PCORnet CDM comment)
AnnotationAssertion(obo:IAO_0000115 obo:ORCS_00000090 "A verbatim excerpt—such as a definition, comment, or description—from the PCORnet Common Data Model."@en)
AnnotationAssertion(rdfs:label obo:ORCS_00000090 "PCORnet CDM comment"@en)
# Annotation Property: obo:RO_0001900 (temporal interpretation)
AnnotationAssertion(obo:IAO_0000115 obo:RO_0001900 "An assertion that holds between an OWL Object Property and a temporal interpretation that elucidates how OWL Class Axioms that use this property are to be interpreted in a temporal context.")
SubAnnotationPropertyOf(obo:RO_0001900 obo:RO_0002422)
# Annotation Property: obo:RO_0002161 (never in taxon)
AnnotationAssertion(obo:IAO_0000112 obo:RO_0002161 "tooth SubClassOf 'never in taxon' value 'Aves'")
AnnotationAssertion(obo:IAO_0000115 obo:RO_0002161 "x never in taxon T if and only if T is a class, and x does not instantiate the class expression \"in taxon some T\". Note that this is a shortcut relation, and should be used as a hasValue restriction in OWL.")
AnnotationAssertion(obo:IAO_0000117 obo:RO_0002161 "Chris Mungall"@en)
AnnotationAssertion(obo:IAO_0000119 obo:RO_0002161 <http://www.ncbi.nlm.nih.gov/pubmed/17921072>)
AnnotationAssertion(obo:IAO_0000119 obo:RO_0002161 <http://www.ncbi.nlm.nih.gov/pubmed/20973947>)
AnnotationAssertion(obo:IAO_0000425 obo:RO_0002161 "?X DisjointWith RO_0002162 some ?Y ")
AnnotationAssertion(rdfs:label obo:RO_0002161 "never in taxon"^^xsd:string)
AnnotationAssertion(rdfs:seeAlso obo:RO_0002161 <https://github.com/obophenotype/uberon/wiki/Taxon-constraints>)
SubAnnotationPropertyOf(obo:RO_0002161 obo:RO_0002172)
# Annotation Property: obo:RO_0002171 (mutually spatially disjoint with)
AnnotationAssertion(obo:IAO_0000115 obo:RO_0002171 "A is mutually_spatially_disjoint_with B if both A and B are classes, and there exists no p such that p is part_of some A and p is part_of some B.")
AnnotationAssertion(obo:IAO_0000118 obo:RO_0002171 "non-overlapping with")
AnnotationAssertion(obo:IAO_0000118 obo:RO_0002171 "shares no parts with")
AnnotationAssertion(obo:IAO_0000119 obo:RO_0002171 <http://www.ncbi.nlm.nih.gov/pubmed/22293552>)
AnnotationAssertion(obo:IAO_0000425 obo:RO_0002171 "Class: <http://www.w3.org/2002/07/owl#Nothing> EquivalentTo: (BFO_0000050 some ?X) and (BFO_0000050 some ?Y)")
AnnotationAssertion(rdfs:label obo:RO_0002171 "mutually spatially disjoint with"@en)
AnnotationAssertion(rdfs:seeAlso obo:RO_0002171 obo:RO_0002163)
AnnotationAssertion(foaf:page obo:RO_0002171 "https://github.com/obophenotype/uberon/wiki/Part-disjointness-Design-Pattern"^^xsd:anyURI)
SubAnnotationPropertyOf(obo:RO_0002171 obo:RO_0002420)
# Annotation Property: obo:RO_0002172 (taxonomic class assertion)
AnnotationAssertion(obo:IAO_0000115 obo:RO_0002172 "An assertion that holds between an ontology class and an organism taxon class, which is intepreted to yield some relationship between instances of the ontology class and the taxon.")
AnnotationAssertion(rdfs:label obo:RO_0002172 "taxonomic class assertion"@en)
AnnotationAssertion(rdfs:seeAlso obo:RO_0002172 <https://github.com/obophenotype/uberon/wiki/Taxon-constraints>)
# Annotation Property: obo:RO_0002175 (present_in_taxon)
AnnotationAssertion(rdfs:label obo:RO_0002175 "present_in_taxon"^^xsd:string)
# Annotation Property: obo:RO_0002259 (defined by inverse)
AnnotationAssertion(rdfs:label obo:RO_0002259 "defined by inverse")
SubAnnotationPropertyOf(obo:RO_0002259 oboInOwl:SubsetProperty)
# Annotation Property: obo:RO_0002416 (logical macro assertion)
AnnotationAssertion(obo:IAO_0000115 obo:RO_0002416 "An assertion that involves at least one OWL object that is intended to be expanded into one or more logical axioms. The logical expansion can yield axioms expressed using any formal logical system, including, but not limited to OWL2-DL.")
AnnotationAssertion(rdfs:label obo:RO_0002416 "logical macro assertion"@en)
AnnotationAssertion(foaf:page obo:RO_0002416 "https://github.com/oborel/obo-relations/wiki/ShortcutRelations"^^xsd:anyURI)
# Annotation Property: obo:RO_0002419 (annotation property cardinality)
AnnotationAssertion(obo:IAO_0000115 obo:RO_0002419 "An assertion that holds between an OWL Annotation Property P and a non-negative integer N, with the interpretation: for any P(i j) it must be the case that | { k : P(i k) } | = N.")
AnnotationAssertion(rdfs:label obo:RO_0002419 "annotation property cardinality"@en)
SubAnnotationPropertyOf(obo:RO_0002419 obo:RO_0002423)
AnnotationPropertyRange(obo:RO_0002419 xsd:nonNegativeInteger)
# Annotation Property: obo:RO_0002420 (logical macro assertion on a class)
AnnotationAssertion(obo:IAO_0000115 obo:RO_0002420 "A logical macro assertion whose domain is an IRI for a class")
AnnotationAssertion(obo:IAO_0000116 obo:RO_0002420 "The domain for this class can be considered to be owl:Class, but we cannot assert this in OWL2-DL")
AnnotationAssertion(rdfs:label obo:RO_0002420 "logical macro assertion on a class"@en)
SubAnnotationPropertyOf(obo:RO_0002420 obo:RO_0002416)
# Annotation Property: obo:RO_0002421 (logical macro assertion on a property)
AnnotationAssertion(obo:IAO_0000115 obo:RO_0002421 "A logical macro assertion whose domain is an IRI for a property")
AnnotationAssertion(rdfs:label obo:RO_0002421 "logical macro assertion on a property"@en)
# Annotation Property: obo:RO_0002422 (logical macro assertion on an object property)
AnnotationAssertion(obo:IAO_0000115 obo:RO_0002422 "Used to annotate object properties to describe a logical meta-property or characteristic of the object property.")
AnnotationAssertion(rdfs:label obo:RO_0002422 "logical macro assertion on an object property"@en)
SubAnnotationPropertyOf(obo:RO_0002422 obo:RO_0002421)
# Annotation Property: obo:RO_0002423 (logical macro assertion on an annotation property)
AnnotationAssertion(rdfs:label obo:RO_0002423 "logical macro assertion on an annotation property"@en)
# Annotation Property: obo:RO_0002474 (dispositional interpretation)
AnnotationAssertion(obo:IAO_0000115 obo:RO_0002474 "An assertion that holds between an OWL Object Property and a dispositional interpretation that elucidates how OWL Class Axioms or OWL Individuals that use this property are to be interpreted in a dispositional context. For example, A binds B may be interpreted as A have a mutual disposition that is realized by binding to the other one.")
AnnotationAssertion(rdfs:label obo:RO_0002474 "dispositional interpretation")
SubAnnotationPropertyOf(obo:RO_0002474 obo:RO_0002422)
# Annotation Property: obo:RO_0002475 (has no connections with)
AnnotationAssertion(obo:IAO_0000112 obo:RO_0002475 "'pectoral appendage skeleton' has no connections with 'pelvic appendage skeleton'")
AnnotationAssertion(obo:IAO_0000115 obo:RO_0002475 "A is has_no_connections_with B if there are no parts of A or B that have a connection with the other.")
AnnotationAssertion(obo:IAO_0000118 obo:RO_0002475 "shares no connection with")
AnnotationAssertion(obo:IAO_0000425 obo:RO_0002475 "Class: <http://www.w3.org/2002/07/owl#Nothing> EquivalentTo: (BFO_0000050 some ?X) and (RO_0002170 some (BFO_0000050 some ?Y))")
AnnotationAssertion(rdfs:label obo:RO_0002475 "has no connections with")
SubAnnotationPropertyOf(obo:RO_0002475 obo:RO_0002420)
# Annotation Property: obo:RO_0002483 (inherited annotation property)
AnnotationAssertion(rdfs:label obo:RO_0002483 "inherited annotation property")
# Annotation Property: obo:RO_0002484 (curator guidance link)
AnnotationAssertion(obo:IAO_0000115 obo:RO_0002484 "Connects an ontology entity (class, property, etc) to a URL from which curator guidance can be obtained. This assertion is inherited in the same manner as functional annotations (e.g. for GO, over SubClassOf and part_of)")
AnnotationAssertion(rdfs:label obo:RO_0002484 "curator guidance link")
SubAnnotationPropertyOf(obo:RO_0002484 obo:RO_0002483)
# Annotation Property: obo:RO_0002504 (always present in taxon)
AnnotationAssertion(obo:IAO_0000112 obo:RO_0002504 "brain always_present_in_taxon 'Vertebrata'")
AnnotationAssertion(obo:IAO_0000112 obo:RO_0002504 "forelimb always_present_in_taxon Euarchontoglires")
AnnotationAssertion(obo:IAO_0000115 obo:RO_0002504 "S always_present_in_taxon T if every fully formed member of taxon T has part some S, or is an instance of S")
AnnotationAssertion(obo:IAO_0000116 obo:RO_0002504 "This is a very strong relation. Often we will not have enough evidence to know for sure that there are no species within a lineage that lack the structure - loss is common in evolution. However, there are some statements we can make with confidence - no vertebrate lineage could persist without a brain or a heart. All primates are limbed. ")
AnnotationAssertion(obo:IAO_0000118 obo:RO_0002504 "never lost in")
AnnotationAssertion(rdfs:label obo:RO_0002504 "always present in taxon")
SubAnnotationPropertyOf(obo:RO_0002504 obo:RO_0002175)
# Annotation Property: obo:RO_0002535 (temporal logical macro assertion on a class)
AnnotationAssertion(obo:IAO_0000232 obo:RO_0002535 "This properties were created originally for the annotation of developmental or life cycle stages, such as for example Carnegie Stage 20 in humans. ")
AnnotationAssertion(rdfs:label obo:RO_0002535 "temporal logical macro assertion on a class")
SubAnnotationPropertyOf(obo:RO_0002535 obo:RO_0002420)
# Annotation Property: obo:RO_0002536 (measurement property has unit)
AnnotationAssertion(rdfs:label obo:RO_0002536 "measurement property has unit")
SubAnnotationPropertyOf(obo:RO_0002536 obo:RO_0002423)
# Annotation Property: obo:RO_0002537 (has start time value)
AnnotationAssertion(rdfs:label obo:RO_0002537 "has start time value")
SubAnnotationPropertyOf(obo:RO_0002537 obo:RO_0002535)
# Annotation Property: obo:RO_0002538 (has end time value)
AnnotationAssertion(rdfs:label obo:RO_0002538 "has end time value")
SubAnnotationPropertyOf(obo:RO_0002538 obo:RO_0002535)
# Annotation Property: obo:RO_0002539 (start, days post fertilization)
AnnotationAssertion(obo:IAO_0000115 obo:RO_0002539 "Count of number of days intervening between the start of the stage and the time of fertilization according to a reference model. Note that the first day of development has the value of 0 for this property.")
AnnotationAssertion(rdfs:label obo:RO_0002539 "start, days post fertilization")