-
Notifications
You must be signed in to change notification settings - Fork 5
/
bspo-edit.owl
2780 lines (2306 loc) · 309 KB
/
bspo-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/bspo.owl#>)
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#>)
Ontology(<http://purl.obolibrary.org/obo/bspo.owl>
Import(<http://purl.obolibrary.org/obo/bspo/imports/omo_import.owl>)
Import(<http://purl.obolibrary.org/obo/bspo/imports/ro_import.owl>)
Annotation(<http://purl.obolibrary.org/obo/IAO_0000700> <http://purl.obolibrary.org/obo/CARO_0000000>)
Annotation(<http://purl.org/dc/elements/1.1/description> "An ontology for respresenting spatial concepts, anatomical axes, gradients, regions, planes, sides and surfaces. These concepts can be used at multiple biological scales and in a diversity of taxa, including plants, animals and fungi. The BSPO is used to provide a source of anatomical location descriptors for logically defining anatomical entity classes in anatomy ontologies.")
Annotation(<http://purl.org/dc/elements/1.1/title> "Biological Spatial Ontology")
Annotation(<http://purl.org/dc/terms/license> <https://creativecommons.org/licenses/by/3.0/>)
Annotation(<http://www.geneontology.org/formats/oboInOwl#NamespaceIdRule> "* BSPO:$sequence(7,0,999999999)$")
Annotation(<http://www.geneontology.org/formats/oboInOwl#default-namespace> "spatial")
Annotation(rdfs:comment "based on FBql")
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000000>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000001>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000002>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_00000021>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000003>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000004>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000005>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000006>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000007>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000008>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000009>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000010>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000011>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000012>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000013>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000014>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000015>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000016>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000017>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000018>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000019>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000020>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000021>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000022>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000023>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000024>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000025>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000026>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000027>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000028>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000029>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000030>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000031>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000032>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000033>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000034>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000035>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000036>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000037>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000038>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000039>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000040>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000041>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000042>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000043>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000044>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000045>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000046>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000047>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000048>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000049>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000050>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000051>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000052>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000053>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000054>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000055>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000056>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000057>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000058>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000059>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000060>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000061>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000062>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000063>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000064>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000065>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000066>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000067>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000068>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000069>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000070>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000071>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000072>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000073>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000074>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000075>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000076>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000077>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000078>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000079>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000080>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000081>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000082>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000083>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000084>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000085>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000086>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000087>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000088>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000089>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000090>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000091>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000092>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000093>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000094>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000112>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000127>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000128>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000129>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000130>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000195>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000196>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000197>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000198>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000199>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000200>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000201>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000202>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000371>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000372>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000373>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000374>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000376>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000377>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000378>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000379>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000381>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000382>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000383>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000384>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000400>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000417>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000671>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000672>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000673>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000674>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000677>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000678>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000679>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000680>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000682>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000683>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000684>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000685>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000686>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000687>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000688>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0000689>))
Declaration(Class(<http://purl.obolibrary.org/obo/BSPO_0001001>))
Declaration(Class(<http://purl.obolibrary.org/obo/CARO_0000000>))
Declaration(Class(<http://purl.obolibrary.org/obo/CARO_0000003>))
Declaration(Class(<http://purl.obolibrary.org/obo/CARO_0000006>))
Declaration(Class(<http://purl.obolibrary.org/obo/CARO_0000007>))
Declaration(Class(<http://purl.obolibrary.org/obo/CARO_0000008>))
Declaration(Class(<http://purl.obolibrary.org/obo/CARO_0000010>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BFO_0000050>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BFO_0000051>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000095>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000096>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000097>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000098>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000099>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000100>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000101>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000102>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000103>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000104>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000105>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000106>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000107>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000108>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000109>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000110>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000111>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000113>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000114>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000115>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000120>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000121>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000122>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000123>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000124>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000125>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000126>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0001100>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0001101>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0001102>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0001106>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0001107>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0001108>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0001113>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0001114>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0001115>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0005001>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0015001>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0015002>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0015003>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0015004>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0015005>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0015006>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0015007>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0015008>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0015009>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0015010>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0015011>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0015012>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0015013>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0015014>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0015015>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0015016>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0015017>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0015101>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0015102>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0015201>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0015202>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0020001>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0020002>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0030003>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0030004>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0030005>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0030006>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0030007>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/BSPO_1000000>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/RO_0002131>))
Declaration(ObjectProperty(<http://purl.obolibrary.org/obo/RO_0002220>))
Declaration(AnnotationProperty(<http://purl.obolibrary.org/obo/IAO_0000115>))
Declaration(AnnotationProperty(<http://purl.obolibrary.org/obo/IAO_0000116>))
Declaration(AnnotationProperty(<http://purl.obolibrary.org/obo/IAO_0000700>))
Declaration(AnnotationProperty(<http://purl.obolibrary.org/obo/IAO_0100001>))
Declaration(AnnotationProperty(<http://purl.obolibrary.org/obo/bspo#human>))
Declaration(AnnotationProperty(<http://purl.obolibrary.org/obo/bspo#vertebrate>))
Declaration(AnnotationProperty(<http://purl.org/dc/elements/1.1/description>))
Declaration(AnnotationProperty(<http://purl.org/dc/elements/1.1/title>))
Declaration(AnnotationProperty(<http://purl.org/dc/terms/contributor>))
Declaration(AnnotationProperty(<http://purl.org/dc/terms/license>))
Declaration(AnnotationProperty(<http://www.geneontology.org/formats/oboInOwl#NamespaceIdRule>))
Declaration(AnnotationProperty(<http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty>))
Declaration(AnnotationProperty(<http://www.geneontology.org/formats/oboInOwl#created_by>))
Declaration(AnnotationProperty(<http://www.geneontology.org/formats/oboInOwl#creation_date>))
Declaration(AnnotationProperty(<http://www.geneontology.org/formats/oboInOwl#default-namespace>))
Declaration(AnnotationProperty(<http://www.geneontology.org/formats/oboInOwl#hasDbXref>))
Declaration(AnnotationProperty(<http://www.geneontology.org/formats/oboInOwl#hasExactSynonym>))
Declaration(AnnotationProperty(<http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym>))
Declaration(AnnotationProperty(<http://www.geneontology.org/formats/oboInOwl#hasOBOFormatVersion>))
Declaration(AnnotationProperty(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace>))
Declaration(AnnotationProperty(<http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym>))
Declaration(AnnotationProperty(<http://www.geneontology.org/formats/oboInOwl#hasScope>))
Declaration(AnnotationProperty(<http://www.geneontology.org/formats/oboInOwl#hasSynonymType>))
Declaration(AnnotationProperty(<http://www.geneontology.org/formats/oboInOwl#id>))
Declaration(AnnotationProperty(<http://www.geneontology.org/formats/oboInOwl#is_metadata_tag>))
Declaration(AnnotationProperty(<http://www.geneontology.org/formats/oboInOwl#shorthand>))
Declaration(AnnotationProperty(rdfs:comment))
Declaration(AnnotationProperty(rdfs:label))
Declaration(AnnotationProperty(rdfs:seeAlso))
Declaration(AnnotationProperty(owl:deprecated))
############################
# Annotation Properties
############################
# Annotation Property: <http://purl.obolibrary.org/obo/IAO_0000115> (definition)
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/IAO_0000115> "definition")
# Annotation Property: <http://purl.obolibrary.org/obo/IAO_0100001> (term replaced by)
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/IAO_0100001> "term replaced by")
# Annotation Property: <http://purl.obolibrary.org/obo/bspo#human> (synonym typically used in the context of human anatomy)
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasScope> <http://purl.obolibrary.org/obo/bspo#human> <http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym>)
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/bspo#human> "synonym typically used in the context of human anatomy")
SubAnnotationPropertyOf(<http://purl.obolibrary.org/obo/bspo#human> <http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty>)
# Annotation Property: <http://purl.obolibrary.org/obo/bspo#vertebrate> (synonym typically used in the context of vertebrate anatomy)
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasScope> <http://purl.obolibrary.org/obo/bspo#vertebrate> <http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym>)
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/bspo#vertebrate> "synonym typically used in the context of vertebrate anatomy")
SubAnnotationPropertyOf(<http://purl.obolibrary.org/obo/bspo#vertebrate> <http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty>)
# Annotation Property: <http://www.geneontology.org/formats/oboInOwl#NamespaceIdRule> (namespace-id-rule)
AnnotationAssertion(rdfs:label <http://www.geneontology.org/formats/oboInOwl#NamespaceIdRule> "namespace-id-rule")
# Annotation Property: <http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty> (synonym_type_property)
AnnotationAssertion(rdfs:label <http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty> "synonym_type_property")
# Annotation Property: <http://www.geneontology.org/formats/oboInOwl#hasDbXref> (database_cross_reference)
AnnotationAssertion(rdfs:label <http://www.geneontology.org/formats/oboInOwl#hasDbXref> "database_cross_reference")
# Annotation Property: <http://www.geneontology.org/formats/oboInOwl#hasExactSynonym> (has_exact_synonym)
AnnotationAssertion(rdfs:label <http://www.geneontology.org/formats/oboInOwl#hasExactSynonym> "has_exact_synonym")
# Annotation Property: <http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym> (has_narrow_synonym)
AnnotationAssertion(rdfs:label <http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym> "has_narrow_synonym")
# Annotation Property: <http://www.geneontology.org/formats/oboInOwl#hasOBOFormatVersion> (has_obo_format_version)
AnnotationAssertion(rdfs:label <http://www.geneontology.org/formats/oboInOwl#hasOBOFormatVersion> "has_obo_format_version")
# Annotation Property: <http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> (has_obo_namespace)
AnnotationAssertion(rdfs:label <http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> "has_obo_namespace")
# Annotation Property: <http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym> (has_related_synonym)
AnnotationAssertion(rdfs:label <http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym> "has_related_synonym")
# Annotation Property: <http://www.geneontology.org/formats/oboInOwl#hasScope> (has_scope)
AnnotationAssertion(rdfs:label <http://www.geneontology.org/formats/oboInOwl#hasScope> "has_scope")
# Annotation Property: <http://www.geneontology.org/formats/oboInOwl#hasSynonymType> (has_synonym_type)
AnnotationAssertion(rdfs:label <http://www.geneontology.org/formats/oboInOwl#hasSynonymType> "has_synonym_type")
# Annotation Property: <http://www.geneontology.org/formats/oboInOwl#shorthand> (shorthand)
AnnotationAssertion(rdfs:label <http://www.geneontology.org/formats/oboInOwl#shorthand> "shorthand")
# Annotation Property: rdfs:seeAlso (see also)
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> rdfs:seeAlso "http://www.w3.org/2000/01/rdf-schema#seeAlso")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> rdfs:seeAlso "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> rdfs:seeAlso "seeAlso")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#is_metadata_tag> rdfs:seeAlso "true"^^xsd:boolean)
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> rdfs:seeAlso "seeAlso")
AnnotationAssertion(rdfs:label rdfs:seeAlso "see also")
############################
# Object Properties
############################
# Object Property: <http://purl.obolibrary.org/obo/BFO_0000050> (part of)
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BFO_0000050> "BFO:0000050")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BFO_0000050> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BFO_0000050> "part_of")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BFO_0000050> "part_of")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BFO_0000050> "part of")
InverseObjectProperties(<http://purl.obolibrary.org/obo/BFO_0000050> <http://purl.obolibrary.org/obo/BFO_0000051>)
TransitiveObjectProperty(<http://purl.obolibrary.org/obo/BFO_0000050>)
# Object Property: <http://purl.obolibrary.org/obo/BFO_0000051> (has part)
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BFO_0000051> "BFO:0000051")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BFO_0000051> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BFO_0000051> "has_part")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BFO_0000051> "has_part")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BFO_0000051> "has part")
TransitiveObjectProperty(<http://purl.obolibrary.org/obo/BFO_0000051>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0000095> (anatomical relation)
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0000095> "BSPO:0000095")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0000095> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0000095> "anatomical_relation")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0000095> "anatomical_relation")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0000095> "anatomical relation")
AnnotationAssertion(rdfs:seeAlso <http://purl.obolibrary.org/obo/BSPO_0000095> <http://purl.obolibrary.org/obo/FBql_00005860>)
AnnotationAssertion(owl:deprecated <http://purl.obolibrary.org/obo/BSPO_0000095> "true"^^xsd:boolean)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0000096> (anterior to)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:cjm") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0000096> "x anterior to y iff x is further along the antero-posterior axis than y, towards the head. An antero-posterior axis is an axis that extends through an organism from head end to opposite end of body or tail.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0000096> "BSPO:0000096")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasExactSynonym> <http://purl.obolibrary.org/obo/BSPO_0000096> "rostral_to")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0000096> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0000096> "anterior_to")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0000096> "anterior_to")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0000096> "anterior to")
AnnotationAssertion(rdfs:seeAlso <http://purl.obolibrary.org/obo/BSPO_0000096> <http://purl.obolibrary.org/obo/FBcv_0000039>)
AnnotationAssertion(rdfs:seeAlso <http://purl.obolibrary.org/obo/BSPO_0000096> <http://purl.obolibrary.org/obo/FBql_00005863>)
InverseObjectProperties(<http://purl.obolibrary.org/obo/BSPO_0000096> <http://purl.obolibrary.org/obo/BSPO_0000099>)
TransitiveObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000096>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0000097> (distal to)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:cjm") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0000097> "x distal to y iff x is further along the proximo-distal axis than y, towards the appendage tip. A proximo-distal axis extends from tip of an appendage (distal) to where it joins the body (proximal).")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0000097> "BSPO:0000097")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0000097> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0000097> "distal_to")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0000097> "distal_to")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0000097> "distal to")
AnnotationAssertion(rdfs:seeAlso <http://purl.obolibrary.org/obo/BSPO_0000097> <http://purl.obolibrary.org/obo/FBcv_0000040>)
AnnotationAssertion(rdfs:seeAlso <http://purl.obolibrary.org/obo/BSPO_0000097> <http://purl.obolibrary.org/obo/FBql_00005867>)
InverseObjectProperties(<http://purl.obolibrary.org/obo/BSPO_0000097> <http://purl.obolibrary.org/obo/BSPO_0000100>)
TransitiveObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000097>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0000098> (dorsal to)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:cjm") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0000098> "x dorsal to y iff x is further along the dorso-ventral axis than y, towards the back. A dorso-ventral axis is an axis that extends through an organism from back (e.g. spinal column) to front (e.g. belly).")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0000098> "BSPO:0000098")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0000098> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0000098> "dorsal_to")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0000098> "dorsal_to")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0000098> "dorsal to")
AnnotationAssertion(rdfs:seeAlso <http://purl.obolibrary.org/obo/BSPO_0000098> <http://purl.obolibrary.org/obo/FBcv_0000041>)
AnnotationAssertion(rdfs:seeAlso <http://purl.obolibrary.org/obo/BSPO_0000098> <http://purl.obolibrary.org/obo/FBql_00005865>)
InverseObjectProperties(<http://purl.obolibrary.org/obo/BSPO_0000098> <http://purl.obolibrary.org/obo/BSPO_0000102>)
TransitiveObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000098>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0000099> (posterior to)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:cjm") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0000099> "x posterior to y iff x is further along the antero-posterior axis than y, towards the body/tail. An antero-posterior axis is an axis that extends through an organism from head end to opposite end of body or tail.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0000099> "BSPO:0000099")
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasSynonymType> <http://purl.obolibrary.org/obo/bspo#vertebrate>) <http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym> <http://purl.obolibrary.org/obo/BSPO_0000099> "caudal to")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0000099> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0000099> "posterior_to")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0000099> "posterior_to")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0000099> "posterior to")
AnnotationAssertion(rdfs:seeAlso <http://purl.obolibrary.org/obo/BSPO_0000099> <http://purl.obolibrary.org/obo/FBcv_0000045>)
AnnotationAssertion(rdfs:seeAlso <http://purl.obolibrary.org/obo/BSPO_0000099> <http://purl.obolibrary.org/obo/FBql_00005864>)
TransitiveObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000099>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0000100> (proximal to)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:cjm") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0000100> "x proximal to y iff x is closer to the point of attachment with the body than y.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0000100> "BSPO:0000100")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0000100> "NCIT:C25236")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0000100> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0000100> "proximal_to")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0000100> "proximal_to")
AnnotationAssertion(rdfs:comment <http://purl.obolibrary.org/obo/BSPO_0000100> "The elbow is proximal to the hand, but distal to the shoulder.")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0000100> "proximal to")
AnnotationAssertion(rdfs:seeAlso <http://purl.obolibrary.org/obo/BSPO_0000100> <http://purl.obolibrary.org/obo/FBcv_0000047>)
AnnotationAssertion(rdfs:seeAlso <http://purl.obolibrary.org/obo/BSPO_0000100> <http://purl.obolibrary.org/obo/FBql_00005868>)
TransitiveObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000100>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0000101> (obsolete surrounds)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0100001> <http://purl.obolibrary.org/obo/BSPO_0000101> "RO:0002221")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0000101> "BSPO:0000101")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0000101> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0000101> "obsolete_surrounds")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0000101> "obsolete_surrounds")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0000101> "obsolete surrounds")
AnnotationAssertion(rdfs:seeAlso <http://purl.obolibrary.org/obo/BSPO_0000101> <http://purl.obolibrary.org/obo/FBcv_0000048>)
AnnotationAssertion(rdfs:seeAlso <http://purl.obolibrary.org/obo/BSPO_0000101> <http://purl.obolibrary.org/obo/FBql_00005861>)
AnnotationAssertion(owl:deprecated <http://purl.obolibrary.org/obo/BSPO_0000101> "true"^^xsd:boolean)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0000102> (ventral to)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:cjm") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0000102> "x ventral to y iff x is further along the dorso-ventral axis than y, towards the front. A dorso-ventral axis is an axis that extends through an organism from back (e.g. spinal column) to front (e.g. belly).")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0000102> "BSPO:0000102")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0000102> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0000102> "ventral_to")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0000102> "ventral_to")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0000102> "ventral to")
AnnotationAssertion(rdfs:seeAlso <http://purl.obolibrary.org/obo/BSPO_0000102> <http://purl.obolibrary.org/obo/FBcv_0000049>)
AnnotationAssertion(rdfs:seeAlso <http://purl.obolibrary.org/obo/BSPO_0000102> <http://purl.obolibrary.org/obo/FBql_00005866>)
TransitiveObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000102>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0000103> (vicinity of)
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0000103> "BSPO:0000103")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0000103> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0000103> "vicinity_of")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0000103> "vicinity_of")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0000103> "vicinity of")
AnnotationAssertion(rdfs:seeAlso <http://purl.obolibrary.org/obo/BSPO_0000103> <http://purl.obolibrary.org/obo/FBcv_0000050>)
AnnotationAssertion(rdfs:seeAlso <http://purl.obolibrary.org/obo/BSPO_0000103> <http://purl.obolibrary.org/obo/FBql_00005862>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0000104> (approximately perpendicular to)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:cjm") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0000104> "Crosses at an angle that is 90 degrees, or close to 90 degrees. In any non-linear organism, the main axes are rarely perpendicular when taken through the organism as a whole.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0000104> "BSPO:0000104")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0000104> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0000104> "approximately_perpendicular_to")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0000104> "approximately_perpendicular_to")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0000104> "approximately perpendicular to")
ObjectPropertyDomain(<http://purl.obolibrary.org/obo/BSPO_0000104> <http://purl.obolibrary.org/obo/BSPO_0000010>)
ObjectPropertyRange(<http://purl.obolibrary.org/obo/BSPO_0000104> <http://purl.obolibrary.org/obo/BSPO_0000010>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0000105> (ipsilateral to)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:cjm") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0000105> "On the same side as. For example, the left arm is ipsilateral to the left leg.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0000105> "BSPO:0000105")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0000105> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0000105> "ipsilateral_to")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0000105> "ipsilateral_to")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0000105> "ipsilateral to")
AnnotationAssertion(rdfs:seeAlso <http://purl.obolibrary.org/obo/BSPO_0000105> <http://purl.obolibrary.org/obo/FBql_00005850>)
SymmetricObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000105>)
DisjointObjectProperties(<http://purl.obolibrary.org/obo/BSPO_0000105> <http://purl.obolibrary.org/obo/BSPO_0000106>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0000106> (contralateral to)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:cjm") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0000106> "On the opposite side from. For example, the left arm is contralateral to the right arm (and the right leg).")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0000106> "BSPO:0000106")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0000106> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0000106> "contralateral_to")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0000106> "contralateral_to")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0000106> "contralateral to")
AnnotationAssertion(rdfs:seeAlso <http://purl.obolibrary.org/obo/BSPO_0000106> <http://purl.obolibrary.org/obo/FBql_00005851>)
SubObjectPropertyOf(<http://purl.obolibrary.org/obo/BSPO_0000106> <http://purl.obolibrary.org/obo/BSPO_0000113>)
SymmetricObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000106>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0000107> (deep to)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:cjm") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0000107> "Further away from the surface of the organism. Thus, the muscular layer is deep to the skin, but superficial to the intestines.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0000107> "BSPO:0000107")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0000107> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0000107> "deep_to")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0000107> "deep_to")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0000107> "deep to")
InverseObjectProperties(<http://purl.obolibrary.org/obo/BSPO_0000107> <http://purl.obolibrary.org/obo/BSPO_0000108>)
TransitiveObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000107>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0000108> (superficial to)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:cjm") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0000108> "Near the outer surface of the organism. Thus, skin is superficial to the muscle layer.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0000108> "BSPO:0000108")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0000108> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0000108> "superficial_to")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0000108> "superficial_to")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0000108> "superficial to")
TransitiveObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000108>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0000109> (obsolete surrounded_by)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0100001> <http://purl.obolibrary.org/obo/BSPO_0000109> "RO:0002219")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0000109> "BSPO:0000109")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0000109> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0000109> "obsolete_surrounded_by")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0000109> "obsolete_surrounded_by")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0000109> "obsolete surrounded_by")
AnnotationAssertion(owl:deprecated <http://purl.obolibrary.org/obo/BSPO_0000109> "true"^^xsd:boolean)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0000110> (left of)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:cjm") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0000110> "Closer to the left side of the organism. Example: The dorsal fin is right of the left pectoral fin, but is left of the right eye. On the type level: X left of Y <=> every instance x of X is left of some instance y of Y, and there exists some organism o such that x part of o and y part of o.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0000110> "BSPO:0000110")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0000110> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0000110> "left_of")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0000110> "left_of")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0000110> "left of")
InverseObjectProperties(<http://purl.obolibrary.org/obo/BSPO_0000110> <http://purl.obolibrary.org/obo/BSPO_0000111>)
TransitiveObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000110>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0000111> (right of)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:cjm") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0000111> "Closer to the right side of the organism. Example: The dorsal fin is right of the left pectoral fin, but is left of the right eye. On the type level: X left of Y <=> every instance x of X is right of some instance y of Y, and there exists some organism o such that x part of o and y part of o.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0000111> "BSPO:0000111")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0000111> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0000111> "right_of")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0000111> "right_of")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0000111> "right of")
TransitiveObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000111>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0000113> (opposite to)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:cjm") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0000113> "Direcly opposite to. i.e. on the opposite side through the axis.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0000113> "BSPO:0000113")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0000113> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0000113> "opposite_to")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0000113> "opposite_to")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0000113> "opposite to")
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0000114> (lateral to)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0000114> "X lateral to y if x is further from the midsagittal plane than y."@en)
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#created_by> <http://purl.obolibrary.org/obo/BSPO_0000114> "Jennifer Girón"@en)
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#creation_date> <http://purl.obolibrary.org/obo/BSPO_0000114> "2021-04-21T01:01:01Z")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0000114> "lateral to"@en)
InverseObjectProperties(<http://purl.obolibrary.org/obo/BSPO_0000114> <http://purl.obolibrary.org/obo/BSPO_0000115>)
TransitiveObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000114>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0000115> (medial to)
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#created_by> <http://purl.obolibrary.org/obo/BSPO_0000115> "Jennifer Girón")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#creation_date> <http://purl.obolibrary.org/obo/BSPO_0000115> "2021-04-21T01:01:01Z")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0000115> "X medial to y if x is closer to the midsagittal plane than y."@en)
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0000115> "medial to"@en)
TransitiveObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0000115>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0000120> (in left side of)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:PATO_mtg_2009") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0000120> "X in left side of Y <=> if Y is subdivided into two left and right portions, X is part of the left portion.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0000120> "BSPO:0000120")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0000120> "NCIT:C25229")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0000120> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0000120> "in_left_side_of")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0000120> "in_left_side_of")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0000120> "in left side of")
AnnotationAssertion(rdfs:seeAlso <http://purl.obolibrary.org/obo/BSPO_0000120> "https://github.com/obophenotype/uberon/wiki/Modeling-paired-structures-Design-Pattern"^^xsd:anyURI)
SubObjectPropertyOf(<http://purl.obolibrary.org/obo/BSPO_0000120> <http://purl.obolibrary.org/obo/BSPO_0000126>)
DisjointObjectProperties(<http://purl.obolibrary.org/obo/BSPO_0000120> <http://purl.obolibrary.org/obo/BSPO_0000121>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0000121> (in right side of)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:PATO_mtg_2009") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0000121> "X in right side of Y <=> if Y is subdivided into two left and right portions, X is part of the right portion.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0000121> "BSPO:0000121")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0000121> "NCIT:C25228")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0000121> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0000121> "in_right_side_of")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0000121> "in_right_side_of")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0000121> "in right side of")
AnnotationAssertion(rdfs:seeAlso <http://purl.obolibrary.org/obo/BSPO_0000121> "https://github.com/obophenotype/uberon/wiki/Modeling-paired-structures-Design-Pattern"^^xsd:anyURI)
SubObjectPropertyOf(<http://purl.obolibrary.org/obo/BSPO_0000121> <http://purl.obolibrary.org/obo/BSPO_0000126>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0000122> (in posterior side of)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:PATO_mtg_2009") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0000122> "X posterior side of Y <=> if Y is subdivided into two anterior and posterior portions, X is part of the posterior portion.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0000122> "BSPO:0000122")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0000122> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0000122> "in_posterior_side_of")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0000122> "in_posterior_side_of")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0000122> "in posterior side of")
SubObjectPropertyOf(<http://purl.obolibrary.org/obo/BSPO_0000122> <http://purl.obolibrary.org/obo/BFO_0000050>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0000123> (in anterior side of)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:PATO_mtg_2009") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0000123> "X anterior side of Y <=> if Y is subdivided into two anterior and posterior portions, X is part of the anterior portion.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0000123> "BSPO:0000123")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0000123> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0000123> "in_anterior_side_of")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0000123> "in_anterior_side_of")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0000123> "in anterior side of")
SubObjectPropertyOf(<http://purl.obolibrary.org/obo/BSPO_0000123> <http://purl.obolibrary.org/obo/BFO_0000050>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0000124> (in proximal side of)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:PATO_mtg_2009") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0000124> "x in proximal side of y <=> if y is subdivided into two proximal and distal portions, y is part of the proximal portion.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0000124> "BSPO:0000124")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0000124> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0000124> "in_proximal_side_of")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0000124> "in_proximal_side_of")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0000124> "in proximal side of")
SubObjectPropertyOf(<http://purl.obolibrary.org/obo/BSPO_0000124> <http://purl.obolibrary.org/obo/BFO_0000050>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0000125> (in distal side of)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:PATO_mtg_2009") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0000125> "x in distal side of y <=> if y is subdivided into two proximal and distal portions, y is part of the distal portion.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0000125> "BSPO:0000125")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0000125> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0000125> "in_distal_side_of")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0000125> "in_distal_side_of")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0000125> "in distal side of")
SubObjectPropertyOf(<http://purl.obolibrary.org/obo/BSPO_0000125> <http://purl.obolibrary.org/obo/BFO_0000050>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0000126> (in lateral side of)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "UBERON:cjm") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0000126> "X in lateral side of Y <=> if X is in left side of Y or X is in right side of Y. X is often, but not always a paired structure")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0000126> "BSPO:0000126")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0000126> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0000126> "in_lateral_side_of")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0000126> "in_lateral_side_of")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0000126> "in lateral side of")
AnnotationAssertion(rdfs:seeAlso <http://purl.obolibrary.org/obo/BSPO_0000126> <https://github.com/obophenotype/uberon/issues/2453>)
AnnotationAssertion(rdfs:seeAlso <http://purl.obolibrary.org/obo/BSPO_0000126> "https://github.com/obophenotype/uberon/wiki/Modeling-paired-structures-Design-Pattern"^^xsd:anyURI)
SubObjectPropertyOf(<http://purl.obolibrary.org/obo/BSPO_0000126> <http://purl.obolibrary.org/obo/BFO_0000050>)
DisjointObjectProperties(<http://purl.obolibrary.org/obo/BSPO_0000126> <http://purl.obolibrary.org/obo/BSPO_0020001>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0001100> (in superficial part of)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:cjm") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0001100> "X superficial part of Y <=> if Y is subdivided into two superficial and deep portions, X is part of the superficial portion.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0001100> "BSPO:0001100")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0001100> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0001100> "in_superficial_part_of")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0001100> "in_superficial_part_of")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0001100> "in superficial part of")
SubObjectPropertyOf(<http://purl.obolibrary.org/obo/BSPO_0001100> <http://purl.obolibrary.org/obo/BFO_0000050>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0001101> (in deep part of)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:cjm") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0001101> "X superficial part of Y <=> if Y is subdivided into two superficial and deep portions, X is part of the deep portion.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0001101> "BSPO:0001101")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0001101> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0001101> "in_deep_part_of")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0001101> "in_deep_part_of")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0001101> "in deep part of")
SubObjectPropertyOf(<http://purl.obolibrary.org/obo/BSPO_0001101> <http://purl.obolibrary.org/obo/BFO_0000050>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0001102> (parallel to)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:curators") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0001102> "x is parallel t y iff x and y are lines or planes which when extended indefinitely do not cross.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0001102> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0001102> "parallel_to")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0001102> "parallel to")
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0001106> (proximalmost part of)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "https://orcid.org/0000-0002-6601-2165") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0001106> "X proximalmost part of Y <=> X is in proximal side of Y and X is adjacent to the proximal boundary of Y")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0001106> "BSPO:0001106")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0001106> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0001106> "proximalmost_part_of")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0001106> "proximalmost_part_of")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0001106> "proximalmost part of")
SubObjectPropertyOf(<http://purl.obolibrary.org/obo/BSPO_0001106> <http://purl.obolibrary.org/obo/BSPO_0000124>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0001107> (immediately deep to)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:curators") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0001107> "x immediately deep to y iff x deep_to y and x is contiguous with y.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0001107> "BSPO:0001107")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0001107> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0001107> "immediately_deep_to")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0001107> "immediately_deep_to")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0001107> "immediately deep to")
SubObjectPropertyOf(<http://purl.obolibrary.org/obo/BSPO_0001107> <http://purl.obolibrary.org/obo/BSPO_0000107>)
InverseObjectProperties(<http://purl.obolibrary.org/obo/BSPO_0001107> <http://purl.obolibrary.org/obo/BSPO_0015014>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0001108> (distalmost part of)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "https://orcid.org/0000-0002-6601-2165") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0001108> "X distalmost part of Y <=> X is in distal side of Y and X is adjacent to the distal boundary of Y")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0001108> "BSPO:0001108")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0001108> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0001108> "distalmost_part_of")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0001108> "distalmost_part_of")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0001108> "distalmost part of")
SubObjectPropertyOf(<http://purl.obolibrary.org/obo/BSPO_0001108> <http://purl.obolibrary.org/obo/BSPO_0000125>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0001113> (preaxialmost part of)
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0001113> "BSPO:0001113")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0001113> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0001113> "preaxialmost_part_of")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0001113> "preaxialmost_part_of")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0001113> "preaxialmost part of")
SubObjectPropertyOf(<http://purl.obolibrary.org/obo/BSPO_0001113> <http://purl.obolibrary.org/obo/BFO_0000050>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0001114> (postaxial to)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "http://medical-dictionary.thefreedictionary.com/postaxial") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0001114> "x preaxial to y iff x is further along the preaxial-postaxial axis than y, towards the postaxial side.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0001114> "BSPO:0001114")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0001114> "spatial")
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "MA:th") <http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym> <http://purl.obolibrary.org/obo/BSPO_0001114> "posterior to (developmentally)")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0001114> "postaxial_to")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0001114> "postaxial_to")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0001114> "postaxial to")
TransitiveObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0001114>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0001115> (postaxialmost part of)
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0001115> "BSPO:0001115")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0001115> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0001115> "postaxialmost_part_of")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0001115> "postaxialmost_part_of")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0001115> "postaxialmost part of")
SubObjectPropertyOf(<http://purl.obolibrary.org/obo/BSPO_0001115> <http://purl.obolibrary.org/obo/BFO_0000050>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0005001> (intersects midsagittal plane of)
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0005001> "X intersects median plane of iff X crosses the midine plane of Y.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0005001> "BSPO:0005001")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0005001> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0005001> "intersects_midsagittal_plane_of")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0005001> "intersects_midsagittal_plane_of")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0005001> "intersects midsagittal plane of")
SubObjectPropertyOf(<http://purl.obolibrary.org/obo/BSPO_0005001> <http://purl.obolibrary.org/obo/BFO_0000050>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0015001> (finishes axis)
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0015001> "BSPO:0015001")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0015001> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0015001> "finishes_axis")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0015001> "finishes_axis")
AnnotationAssertion(rdfs:comment <http://purl.obolibrary.org/obo/BSPO_0015001> "A directional axis can be divided by a plane. Following Allen Interval Algebra terminology we say that the side on which the axis initiates starts the axis, with the other side finishing the axis. If s finishes axis x, and x has end point p, then x overlaps p")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0015001> "finishes axis")
ObjectPropertyDomain(<http://purl.obolibrary.org/obo/BSPO_0015001> <http://purl.obolibrary.org/obo/BSPO_0000054>)
ObjectPropertyRange(<http://purl.obolibrary.org/obo/BSPO_0015001> <http://purl.obolibrary.org/obo/BSPO_0000010>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0015002> (follows axis)
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0015002> "BSPO:0015002")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0015002> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0015002> "follows_axis")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0015002> "follows_axis")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0015002> "follows axis")
ObjectPropertyRange(<http://purl.obolibrary.org/obo/BSPO_0015002> <http://purl.obolibrary.org/obo/BSPO_0000010>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0015003> (has axis)
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0015003> "BSPO:0015003")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0015003> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0015003> "has_axis")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0015003> "has_axis")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0015003> "has axis")
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0015004> (has end point)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:cjm") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0015004> "A relation between an axis and a part of an organism, in which the part defines the initial point of the axis.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0015004> "BSPO:0015004")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0015004> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0015004> "has_end_point")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0015004> "has_end_point")
AnnotationAssertion(rdfs:comment <http://purl.obolibrary.org/obo/BSPO_0015004> "Axes can be defined in a given species by subtyping the relevant axis type and stating a end and end point")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0015004> "has end point")
ObjectPropertyDomain(<http://purl.obolibrary.org/obo/BSPO_0015004> <http://purl.obolibrary.org/obo/BSPO_0000010>)
ObjectPropertyRange(<http://purl.obolibrary.org/obo/BSPO_0015004> <http://purl.obolibrary.org/obo/CARO_0000000>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0015005> (orthogonal to)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:cjm") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0015005> "crossing at right angles")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0015005> "BSPO:0015005")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0015005> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0015005> "orthogonal_to")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0015005> "orthogonal_to")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0015005> "orthogonal to")
ObjectPropertyDomain(<http://purl.obolibrary.org/obo/BSPO_0015005> <http://purl.obolibrary.org/obo/BSPO_0000010>)
ObjectPropertyRange(<http://purl.obolibrary.org/obo/BSPO_0015005> <http://purl.obolibrary.org/obo/BSPO_0000400>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0015006> (passes through)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:cjm") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0015006> "Intersects at two points.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0015006> "BSPO:0015006")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0015006> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0015006> "passes_through")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0015006> "passes_through")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0015006> "passes through")
ObjectPropertyDomain(<http://purl.obolibrary.org/obo/BSPO_0015006> <http://purl.obolibrary.org/obo/BSPO_0000010>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0015007> (starts axis)
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0015007> "BSPO:0015007")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0015007> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0015007> "starts_axis")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0015007> "starts_axis")
AnnotationAssertion(rdfs:comment <http://purl.obolibrary.org/obo/BSPO_0015007> "A directional axis can be divided by a plane. Following Allen Interval Algebra terminology we say that the side on which the axis initiates starts the axis, with the other side finishing the axis. . If s starts axis x, and x has start point p, then x overlaps p")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0015007> "starts axis")
ObjectPropertyDomain(<http://purl.obolibrary.org/obo/BSPO_0015007> <http://purl.obolibrary.org/obo/BSPO_0000054>)
ObjectPropertyRange(<http://purl.obolibrary.org/obo/BSPO_0015007> <http://purl.obolibrary.org/obo/BSPO_0000010>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0015008> (surface of)
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0015008> "BSPO:0015008")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0015008> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0015008> "surface_of")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0015008> "surface_of")
AnnotationAssertion(rdfs:comment <http://purl.obolibrary.org/obo/BSPO_0015008> "placeholder. used for relation between anatomical surface and an anatomical side.")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0015008> "surface of")
ObjectPropertyDomain(<http://purl.obolibrary.org/obo/BSPO_0015008> <http://purl.obolibrary.org/obo/BSPO_0000005>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0015009> (immediately anterior to)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:curators") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0015009> "x immediately anterior to y iff x anterior to y and x is contiguous with y.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0015009> "BSPO:0015009")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0015009> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0015009> "immediately_anterior_to")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0015009> "immediately_anterior_to")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0015009> "immediately anterior to")
SubObjectPropertyOf(<http://purl.obolibrary.org/obo/BSPO_0015009> <http://purl.obolibrary.org/obo/BSPO_0000096>)
InverseObjectProperties(<http://purl.obolibrary.org/obo/BSPO_0015009> <http://purl.obolibrary.org/obo/BSPO_0015012>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0015010> (immediately distal to)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:curators") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0015010> "x immediately distal to y iff x distal to y and x is contiguous with y.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0015010> "BSPO:0015010")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0015010> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0015010> "immediately_distal_to")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0015010> "immediately_distal_to")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0015010> "immediately distal to")
SubObjectPropertyOf(<http://purl.obolibrary.org/obo/BSPO_0015010> <http://purl.obolibrary.org/obo/BSPO_0000097>)
InverseObjectProperties(<http://purl.obolibrary.org/obo/BSPO_0015010> <http://purl.obolibrary.org/obo/BSPO_0015013>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0015011> (immediately dorsal to)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:curators") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0015011> "x immediately dorsal to y iff x dorsal to y and x is contiguous with y.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0015011> "BSPO:0015011")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0015011> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0015011> "immediately_dorsal_to")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0015011> "immediately_dorsal_to")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0015011> "immediately dorsal to")
SubObjectPropertyOf(<http://purl.obolibrary.org/obo/BSPO_0015011> <http://purl.obolibrary.org/obo/BSPO_0000098>)
InverseObjectProperties(<http://purl.obolibrary.org/obo/BSPO_0015011> <http://purl.obolibrary.org/obo/BSPO_0015015>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0015012> (immediately posterior to)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:curators") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0015012> "x immediately posterior to y iff x posterior_to y and x is contiguous with y.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0015012> "BSPO:0015012")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0015012> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0015012> "immediately_posterior_to")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0015012> "immediately_posterior_to")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0015012> "immediately posterior to")
AnnotationAssertion(rdfs:seeAlso <http://purl.obolibrary.org/obo/BSPO_0015012> <https://github.com/obophenotype/uberon/issues/2453>)
SubObjectPropertyOf(<http://purl.obolibrary.org/obo/BSPO_0015012> <http://purl.obolibrary.org/obo/BSPO_0000099>)
SubObjectPropertyOf(<http://purl.obolibrary.org/obo/BSPO_0015012> <http://purl.obolibrary.org/obo/RO_0002220>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0015013> (immediately proximal to)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:curators") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0015013> "x immediately proximal to y iff x proximal to y and x is contiguous with y.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0015013> "BSPO:0015013")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0015013> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0015013> "immediately_proximal_to")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0015013> "immediately_proximal_to")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0015013> "immediately proximal to")
SubObjectPropertyOf(<http://purl.obolibrary.org/obo/BSPO_0015013> <http://purl.obolibrary.org/obo/BSPO_0000100>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0015014> (immediately superficial to)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:curators") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0015014> "x immediately superficial to y iff x superficial to y and x is contiguous with y.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0015014> "BSPO:0015014")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0015014> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0015014> "immediately_superficial_to")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0015014> "immediately_superficial_to")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0015014> "immediately superficial to")
AnnotationAssertion(rdfs:seeAlso <http://purl.obolibrary.org/obo/BSPO_0015014> <https://github.com/obophenotype/uberon/issues/2453>)
SubObjectPropertyOf(<http://purl.obolibrary.org/obo/BSPO_0015014> <http://purl.obolibrary.org/obo/BSPO_0000108>)
SubObjectPropertyOf(<http://purl.obolibrary.org/obo/BSPO_0015014> <http://purl.obolibrary.org/obo/RO_0002220>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0015015> (immediately ventral to)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:curators") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0015015> "x immediately ventral to y iff x ventral to y and x is contiguous with y.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0015015> "BSPO:0015015")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0015015> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0015015> "immediately_ventral_to")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0015015> "immediately_ventral_to")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0015015> "immediately ventral to")
SubObjectPropertyOf(<http://purl.obolibrary.org/obo/BSPO_0015015> <http://purl.obolibrary.org/obo/BSPO_0000102>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0015016> (immediately left of)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:curators") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0015016> "x immediately left of y iff x left_of y and x is contiguous with y.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0015016> "BSPO:0015016")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0015016> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0015016> "immediately_left_of")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0015016> "immediately_left_of")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0015016> "immediately left of")
SubObjectPropertyOf(<http://purl.obolibrary.org/obo/BSPO_0015016> <http://purl.obolibrary.org/obo/BSPO_0000110>)
InverseObjectProperties(<http://purl.obolibrary.org/obo/BSPO_0015016> <http://purl.obolibrary.org/obo/BSPO_0015017>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0015017> (immediately right of)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:curators") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0015017> "x immediately right of y iff x right of y and x is contiguous with y.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0015017> "BSPO:0015017")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0015017> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0015017> "immediately_right_of")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0015017> "immediately_right_of")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0015017> "immediately right of")
SubObjectPropertyOf(<http://purl.obolibrary.org/obo/BSPO_0015017> <http://purl.obolibrary.org/obo/BSPO_0000111>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0015101> (in dorsal side of)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:cjm") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0015101> "X dorsal side of Y <=> if Y is subdivided into two dorsal and ventral portions, X is part of the dorsal portion.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0015101> "BSPO:0015101")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0015101> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0015101> "in_dorsal_side_of")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0015101> "in_dorsal_side_of")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0015101> "in dorsal side of")
SubObjectPropertyOf(<http://purl.obolibrary.org/obo/BSPO_0015101> <http://purl.obolibrary.org/obo/BFO_0000050>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0015102> (in ventral side of)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:cjm") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0015102> "X ventral side of Y <=> if Y is subdivided into two dorsal and ventral portions, X is part of the ventral portion.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0015102> "BSPO:0015102")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0015102> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0015102> "in_ventral_side_of")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0015102> "in_ventral_side_of")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0015102> "in ventral side of")
SubObjectPropertyOf(<http://purl.obolibrary.org/obo/BSPO_0015102> <http://purl.obolibrary.org/obo/BFO_0000050>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0015201> (oral to)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:cjm") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0015201> "nearer to the oral opening of the organism, on the oral-aboral axis.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0015201> "BSPO:0015201")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0015201> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0015201> "oral_to")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0015201> "oral_to")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0015201> "oral to")
TransitiveObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0015201>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0015202> (aboral to)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:cjm") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0015202> "nearer to the aboral opening of the organism, on the oral-aboral axis.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0015202> "BSPO:0015202")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasOBONamespace> <http://purl.obolibrary.org/obo/BSPO_0015202> "spatial")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#id> <http://purl.obolibrary.org/obo/BSPO_0015202> "aboral_to")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#shorthand> <http://purl.obolibrary.org/obo/BSPO_0015202> "aboral_to")
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0015202> "aboral to")
TransitiveObjectProperty(<http://purl.obolibrary.org/obo/BSPO_0015202>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0020001> (in central side of)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:cjm") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0020001> "X in_central_side Y <=> if Y is subdivided into left and right portions around some median divisor, all parts of X are closer to the median divisor than the outermost lateral sides.")
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000116> <http://purl.obolibrary.org/obo/BSPO_0020001> "This was migrated from http://purl.obolibrary.org/obo/uberon/core#in_central_side_of in Uberon.")
AnnotationAssertion(<http://purl.org/dc/terms/contributor> <http://purl.obolibrary.org/obo/BSPO_0020001> <https://orcid.org/0000-0002-6523-4866>)
AnnotationAssertion(rdfs:label <http://purl.obolibrary.org/obo/BSPO_0020001> "in central side of")
AnnotationAssertion(rdfs:seeAlso <http://purl.obolibrary.org/obo/BSPO_0020001> <http://purl.obolibrary.org/obo/BSPO_0000059>)
AnnotationAssertion(rdfs:seeAlso <http://purl.obolibrary.org/obo/BSPO_0020001> <https://github.com/obophenotype/uberon/wiki/Modeling-paired-structures-Design-Pattern>)
SubObjectPropertyOf(<http://purl.obolibrary.org/obo/BSPO_0020001> <http://purl.obolibrary.org/obo/BFO_0000050>)
# Object Property: <http://purl.obolibrary.org/obo/BSPO_0020002> (has start point)
AnnotationAssertion(Annotation(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> "BSPO:cjm") <http://purl.obolibrary.org/obo/IAO_0000115> <http://purl.obolibrary.org/obo/BSPO_0020002> "A relation between an axis and a part of an organism, in which the part defines the initial point of the axis.")
AnnotationAssertion(<http://purl.obolibrary.org/obo/IAO_0000116> <http://purl.obolibrary.org/obo/BSPO_0020002> "This relationship was originally called http://purl.obolibrary.org/obo/#_has_start_point, but was renamed because of the non-standard IRI syntax.")
AnnotationAssertion(<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/BSPO_0020002> ":has_start_point")