forked from nicolevasilevsky/omia
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathomia.obo
More file actions
7668 lines (6388 loc) · 196 KB
/
omia.obo
File metadata and controls
7668 lines (6388 loc) · 196 KB
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
format-version: 1.2
data-version: releases/2021-02-05
subsetdef: http://purl.obolibrary.org/obo/valid_for_go_annotation_extension ""
subsetdef: http://purl.obolibrary.org/obo/valid_for_go_gp2term ""
subsetdef: http://purl.obolibrary.org/obo/valid_for_go_ontology ""
subsetdef: http://purl.obolibrary.org/obo/valid_for_gocam ""
subsetdef: ro-eco ""
subsetdef: RO:0002259 ""
ontology: omia
property_value: http://purl.org/dc/elements/1.1/description "None" xsd:string
property_value: http://purl.org/dc/elements/1.1/title "Online Inheritance of Animals Ontology" xsd:string
property_value: http://purl.org/dc/terms/license https://creativecommons.org/licenses/unspecified
property_value: owl:versionInfo "2021-02-05" xsd:string
[Term]
id: BFO:0000002
name: continuant
def: "An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts." []
disjoint_from: BFO:0000003 ! occurrent
relationship: BFO:0000050 BFO:0000002 ! part of continuant
[Term]
id: BFO:0000003
name: occurrent
def: "An entity that has temporal parts and that happens, unfolds or develops through time." []
relationship: BFO:0000050 BFO:0000003 ! part of occurrent
[Term]
id: BFO:0000004
name: independent continuant
def: "A continuant that is a bearer of quality and realizable entity entities, in which other entities inhere and which itself cannot inhere in anything." []
is_a: BFO:0000002 ! continuant
relationship: BFO:0000050 BFO:0000004 ! part of independent continuant
[Term]
id: BFO:0000015
name: process
def: "An occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t." []
is_a: BFO:0000003 ! occurrent
[Term]
id: BFO:0000040
name: material entity
def: "An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time." []
is_a: BFO:0000004 ! independent continuant
[Term]
id: CARO:0000000
name: anatomical entity
is_a: CARO:0030000 ! biological entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/caro.owl
[Term]
id: CARO:0001010
name: organism or virus or viroid
is_a: BFO:0000040 ! material entity
[Term]
id: CARO:0030000
name: biological entity
is_a: BFO:0000004 ! independent continuant
[Term]
id: GO:0003674
name: molecular_function
is_a: BFO:0000015 ! process
property_value: IAO:0000589 "molecular process" xsd:string
[Term]
id: GO:0003824
name: catalytic activity
is_a: GO:0003674 ! molecular_function
[Term]
id: GO:0008150
name: biological_process
is_a: BFO:0000015 ! process
[Term]
id: GO:0016301
name: kinase activity
is_a: GO:0016772 ! transferase activity, transferring phosphorus-containing groups
[Term]
id: GO:0016740
name: transferase activity
is_a: GO:0003824 ! catalytic activity
[Term]
id: GO:0016772
name: transferase activity, transferring phosphorus-containing groups
is_a: GO:0016740 ! transferase activity
[Term]
id: NCBITaxon:10042
property_value: prefLabel "North American deer mouse" xsd:string
[Term]
id: NCBITaxon:10152
property_value: prefLabel "Short-tailed chinchilla" xsd:string
[Term]
id: NCBITaxon:30521
property_value: prefLabel "Domestic Yak" xsd:string
[Term]
id: NCBITaxon:37174
property_value: prefLabel "Bighorn Sheep" xsd:string
[Term]
id: NCBITaxon:8835
property_value: prefLabel "Mallard duck" xsd:string
[Term]
id: NCBITaxon:8839
property_value: prefLabel "Muscovy Duck (domestic type)" xsd:string
[Term]
id: NCBITaxon:8843
property_value: prefLabel "Domestic goose" xsd:string
[Term]
id: NCBITaxon:8848
property_value: prefLabel "Domestic goose" xsd:string
[Term]
id: NCBITaxon:8932
property_value: prefLabel "Rock pigeon" xsd:string
[Term]
id: NCBITaxon:89462
property_value: prefLabel "Water Buffalo" xsd:string
[Term]
id: NCBITaxon:9031
property_value: prefLabel "Chicken" xsd:string
[Term]
id: NCBITaxon:9091
property_value: prefLabel "Common quail" xsd:string
[Term]
id: NCBITaxon:9103
property_value: prefLabel "Turkey" xsd:string
[Term]
id: NCBITaxon:9615
property_value: prefLabel "Dog" xsd:string
[Term]
id: NCBITaxon:9685
property_value: prefLabel "Domestic cat" xsd:string
[Term]
id: NCBITaxon:9793
property_value: prefLabel "Ass" xsd:string
[Term]
id: NCBITaxon:9796
property_value: prefLabel "Horse" xsd:string
[Term]
id: NCBITaxon:9823
property_value: prefLabel "Pig" xsd:string
[Term]
id: NCBITaxon:9913
property_value: prefLabel "Cattle" xsd:string
[Term]
id: NCBITaxon:9915
property_value: prefLabel "Bos indicus" xsd:string
[Term]
id: NCBITaxon:9925
property_value: prefLabel "Goat" xsd:string
[Term]
id: NCBITaxon:9939
property_value: prefLabel "Ovis spp." xsd:string
[Term]
id: NCBITaxon:9940
property_value: prefLabel "Sheep" xsd:string
[Term]
id: NCBITaxon:9986
property_value: prefLabel "Rabbit" xsd:string
[Term]
id: OMIA:00000000
name: root node
[Term]
id: OMIA:1
name: Nubian
relationship: RO:0002162 NCBITaxon:9925 ! in taxon
property_value: lbo_id LBO:0000958 xsd:string
[Term]
id: OMIA:10
name: Wire-haired dachshund
relationship: RO:0002162 NCBITaxon:9615 ! in taxon
property_value: venom_code "13961" xsd:string
[Term]
id: OMIA:100
name: Red Spotted Czech
relationship: RO:0002162 NCBITaxon:9913 ! in taxon
[Term]
id: OMIA:1000
name: Highland
relationship: RO:0002162 NCBITaxon:9913 ! in taxon
property_value: lbo_id LBO:0000129 xsd:string
[Term]
id: OMIA:1001
name: Eskimo Spitz
relationship: RO:0002162 NCBITaxon:9615 ! in taxon
[Term]
id: OMIA:1002
name: Chinese Xingyi
relationship: RO:0002162 NCBITaxon:9031 ! in taxon
[Term]
id: OMIA:1003
name: Japanese game fowl
relationship: RO:0002162 NCBITaxon:9031 ! in taxon
[Term]
id: OMIA:1004
name: Trakehner
relationship: RO:0002162 NCBITaxon:9796 ! in taxon
property_value: lbo_id LBO:0000913 xsd:string
property_value: venom_code "79273" xsd:string
[Term]
id: OMIA:1005
name: Morgan
relationship: RO:0002162 NCBITaxon:9796 ! in taxon
property_value: lbo_id LBO:0000843 xsd:string
property_value: venom_code "79196" xsd:string
[Term]
id: OMIA:1006
name: American Miniature Horse
relationship: RO:0002162 NCBITaxon:9796 ! in taxon
property_value: venom_code "79031" xsd:string
[Term]
id: OMIA:1007
name: Old-Tori
relationship: RO:0002162 NCBITaxon:9796 ! in taxon
property_value: lbo_id LBO:0000912 xsd:string
[Term]
id: OMIA:1008
name: Bama miniature
relationship: RO:0002162 NCBITaxon:9823 ! in taxon
[Term]
id: OMIA:1009
name: Mongolian Turano
relationship: RO:0002162 NCBITaxon:9913 ! in taxon
[Term]
id: OMIA:101
name: Kerry
relationship: RO:0002162 NCBITaxon:9913 ! in taxon
property_value: lbo_id LBO:0000153 xsd:string
[Term]
id: OMIA:1010
name: Camarillo White Horse
relationship: RO:0002162 NCBITaxon:9796 ! in taxon
[Term]
id: OMIA:1011
name: Japanese Draft
relationship: RO:0002162 NCBITaxon:9796 ! in taxon
[Term]
id: OMIA:1012
name: Welsh Pony
relationship: RO:0002162 NCBITaxon:9796 ! in taxon
property_value: lbo_id LBO:0000919 xsd:string
property_value: venom_code "79279" xsd:string
[Term]
id: OMIA:1013
name: Noriker
relationship: RO:0002162 NCBITaxon:9796 ! in taxon
[Term]
id: OMIA:1014
name: Gipsy
relationship: RO:0002162 NCBITaxon:9796 ! in taxon
[Term]
id: OMIA:1015
name: South German Draft
relationship: RO:0002162 NCBITaxon:9796 ! in taxon
[Term]
id: OMIA:1016
name: Swiss Warmblood
relationship: RO:0002162 NCBITaxon:9796 ! in taxon
property_value: lbo_id LBO:0000932 xsd:string
property_value: venom_code "79263" xsd:string
[Term]
id: OMIA:1017
name: Phal̬ne
relationship: RO:0002162 NCBITaxon:9615 ! in taxon
property_value: venom_code "14516" xsd:string
[Term]
id: OMIA:1018
name: Thai Ridgeback
relationship: RO:0002162 NCBITaxon:9615 ! in taxon
property_value: fci_id "338" xsd:string
property_value: venom_code "14635" xsd:string
[Term]
id: OMIA:1019
name: Netherland Dwarf
relationship: RO:0002162 NCBITaxon:9986 ! in taxon
property_value: venom_code "18609" xsd:string
[Term]
id: OMIA:102
name: Karakul
relationship: RO:0002162 NCBITaxon:9940 ! in taxon
property_value: lbo_id LBO:0000531 xsd:string
[Term]
id: OMIA:1020
name: Loh
relationship: RO:0002162 NCBITaxon:9986 ! in taxon
[Term]
id: OMIA:1021
name: Lionhead Dwarf
relationship: RO:0002162 NCBITaxon:9986 ! in taxon
property_value: venom_code "18584" xsd:string
[Term]
id: OMIA:1022
name: Danish Holstein
relationship: RO:0002162 NCBITaxon:9913 ! in taxon
[Term]
id: OMIA:1023
name: Miniature Horse
relationship: RO:0002162 NCBITaxon:9796 ! in taxon
property_value: venom_code "79188" xsd:string
[Term]
id: OMIA:1024
name: Italian Greyhound
relationship: RO:0002162 NCBITaxon:9615 ! in taxon
property_value: venom_code "14047" xsd:string
[Term]
id: OMIA:1025
name: Large Munster-lander
relationship: RO:0002162 NCBITaxon:9615 ! in taxon
property_value: venom_code "14563" xsd:string
[Term]
id: OMIA:1026
name: Glen of Imaal Terrier
relationship: RO:0002162 NCBITaxon:9615 ! in taxon
property_value: venom_code "15005" xsd:string
[Term]
id: OMIA:1027
name: Saarloo
relationship: RO:0002162 NCBITaxon:9615 ! in taxon
property_value: venom_code "22425" xsd:string
[Term]
id: OMIA:1028
name: Czechoslovakian wolfdog
relationship: RO:0002162 NCBITaxon:9615 ! in taxon
property_value: venom_code "19071" xsd:string
[Term]
id: OMIA:1029
name: Swedish Briard
relationship: RO:0002162 NCBITaxon:9615 ! in taxon
[Term]
id: OMIA:103
name: Belmont Red
relationship: RO:0002162 NCBITaxon:9913 ! in taxon
property_value: lbo_id LBO:0000045 xsd:string
[Term]
id: OMIA:1030
name: Plott Hound
relationship: RO:0002162 NCBITaxon:9615 ! in taxon
property_value: venom_code "14202" xsd:string
[Term]
id: OMIA:1031
name: New Zealand Huntaway dog
relationship: RO:0002162 NCBITaxon:9615 ! in taxon
property_value: venom_code "14721" xsd:string
[Term]
id: OMIA:1033
name: German Holstein
relationship: RO:0002162 NCBITaxon:9913 ! in taxon
[Term]
id: OMIA:1034
name: Swiss Holstein
relationship: RO:0002162 NCBITaxon:9913 ! in taxon
[Term]
id: OMIA:1035
name: Friesian-Jersey mosaic
relationship: RO:0002162 NCBITaxon:9913 ! in taxon
[Term]
id: OMIA:1036
name: American Brown Swiss
relationship: RO:0002162 NCBITaxon:9913 ! in taxon
[Term]
id: OMIA:1037
name: Beef Booster Composite
relationship: RO:0002162 NCBITaxon:9913 ! in taxon
[Term]
id: OMIA:1038
name: Booroola
relationship: RO:0002162 NCBITaxon:9940 ! in taxon
property_value: lbo_id LBO:0000445 xsd:string
[Term]
id: OMIA:1039
name: Brazilian Santa In̻s
relationship: RO:0002162 NCBITaxon:9940 ! in taxon
property_value: lbo_id LBO:0000609 xsd:string
[Term]
id: OMIA:104
name: Bernese Mountain dog
relationship: RO:0002162 NCBITaxon:9615 ! in taxon
property_value: venom_code "14443" xsd:string
[Term]
id: OMIA:1040
name: Norwegian breeds
relationship: RO:0002162 NCBITaxon:9940 ! in taxon
[Term]
id: OMIA:1041
name: Bashkir Curly Horse
relationship: RO:0002162 NCBITaxon:9796 ! in taxon
property_value: lbo_id LBO:0000739 xsd:string
[Term]
id: OMIA:1042
name: Fell Pony
relationship: RO:0002162 NCBITaxon:9796 ! in taxon
property_value: lbo_id LBO:0000782 xsd:string
property_value: venom_code "79119" xsd:string
[Term]
id: OMIA:1043
name: Dales Pony
relationship: RO:0002162 NCBITaxon:9796 ! in taxon
property_value: lbo_id LBO:0000765 xsd:string
property_value: venom_code "79103" xsd:string
[Term]
id: OMIA:1044
name: Pinto Horse
relationship: RO:0002162 NCBITaxon:9796 ! in taxon
property_value: lbo_id LBO:0000870 xsd:string
property_value: venom_code "79226" xsd:string
[Term]
id: OMIA:1045
name: Knabstrupper
relationship: RO:0002162 NCBITaxon:9796 ! in taxon
property_value: lbo_id LBO:0000822 xsd:string
property_value: venom_code "79174" xsd:string
[Term]
id: OMIA:1046
name: Pony of the Americas
relationship: RO:0002162 NCBITaxon:9796 ! in taxon
property_value: lbo_id LBO:0000872 xsd:string
[Term]
id: OMIA:1047
name: British Spotted Pony
relationship: RO:0002162 NCBITaxon:9796 ! in taxon
property_value: venom_code "79077" xsd:string
[Term]
id: OMIA:1048
name: Australian Spotted Pony
relationship: RO:0002162 NCBITaxon:9796 ! in taxon
[Term]
id: OMIA:1049
name: Peruvian Paso
relationship: RO:0002162 NCBITaxon:9796 ! in taxon
property_value: lbo_id LBO:0000866 xsd:string
[Term]
id: OMIA:105
name: Ayrshire
relationship: RO:0002162 NCBITaxon:9913 ! in taxon
property_value: lbo_id LBO:0000029 xsd:string
[Term]
id: OMIA:1050
name: Wisconsin hypoalpha mutant (WHAM)
relationship: RO:0002162 NCBITaxon:9031 ! in taxon
[Term]
id: OMIA:1051
name: Connecticut (CT) strain
relationship: RO:0002162 NCBITaxon:9031 ! in taxon
[Term]
id: OMIA:1052
name: S2 line
relationship: RO:0002162 NCBITaxon:9031 ! in taxon
[Term]
id: OMIA:1053
name: Fayoumi eplipeptic strain
relationship: RO:0002162 NCBITaxon:9031 ! in taxon
[Term]
id: OMIA:1054
name: Huiyang Bearded
relationship: RO:0002162 NCBITaxon:9031 ! in taxon
[Term]
id: OMIA:1055
name: NH-413 strain
relationship: RO:0002162 NCBITaxon:9031 ! in taxon
[Term]
id: OMIA:1056
name: OPN strain
relationship: RO:0002162 NCBITaxon:9031 ! in taxon
[Term]
id: OMIA:1057
name: Polymorphic Nucleolar (PNU) strain
relationship: RO:0002162 NCBITaxon:9031 ! in taxon
[Term]
id: OMIA:1058
name: ISA Brown
relationship: RO:0002162 NCBITaxon:9031 ! in taxon
[Term]
id: OMIA:1059
name: Lohmann Brown
relationship: RO:0002162 NCBITaxon:9031 ! in taxon
[Term]
id: OMIA:106
name: Brown Swiss
relationship: RO:0002162 NCBITaxon:9913 ! in taxon
property_value: lbo_id LBO:0000063 xsd:string
[Term]
id: OMIA:1060
name: Marans
relationship: RO:0002162 NCBITaxon:9031 ! in taxon
[Term]
id: OMIA:1061
name: TETRA
relationship: RO:0002162 NCBITaxon:9031 ! in taxon
[Term]
id: OMIA:1062
name: Transylvanian naked neck
relationship: RO:0002162 NCBITaxon:9031 ! in taxon
property_value: lbo_id LBO:0000320 xsd:string
[Term]
id: OMIA:1063
name: Beijing You
relationship: RO:0002162 NCBITaxon:9031 ! in taxon
[Term]
id: OMIA:1064
name: German Hunting Terrier
relationship: RO:0002162 NCBITaxon:9615 ! in taxon
property_value: venom_code "15004" xsd:string
[Term]
id: OMIA:1065
name: Limonero
relationship: RO:0002162 NCBITaxon:9913 ! in taxon
[Term]
id: OMIA:1066
name: Appenzeller Barthuhn
relationship: RO:0002162 NCBITaxon:9031 ! in taxon
property_value: lbo_id LBO:0000275 xsd:string
[Term]
id: OMIA:1067
name: Miniature Bull Terrier
relationship: RO:0002162 NCBITaxon:9615 ! in taxon
property_value: venom_code "14992" xsd:string
[Term]
id: OMIA:1068
name: Commercial lines
relationship: RO:0002162 NCBITaxon:9103 ! in taxon
[Term]
id: OMIA:1069
name: Polski Owczarek Nizinny
relationship: RO:0002162 NCBITaxon:9615 ! in taxon
[Term]
id: OMIA:107
name: Dairy Shorthorn
relationship: RO:0002162 NCBITaxon:9913 ! in taxon
property_value: lbo_id LBO:0000182 xsd:string
[Term]
id: OMIA:1070
name: Polski Owczarek Podhalanski
relationship: RO:0002162 NCBITaxon:9615 ! in taxon
property_value: venom_code "14725" xsd:string
[Term]
id: OMIA:1071
name: FH-r strain
relationship: RO:0002162 NCBITaxon:9823 ! in taxon
[Term]
id: OMIA:1072
name: Lipizzan
relationship: RO:0002162 NCBITaxon:9796 ! in taxon
property_value: lbo_id LBO:0000827 xsd:string
property_value: venom_code "79180" xsd:string
[Term]
id: OMIA:1073
name: Rouge-des-Pr̩s
relationship: RO:0002162 NCBITaxon:9913 ! in taxon
[Term]
id: OMIA:1074
name: Irish soft-coated wheaten terrier
relationship: RO:0002162 NCBITaxon:9615 ! in taxon
property_value: venom_code "22414" xsd:string
[Term]
id: OMIA:1075
name: Schnauzer-Beagle cross
relationship: RO:0002162 NCBITaxon:9615 ! in taxon
[Term]
id: OMIA:1076
name: Normand
relationship: RO:0002162 NCBITaxon:9793 ! in taxon
[Term]
id: OMIA:1077
name: miniature donkey
relationship: RO:0002162 NCBITaxon:9793 ! in taxon
[Term]
id: OMIA:1078
name: Miniature
relationship: RO:0002162 NCBITaxon:9796 ! in taxon
property_value: lbo_id LBO:0000837 xsd:string
[Term]
id: OMIA:1079
name: Miniature American Shepherd
relationship: RO:0002162 NCBITaxon:9615 ! in taxon
property_value: venom_code "22605" xsd:string
[Term]
id: OMIA:108
name: Pietrain
relationship: RO:0002162 NCBITaxon:9823 ! in taxon
property_value: lbo_id LBO:0000395 xsd:string
[Term]
id: OMIA:1080
name: Italian Holstein
relationship: RO:0002162 NCBITaxon:9913 ! in taxon
[Term]
id: OMIA:1081
name: Italian Holstein
relationship: RO:0002162 NCBITaxon:9913 ! in taxon
[Term]
id: OMIA:1082
name: Belgian draft horse
relationship: RO:0002162 NCBITaxon:9796 ! in taxon
property_value: venom_code "79063" xsd:string
[Term]
id: OMIA:1083
name: American Bully
relationship: RO:0002162 NCBITaxon:9615 ! in taxon
[Term]
id: OMIA:1084
name: Galgo Espa̱ol
relationship: RO:0002162 NCBITaxon:9615 ! in taxon
property_value: venom_code "14072" xsd:string
[Term]
id: OMIA:1085
name: Magyar Ag��r
relationship: RO:0002162 NCBITaxon:9615 ! in taxon
property_value: venom_code "14046" xsd:string
[Term]
id: OMIA:1086
name: Komondor
relationship: RO:0002162 NCBITaxon:9615 ! in taxon
property_value: venom_code "14317" xsd:string
[Term]
id: OMIA:1087
name: German Angus
relationship: RO:0002162 NCBITaxon:9913 ! in taxon
property_value: lbo_id LBO:0000111 xsd:string
[Term]
id: OMIA:1088
name: American Bashkir Curly horse
relationship: RO:0002162 NCBITaxon:9796 ! in taxon
[Term]
id: OMIA:1089
name: Missouri Foxtrotter
relationship: RO:0002162 NCBITaxon:9796 ! in taxon
property_value: lbo_id LBO:0000839 xsd:string
[Term]
id: OMIA:1090
name: American Akita
relationship: RO:0002162 NCBITaxon:9615 ! in taxon
property_value: venom_code "13639" xsd:string
[Term]
id: OMIA:1091
name: French Bulldog
relationship: RO:0002162 NCBITaxon:9615 ! in taxon
property_value: venom_code "13768" xsd:string
[Term]
id: OMIA:1092
name: Wyandotte
relationship: RO:0002162 NCBITaxon:9031 ! in taxon
property_value: lbo_id LBO:0000336 xsd:string
[Term]
id: OMIA:1093
name: Orpington
relationship: RO:0002162 NCBITaxon:9031 ! in taxon
property_value: lbo_id LBO:0000323 xsd:string
[Term]
id: OMIA:1094
name: Miniature Zebu
relationship: RO:0002162 NCBITaxon:9913 ! in taxon
[Term]
id: OMIA:1095
name: Scottish Highland
relationship: RO:0002162 NCBITaxon:9913 ! in taxon
[Term]
id: OMIA:1096
name: American Hairless Terrier
relationship: RO:0002162 NCBITaxon:9615 ! in taxon
property_value: venom_code "14951" xsd:string
[Term]
id: OMIA:1097
name: Spanish horse
relationship: RO:0002162 NCBITaxon:9796 ! in taxon
[Term]
id: OMIA:1098
name: Standardbred �� Tennessee Walking Horse cross
relationship: RO:0002162 NCBITaxon:9796 ! in taxon
[Term]
id: OMIA:1099
name: Purebred Spanish horse
relationship: RO:0002162 NCBITaxon:9796 ! in taxon
[Term]
id: OMIA:11
name: German Shepherd Dog
relationship: RO:0002162 NCBITaxon:9615 ! in taxon
property_value: venom_code "14796" xsd:string
[Term]
id: OMIA:110
name: Shetland Pony
relationship: RO:0002162 NCBITaxon:9796 ! in taxon
property_value: lbo_id LBO:0000890 xsd:string
property_value: venom_code "79246" xsd:string
[Term]
id: OMIA:1100
name: Alpine Dachsbracke
relationship: RO:0002162 NCBITaxon:9615 ! in taxon
property_value: venom_code "13928" xsd:string
[Term]
id: OMIA:1101
name: Spanish greyhound
relationship: RO:0002162 NCBITaxon:9615 ! in taxon
property_value: fci_id "285" xsd:string
property_value: venom_code "14072" xsd:string
[Term]
id: OMIA:1102
name: Petit Basset Griffon Vend̩en
relationship: RO:0002162 NCBITaxon:9615 ! in taxon
property_value: venom_code "14075" xsd:string
[Term]
id: OMIA:1103
name: Kurilian Bobtail
relationship: RO:0002162 NCBITaxon:9685 ! in taxon
property_value: fci_id "15291" xsd:string
property_value: venom_code "15290" xsd:string
[Term]
id: OMIA:1104
name: Northern Inuit Dog
relationship: RO:0002162 NCBITaxon:9615 ! in taxon
property_value: venom_code "14283" xsd:string
[Term]
id: OMIA:1105
name: Gute
relationship: RO:0002162 NCBITaxon:9940 ! in taxon
property_value: lbo_id LBO:0000511 xsd:string
[Term]
id: OMIA:1106
name: V�_rmland
relationship: RO:0002162 NCBITaxon:9940 ! in taxon
[Term]
id: OMIA:1107
name: Helsinge
relationship: RO:0002162 NCBITaxon:9940 ! in taxon
[Term]
id: OMIA:1108
name: Kl̦vsj̦
relationship: RO:0002162 NCBITaxon:9940 ! in taxon
[Term]
id: OMIA:1109
name: Massese
relationship: RO:0002162 NCBITaxon:9940 ! in taxon
property_value: lbo_id LBO:0000553 xsd:string
[Term]
id: OMIA:111
name: Finnsheep
relationship: RO:0002162 NCBITaxon:9940 ! in taxon
property_value: lbo_id LBO:0000495 xsd:string
[Term]
id: OMIA:1111
name: Tux-Zillertaler
relationship: RO:0002162 NCBITaxon:9913 ! in taxon
[Term]
id: OMIA:1112
name: Slovenian Cika
relationship: RO:0002162 NCBITaxon:9913 ! in taxon
property_value: lbo_id LBO:0000245 xsd:string
[Term]
id: OMIA:1113
name: British Gloucester
relationship: RO:0002162 NCBITaxon:9913 ! in taxon
[Term]
id: OMIA:1114
name: Spanish Berrenda en negro
relationship: RO:0002162 NCBITaxon:9913 ! in taxon
property_value: lbo_id LBO:0000048 xsd:string
[Term]
id: OMIA:1115
name: Eringer
relationship: RO:0002162 NCBITaxon:9913 ! in taxon
[Term]
id: OMIA:1116
name: Evol̬ner
relationship: RO:0002162 NCBITaxon:9913 ! in taxon
property_value: lbo_id LBO:0000099 xsd:string
[Term]
id: OMIA:1117
name: French Holstein
relationship: RO:0002162 NCBITaxon:9913 ! in taxon
[Term]
id: OMIA:1118
name: Valais Red
relationship: RO:0002162 NCBITaxon:9940 ! in taxon
[Term]
id: OMIA:1119
name: Standard Schnauzer
relationship: RO:0002162 NCBITaxon:9615 ! in taxon
property_value: venom_code "14673" xsd:string
[Term]
id: OMIA:112
name: Dorset Horn
relationship: RO:0002162 NCBITaxon:9940 ! in taxon
[Term]
id: OMIA:1120
name: Cinta Senese
relationship: RO:0002162 NCBITaxon:9823 ! in taxon
[Term]
id: OMIA:1121
name: Mexican Pelibuey
relationship: RO:0002162 NCBITaxon:9940 ! in taxon
[Term]
id: OMIA:1122
name: Gypsy
relationship: RO:0002162 NCBITaxon:9796 ! in taxon
[Term]
id: OMIA:1123
name: Istrian Pramenka
relationship: RO:0002162 NCBITaxon:9940 ! in taxon
[Term]
id: OMIA:1124
name: Mie-Jidori
relationship: RO:0002162 NCBITaxon:9031 ! in taxon
[Term]
id: OMIA:1125
name: Tennessee Walking Horse
relationship: RO:0002162 NCBITaxon:9796 ! in taxon
property_value: lbo_id LBO:0000907 xsd:string
property_value: venom_code "79265" xsd:string
[Term]
id: OMIA:1126
name: Norwegian Dairy Goat
relationship: RO:0002162 NCBITaxon:9925 ! in taxon
[Term]
id: OMIA:1127
name: Synthetic
relationship: RO:0002162 NCBITaxon:9823 ! in taxon
[Term]
id: OMIA:1128
name: Altay
relationship: RO:0002162 NCBITaxon:9940 ! in taxon
property_value: lbo_id LBO:0000419 xsd:string
[Term]
id: OMIA:1129
name: Australian Kelpie
relationship: RO:0002162 NCBITaxon:9615 ! in taxon
property_value: venom_code "13675" xsd:string
[Term]
id: OMIA:113