forked from obi-ontology/obi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUberon_imports.owl
1374 lines (910 loc) · 85.7 KB
/
Uberon_imports.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/obi/dev/import/Uberon_imports.owl#"
xml:base="http://purl.obolibrary.org/obo/obi/dev/import/Uberon_imports.owl"
xmlns:obo="http://purl.obolibrary.org/obo/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
<owl:Ontology rdf:about="http://purl.obolibrary.org/obo/obi/dev/import/Uberon_imports.owl"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/IAO_0000111 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000111"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000115 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115">
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">definition</obo:IAO_0000111>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">definition</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/IAO_0000412 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000412">
<rdfs:label xml:lang="en">imported from</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.w3.org/2000/01/rdf-schema#label -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#label"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/BFO_0000040 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000040"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000141 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000141"/>
<!-- http://purl.obolibrary.org/obo/GO_0008150 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0008150"/>
<!-- http://purl.obolibrary.org/obo/UBERON_0000002 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0000002">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">uterine cervix</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Lower, narrow portion of the uterus where it joins with the top end of the vagina.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">uterine cervix</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0000007 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0000007">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pituitary gland</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The pituitary gland is an endocrine gland that secretes hormones that regulate many other glands [GO]. An endocrine gland located ventral to the diencephalon and derived from mixed neuroectodermal and non neuroectodermal origin [ZFIN].</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pituitary gland</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0000029 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0000029">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lymph node</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Any of the rounded masses of lymphoid tissue that are surrounded by a capsule of connective tissue, are distributed along the lymphatic vessels, and contain numerous lymphocytes which filter the flow of lymph.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lymph node</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0000057 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0000057">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">urethra</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">the fibromuscular tubular canal through which urine is discharged from the bladder to the exterior via the external urinary meatus; in males, the urethra is joined by the ejaculatory ducts and serves as a passageway for semen during ejaculation, as well as a canal for urine during voiding; in females, the urethra is shorter and emerges above the vaginal opening</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">urethra</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0000105 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0000105">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0008150"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">life cycle stage</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A spatiotemporal region encompassing some part of the life cycle of an organism.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">life cycle stage</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0000165 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0000165">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mouth</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The proximal portion of the digestive tract, containing the oral cavity and bounded by the oral opening. In vertebrates, this extends to the pharynx and includes gums, lips, tongue and parts of the palate. Typically also includes the teeth, except where these occur elsewhere (e.g. pharyngeal jaws) or protrude from the mouth (tusks).</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mouth</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0000173 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0000173">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000463"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">amniotic fluid</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Amniotic fluid is a bodily fluid consisting of watery liquid surrounding and cushioning a growing fetus within the amnion. It allows the fetus to move freely without the walls of the uterus being too tight against its body. Buoyancy is also provided. The composition of the fluid changes over the course of gestation. Initially, amniotic fluid is similar to maternal plasma, mainly water with electrolytes. As the fetus develops, proteins, carbohydrates, lipids, phospholipids originating from the lungs, fetal cells, and urea are deposited in the fluid.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">amniotic fluid</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0000178 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0000178">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0006314"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">blood</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A fluid that is composed of blood plasma and erythrocytes.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">blood</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0000310 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0000310">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">breast</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The upper ventral region of the torso of an organism.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">breast</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0000316 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0000316">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000463"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0006314"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cervical mucus</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A substance produced by the cervix and endocervical glands[BTO]. Thick acidic mucus that blocks the cervical os after mestruation[WP]. This 'infertile' mucus blocks spermatozoa from entering the uterus.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cervical mucus</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0000341 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0000341">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">throat</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">In anatomy, the throat is the anterior part of the neck, in front of the vertebral column. It consists of the pharynx and larynx. An important feature of the throat is the epiglottis, a flap which separates the esophagus from the trachea and prevents inhalation of food or drink. The throat contains various blood vessels, various pharyngeal muscles, the trachea (windpipe) and the esophagus. The hyoid bone and the clavicle are the only bones located in the throat of mammals. It is sometimes considered a synonym for fauces. [WP,unvetted].</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">throat</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0000362 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0000362">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000481"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">renal medulla</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">the inner portion of the kidney consisting of the renal pyramids</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">renal medulla</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0000463 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0000463">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">organism substance</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Material anatomical entity in a gaseous, liquid, semisolid or solid state; produced by anatomical structures or derived from inhaled and ingested substances that have been modified by anatomical structures as they pass through the body.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">organism substance</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0000465 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0000465">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000040"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">material anatomical entity</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Anatomical entity that has mass.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">material anatomical entity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0000473 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0000473">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">testis</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A gonad of a male animal. A gonad produces and releases sperm.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">testis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0000477 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0000477">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000040"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">anatomical cluster</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Anatomical group that has its parts adjacent to one another.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">anatomical cluster</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0000479 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0000479">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">tissue</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Multicellular anatomical structure that consists of many cells of one or a few types, arranged in an extracellular matrix such that their long-range organisation is at least partly a repetition of their short-range organisation.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">tissue</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0000481 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0000481">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">multi-tissue structure</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Anatomical structure that has as its parts two or more portions of tissue of at least two different types and which through specific morphogenetic processes forms a single distinct structural unit demarcated by bona-fide boundaries from other distinct structural units of different types.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">multi-tissue structure</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0000483 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0000483">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000479"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">epithelium</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Portion of tissue, that consists of one or more layers of epithelial cells connected to each other by cell junctions and which is underlain by a basal lamina. Examples: simple squamous epithelium, glandular cuboidal epithelium, transitional epithelium, myoepithelium[CARO].</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">epithelium</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0000945 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0000945">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">stomach</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An expanded region of the vertebrate alimentary tract that serves as a food storage compartment and digestive organ. A stomach is lined, in whole or in part by a glandular epithelium.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">stomach</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0000947 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0000947">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">aorta</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The main trunk of the systemic arterial system that carries blood from the heart to all the organs and other structures of the body, bringing oxygenated blood to all parts of the body in the systemic circulation</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">aorta</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0000948 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0000948">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">heart</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A myogenic muscular circulatory organ found in the vertebrate cardiovascular system composed of chambers of cardiac muscle. It is the primary circulatory organ.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">heart</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0000955 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0000955">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">brain</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The brain is the center of the nervous system in all vertebrate, and most invertebrate, animals. Some primitive animals such as jellyfish and starfish have a decentralized nervous system without a brain, while sponges lack any nervous system at all. In vertebrates, the brain is located in the head, protected by the skull and close to the primary sensory apparatus of vision, hearing, balance, taste, and smell[WP].</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">brain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0000956 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0000956">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000477"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cerebral cortex</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The thin layer of gray matter on the surface of the cerebral hemisphere that develops from the telencephalon. It consists of the neocortex (6 layered cortex or isocortex), the hippocampal formation and the olfactory cortex.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cerebral cortex</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0000970 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0000970">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">eye</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An organ that detects light.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">eye</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0000992 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0000992">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ovary</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">the gonad of a female organism which contains germ cells</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ovary</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0000995 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0000995">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">uterus</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">the female muscular organ of gestation in which the developing embryo or fetus is nourished until birth</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">uterus</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0000996 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0000996">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">vagina</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A fibromuscular tubular tract leading from the uterus to the exterior of the body in female placental mammals and marsupials, or to the cloaca in female birds, monotremes, and some reptiles[WP].</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">vagina</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0001004 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0001004">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">respiratory system</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Functional system which consists of structures involved in respiration.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">respiratory system</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0001013 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0001013">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000479"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">adipose tissue</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Portion of connective tissue composed of adipocytes enmeshed in areolar tissue</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">adipose tissue</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0001037 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0001037">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">strand of hair</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A filament, mostly protein, that grows from follicles found in the dermis[WP].</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">strand of hair</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0001052 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0001052">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">rectum</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">the terminal portion of the intestinal tube, terminating with the anus</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">rectum</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0001087 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0001087">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0006314"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pleural fluid</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Transudate contained in the pleural cavity.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pleural fluid</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0001088 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0001088">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000463"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">urine</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Excretion that is the output of a kidney</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">urine</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0001089 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0001089">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000463"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0006314"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sweat</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Secretion produced by a sweat gland.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sweat</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0001090 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0001090">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000463"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0006314"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">synovial fluid</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Joint fluid is a transudate of plasma that is actively secreted by synovial cells.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">synovial fluid</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0001134 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0001134">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000479"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">skeletal muscle tissue</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Muscle tissue that consists primarily of skeletal muscle fibers.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">skeletal muscle tissue</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0001155 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0001155">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">colon</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Last portion of the large intestine before it becomes the rectum.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">colon</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0001159 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0001159">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sigmoid colon</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The part of the large intestine that is closest to the rectum and anus. It forms a loop that averages about 40 cm. in length, and normally lies within the pelvis, but on account of its freedom of movement it is liable to be displaced into the abdominal cavity.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sigmoid colon</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0001225 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0001225">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cortex of kidney</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Outer cortical portion of the kidney, between the renal capsule and the renal medulla.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cortex of kidney</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0001255 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0001255">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">urinary bladder</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">distensible musculomembranous organ situated in the anterior part of the pelvic cavity in which urine collects before excretion[MP].</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">urinary bladder</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0001264 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0001264">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pancreas</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An endoderm derived structure that produces precursors of digestive enzymes and blood glucose regulating enzymes[GO].</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pancreas</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0001268 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0001268">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000463"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0006314"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">peritoneal fluid</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Transudate contained in the peritoneal cavity.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">peritoneal fluid</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0001323 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0001323">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000477"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">tibial nerve</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The tibial nerve is a branch of the sciatic nerve. The tibial nerve passes through the popliteal fossa to pass below the arch of soleus. In the popliteal fossa the nerve gives off branches to gastrocnemius, popliteus, soleus and plantaris muscles, an articular branch to the knee joint, and a cutaneous branch that will become the sural nerve. The sural nerve is joined by fibres from the common peroneal nerve and runs down the calf to supply the lateral side of the foot. Below the soleus muscle the nerve lies close to the tibia and supplies the tibialis posterior, the flexor digitorum longus and the flexor hallucis longus. The nerve passes into the foot running posterior to the medial malleolus. Here it is bound down by the flexor retinaculum in company with the posterior tibial artery. [WP,unvetted].</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">tibial nerve</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0001359 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0001359">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0006314"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cerebrospinal fluid</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A clear, colorless, bodily fluid, that occupies the subarachnoid space and the ventricular system around and inside the brain and spinal cord.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cerebrospinal fluid</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0001557 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0001557">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">upper respiratory tract</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The segment of the respiratory tract that starts proximally with the nose and ends distally with the cricoid cartilage, before continuing to the trachea.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">upper respiratory tract</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0001558 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0001558">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lower respiratory tract</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The segment of the respiratory tract that starts proximally with the trachea and includes all distal structures including the lungs[WP,modified]</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lower respiratory tract</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0001567 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0001567">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cheek</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A fleshy subdivision of one side of the face bounded by an eye, ear and the nose.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cheek</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0001621 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0001621">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">coronary artery</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An artery that supplies the myocardium.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">coronary artery</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0001638 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0001638">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">vein</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Any of the tubular branching vessels that carry blood from the capillaries toward the heart.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">vein</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0001723 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0001723">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">tongue</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A muscular organ in the floor of the mouth.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">tongue</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0001728 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0001728">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nasopharynx</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">the section of the pharynx that lies above the soft palate</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nasopharynx</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0001729 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0001729">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">oropharynx</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">the portion of the pharynx that lies between the soft palate and the upper edge of the epiglottis</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">oropharynx</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0001797 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0001797">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000463"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">vitreous humor</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A transparent, semigelatinous substance that fills the cavity behind the crystalline lens of the eye and in front of the retina</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">vitreous humor</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0001826 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0001826">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nasal cavity mucosa</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The mucous membrane that lines the nasal cavity[MP].</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nasal cavity mucosa</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0001830 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0001830">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">minor salivary gland</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">One of the smaller, largely mucus-secreting, exocrine glands of the oral cavity, consisting of the labial, buccal, molar, lingual, and palatine glands[MP].</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">minor salivary gland</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0001836 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0001836">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000463"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">saliva</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A fluid produced in the oral cavity by salivary glands, typically used in predigestion, but also in other functions.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">saliva</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0001873 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0001873">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000477"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">caudate nucleus</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Subcortical nucleus of telecephalic origin consisting of an elongated gray mass lying lateral to and bordering the lateral ventricle. It is divided into a head, body and tail in some species.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">caudate nucleus</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0001874 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0001874">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000477"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">putamen</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Subcortical nucleus of telencephalic , which together with the caudate nucleus, forms the striatum. The putamen lies lateral to the internal capsule and medial to the external medullary lamina, and is separated from the caudate nucleus by the fibers of the internal capsule for most of its length, except at its anterior portion.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">putamen</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0001913 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0001913">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000463"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0006314"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">milk</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An emulsion of fat globules within a fluid that is secreted by the mammary gland during lactation.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">milk</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0001968 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0001968">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000463"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">semen</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Organism substance that is composed of sperm cells suspended in seminal fluid.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">semen</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0001970 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0001970">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000463"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0006314"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">bile</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">vital aqueous secretion of the liver that is formed by hepatocytes and modified down stream by absorptive and secretory properties of the bile duct epithelium.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">bile</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0001987 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0001987">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">placenta</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">organ of metabolic interchange between fetus and mother, partly of embryonic origin and partly of maternal origin[GO]. The fetal portion of the placenta is known as the villous chorion. The maternal portion is known as the decidua basalis. The two portions are held together by anchoring villi that are anchored to the decidua basalis by the cytotrophoblastic shell.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">placenta</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0001988 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0001988">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000463"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">feces</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Portion of semisolid bodily waste discharged through the anus[MW,modified]</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">feces</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0002032 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0002032">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">areola</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Subdivision of breast which consists of skin, connective tissue and smooth muscle bundle and modified sebaceous glands and which surrounds the nipple.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">areola</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0002037 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0002037">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000481"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cerebellum</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Part of the metencephalon that lies in the posterior cranial fossa behind the brain stem. It is concerned with the coordination of movement[MESH]. A large dorsally projecting part of the brain concerned especially with the coordination of muscles and the maintenance of bodily equilibrium, situated between the brain stem and the back of the cerebrum , and formed in humans of two lateral lobes and a median lobe[BTO]. Brain structure derived from the anterior hindbrain, and perhaps including posterior midbrain. The cerebellum plays a role in somatic motor function, the control of muscle tone, and balance[ZFA].</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cerebellum</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0002046 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0002046">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">thyroid gland</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A two-lobed endocrine gland found in all vertebrates, located in front of and on either side of the trachea in humans, and producing various hormones, such as triiodothyronine and calcitonin[BTO].</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">thyroid gland</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0002048 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0002048">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lung</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Respiration organ that develops as an outpocketing of the esophagus.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lung</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0002067 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0002067">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dermis</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The dermis is a layer of skin between the epidermis (with which it makes up the skin) and subcutaneous tissues, and is composed of two layers, the papillary and reticular dermis[WP].</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dermis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0002072 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0002072">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hypodermis</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Lowermost layer of the integumentary system in vertebrates. Types of cells that are found in the hypodermis are fibroblasts, adipose cells, and macrophages. It is derived from the mesoderm, but unlike the dermis, it is not derived from the dermatome region of the mesoderm. The hypodermis is used mainly for fat storage[WP].</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hypodermis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0002097 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0002097">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">skin of body</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The organ covering the body that consists of the dermis and epidermis.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">skin of body</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0002106 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0002106">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">spleen</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">the organ that functions to filter blood and to store red corpuscles and platelets</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">spleen</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0002107 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0002107">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">liver</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An exocrine gland which secretes bile and functions in metabolism of protein and carbohydrate and fat, synthesizes substances involved in the clotting of the blood, synthesizes vitamin A, detoxifies poisonous substances, stores glycogen, and breaks down worn-out erythrocytes[GO].</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">liver</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0002116 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0002116">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ileum</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">the portion of the small intestine that extends from the jejunum to the colon</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ileum</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0002199 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0002199">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">integument</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The dermis, epidermis and hypodermis.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">integument</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/UBERON_0002358 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UBERON_0002358">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000465"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000481"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">peritoneum</obo:IAO_0000111>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A serous membrane that lines the peritoneal cavity[VHOG,modified].</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/uberon.owl"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">peritoneum</rdfs:label>
</owl:Class>