forked from oborel/obo-relations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rohom.owl
1723 lines (1407 loc) · 129 KB
/
rohom.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/ro/rohom.owl#"
xml:base="http://purl.obolibrary.org/obo/ro/rohom.owl"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:obo="http://purl.obolibrary.org/obo/"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#">
<owl:Ontology rdf:about="http://purl.obolibrary.org/obo/ro/rohom.owl">
<oboInOwl:hasOBOFormatVersion rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.2</oboInOwl:hasOBOFormatVersion>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/IAO_0000115 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">definition</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/elements/1.1/creator -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/creator"/>
<!-- http://purl.org/dc/elements/1.1/source -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/source"/>
<!-- http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has_broad_synonym</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasDbXref -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasDbXref">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">database_cross_reference</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasExactSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has_exact_synonym</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasOBOFormatVersion -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasOBOFormatVersion">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has_obo_format_version</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has_related_synonym</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#id -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#id"/>
<!-- http://www.w3.org/2000/01/rdf-schema#comment -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#comment"/>
<!-- http://www.w3.org/2000/01/rdf-schema#label -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#label"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/RO_HOM0000000 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_HOM0000000">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in similarity relationship with</rdfs:label>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ECO:0000041</oboInOwl:hasDbXref>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Relation between biological objects that resemble or are related to each other sufficiently to warrant a comparison.</obo:IAO_0000115>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SO:similar_to</oboInOwl:hasDbXref>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">correspondence</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">resemblance</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sameness</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">similar to</oboInOwl:hasExactSynonym>
<dc:creator rdf:resource="http://bgee.unil.ch"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/HOM_0000000"/>
<dc:source rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/20116127"/>
</owl:ObjectProperty>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1007/BF02814479"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">correspondence</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000000"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
</owl:Axiom>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGEE:curator</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/HOM_0000000"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Relation between biological objects that resemble or are related to each other sufficiently to warrant a comparison.</owl:annotatedTarget>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000000"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_HOM0000001 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_HOM0000001">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in homology relationship with</rdfs:label>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Similarity that results from common evolutionary origin.</obo:IAO_0000115>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This broad definition encompasses all the working definitions proposed so far in the literature.</rdfs:comment>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">homologous to</oboInOwl:hasExactSynonym>
<dc:creator rdf:resource="http://bgee.unil.ch"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/HOM_0000001"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000000"/>
<owl:propertyDisjointWith rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000002"/>
<dc:source rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/20116127"/>
</owl:ObjectProperty>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1002/bies.950180611"/>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1002/jmor.1051730307"/>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1007/BF02814480"/>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/HOM_0000001"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Similarity that results from common evolutionary origin.</owl:annotatedTarget>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000001"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_HOM0000002 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_HOM0000002">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in homoplasy relationship with</rdfs:label>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Similarity that results from independent evolution.</obo:IAO_0000115>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">analogy</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">homoplasous to</oboInOwl:hasExactSynonym>
<dc:creator rdf:resource="http://bgee.unil.ch"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/HOM_0000002"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000000"/>
<dc:source rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/20116127"/>
</owl:ObjectProperty>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1016/j.jhevol.2006.11.010"/>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/HOM_0000002"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Similarity that results from independent evolution.</owl:annotatedTarget>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000002"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_HOM0000003 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_HOM0000003">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in homocracy relationship with</rdfs:label>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ECO:0000075</oboInOwl:hasDbXref>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Homology and homocracy are not mutually exclusive. The homology relationships of patterning genes may be unresolved and thus may include orthologues and paralogues.</rdfs:comment>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Similarity that is characterized by the organization of anatomical structures through the expression of homologous or identical patterning genes.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">homocracous to</oboInOwl:hasExactSynonym>
<dc:creator rdf:resource="http://bgee.unil.ch"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/HOM_0000003"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000000"/>
<dc:source rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/20116127"/>
</owl:ObjectProperty>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1007/BF02814484"/>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1007/s00427-003-0301-4"/>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1186/1742-9994-2-15"/>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/HOM_0000003"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Similarity that is characterized by the organization of anatomical structures through the expression of homologous or identical patterning genes.</owl:annotatedTarget>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000003"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_HOM0000004 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_HOM0000004">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in convergence relationship with</rdfs:label>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Convergence usually implies a notion of adaptation.</rdfs:comment>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Homoplasy that involves different underlying mechanisms or structures.</obo:IAO_0000115>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">analogy</oboInOwl:hasRelatedSynonym>
<dc:creator rdf:resource="http://bgee.unil.ch"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/HOM_0000004"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000002"/>
<dc:source rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/20116127"/>
</owl:ObjectProperty>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1016/j.jhevol.2006.11.010"/>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/HOM_0000004"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Homoplasy that involves different underlying mechanisms or structures.</owl:annotatedTarget>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000004"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_HOM0000005 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_HOM0000005">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in parallelism relationship with</rdfs:label>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Can be applied for features present in closely related organisms but not present continuously in all the members of the lineage.</rdfs:comment>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Homoplasy that involves homologous underlying mechanisms or structures.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">parallel evolution</oboInOwl:hasExactSynonym>
<dc:creator rdf:resource="http://bgee.unil.ch"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/HOM_0000005"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000002"/>
<dc:source rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/20116127"/>
</owl:ObjectProperty>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1016/j.jhevol.2006.11.010"/>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/HOM_0000005"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Homoplasy that involves homologous underlying mechanisms or structures.</owl:annotatedTarget>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000005"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_HOM0000006 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_HOM0000006">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in structural homology relationship with</rdfs:label>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ECO:0000071</oboInOwl:hasDbXref>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Homology that is defined by similarity with regard to selected structural parameters.</obo:IAO_0000115>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MI:2163</oboInOwl:hasDbXref>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">idealistic homology</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">structural homologous to</oboInOwl:hasExactSynonym>
<dc:creator rdf:resource="http://bgee.unil.ch"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/HOM_0000006"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000001"/>
<dc:source rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/20116127"/>
</owl:ObjectProperty>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1016/j.jhevol.2006.11.014"/>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1146/annurev.es.20.110189.000411"/>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/HOM_0000006"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Homology that is defined by similarity with regard to selected structural parameters.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ISBN:0123195837</oboInOwl:hasDbXref>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000006"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_HOM0000007 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_HOM0000007">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in historical homology relationship with</rdfs:label>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ECO:0000080</oboInOwl:hasDbXref>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Homology that is defined by common descent.</obo:IAO_0000115>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RO_proposed_relation:homologous_to</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SO:0000330</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SO:0000853</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SO:0000857</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SO:homologous_to</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TAO:homologous_to</oboInOwl:hasDbXref>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cladistic homology</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">historical homologous to</oboInOwl:hasExactSynonym>
<oboInOwl:hasBroadSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">homology</oboInOwl:hasBroadSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">phylogenetic homology</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">taxic homology</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true homology</oboInOwl:hasRelatedSynonym>
<dc:creator rdf:resource="http://bgee.unil.ch"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/HOM_0000007"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000001"/>
<dc:source rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/20116127"/>
</owl:ObjectProperty>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1016/S0169-5347(97)01125-7"/>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/HOM_0000007"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Homology that is defined by common descent.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ISBN:0123195837</oboInOwl:hasDbXref>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000007"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_HOM0000008 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_HOM0000008">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in biological homology relationship with</rdfs:label>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Applicable only to morphology. A certain degree of ambiguity is accepted between biological homology and parallelism.</rdfs:comment>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ECO:0000067</oboInOwl:hasDbXref>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Homology that is defined by sharing of a set of developmental constraints, caused by locally acting self-regulatory mechanisms of differentiation, between individualized parts of the phenotype.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">biological homologous to</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">transformational homology</oboInOwl:hasRelatedSynonym>
<dc:creator rdf:resource="http://bgee.unil.ch"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/HOM_0000008"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000001"/>
<dc:source rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/20116127"/>
</owl:ObjectProperty>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1016/S0169-5347(97)01125-7"/>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1146/annurev.es.20.110189.000411"/>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/HOM_0000008"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Homology that is defined by sharing of a set of developmental constraints, caused by locally acting self-regulatory mechanisms of differentiation, between individualized parts of the phenotype.</owl:annotatedTarget>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000008"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_HOM0000009 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_HOM0000009">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in reversal relationship with</rdfs:label>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Homoplasy that involves phenotypes similar to those seen in ancestors within the lineage.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">atavism</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">reversion</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">rudiment</oboInOwl:hasExactSynonym>
<dc:creator rdf:resource="http://bgee.unil.ch"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/HOM_0000009"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000002"/>
<dc:source rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/20116127"/>
</owl:ObjectProperty>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1016/j.jhevol.2006.11.010"/>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/HOM_0000009"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Homoplasy that involves phenotypes similar to those seen in ancestors within the lineage.</owl:annotatedTarget>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000009"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_HOM0000010 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_HOM0000010">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in syntenic homology relationship with</rdfs:label>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MeSH:Synteny</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SO:0000860</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SO:0005858</oboInOwl:hasDbXref>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Structural homology that is detected by similarity in content and organization between chromosomes.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">syntenic homologous to</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">synteny</oboInOwl:hasRelatedSynonym>
<dc:creator rdf:resource="http://bgee.unil.ch"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/HOM_0000010"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000006"/>
<dc:source rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/20116127"/>
</owl:ObjectProperty>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/HOM_0000010"/>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MeSH:Synteny</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Structural homology that is detected by similarity in content and organization between chromosomes.</owl:annotatedTarget>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000010"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_HOM0000011 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_HOM0000011">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in paralogy relationship with</rdfs:label>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Historical homology that involves genes that diverged after a duplication event.</obo:IAO_0000115>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SO:0000854</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SO:0000859</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SO:paralogous_to</oboInOwl:hasDbXref>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">paralogous to</oboInOwl:hasExactSynonym>
<dc:creator rdf:resource="http://bgee.unil.ch"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/HOM_0000011"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000007"/>
<owl:propertyDisjointWith rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000017"/>
<dc:source rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/20116127"/>
</owl:ObjectProperty>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1016/S0168-9525(00)02005-9"/>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1146/annurev.genet.39.073003.114725"/>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/HOM_0000011"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Historical homology that involves genes that diverged after a duplication event.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/5449325"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000011"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_HOM0000012 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_HOM0000012">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in syntenic paralogy relationship with</rdfs:label>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Paralogy that involves sets of syntenic blocks.</obo:IAO_0000115>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">duplicon</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">paralogon</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">syntenic paralogous to</oboInOwl:hasExactSynonym>
<dc:creator rdf:resource="http://bgee.unil.ch"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/HOM_0000012"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000010"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000011"/>
<dc:source rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/20116127"/>
</owl:ObjectProperty>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DOI:10.1002/1097-010X(20001215)288:4<345::AID-JEZ7>3.0.CO;2-Y</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1186/1471-213X-7-100"/>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/HOM_0000012"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Paralogy that involves sets of syntenic blocks.</owl:annotatedTarget>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000012"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_HOM0000013 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_HOM0000013">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in syntenic orthology relationship with</rdfs:label>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Syntenic homology that involves chromosomes of different species.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">syntenic orthologous to</oboInOwl:hasExactSynonym>
<dc:creator rdf:resource="http://bgee.unil.ch"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/HOM_0000013"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000010"/>
<dc:source rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/20116127"/>
</owl:ObjectProperty>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1101/gr.6380007"/>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/HOM_0000013"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Syntenic homology that involves chromosomes of different species.</owl:annotatedTarget>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000013"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_HOM0000014 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_HOM0000014">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in partial homology relationship with</rdfs:label>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Structural homology that involves complex structures from which only a fraction of the elements that can be isolated are separately homologous.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fractional homology</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mixed homology</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">modular homology</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">partial correspondence</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">partial homologous to</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">percent homology</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">segmental homology</oboInOwl:hasExactSynonym>
<dc:creator rdf:resource="http://bgee.unil.ch"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/HOM_0000014"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000006"/>
<dc:source rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/20116127"/>
</owl:ObjectProperty>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/HOM_0000014"/>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ISBN:0123195837</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ISBN:978-0471984931</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Structural homology that involves complex structures from which only a fraction of the elements that can be isolated are separately homologous.</owl:annotatedTarget>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000014"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_HOM0000015 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_HOM0000015">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in protein structural homology relationship with</rdfs:label>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MeSH:Structural_Homology,_Protein</oboInOwl:hasDbXref>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Structural homology that is detected at the level of the 3D protein structure, but maybe not at the level of the amino acid sequence.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">protein structural homologous to</oboInOwl:hasExactSynonym>
<dc:creator rdf:resource="http://bgee.unil.ch"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/HOM_0000015"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000006"/>
<dc:source rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/20116127"/>
</owl:ObjectProperty>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1016/0022-2836(76)90195-9"/>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/HOM_0000015"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Structural homology that is detected at the level of the 3D protein structure, but maybe not at the level of the amino acid sequence.</owl:annotatedTarget>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000015"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_HOM0000016 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_HOM0000016">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in non functional homology relationship with</rdfs:label>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SO:non_functional_homolog_of</oboInOwl:hasDbXref>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Structural homology that involves a pseudogenic feature and its functional ancestor.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">non functional homologous to</oboInOwl:hasExactSynonym>
<oboInOwl:hasBroadSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pseudogene</oboInOwl:hasBroadSynonym>
<dc:creator rdf:resource="http://bgee.unil.ch"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/HOM_0000016"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000006"/>
<owl:propertyDisjointWith rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000062"/>
<dc:source rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/20116127"/>
</owl:ObjectProperty>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/HOM_0000016"/>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SO:non_functional_homolog_of</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Structural homology that involves a pseudogenic feature and its functional ancestor.</owl:annotatedTarget>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000016"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_HOM0000017 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_HOM0000017">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in orthology relationship with</rdfs:label>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ECO:00000060</oboInOwl:hasDbXref>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Historical homology that involves genes that diverged after a speciation event.</obo:IAO_0000115>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SO:0000855</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SO:0000858</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SO:orthologous_to</oboInOwl:hasDbXref>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The term is sometimes also used for anatomical structures.</rdfs:comment>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">orthologous to</oboInOwl:hasExactSynonym>
<dc:creator rdf:resource="http://bgee.unil.ch"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/HOM_0000017"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000007"/>
<dc:source rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/20116127"/>
</owl:ObjectProperty>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1007/BF02814484"/>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1016/S0168-9525(00)02005-9"/>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1146/annurev.genet.39.073003.114725"/>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/HOM_0000017"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Historical homology that involves genes that diverged after a speciation event.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/5449325"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000017"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_HOM0000018 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_HOM0000018">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in xenology relationship with</rdfs:label>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Historical homology that is characterized by an interspecies (horizontal) transfer since the common ancestor.</obo:IAO_0000115>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The term is sometimes also used for anatomical structures (e.g. in case of a symbiosis).</rdfs:comment>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">xenologous to</oboInOwl:hasExactSynonym>
<dc:creator rdf:resource="http://bgee.unil.ch"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/HOM_0000018"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000007"/>
<dc:source rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/20116127"/>
</owl:ObjectProperty>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1016/S0168-9525(00)02005-9"/>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1146/annurev.genet.39.073003.114725"/>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/HOM_0000018"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Historical homology that is characterized by an interspecies (horizontal) transfer since the common ancestor.</owl:annotatedTarget>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000018"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_HOM0000019 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_HOM0000019">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in 1 to 1 homology relationship with</rdfs:label>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1 to 1 homologous to</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1:1 homology</oboInOwl:hasExactSynonym>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Historical homology that involves two members sharing no other homologs in the lineages considered.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">one-to-one homology</oboInOwl:hasExactSynonym>
<dc:creator rdf:resource="http://bgee.unil.ch"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/HOM_0000019"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000007"/>
<dc:source rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/20116127"/>
</owl:ObjectProperty>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGEE:curator</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/HOM_0000019"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Historical homology that involves two members sharing no other homologs in the lineages considered.</owl:annotatedTarget>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000019"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_HOM0000020 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_HOM0000020">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in 1 to 1 orthology relationship with</rdfs:label>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1 to 1 orthologous to</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1:1 orthology</oboInOwl:hasExactSynonym>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Orthology that involves two genes that did not experience any duplication after the speciation event that created them.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">one-to-one orthology</oboInOwl:hasExactSynonym>
<dc:creator rdf:resource="http://bgee.unil.ch"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/HOM_0000020"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000017"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000019"/>
<dc:source rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/20116127"/>
</owl:ObjectProperty>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1007/BF02814484"/>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/HOM_0000020"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Orthology that involves two genes that did not experience any duplication after the speciation event that created them.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:resource="http://www.ensembl.org/info/docs/compara/homology_method.html"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000020"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_HOM0000022 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_HOM0000022">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in ohnology relationship with</rdfs:label>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Paralogy that results from a whole genome duplication event.</obo:IAO_0000115>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">homoeology</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ohnologous to</oboInOwl:hasExactSynonym>
<dc:creator rdf:resource="http://bgee.unil.ch"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/HOM_0000022"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000011"/>
<dc:source rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/20116127"/>
</owl:ObjectProperty>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1038/75560"/>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/HOM_0000022"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Paralogy that results from a whole genome duplication event.</owl:annotatedTarget>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000022"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_HOM0000023 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_HOM0000023">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in in-paralogy relationship with</rdfs:label>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Paralogy that results from a lineage-specific duplication subsequent to a given speciation event.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in-paralogous to</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">inparalogy</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">symparalogy</oboInOwl:hasExactSynonym>
<dc:creator rdf:resource="http://bgee.unil.ch"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/HOM_0000023"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000011"/>
<owl:propertyDisjointWith rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000024"/>
<dc:source rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/20116127"/>
</owl:ObjectProperty>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1146/annurev.genet.39.073003.114725"/>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/HOM_0000023"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Paralogy that results from a lineage-specific duplication subsequent to a given speciation event.</owl:annotatedTarget>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000023"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_HOM0000024 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_HOM0000024">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in out-paralogy relationship with</rdfs:label>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Paralogy that results from a duplication preceding a given speciation event.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">alloparalogy</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">out-paralogous to</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">outparalogy</oboInOwl:hasExactSynonym>
<dc:creator rdf:resource="http://bgee.unil.ch"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/HOM_0000024"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000011"/>
<dc:source rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/20116127"/>
</owl:ObjectProperty>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1146/annurev.genet.39.073003.114725"/>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/HOM_0000024"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Paralogy that results from a duplication preceding a given speciation event.</owl:annotatedTarget>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000024"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_HOM0000025 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_HOM0000025">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in pro-orthology relationship with</rdfs:label>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1:many orthology that involves a gene in species A and one of its ortholog in species B, when duplications more recent than the species split have occurred in species B but not in species A.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pro-orthologous to</oboInOwl:hasExactSynonym>
<dc:creator rdf:resource="http://bgee.unil.ch"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/HOM_0000025"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000034"/>
<dc:source rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/20116127"/>
</owl:ObjectProperty>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1:many orthology that involves a gene in species A and one of its ortholog in species B, when duplications more recent than the species split have occurred in species B but not in species A.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1006/scdb.1999.0338"/>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1038/nrg2099"/>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/HOM_0000025"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000025"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_HOM0000026 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_HOM0000026">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in semi-orthology relationship with</rdfs:label>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1:many orthology that involves a gene in species A and its ortholog in species B, when duplications more recent than the species split have occurred in species A but not in species B.</obo:IAO_0000115>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The converse of pro-orthologous.</rdfs:comment>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">semi-orthologous to</oboInOwl:hasExactSynonym>
<dc:creator rdf:resource="http://bgee.unil.ch"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/HOM_0000026"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000034"/>
<dc:source rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/20116127"/>
</owl:ObjectProperty>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1:many orthology that involves a gene in species A and its ortholog in species B, when duplications more recent than the species split have occurred in species A but not in species B.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1006/scdb.1999.0338"/>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1038/nrg2099"/>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/HOM_0000026"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000026"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_HOM0000027 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_HOM0000027">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in serial homology relationship with</rdfs:label>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Iterative homology that involves structures arranged along the main body axis.</obo:IAO_0000115>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">homonomy</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">serial homologous to</oboInOwl:hasExactSynonym>
<dc:creator rdf:resource="http://bgee.unil.ch"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/HOM_0000027"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000066"/>
<dc:source rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/20116127"/>
</owl:ObjectProperty>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1146/annurev.es.20.110189.000411"/>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/HOM_0000027"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Iterative homology that involves structures arranged along the main body axis.</owl:annotatedTarget>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000027"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_HOM0000028 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_HOM0000028">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in heterochronous homology relationship with</rdfs:label>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Biological homology that is characterized by changes, over evolutionary time, in the rate or timing of developmental events of homologous structures.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">heterochronous homologous to</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">heterochrony</oboInOwl:hasExactSynonym>
<dc:creator rdf:resource="http://bgee.unil.ch"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/HOM_0000028"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000008"/>
<dc:source rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/20116127"/>
</owl:ObjectProperty>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Biological homology that is characterized by changes, over evolutionary time, in the rate or timing of developmental events of homologous structures.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/HOM_0000028"/>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ISBN:978-0674639416</oboInOwl:hasDbXref>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000028"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_HOM0000029 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_HOM0000029">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in paedomorphorsis relationship with</rdfs:label>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Heterochronous homology that is produced by a retention in adults of a species of traits previously seen only in juveniles.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">juvenification</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pedomorphosis</oboInOwl:hasExactSynonym>
<dc:creator rdf:resource="http://bgee.unil.ch"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/HOM_0000029"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000028"/>
<owl:propertyDisjointWith rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000030"/>
<dc:source rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/20116127"/>
</owl:ObjectProperty>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/HOM_0000029"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Heterochronous homology that is produced by a retention in adults of a species of traits previously seen only in juveniles.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ISBN:978-0674639416</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:resource="http://en.wikipedia.org/wiki/Pedomorphosis"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000029"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_HOM0000030 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_HOM0000030">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in peramorphosis relationship with</rdfs:label>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Heterochronous homology that is produced by a maturation of individuals of a species past adulthood, which take on hitherto unseen traits.</obo:IAO_0000115>
<dc:creator rdf:resource="http://bgee.unil.ch"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/HOM_0000030"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000028"/>
<dc:source rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/20116127"/>
</owl:ObjectProperty>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/HOM_0000030"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Heterochronous homology that is produced by a maturation of individuals of a species past adulthood, which take on hitherto unseen traits.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:resource="http://en.wikipedia.org/wiki/Peramorphosis"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000030"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_HOM0000031 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_HOM0000031">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in progenesis relationship with</rdfs:label>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Paedomorphosis that is produced by precocious sexual maturation of an organism still in a morphologically juvenile stage.</obo:IAO_0000115>
<dc:creator rdf:resource="http://bgee.unil.ch"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/HOM_0000031"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000029"/>
<dc:source rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/20116127"/>
</owl:ObjectProperty>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/HOM_0000031"/>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ISBN:978-0674639416</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Paedomorphosis that is produced by precocious sexual maturation of an organism still in a morphologically juvenile stage.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:resource="http://en.wikipedia.org/wiki/Progenesis"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000031"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_HOM0000032 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_HOM0000032">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in neoteny relationship with</rdfs:label>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Paedomorphosis that is produced by a retardation of somatic development.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">juvenilization</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">neotenous to</oboInOwl:hasExactSynonym>
<dc:creator rdf:resource="http://bgee.unil.ch"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/HOM_0000032"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000029"/>
<dc:source rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/20116127"/>
</owl:ObjectProperty>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/HOM_0000032"/>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ISBN:978-0674639416</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Paedomorphosis that is produced by a retardation of somatic development.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:resource="http://en.wikipedia.org/wiki/Neoteny"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000032"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_HOM0000033 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_HOM0000033">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in mimicry relationship with</rdfs:label>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Convergence that results from co-evolution usually involving an evolutionary arms race.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mimicrous to</oboInOwl:hasExactSynonym>
<dc:creator rdf:resource="http://bgee.unil.ch"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/HOM_0000033"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000004"/>
<dc:source rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/20116127"/>
</owl:ObjectProperty>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Convergence that results from co-evolution usually involving an evolutionary arms race.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/HOM_0000033"/>
<oboInOwl:hasDbXref rdf:resource="http://en.wikipedia.org/wiki/Mimicry"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000033"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_HOM0000034 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_HOM0000034">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in 1 to many orthology relationship with</rdfs:label>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1 to many orthologous to</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1:many orthology</oboInOwl:hasExactSynonym>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Orthology that involves two genes when duplications more recent than the species split have occurred in one species but not the other.</obo:IAO_0000115>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">co-orthology</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">many to 1 orthology</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">one-to-many orthology</oboInOwl:hasExactSynonym>
<dc:creator rdf:resource="http://bgee.unil.ch"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/HOM_0000034"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000017"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000037"/>
<dc:source rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/20116127"/>
</owl:ObjectProperty>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1038/415741a"/>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/HOM_0000034"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Orthology that involves two genes when duplications more recent than the species split have occurred in one species but not the other.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:resource="http://www.ensembl.org/info/docs/compara/homology_method.html"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000034"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_HOM0000036 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_HOM0000036">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in many to many homology relationship with</rdfs:label>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Historical homology that involves two members of a larger set of homologs.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">many to many homologous to</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">many-to-many homology</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">many:many homology </oboInOwl:hasExactSynonym>
<dc:creator rdf:resource="http://bgee.unil.ch"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/HOM_0000036"/>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000007"/>
<dc:source rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/20116127"/>
</owl:ObjectProperty>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:resource="http://dx.doi.org/10.1093/molbev/msp002"/>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/HOM_0000036"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Historical homology that involves two members of a larger set of homologs.</owl:annotatedTarget>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_HOM0000036"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_HOM0000037 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_HOM0000037">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in 1 to many homology relationship with</rdfs:label>