-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathceph.owl
14563 lines (7999 loc) · 636 KB
/
ceph.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
<?xml version="1.0"?>
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/ceph.owl#"
xml:base="http://purl.obolibrary.org/obo/ceph.owl"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:obo="http://purl.obolibrary.org/obo/"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:ceph="http://purl.obolibrary.org/obo/ceph#"
xmlns:ceph-tax="http://purl.obolibrary.org/obo/ceph-tax#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#">
<owl:Ontology rdf:about="http://purl.obolibrary.org/obo/ceph.owl">
<oboInOwl:hasOBOFormatVersion rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.2</oboInOwl:hasOBOFormatVersion>
<oboInOwl:default-namespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ceph</oboInOwl:default-namespace>
<dc:source rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.sil.si.edu/smithsoniancontributions/zoology/pdf_hi/sctz-0513.pdf</dc:source>
<dc:source>Young, Richard E., Michael Vecchione, and Katharina M. Mangold (1922-2003). 2012. Cephalopoda Cuvier 1797. Octopods, squids, nautiluses, etc.. Version 10 November 2012 (under construction). http://tolweb.org/Cephalopoda/19386/2012.11.10 in The Tree of Life Web Project, http://tolweb.org/</dc:source>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/ceph/taxonomy.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/ceph/imports/cl_import.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/ceph/imports/go_import.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/ceph/imports/ro_import.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/ceph/imports/uberon_import.owl"/>
<owl:versionIRI rdf:resource="http://purl.obolibrary.org/obo/ceph/releases/2016-01-12/ceph.owl"/>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/CEPH_0001032 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/CEPH_0001032">
<rdfs:label xml:lang="en">is about</rdfs:label>
<rdfs:comment>todo - mireot</rdfs:comment>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/IAO_0000115 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">definition</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/RO_0002161 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002161"/>
<!-- http://purl.obolibrary.org/obo/ceph#PLURAL -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/ceph#PLURAL">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plural term</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty"/>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/ceph#SENSU -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/ceph#SENSU">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">taxonomic disambiguation</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty"/>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/ceph#external_definition -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/ceph#external_definition"/>
<!-- http://purl.obolibrary.org/obo/ceph#octopoda -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/ceph#octopoda">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">term used in octopoda</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty"/>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/ceph#squid -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/ceph#squid">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">term used in squid</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/elements/1.1/source -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/source">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">source</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">synonym_type_property</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#created_by -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#created_by"/>
<!-- http://www.geneontology.org/formats/oboInOwl#creation_date -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#creation_date"/>
<!-- http://www.geneontology.org/formats/oboInOwl#default-namespace -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#default-namespace"/>
<!-- http://www.geneontology.org/formats/oboInOwl#hasAlternativeId -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasAlternativeId">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has_alternative_id</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has_broad_synonym</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasDbXref -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasDbXref">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">database_cross_reference</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasExactSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has_exact_synonym</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has_narrow_synonym</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasOBOFormatVersion -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasOBOFormatVersion">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has_obo_format_version</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has_related_synonym</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasSynonymType -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasSynonymType">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has_synonym_type</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#inSubset -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#inSubset">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in_subset</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#shorthand -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#shorthand">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">shorthand</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#source -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#source">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obo-source</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.w3.org/2000/01/rdf-schema#comment -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#comment"/>
<!-- http://www.w3.org/2000/01/rdf-schema#label -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#label"/>
<!-- http://www.w3.org/2002/07/owl#deprecated -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2002/07/owl#deprecated"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/BFO_0000050 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000050">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">part_of</rdfs:label>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BFO:0000050</oboInOwl:hasDbXref>
<oboInOwl:shorthand rdf:datatype="http://www.w3.org/2001/XMLSchema#string">part_of</oboInOwl:shorthand>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000051 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000051">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has part</rdfs:label>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BFO:0000051</oboInOwl:hasDbXref>
<oboInOwl:shorthand rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has_part</oboInOwl:shorthand>
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/CEPH_0001007 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/CEPH_0001007">
<rdfs:label xml:lang="en">homologous_to</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0002202 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002202">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">develops from</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0002215 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002215">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">capable_of</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0002220 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002220">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">adjacent to</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/ceph#aboral_to -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ceph#aboral_to">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">aboral to</rdfs:label>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Away from or opposite the mouth.</obo:IAO_0000115>
</owl:ObjectProperty>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Away from or opposite the mouth.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://tolweb.org/accessory/Cephalopoda_Glossary?acc_id=587</oboInOwl:hasDbXref>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/ceph#aboral_to"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/ceph#continuous_with -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ceph#continuous_with">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">continuous_with</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/ceph#dorsal_to -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ceph#dorsal_to">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dorsal_to</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/ceph#proximal_to -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ceph#proximal_to">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">proximal_to</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/ceph#secretes -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ceph#secretes">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">secretes</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/ceph#surrounded_by -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ceph#surrounded_by">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">surrounded_by</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/ceph#surrounds -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ceph#surrounds">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">surrounds</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/ceph#trait_of -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ceph#trait_of">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">trait of</rdfs:label>
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ceph#trait_of"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000050"/>
</owl:propertyChainAxiom>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/ceph#ventral_to -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ceph#ventral_to">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ventral_to</rdfs:label>
</owl:ObjectProperty>
<!-- http://xmlns.com/foaf/0.1/depicts -->
<owl:ObjectProperty rdf:about="http://xmlns.com/foaf/0.1/depicts">
<rdfs:label>depicts</rdfs:label>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/CEPH_0000000 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CEPH_0000000">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">eyelid</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000061"/>
<oboInOwl:creation_date rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2011-01-30T08:15:10Z</oboInOwl:creation_date>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Consider re-using Uberon class</rdfs:comment>
<oboInOwl:created_by rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cjm</oboInOwl:created_by>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CEPH_0000001 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CEPH_0000001">
<rdfs:label>accessory nidamental gland</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000175"/>
<obo:IAO_0000115>The basic structural unit is a tubule composed of a single layer of epithelial cells containing ordered arrays of rough endoplasmic reticulum and a lumenal surface covered with microvilli, cilia, and structural specialization presumed to be involved in secretion.</obo:IAO_0000115>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget>The basic structural unit is a tubule composed of a single layer of epithelial cells containing ordered arrays of rough endoplasmic reticulum and a lumenal surface covered with microvilli, cilia, and structural specialization presumed to be involved in secretion.</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000001"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<oboInOwl:hasDbXref rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/906013"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CEPH_0000002 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CEPH_0000002">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cephalopod eye</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000970"/>
<oboInOwl:creation_date rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2011-01-30T08:21:37Z</oboInOwl:creation_date>
<oboInOwl:created_by rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cjm</oboInOwl:created_by>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">todo - reconcile with camera-type eye in uberon</rdfs:comment>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CEPH_0000003 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CEPH_0000003">
<rdfs:label>circumoral appendage bud</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0005423"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CEPH_0000004 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CEPH_0000004">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">accessory gland complex</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0002530"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0005399"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0002160"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_61743"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000063"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The glandular complex in cirrates that forms sperm packets and is a counterpart of the spermatophore-forming complex of other cephalopods. </obo:IAO_0000115>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The glandular complex in cirrates that forms sperm packets and is a counterpart of the spermatophore-forming complex of other cephalopods. </owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://tolweb.org/accessory/Cephalopoda_Glossary?acc_id=587</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000004"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CEPH_0000005 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CEPH_0000005">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">acetabulum</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000248"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A sucker of the sepia or cuttlefish and related animals.</obo:IAO_0000115>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A sucker of the sepia or cuttlefish and related animals.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://tolweb.org/accessory/Cephalopoda_Glossary?acc_id=587</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000005"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CEPH_0000006 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CEPH_0000006">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">adult stage</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000105"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A female that has mature eggs (these are frequently stored in the oviducts), or a male that has produced spermatophores (these are stored in Needham's sac).</obo:IAO_0000115>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A female that has mature eggs (these are frequently stored in the oviducts), or a male that has produced spermatophores (these are stored in Needham's sac).</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://tolweb.org/accessory/Cephalopoda_Glossary?acc_id=587</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000006"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CEPH_0000007 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CEPH_0000007">
<rdfs:label>main nidamental gland</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000175"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CEPH_0000009 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CEPH_0000009">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">anal flap</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0003978"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0004121"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/UBERON_0001245"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A small flap on the lateral side of the anus.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">anal valve</oboInOwl:hasExactSynonym>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A small flap on the lateral side of the anus.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://tolweb.org/accessory/Cephalopoda_Glossary?acc_id=587</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000009"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CEPH_0000011 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CEPH_0000011">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">anterior salivary gland</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0001044"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000039"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Glands on or in the buccal mass that aid in preliminary digestion.</obo:IAO_0000115>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Glands on or in the buccal mass that aid in preliminary digestion.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://tolweb.org/accessory/Cephalopod_Digestive_System?acc_id=1993</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000011"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CEPH_0000012 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CEPH_0000012">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">antitragus</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000118"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Knob that projects inward from the posterior surface of the central depression in the funnel locking-apparatus of some squids.</obo:IAO_0000115>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Knob that projects inward from the posterior surface of the central depression in the funnel locking-apparatus of some squids.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://tolweb.org/accessory/Cephalopoda_Glossary?acc_id=587</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000012"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CEPH_0000014 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CEPH_0000014">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">areolar spot</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CEPH_0001024"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Circular spots, generally light colored but often with complex pigmentation and of unknown function that occur in lines along the aboral surfaces of some arms and portions of the head in some opisthoteuthid cirrates.</obo:IAO_0000115>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Circular spots, generally light colored but often with complex pigmentation and of unknown function that occur in lines along the aboral surfaces of some arms and portions of the head in some opisthoteuthid cirrates.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://tolweb.org/accessory/Cephalopoda_Glossary?acc_id=587</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000014"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CEPH_0000015 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CEPH_0000015">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">arm</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000308"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">One of the circumoral appendages of cephalopods. In decapodiforms each member of the fourth pair of arms is modified to form a tentacle.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>circumoral arm</oboInOwl:hasExactSynonym>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">One of the circumoral appendages of cephalopods. In decapodiforms each member of the fourth pair of arms is modified to form a tentacle.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://tolweb.org/accessory/Cephalopoda_Glossary?acc_id=587</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000015"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CEPH_0000016 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CEPH_0000016">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">arm formula</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000300"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CEPH_0001059"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/ceph#trait_of"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000015"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The relative sizes of arms arranged according to their length. The largest arm is indicated first and the shortest last. An example arm formula is IV>III=II>I. Here arm IV is the largest, followed by arm III which is the same size as arm II and both are larger than arm I.</obo:IAO_0000115>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The relative sizes of arms arranged according to their length. The largest arm is indicated first and the shortest last. An example arm formula is IV>III=II>I. Here arm IV is the largest, followed by arm III which is the same size as arm II and both are larger than arm I.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://tolweb.org/accessory/Cephalopoda_Glossary?acc_id=587</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000016"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CEPH_0000017 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CEPH_0000017">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">arm IV</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000015"/>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">In some squids arms IV are much longer and broader than the other arms.</rdfs:comment>
<oboInOwl:hasRelatedSynonym>ventral arm</oboInOwl:hasRelatedSynonym>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">In some squids arms IV are much longer and broader than the other arms.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://tolweb.org/accessory/Cephalopod_Arms_IV:_Size?acc_id=2017</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000017"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#comment"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CEPH_0000018 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CEPH_0000018">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">armature of the arms</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000477"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000308"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The grappling structures on the oral surfaces the arms and tentacles, including both suckers and hooks. </obo:IAO_0000115>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The grappling structures on the oral surfaces the arms and tentacles, including both suckers and hooks. </owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://tolweb.org/accessory/Armature_of_Cephalopod_Arms?acc_id=2018</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000018"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CEPH_0000019 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CEPH_0000019">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">a-seriation</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CEPH_0001064"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Type of cusp arrangement on the rachadian tooth of the radula: multiple cusps seem to move laterally when viewing successive rachadian teeth from adjacent rows. </obo:IAO_0000115>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Type of cusp arrangement on the rachadian tooth of the radula: multiple cusps seem to move laterally when viewing successive rachadian teeth from adjacent rows. </owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://tolweb.org/accessory/Cephalopoda_Glossary?acc_id=587</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000019"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CEPH_0000020 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CEPH_0000020">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">autotomy plane</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000466"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Plane through an arm of an octopod that is predisposed to break when the arm is autotomized.</obo:IAO_0000115>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Plane through an arm of an octopod that is predisposed to break when the arm is autotomized.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://tolweb.org/accessory/Cephalopoda_Glossary?acc_id=587</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000020"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CEPH_0000021 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CEPH_0000021">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">basal shelf</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000061"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">See cirrate shell terminology. </obo:IAO_0000115>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">See cirrate shell terminology. </owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://tolweb.org/accessory/Cephalopoda_Glossary?acc_id=587</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000021"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CEPH_0000023 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CEPH_0000023">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">beak</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000475"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000059"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">One of the two chitinous jaws of cephalopods. The dorsal beak is the &quot;upper&quot; beak and it inserts within the lower beak to tear tissue with a sissors-like cutting action.</obo:IAO_0000115>
<rdfs:seeAlso rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://en.wikipedia.org/wiki/Cephalopod_beak</rdfs:seeAlso>
<oboInOwl:hasRelatedSynonym>rostrum</oboInOwl:hasRelatedSynonym>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">One of the two chitinous jaws of cephalopods. The dorsal beak is the &quot;upper&quot; beak and it inserts within the lower beak to tear tissue with a sissors-like cutting action.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://tolweb.org/accessory/Cephalopod_Beak_Terminology?acc_id=1980</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000023"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CEPH_0000024 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CEPH_0000024">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">beak step</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000061"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/CEPH_0001026"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A ridge on the lower beak where the rostral edge merges onto the lateral wall. In most beaks the merger is smooth. This is a characteristic feature of the Onychoteuthidae.</obo:IAO_0000115>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A ridge on the lower beak where the rostral edge merges onto the lateral wall. In most beaks the merger is smooth. This is a characteristic feature of the Onychoteuthidae.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://tolweb.org/accessory/Cephalopoda_Glossary?acc_id=587</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000024"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CEPH_0000028 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CEPH_0000028">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">branchial canal</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000061"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A large opening at the base of each gill lamella and between the primary afferent and efferent blood vessels of the gill. A branchial canal is absent in <strong>Nautilus</strong> , sepioid decapodiformes and cirrate octopods.</obo:IAO_0000115>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A large opening at the base of each gill lamella and between the primary afferent and efferent blood vessels of the gill. A branchial canal is absent in <strong>Nautilus</strong> , sepioid decapodiformes and cirrate octopods.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://tolweb.org/accessory/Cephalopoda_Glossary?acc_id=587</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000028"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CEPH_0000029 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CEPH_0000029">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">brachial crown</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000477"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/ceph#surrounds"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000166"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The combination of arms and tentacles that surround the mouth.</obo:IAO_0000115>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The combination of arms and tentacles that surround the mouth.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://tolweb.org/accessory/Cephalopod_Brachial_and_Buccal_Crowns?acc_id=1957</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000029"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CEPH_0000030 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CEPH_0000030">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">brachial lobe of brain</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000293"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000296"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/ceph#ventral_to"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/UBERON_0001043"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The anterior-most part of the brain located ventral to the esophagus. The large axial nerve cords that run down the centers of the arms connect to this lobe. In octopods this lobe is fused with the rest of the subesophageal mass while in decapodiforms and <strong>Vampyroteuthis</strong> it is separate from the remaining brain.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">anterior subesophageal mass</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">anterior subesophageal mass of brain</oboInOwl:hasExactSynonym>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The anterior-most part of the brain located ventral to the esophagus. The large axial nerve cords that run down the centers of the arms connect to this lobe. In octopods this lobe is fused with the rest of the subesophageal mass while in decapodiforms and <strong>Vampyroteuthis</strong> it is separate from the remaining brain.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://tolweb.org/accessory/Cephalopod_Brain_Terminology?acc_id=1944</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000030"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CEPH_0000031 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CEPH_0000031">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">branchial gland</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0002530"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elongate gland adjacent to and paralleling the gill where the gill attaches to the mantle wall.</obo:IAO_0000115>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elongate gland adjacent to and paralleling the gill where the gill attaches to the mantle wall.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://tolweb.org/accessory/Cephalopoda_Glossary?acc_id=587</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000031"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CEPH_0000032 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CEPH_0000032">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">branchial heart</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0002530"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A pulsating gland at the base of the gill and through which the afferent blood to the gills flows. It contributes to the blood flow through the gill but also is the site of hemocyanin (the blood respiratory pigment) synthesis. </obo:IAO_0000115>
<rdfs:seeAlso>http://en.wikipedia.org/wiki/Branchial_heart</rdfs:seeAlso>
<rdfs:comment>Branchial hearts appear to be involved in hemocyanin synthesis</rdfs:comment>
</owl:Class>
<owl:Axiom>
<dc:source rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://en.wikipedia.org/wiki/Branchial_heart</dc:source>
<owl:annotatedTarget>Branchial hearts appear to be involved in hemocyanin synthesis</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000032"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#comment"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A pulsating gland at the base of the gill and through which the afferent blood to the gills flows. It contributes to the blood flow through the gill but also is the site of hemocyanin (the blood respiratory pigment) synthesis. </owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://tolweb.org/accessory/Cephalopoda_Glossary?acc_id=587</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000032"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CEPH_0000033 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CEPH_0000033">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">brachial photophore</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000198"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Photophores located on the arms.</obo:IAO_0000115>
<ceph:external_definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">photophore at base of gill[http://tolweb.org/accessory/Cephalopod_Photophore_Terminology?acc_id=2015]l</ceph:external_definition>
</owl:Class>
<owl:Axiom>
<oboInOwl:source rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://tolweb.org/accessory/Cephalopod_Photophore_Terminology?acc_id=2015</oboInOwl:source>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">photophore at base of gill[http://tolweb.org/accessory/Cephalopod_Photophore_Terminology?acc_id=2015]l</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000033"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/ceph#external_definition"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Photophores located on the arms.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://tolweb.org/accessory/Cephalopoda_Glossary?acc_id=587</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000033"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CEPH_0000034 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CEPH_0000034">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">brachial pillar</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000061"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0002220"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000029"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A very narrow and elongate anterior region of the head between the eyes and the base of the brachial crown. A branchial pillar is especially well developed in many young cranchiid squid.</obo:IAO_0000115>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A very narrow and elongate anterior region of the head between the eyes and the base of the brachial crown. A branchial pillar is especially well developed in many young cranchiid squid.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://tolweb.org/accessory/Cephalopoda_Glossary?acc_id=587</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000034"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CEPH_0000035 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CEPH_0000035">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cephalopod brain</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000955"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Medial portion of the central nervous system. It includes the subesophageal and supraesophageal masses but generally does not include the large optic lobes.</obo:IAO_0000115>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Medial portion of the central nervous system. It includes the subesophageal and supraesophageal masses but generally does not include the large optic lobes.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://tolweb.org/accessory/Cephalopod_Brain_Terminology?acc_id=1944</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000035"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CEPH_0000036 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CEPH_0000036">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">brooding</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CEPH_0001058"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Incubation of eggs by the parent. A characteristic feature of incirrate octopods but also found in some squid (e.g., Gonatidae).</obo:IAO_0000115>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Incubation of eggs by the parent. A characteristic feature of incirrate octopods but also found in some squid (e.g., Gonatidae).</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://tolweb.org/accessory/Cephalopoda_Glossary?acc_id=587</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000036"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CEPH_0000037 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CEPH_0000037">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">buccal connective</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000158"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Muscular membrane that runs from the buccal support to the base of the adjacent arm. The position of the connective on the fourth arms was recognized in the early 20th century as an important character in interpreting phylogenetic relationships among decapodiforms.</obo:IAO_0000115>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Muscular membrane that runs from the buccal support to the base of the adjacent arm. The position of the connective on the fourth arms was recognized in the early 20th century as an important character in interpreting phylogenetic relationships among decapodiforms.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://tolweb.org/accessory/Cephalopod_Brachial_and_Buccal_Crowns?acc_id=1957</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000037"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CEPH_0000038 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CEPH_0000038">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">buccal crown</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000477"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/ceph#surrounds"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000166"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/ceph#surrounded_by"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/CEPH_0000029"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Umbrella-like structure that surrounds the mouth and is surrounded by the brachial crown. It consists of buccal supports and the buccal membrane. The buccal crown is present in most decapodiforms but absent from all octopodiforms.</obo:IAO_0000115>