forked from ontoneo-project/Ontoneo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathontoneo.owl
5639 lines (4095 loc) · 240 KB
/
ontoneo.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"?>
<!DOCTYPE rdf:RDF [
<!ENTITY foaf "http://xmlns.com/foaf/0.1/" >
<!ENTITY owl "http://www.w3.org/2002/07/owl#" >
<!ENTITY obo "http://purl.obolibrary.org/obo/" >
<!ENTITY dc "http://purl.org/dc/elements/1.1/" >
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
<!ENTITY fma "http://purl.obolibrary.org/obo/fma#" >
<!ENTITY pato "http://purl.obolibrary.org/obo/pato#" >
<!ENTITY sio "http://semanticscience.org/resource/" >
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
<!ENTITY ontoneo "http://purl.obolibrary.org/obo/ontoneo/" >
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
<!ENTITY oboInOwl "http://www.geneontology.org/formats/oboInOwl#" >
<!ENTITY protege "http://protege.stanford.edu/plugins/owl/protege#" >
]>
<rdf:RDF xmlns="&obo;ontoneo/ontoneo.owl#"
xml:base="&obo;ontoneo/ontoneo.owl"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:ontoneo="&obo;ontoneo/"
xmlns:protege="http://protege.stanford.edu/plugins/owl/protege#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:pato="&obo;pato#"
xmlns:obo="http://purl.obolibrary.org/obo/"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:sio="http://semanticscience.org/resource/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:fma="&obo;fma#"
xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#">
<owl:Ontology rdf:about="&obo;ontoneo/ontoneo.owl">
<rdfs:label xml:lang="en">The Ontology of Obstetric and Neonatal domain</rdfs:label>
<rdfs:label xml:lang="pt">A Ontologia do Domínio Obstétrico e Neonatal</rdfs:label>
<owl:versionInfo rdf:datatype="&xsd;dateTime">2016-12-14</owl:versionInfo>
<dc:source rdf:datatype="&xsd;string">ISBN:9780262527811 - Building Ontologies with Basic Formal Ontology. By Robert Arp, Barry Smith and Andrew D. Spear</dc:source>
<rdfs:comment rdf:datatype="&xsd;string">PERSON: Fernanda Farinelli
OntONeo development prioritizes the reuse of classes and entities from FMA ontology to deal with human anatomy approaches. Every class reference of others ontology for the anatomy domain, for example, UBERON and CARO, in which has the cross-reference annotation to some FMA class are replaced by the FMA class referred.</rdfs:comment>
<rdfs:comment rdf:datatype="&xsd;string">PERSON: Fernanda Farinelli
Ontoneo is a ontology that the development is in progress, then take in mind for while the stability of URIs and labels. We are sure that the upper level ontology used is BFO version 2 and that we are priorize the reuse of terms find on OBO Foundry ontologies.</rdfs:comment>
<dc:source rdf:datatype="&xsd;string">Woman’s Health Record Model from The American Congress of Obstetrician and Gynecologists (acog.org).</dc:source>
<dc:source rdf:datatype="&xsd;string">https://github.com/ontoneo-project/Ontoneo</dc:source>
<foaf:mbox rdf:datatype="&xsd;string">ontoneoontology@gmail.com</foaf:mbox>
<dc:contributor>Fernanda Farinelli</dc:contributor>
<dc:contributor xml:lang="en">Barry Smith</dc:contributor>
<dc:creator xml:lang="en">Fernanda Farinelli</dc:creator>
<rdfs:comment xml:lang="en">IDs allocated to individuals: ONTONEO_90000000 - ONTONEO_99999999</rdfs:comment>
<dc:contributor xml:lang="en">Mauricio B. de Almeida</dc:contributor>
<rdfs:comment xml:lang="en">OntoNeo, is developed by Fernanda Farinelli and her contributor group is licensed under CC BY 4.0.</rdfs:comment>
<rdfs:comment xml:lang="en">PERSON: Fernanda Farinelli
The default language of this ontology is English mainly because the reusable ontologies are conceived in English. However, this ontology intends to be bilingual in order to attend the necessities of Brazilian issues. Then, every relevant term we defined in Portuguese (Brazilian portuguese) using the tag xml:lang="pt" the follow annotations: label, definition, alternative term.</rdfs:comment>
<dc:contributor xml:lang="en">Peter L. Elkin</dc:contributor>
<dc:contributor xml:lang="en">Zilma Silveira Nogueira Reis</dc:contributor>
<protege:defaultLanguage xml:lang="en">en</protege:defaultLanguage>
<foaf:homepage>https://ontoneo.com/</foaf:homepage>
<ontoneo:ONTONEO_1000000 xml:lang="pt">pt</ontoneo:ONTONEO_1000000>
<dc:license rdf:resource="http://creativecommons.org/licenses/by/4.0/"/>
<owl:imports rdf:resource="&obo;UBERON_import.owl"/>
<owl:imports rdf:resource="&obo;VO_import.owl"/>
<owl:imports rdf:resource="&obo;cl.owl"/>
<owl:imports rdf:resource="&obo;ontoneo/import/BFO_import.owl"/>
<owl:imports rdf:resource="&obo;ontoneo/import/DOID_import.owl"/>
<owl:imports rdf:resource="&obo;ontoneo/import/FMA_import.owl"/>
<owl:imports rdf:resource="&obo;ontoneo/import/GO_import.owl"/>
<owl:imports rdf:resource="&obo;ontoneo/import/HP_import.owl"/>
<owl:imports rdf:resource="&obo;ontoneo/import/IAO_import.owl"/>
<owl:imports rdf:resource="&obo;ontoneo/import/OBI_import.owl"/>
<owl:imports rdf:resource="&obo;ontoneo/import/OGMS_import.owl"/>
<owl:imports rdf:resource="&obo;ontoneo/import/PATO_import.owl"/>
<owl:imports rdf:resource="&obo;ontoneo/import/RO_import.owl"/>
<owl:imports rdf:resource="&obo;ontoneo/import/SYMP_import.owl"/>
<owl:imports rdf:resource="&obo;ontoneo/import/d-acts_import.owl"/>
<owl:versionIRI rdf:resource="&obo;ontoneo/releases/v1.1/ontoneo.owl"/>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/RO_0002150 -->
<owl:AnnotationProperty rdf:about="&obo;RO_0002150"/>
<!-- http://purl.obolibrary.org/obo/ontoneo/ONTONEO_1000000 -->
<owl:AnnotationProperty rdf:about="&obo;ontoneo/ONTONEO_1000000">
<rdfs:label xml:lang="en">alternative language</rdfs:label>
<obo:IAO_0000115 xml:lang="en">An alternative language in which the ontology is represented.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">PERSON:Fernanda Farinelli</obo:IAO_0000117>
<obo:IAO_0000111 xml:lang="en">alternative language</obo:IAO_0000111>
<obo:IAO_0000114 rdf:resource="&obo;IAO_0000125"/>
<rdfs:range rdf:resource="&xsd;language"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/elements/1.1/identifier -->
<owl:AnnotationProperty rdf:about="&dc;identifier"/>
<!-- http://semanticscience.org/resource/equivalentTo -->
<owl:AnnotationProperty rdf:about="&sio;equivalentTo"/>
<!-- http://semanticscience.org/resource/example -->
<owl:AnnotationProperty rdf:about="&sio;example"/>
<!-- http://semanticscience.org/resource/hasSynonym -->
<owl:AnnotationProperty rdf:about="&sio;hasSynonym"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/BCGO_0000075 -->
<owl:ObjectProperty rdf:about="&obo;BCGO_0000075">
<rdf:type rdf:resource="&owl;TransitiveProperty"/>
<rdfs:label xml:lang="en">examines</rdfs:label>
<obo:IAO_0000115 xml:lang="en">relates an investigation to any biologically-related entity that is examined as part of that process, such as a protein, a biological process, etc.</obo:IAO_0000115>
<rdfs:range rdf:resource="&obo;BFO_0000001"/>
<rdfs:isDefinedBy rdf:resource="&obo;bcgo.owl"/>
<rdfs:subPropertyOf rdf:resource="&owl;topObjectProperty"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000050 -->
<owl:ObjectProperty rdf:about="&obo;BFO_0000050">
<rdf:type rdf:resource="&owl;TransitiveProperty"/>
<rdfs:label xml:lang="en">part of</rdfs:label>
<rdfs:seeAlso>http://www.obofoundry.org/ro/#OBO_REL:part_of</rdfs:seeAlso>
<obo:IAO_0000116 xml:lang="en">Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.</obo:IAO_0000116>
<obo:IAO_0000116 xml:lang="en">Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See https://code.google.com/p/obo-relations/wiki/ROAndTime</obo:IAO_0000116>
<obo:IAO_0000116 xml:lang="en">Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.) A continuant cannot be part of an occurrent: use 'participates in'. An occurrent cannot be part of a continuant: use 'has participant'. A material entity cannot be part of an immaterial entity: use 'has location'. A specifically dependent continuant cannot be part of an independent continuant: use 'inheres in'. An independent continuant cannot be part of a specifically dependent continuant: use 'bearer of'.</obo:IAO_0000116>
<obo:IAO_0000115 xml:lang="en">a core relation that holds between a part and its whole</obo:IAO_0000115>
<obo:IAO_0000111 xml:lang="en">is part of</obo:IAO_0000111>
<obo:IAO_0000112 xml:lang="en">my brain is part of my body (continuant parthood, two material entities)</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)</obo:IAO_0000112>
<obo:IAO_0000118 xml:lang="en">part_of</obo:IAO_0000118>
<obo:IAO_0000112 xml:lang="en">this day is part of this year (occurrent parthood)</obo:IAO_0000112>
<rdfs:seeAlso rdf:resource="http://ontologydesignpatterns.org/wiki/Community:Parts_and_Collections"/>
<rdfs:seeAlso rdf:resource="http://ontologydesignpatterns.org/wiki/Submissions:PartOf"/>
<owl:inverseOf rdf:resource="&obo;BFO_0000051"/>
<obo:RO_0001900 rdf:resource="&obo;RO_0001901"/>
<rdfs:subPropertyOf rdf:resource="&obo;RO_0002131"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000051 -->
<owl:ObjectProperty rdf:about="&obo;BFO_0000051">
<rdf:type rdf:resource="&owl;TransitiveProperty"/>
<rdfs:label xml:lang="en">has part</rdfs:label>
<rdfs:label xml:lang="en">part of</rdfs:label>
<obo:IAO_0000116 xml:lang="en">Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part.</obo:IAO_0000116>
<obo:IAO_0000116 xml:lang="en">Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See https://code.google.com/p/obo-relations/wiki/ROAndTime</obo:IAO_0000116>
<obo:IAO_0000116 xml:lang="en">Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.) A continuant cannot have an occurrent as part: use 'participates in'. An occurrent cannot have a continuant as part: use 'has participant'. An immaterial entity cannot have a material entity as part: use 'location of'. An independent continuant cannot have a specifically dependent continuant as part: use 'bearer of'. A specifically dependent continuant cannot have an independent continuant as part: use 'inheres in'.</obo:IAO_0000116>
<obo:IAO_0000115 xml:lang="en">a core relation that holds between a whole and its part</obo:IAO_0000115>
<obo:IAO_0000111 xml:lang="en">has part</obo:IAO_0000111>
<obo:IAO_0000112 xml:lang="en">my body has part my brain (continuant parthood, two material entities)</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">my stomach has part my stomach cavity (continuant parthood, material entity has part immaterial entity)</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">this year has part this day (occurrent parthood)</obo:IAO_0000112>
<obo:RO_0001900 rdf:resource="&obo;RO_0001901"/>
<rdfs:subPropertyOf rdf:resource="&obo;RO_0002131"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000054 -->
<owl:ObjectProperty rdf:about="&obo;BFO_0000054">
<rdfs:label xml:lang="en">realized in</rdfs:label>
<rdfs:comment>Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process</rdfs:comment>
<obo:IAO_0000600 xml:lang="en">[copied from inverse property 'realizes'] to say that b realizes c at t is to assert that there is some material entity d & b is a process which has participant d at t & c is a disposition or role of which d is bearer_of at t& the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])</obo:IAO_0000600>
<obo:IAO_0000118 xml:lang="en">is realized by</obo:IAO_0000118>
<obo:IAO_0000111 xml:lang="en">realized in</obo:IAO_0000111>
<obo:IAO_0000118 xml:lang="en">realized_in</obo:IAO_0000118>
<obo:IAO_0000112 xml:lang="en">this disease is realized in this disease course</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">this fragility is realized in this shattering</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">this investigator role is realized in this investigation</obo:IAO_0000112>
<rdfs:isDefinedBy rdf:resource="&obo;bfo.owl"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000055 -->
<owl:ObjectProperty rdf:about="&obo;BFO_0000055">
<rdfs:label xml:lang="en">realizes</rdfs:label>
<rdfs:comment>Paraphrase of elucidation: a relation between a process and a realizable entity, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process</rdfs:comment>
<obo:IAO_0000111 xml:lang="en">realizes</obo:IAO_0000111>
<obo:IAO_0000112 xml:lang="en">this disease course realizes this disease</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">this investigation realizes this investigator role</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">this shattering realizes this fragility</obo:IAO_0000112>
<obo:IAO_0000600 xml:lang="en">to say that b realizes c at t is to assert that there is some material entity d & b is a process which has participant d at t & c is a disposition or role of which d is bearer_of at t& the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])</obo:IAO_0000600>
<owl:inverseOf rdf:resource="&obo;BFO_0000054"/>
<rdfs:isDefinedBy rdf:resource="&obo;iao.owl"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000066 -->
<owl:ObjectProperty rdf:about="&obo;BFO_0000066">
<rdfs:label xml:lang="en">occurs in</rdfs:label>
<rdfs:comment>Paraphrase of definition: a relation between a process and an independent continuant, in which the process takes place entirely within the independent continuant</rdfs:comment>
<obo:IAO_0000115 xml:lang="en">b occurs_in c =def b is a process and c is a material entity or immaterial entity& there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.& forall(t) if b exists_at t then c exists_at t & there exist spatial regions s and s’ where & b spatially_projects_onto s at t& c is occupies_spatial_region s’ at t& s is a proper_continuant_part_of s’ at t</obo:IAO_0000115>
<obo:IAO_0000111 xml:lang="en">occurs in</obo:IAO_0000111>
<obo:IAO_0000118 xml:lang="en">occurs_in</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="en">unfolds in</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="en">unfolds_in</obo:IAO_0000118>
<owl:inverseOf rdf:resource="&obo;BFO_0000067"/>
<rdfs:isDefinedBy rdf:resource="&obo;bfo.owl"/>
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;BFO_0000050"/>
<rdf:Description rdf:about="&obo;BFO_0000066"/>
</owl:propertyChainAxiom>
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;BFO_0000066"/>
<rdf:Description rdf:about="&obo;BFO_0000050"/>
</owl:propertyChainAxiom>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000067 -->
<owl:ObjectProperty rdf:about="&obo;BFO_0000067">
<rdfs:label xml:lang="en">contains process</rdfs:label>
<rdfs:comment>Paraphrase of definition: a relation between an independent continuant and a process, in which the process takes place entirely within the independent continuant</rdfs:comment>
<obo:IAO_0000115 xml:lang="en">[copied from inverse property 'occurs in'] b occurs_in c =def b is a process and c is a material entity or immaterial entity& there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.& forall(t) if b exists_at t then c exists_at t & there exist spatial regions s and s’ where & b spatially_projects_onto s at t& c is occupies_spatial_region s’ at t& s is a proper_continuant_part_of s’ at t</obo:IAO_0000115>
<obo:IAO_0000111 xml:lang="en">site of</obo:IAO_0000111>
<rdfs:isDefinedBy rdf:resource="&obo;bfo.owl"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0000052 -->
<owl:ObjectProperty rdf:about="&obo;RO_0000052">
<rdfs:label xml:lang="en">inheres in</rdfs:label>
<obo:IAO_0000116 xml:lang="en">A dependent inheres in its bearer at all times for which the dependent exists.</obo:IAO_0000116>
<obo:IAO_0000115 xml:lang="en">a relation between a specifically dependent continuant (the dependent) and an independent continuant (the bearer), in which the dependent specifically depends on the bearer for its existence</obo:IAO_0000115>
<obo:IAO_0000111 xml:lang="en">inheres in</obo:IAO_0000111>
<obo:IAO_0000118 xml:lang="en">inheres_in</obo:IAO_0000118>
<obo:IAO_0000112 xml:lang="en">this fragility inheres in this vase</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">this red color inheres in this apple</obo:IAO_0000112>
<obo:RO_0001900 rdf:resource="&obo;RO_0001901"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0000058 -->
<owl:ObjectProperty rdf:about="&obo;RO_0000058">
<rdfs:label xml:lang="en">is concretized as</rdfs:label>
<obo:IAO_0000112 xml:lang="en">A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The journal article (a generically dependent continuant) is concretized as the quality (a specifically dependent continuant), and both depend on that copy of the printed journal (an independent continuant).</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">A relationship between a generically dependent continuant and a specifically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. A generically dependent continuant may be concretized as multiple specifically dependent continuants.</obo:IAO_0000115>
<obo:IAO_0000112 xml:lang="en">An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process).</obo:IAO_0000112>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0000081 -->
<owl:ObjectProperty rdf:about="&obo;RO_0000081">
<rdfs:label xml:lang="en">role of</rdfs:label>
<obo:IAO_0000116 xml:lang="en">A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists.</obo:IAO_0000116>
<obo:IAO_0000115 xml:lang="en">a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence</obo:IAO_0000115>
<obo:IAO_0000118 xml:lang="en">is role of</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="en">role_of</obo:IAO_0000118>
<obo:IAO_0000112 xml:lang="en">this investigator role is a role of this person</obo:IAO_0000112>
<rdfs:subPropertyOf rdf:resource="&obo;RO_0000052"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0000085 -->
<owl:ObjectProperty rdf:about="&obo;RO_0000085">
<rdfs:label xml:lang="en">has function</rdfs:label>
<obo:IAO_0000116 xml:lang="en">A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists.</obo:IAO_0000116>
<obo:IAO_0000115 xml:lang="en">a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence</obo:IAO_0000115>
<obo:IAO_0000118 xml:lang="en">has_function</obo:IAO_0000118>
<obo:IAO_0000112 xml:lang="en">this enzyme has function this catalysis function (more colloquially: this enzyme has this catalysis function)</obo:IAO_0000112>
<rdfs:subPropertyOf rdf:resource="&obo;RO_0000053"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0000086 -->
<owl:ObjectProperty rdf:about="&obo;RO_0000086">
<rdfs:label xml:lang="en">has quality</rdfs:label>
<obo:IAO_0000116 xml:lang="en">A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist.</obo:IAO_0000116>
<obo:IAO_0000115 xml:lang="en">a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence</obo:IAO_0000115>
<obo:IAO_0000118 xml:lang="en">has_quality</obo:IAO_0000118>
<obo:IAO_0000112 xml:lang="en">this apple has quality this red color</obo:IAO_0000112>
<rdfs:subPropertyOf rdf:resource="&obo;RO_0000053"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0000087 -->
<owl:ObjectProperty rdf:about="&obo;RO_0000087">
<rdfs:label xml:lang="en">has role</rdfs:label>
<obo:IAO_0000116 xml:lang="en">A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists.</obo:IAO_0000116>
<obo:IAO_0000115 xml:lang="en">a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence</obo:IAO_0000115>
<obo:IAO_0000118 xml:lang="en">has_role</obo:IAO_0000118>
<obo:IAO_0000112 xml:lang="en">this person has role this investigator role (more colloquially: this person has this role of investigator)</obo:IAO_0000112>
<rdfs:subPropertyOf rdf:resource="&obo;RO_0000053"/>
<owl:inverseOf rdf:resource="&obo;RO_0000081"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0002131 -->
<owl:ObjectProperty rdf:about="&obo;RO_0002131"/>
<!-- http://purl.org/obo/owl/OBO_REL#exists_during -->
<owl:ObjectProperty rdf:about="http://purl.org/obo/owl/OBO_REL#exists_during"/>
<!-- http://semanticscience.org/resource/SIO_000001 -->
<owl:ObjectProperty rdf:about="&sio;SIO_000001">
<rdf:type rdf:resource="&owl;SymmetricProperty"/>
<rdfs:label xml:lang="en">is related to</rdfs:label>
<rdfs:comment xml:lang="en">'is related to' is the top level relation in SIO</rdfs:comment>
<obo:IAO_0000115 xml:lang="en">A is related to B iff there is some relation between A and B.</obo:IAO_0000115>
<dc:identifier>SIO_000001</dc:identifier>
<rdfs:isDefinedBy rdf:resource="http://semanticscience.org/ontology/sio.owl"/>
</owl:ObjectProperty>
<!-- http://semanticscience.org/resource/SIO_000253 -->
<owl:ObjectProperty rdf:about="&sio;SIO_000253"/>
<!-- http://semanticscience.org/resource/SIO_000364 -->
<owl:ObjectProperty rdf:about="&sio;SIO_000364">
<rdfs:label xml:lang="en">has creator</rdfs:label>
<sio:equivalentTo>dc:creator</sio:equivalentTo>
<dc:identifier>SIO_000364</dc:identifier>
<obo:IAO_0000115 xml:lang="en">Has creator is a relation between an entity and that which created it.</obo:IAO_0000115>
<sio:hasSynonym xml:lang="en">is created by</sio:hasSynonym>
<sio:example xml:lang="en">the iPhone was created by Apple Inc</sio:example>
<sio:hasSynonym xml:lang="en">was created by</sio:hasSynonym>
<rdfs:isDefinedBy rdf:resource="http://semanticscience.org/ontology/sio.owl"/>
<rdfs:subPropertyOf rdf:resource="&sio;SIO_000253"/>
<owl:inverseOf rdf:resource="&sio;SIO_000365"/>
</owl:ObjectProperty>
<!-- http://semanticscience.org/resource/SIO_000365 -->
<owl:ObjectProperty rdf:about="&sio;SIO_000365"/>
<!-- http://semanticscience.org/resource/SIO_000736 -->
<owl:ObjectProperty rdf:about="&sio;SIO_000736">
<rdf:type rdf:resource="&owl;SymmetricProperty"/>
<rdfs:label xml:lang="en">is comparable to</rdfs:label>
<dc:identifier>SIO_000736</dc:identifier>
<obo:IAO_0000115 xml:lang="en">is comparable to is a relation between two entities that share at least one feature whose value can be compared.</obo:IAO_0000115>
<rdfs:isDefinedBy rdf:resource="http://semanticscience.org/ontology/sio.owl"/>
<rdfs:subPropertyOf rdf:resource="&sio;SIO_000001"/>
</owl:ObjectProperty>
<!-- http://semanticscience.org/resource/SIO_001242 -->
<owl:ObjectProperty rdf:about="&sio;SIO_001242">
<rdf:type rdf:resource="&owl;SymmetricProperty"/>
<rdfs:label xml:lang="en">is identical to</rdfs:label>
<dc:identifier>SIO_001242</dc:identifier>
<obo:IAO_0000115 xml:lang="en">is identical to is a relation between two objects that are conceptually the same notwithstanding provenance or other non-intrinsic attributes.</obo:IAO_0000115>
<rdfs:isDefinedBy rdf:resource="http://semanticscience.org/ontology/sio.owl"/>
<rdfs:subPropertyOf rdf:resource="&sio;SIO_000736"/>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.bioontology.org/OntONeo/ONTONEO_00000065 -->
<owl:Class rdf:about="http://purl.bioontology.org/OntONeo/ONTONEO_00000065">
<rdfs:label xml:lang="en">patient partner data set</rdfs:label>
<rdfs:subClassOf>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;IAO_0000100"/>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;BFO_0000051"/>
<owl:someValuesFrom rdf:resource="&obo;IAO_0000429"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;BFO_0000051"/>
<owl:someValuesFrom rdf:resource="&obo;IAO_0020015"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;BFO_0000051"/>
<owl:someValuesFrom rdf:resource="&obo;OMRSE_00000098"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;BFO_0000051"/>
<owl:someValuesFrom rdf:resource="&obo;OMRSE_00000100"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;BFO_0000051"/>
<owl:someValuesFrom rdf:resource="&obo;OMRSE_00000133"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;BFO_0000051"/>
<owl:someValuesFrom rdf:resource="&obo;ontoneo/ONTONEO_00000064"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;BFO_0000051"/>
<owl:someValuesFrom rdf:resource="&obo;ontoneo/ONTONEO_00100000"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;BFO_0000051"/>
<owl:someValuesFrom rdf:resource="&obo;ontoneo/ONTONEO_00100001"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;BFO_0000051"/>
<owl:someValuesFrom rdf:resource="&obo;ontoneo/ONTONEO_00100004"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;BFO_0000051"/>
<owl:someValuesFrom rdf:resource="&sio;SIO_001320"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;BFO_0000051"/>
<owl:someValuesFrom rdf:resource="&sio;SIO_001324"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;BFO_0000051"/>
<owl:someValuesFrom rdf:resource="&sio;SIO_001325"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;BFO_0000051"/>
<owl:someValuesFrom rdf:resource="http://www.ebi.ac.uk/efo/EFO_0004950"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</rdfs:subClassOf>
</owl:Class>
<!-- http://purl.bioontology.org/OntONeo/ONTONEO_00000066 -->
<owl:Class rdf:about="http://purl.bioontology.org/OntONeo/ONTONEO_00000066">
<rdfs:label xml:lang="en">emergency contact data set</rdfs:label>
<rdfs:subClassOf>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;IAO_0000100"/>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;BFO_0000051"/>
<owl:someValuesFrom rdf:resource="&obo;IAO_0000429"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;BFO_0000051"/>
<owl:someValuesFrom rdf:resource="&obo;IAO_0020015"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;BFO_0000051"/>
<owl:someValuesFrom rdf:resource="&sio;SIO_001319"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</rdfs:subClassOf>
</owl:Class>
<!-- http://purl.bioontology.org/OntONeo/ONTONEO_00000067 -->
<owl:Class rdf:about="http://purl.bioontology.org/OntONeo/ONTONEO_00000067">
<rdfs:label xml:lang="en">prenatal encounter</rdfs:label>
<rdfs:label xml:lang="pt">acompanhamento pré-natal</rdfs:label>
<rdfs:subClassOf rdf:resource="&obo;OGMS_0000097"/>
<obo:IAO_0000117 rdf:datatype="&xsd;string">Fernanda Farinelli</obo:IAO_0000117>
<obo:IAO_0000118 xml:lang="en">prenatal care, prenatal monitoring</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="pt">cuidado pré-natal, consulta pré-natal, monitoramento pré-natal</obo:IAO_0000118>
</owl:Class>
<!-- http://purl.bioontology.org/OntONeo/ONTONEO_00000068 -->
<owl:Class rdf:about="http://purl.bioontology.org/OntONeo/ONTONEO_00000068">
<rdfs:label xml:lang="en">cesarean section</rdfs:label>
<rdfs:label xml:lang="pt">operação cesariana</rdfs:label>
<rdfs:subClassOf rdf:resource="&obo;ERO_0000378"/>
<obo:IAO_0000118 xml:lang="en">C-section</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="pt">cesariana, cesárea</obo:IAO_0000118>
</owl:Class>
<!-- http://purl.bioontology.org/OntONeo/ONTONEO_00000070 -->
<owl:Class rdf:about="http://purl.bioontology.org/OntONeo/ONTONEO_00000070">
<rdfs:label xml:lang="en">medical prescription</rdfs:label>
<rdfs:label xml:lang="pt">receita médica</rdfs:label>
<rdfs:subClassOf rdf:resource="&obo;IAO_0000310"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&sio;SIO_000364"/>
<owl:someValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;NCBITaxon_9606"/>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0000087"/>
<owl:someValuesFrom rdf:resource="&obo;OMRSE_00000010"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">A document created by an organism which has role health care provider with the plan of care instructions to another organism which has role patient and included the indication of medicines in which this organism should take.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Fernanda Farinelli</obo:IAO_0000117>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/BFO_0000015 -->
<rdf:Description rdf:about="&obo;BFO_0000015">
<rdfs:label xml:lang="pt">processo</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/BFO_0000019 -->
<rdf:Description rdf:about="&obo;BFO_0000019">
<rdfs:label xml:lang="pt">qualidade</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/CMO_0000012 -->
<owl:Class rdf:about="&obo;CMO_0000012">
<rdfs:label rdf:datatype="&xsd;string">body weight</rdfs:label>
<rdfs:label xml:lang="pt">peso do corpo</rdfs:label>
<rdfs:subClassOf rdf:resource="&obo;PATO_0000128"/>
<oboInOwl:id rdf:datatype="&xsd;string">CMO:0000012</oboInOwl:id>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">Clinical_Measurement.ontology</oboInOwl:hasOBONamespace>
<obo:IAO_0000115 rdf:datatype="&xsd;string">The heaviness or degree to which an entire organism's body is drawn to the earth by gravity.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:datatype="&xsd;anyURI">http://purl.obolibrary.org/obo/cmo.owl</obo:IAO_0000412>
<obo:IAO_0000118 xml:lang="pt">peso corporal</obo:IAO_0000118>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CMO_0000013 -->
<owl:Class rdf:about="&obo;CMO_0000013">
<rdfs:label rdf:datatype="&xsd;string">body length</rdfs:label>
<rdfs:label xml:lang="pt">comprimento do corpo</rdfs:label>
<rdfs:subClassOf rdf:resource="&obo;PATO_0000122"/>
<obo:IAO_0000115 rdf:datatype="&xsd;string">A measurement of the longest dimension of a body, typically between two distinct ends of the body.</obo:IAO_0000115>
<oboInOwl:id rdf:datatype="&xsd;string">CMO:0000013</oboInOwl:id>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">Clinical_Measurement.ontology</oboInOwl:hasOBONamespace>
<obo:IAO_0000412 rdf:datatype="&xsd;anyURI">http://purl.obolibrary.org/obo/cmo.owl</obo:IAO_0000412>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CMO_0000106 -->
<owl:Class rdf:about="&obo;CMO_0000106">
<rdfs:label rdf:datatype="&xsd;string">body height</rdfs:label>
<rdfs:label xml:lang="pt">altura corporal</rdfs:label>
<rdfs:subClassOf rdf:resource="&obo;PATO_0000119"/>
<oboInOwl:id rdf:datatype="&xsd;string">CMO:0000106</oboInOwl:id>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">Clinical_Measurement.ontology</oboInOwl:hasOBONamespace>
<obo:IAO_0000115 rdf:datatype="&xsd;string">The vertical measurement of a body.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:datatype="&xsd;anyURI">http://purl.obolibrary.org/obo/cmo.owl</obo:IAO_0000412>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CMO_0001331 -->
<owl:Class rdf:about="&obo;CMO_0001331">
<rdfs:label rdf:datatype="&xsd;string">body height at withers</rdfs:label>
<rdfs:label xml:lang="pt">altura do corpo na cernelha</rdfs:label>
<rdfs:subClassOf rdf:resource="&obo;CMO_0000106"/>
<oboInOwl:creation_date rdf:datatype="&xsd;string">2013-01-09T17:28:13Z</oboInOwl:creation_date>
<oboInOwl:id rdf:datatype="&xsd;string">CMO:0001331</oboInOwl:id>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">Clinical_Measurement.ontology</oboInOwl:hasOBONamespace>
<oboInOwl:created_by rdf:datatype="&xsd;string">JSmith</oboInOwl:created_by>
<obo:IAO_0000115 rdf:datatype="&xsd;string">The vertical measurement of the body of a four-legged animal, from the ground to the high part of the back between the shoulder blades.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:datatype="&xsd;anyURI">http://purl.obolibrary.org/obo/cmo.owl</obo:IAO_0000412>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CMO_0001332 -->
<owl:Class rdf:about="&obo;CMO_0001332">
<rdfs:label rdf:datatype="&xsd;string">body height at hip</rdfs:label>
<rdfs:label xml:lang="pt">altura corporal no quadril</rdfs:label>
<rdfs:subClassOf rdf:resource="&obo;CMO_0000106"/>
<oboInOwl:creation_date rdf:datatype="&xsd;string">2013-01-09T17:29:18Z</oboInOwl:creation_date>
<oboInOwl:id rdf:datatype="&xsd;string">CMO:0001332</oboInOwl:id>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">Clinical_Measurement.ontology</oboInOwl:hasOBONamespace>
<oboInOwl:created_by rdf:datatype="&xsd;string">JSmith</oboInOwl:created_by>
<obo:IAO_0000115 rdf:datatype="&xsd;string">The vertical measurement of the body of a four-legged animal, from the ground to the point of the hip.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:datatype="&xsd;anyURI">http://purl.obolibrary.org/obo/cmo.owl</obo:IAO_0000412>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/DOID_4 -->
<rdf:Description rdf:about="&obo;DOID_4">
<rdfs:label xml:lang="pt">doença</rdfs:label>
<owl:equivalentClass rdf:resource="&obo;OGMS_0000031"/>
<rdfs:subClassOf rdf:resource="&obo;BFO_0000016"/>
<oboInOwl:hasDbXref>Term IRI: http://purl.obolibrary.org/obo/OGMS_0000031</oboInOwl:hasDbXref>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/ERO_0000378 -->
<owl:Class rdf:about="&obo;ERO_0000378">
<rdfs:label xml:lang="en">surgery</rdfs:label>
<rdfs:label xml:lang="pt">cirurgia</rdfs:label>
<rdfs:subClassOf rdf:resource="&obo;OBI_0000094"/>
<obo:IAO_0000115 rdf:datatype="&xsd;string">A material processing technique that uses operative manual and instrumental techniques on a patient to investigate and/or treat a pathological condition such as disease or injury or to help improve bodily function or appearance.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="&xsd;string">PERSON: Karen Corday</obo:IAO_0000117>
<obo:IAO_0000112 rdf:datatype="&xsd;string">Surgical removal of a mole.</obo:IAO_0000112>
<obo:IAO_0000119 rdf:datatype="&xsd;string">http://en.wikipedia.org/wiki/Surgery</obo:IAO_0000119>
<obo:IAO_0000111 rdf:datatype="&xsd;string">surgery</obo:IAO_0000111>
<obo:IAO_0000114 rdf:resource="&obo;IAO_0000120"/>
<obo:IAO_0000412 rdf:resource="&obo;ero.owl"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ERO_0001109 -->
<owl:Class rdf:about="&obo;ERO_0001109">
<rdfs:label rdf:datatype="&xsd;string">ovarectomy</rdfs:label>
<rdfs:subClassOf rdf:resource="&obo;ERO_0000378"/>
<obo:IAO_0000112 rdf:datatype="&xsd;string">An ovaectomy may be performed for a patient with ovarian cancer.</obo:IAO_0000112>
<obo:IAO_0000117 rdf:datatype="&xsd;string">PERSON: Nicole Vasilevsky</obo:IAO_0000117>
<obo:IAO_0000115 rdf:datatype="&xsd;string">Surgical removal of one or both ovaries.</obo:IAO_0000115>
<obo:IAO_0000119 rdf:datatype="&xsd;string">http://cancer-symptoms.org/cancer-treatments/ovariectomy.htm</obo:IAO_0000119>
<obo:IAO_0000114 rdf:resource="&obo;IAO_0000120"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/FMA_16564 -->
<rdf:Description rdf:about="&obo;FMA_16564">
<rdfs:label xml:lang="pt">pelve feminina</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FMA_17558 -->
<rdf:Description rdf:about="&obo;FMA_17558">
<rdfs:label xml:lang="pt">utero</rdfs:label>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;fma#systemic_part_of"/>
<owl:someValuesFrom rdf:resource="&obo;FMA_45654"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;fma#regional_part_of"/>
<owl:someValuesFrom rdf:resource="&obo;FMA_45654"/>
</owl:Restriction>
</rdfs:subClassOf>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FMA_19898 -->
<rdf:Description rdf:about="&obo;FMA_19898">
<rdfs:label xml:lang="pt">seio feminino</rdfs:label>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;fma#regional_part_of"/>
<owl:someValuesFrom rdf:resource="&obo;FMA_223655"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000118 xml:lang="pt">mama feminina, seio da mulher</obo:IAO_0000118>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FMA_19908 -->
<rdf:Description rdf:about="&obo;FMA_19908">
<rdfs:label xml:lang="pt">seio femnino esquerdo</rdfs:label>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;fma#regional_part_of"/>
<owl:someValuesFrom rdf:resource="&obo;FMA_223655"/>
</owl:Restriction>
</rdfs:subClassOf>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FMA_19910 -->
<rdf:Description rdf:about="&obo;FMA_19910">
<rdfs:label xml:lang="pt">seio femnino direito</rdfs:label>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;fma#regional_part_of"/>
<owl:someValuesFrom rdf:resource="&obo;FMA_223655"/>
</owl:Restriction>
</rdfs:subClassOf>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FMA_19949 -->
<rdf:Description rdf:about="&obo;FMA_19949">
<rdfs:label xml:lang="pt">vagina</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FMA_19970 -->
<rdf:Description rdf:about="&obo;FMA_19970">
<rdfs:label xml:lang="pt">vestíbulo da vagina</rdfs:label>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;fma#regional_part_of"/>
<owl:someValuesFrom rdf:resource="&obo;FMA_20462"/>
</owl:Restriction>
</rdfs:subClassOf>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FMA_20367 -->
<rdf:Description rdf:about="&obo;FMA_20367">
<rdfs:label xml:lang="pt">lábios maiores</rdfs:label>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;fma#regional_part_of"/>
<owl:someValuesFrom rdf:resource="&obo;FMA_20462"/>
</owl:Restriction>
</rdfs:subClassOf>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FMA_20374 -->
<rdf:Description rdf:about="&obo;FMA_20374">
<rdfs:label xml:lang="pt">lábios menores</rdfs:label>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;fma#regional_part_of"/>
<owl:someValuesFrom rdf:resource="&obo;FMA_20462"/>
</owl:Restriction>
</rdfs:subClassOf>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FMA_20394 -->
<rdf:Description rdf:about="&obo;FMA_20394">
<rdfs:label xml:lang="pt">corpo humano</rdfs:label>
<rdfs:subClassOf>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0000086"/>
<owl:someValuesFrom rdf:resource="&obo;CMO_0000012"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0000086"/>
<owl:someValuesFrom rdf:resource="&obo;CMO_0000106"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0000086"/>
<owl:someValuesFrom rdf:resource="&obo;PATO_0020000"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&sio;SIO_001242"/>
<owl:someValuesFrom rdf:resource="&obo;NCBITaxon_9606"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</rdfs:subClassOf>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FMA_20462 -->
<rdf:Description rdf:about="&obo;FMA_20462">
<rdfs:label xml:lang="pt">vulva</rdfs:label>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;fma#regional_part_of"/>
<owl:someValuesFrom rdf:resource="&obo;FMA_45649"/>
</owl:Restriction>
</rdfs:subClassOf>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FMA_222944 -->
<rdf:Description rdf:about="&obo;FMA_222944">
<rdfs:label xml:lang="pt">tronco feminino</rdfs:label>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;fma#regional_part_of"/>
<owl:someValuesFrom rdf:resource="&obo;FMA_67812"/>
</owl:Restriction>
</rdfs:subClassOf>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FMA_223655 -->
<rdf:Description rdf:about="&obo;FMA_223655">
<rdfs:label xml:lang="pt">tórax feminino</rdfs:label>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;fma#regional_part_of"/>
<owl:someValuesFrom rdf:resource="&obo;FMA_222944"/>
</owl:Restriction>
</rdfs:subClassOf>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FMA_228738 -->
<rdf:Description rdf:about="&obo;FMA_228738">
<rdfs:label xml:lang="pt">garganta</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FMA_259094 -->
<rdf:Description rdf:about="&obo;FMA_259094">
<rdfs:label xml:lang="pt">abdômen feminino</rdfs:label>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;fma#regional_part_of"/>
<owl:someValuesFrom rdf:resource="&obo;FMA_67812"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000118 xml:lang="pt">abdômen da mulher</obo:IAO_0000118>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FMA_45649 -->
<rdf:Description rdf:about="&obo;FMA_45649">
<rdfs:label xml:lang="pt">genitália externa feminina</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FMA_45654 -->
<rdf:Description rdf:about="&obo;FMA_45654">
<rdfs:label xml:lang="pt">genitália interna feminina</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FMA_46472 -->
<rdf:Description rdf:about="&obo;FMA_46472">
<rdfs:label xml:lang="pt">nariz</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FMA_50720 -->
<rdf:Description rdf:about="&obo;FMA_50720">
<rdfs:label xml:lang="pt">artéria</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FMA_52780 -->
<rdf:Description rdf:about="&obo;FMA_52780">
<rdfs:label xml:lang="pt">ouvido</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FMA_53641 -->
<rdf:Description rdf:about="&obo;FMA_53641">
<rdfs:label xml:lang="pt">ouvido esquerdo</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FMA_53642 -->
<rdf:Description rdf:about="&obo;FMA_53642">
<rdfs:label xml:lang="pt">ouvido esquerdo</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FMA_54448 -->
<rdf:Description rdf:about="&obo;FMA_54448">
<rdfs:label xml:lang="pt">olho</rdfs:label>
</rdf:Description>