-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdpo-edit.owl
3159 lines (2552 loc) · 240 KB
/
dpo-edit.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
Prefix(:=<http://purl.obolibrary.org/obo/dpo.owl#>)
Prefix(obo:=<http://purl.obolibrary.org/obo/>)
Prefix(owl:=<http://www.w3.org/2002/07/owl#>)
Prefix(rdf:=<http://www.w3.org/1999/02/22-rdf-syntax-ns#>)
Prefix(xml:=<http://www.w3.org/XML/1998/namespace>)
Prefix(xsd:=<http://www.w3.org/2001/XMLSchema#>)
Prefix(FBcv:=<http://purl.obolibrary.org/obo/FBcv#>)
Prefix(fbcv:=<http://purl.obolibrary.org/obo/fbcv#>)
Prefix(rdfs:=<http://www.w3.org/2000/01/rdf-schema#>)
Prefix(dcterms:=<http://purl.org/dc/terms/>)
Prefix(oboInOwl:=<http://www.geneontology.org/formats/oboInOwl#>)
Ontology(<http://purl.obolibrary.org/obo/dpo.owl>
Import(<http://purl.obolibrary.org/obo/dpo/components/lethal_class_hierarchy.owl>)
Import(<http://purl.obolibrary.org/obo/dpo/imports/merged_import.owl>)
Import(<http://purl.obolibrary.org/obo/dpo/patterns/definitions.owl>)
Annotation(<http://creativecommons.org/ns#attributionURL> "http://dx.doi.org/10.1186/2041-1480-4-30")
Annotation(obo:IAO_0000700 obo:FBcv_0000347)
Annotation(dcterms:creator "http://orcid.org/0000-0002-1373-1705")
Annotation(dcterms:creator "http://orcid.org/0000-0002-7073-9172")
Annotation(dcterms:creator "https://orcid.org/0000-0001-5948-3092")
Annotation(dcterms:creator "https://orcid.org/0000-0002-0027-0858")
Annotation(dcterms:description "An ontology for the description of Drosophila melanogaster phenotypes.")
Annotation(dcterms:license "https://creativecommons.org/licenses/by/4.0/")
Annotation(dcterms:title "Drosophila Phenotype Ontology (DPO)")
Annotation(oboInOwl:default-namespace "FlyBase miscellaneous CV")
Declaration(Class(obo:FBbt_00000001))
Declaration(Class(obo:FBbt_00004113))
Declaration(Class(obo:FBbt_00004508))
Declaration(Class(obo:FBbt_00004856))
Declaration(Class(obo:FBbt_00005093))
Declaration(Class(obo:FBbt_00005155))
Declaration(Class(obo:FBbt_00005162))
Declaration(Class(obo:FBbt_00005168))
Declaration(Class(obo:FBbt_00007001))
Declaration(Class(obo:FBbt_00007002))
Declaration(Class(obo:FBbt_00007016))
Declaration(Class(obo:FBbt_00007230))
Declaration(Class(obo:FBbt_00007234))
Declaration(Class(obo:FBbt_00007235))
Declaration(Class(obo:FBbt_00100313))
Declaration(Class(obo:FBbt_10000000))
Declaration(Class(obo:FBcv_0000002))
Declaration(Class(obo:FBcv_0000006))
Declaration(Class(obo:FBcv_0000007))
Declaration(Class(obo:FBcv_0000008))
Declaration(Class(obo:FBcv_0000316))
Declaration(Class(obo:FBcv_0000324))
Declaration(Class(obo:FBcv_0000325))
Declaration(Class(obo:FBcv_0000347))
Declaration(Class(obo:FBcv_0000348))
Declaration(Class(obo:FBcv_0000349))
Declaration(Class(obo:FBcv_0000350))
Declaration(Class(obo:FBcv_0000351))
Declaration(Class(obo:FBcv_0000352))
Declaration(Class(obo:FBcv_0000353))
Declaration(Class(obo:FBcv_0000354))
Declaration(Class(obo:FBcv_0000355))
Declaration(Class(obo:FBcv_0000356))
Declaration(Class(obo:FBcv_0000357))
Declaration(Class(obo:FBcv_0000358))
Declaration(Class(obo:FBcv_0000359))
Declaration(Class(obo:FBcv_0000360))
Declaration(Class(obo:FBcv_0000361))
Declaration(Class(obo:FBcv_0000362))
Declaration(Class(obo:FBcv_0000363))
Declaration(Class(obo:FBcv_0000364))
Declaration(Class(obo:FBcv_0000365))
Declaration(Class(obo:FBcv_0000366))
Declaration(Class(obo:FBcv_0000367))
Declaration(Class(obo:FBcv_0000368))
Declaration(Class(obo:FBcv_0000369))
Declaration(Class(obo:FBcv_0000370))
Declaration(Class(obo:FBcv_0000371))
Declaration(Class(obo:FBcv_0000372))
Declaration(Class(obo:FBcv_0000373))
Declaration(Class(obo:FBcv_0000374))
Declaration(Class(obo:FBcv_0000375))
Declaration(Class(obo:FBcv_0000376))
Declaration(Class(obo:FBcv_0000377))
Declaration(Class(obo:FBcv_0000378))
Declaration(Class(obo:FBcv_0000379))
Declaration(Class(obo:FBcv_0000380))
Declaration(Class(obo:FBcv_0000381))
Declaration(Class(obo:FBcv_0000382))
Declaration(Class(obo:FBcv_0000383))
Declaration(Class(obo:FBcv_0000384))
Declaration(Class(obo:FBcv_0000385))
Declaration(Class(obo:FBcv_0000386))
Declaration(Class(obo:FBcv_0000387))
Declaration(Class(obo:FBcv_0000388))
Declaration(Class(obo:FBcv_0000389))
Declaration(Class(obo:FBcv_0000390))
Declaration(Class(obo:FBcv_0000391))
Declaration(Class(obo:FBcv_0000392))
Declaration(Class(obo:FBcv_0000393))
Declaration(Class(obo:FBcv_0000394))
Declaration(Class(obo:FBcv_0000395))
Declaration(Class(obo:FBcv_0000396))
Declaration(Class(obo:FBcv_0000397))
Declaration(Class(obo:FBcv_0000398))
Declaration(Class(obo:FBcv_0000399))
Declaration(Class(obo:FBcv_0000400))
Declaration(Class(obo:FBcv_0000401))
Declaration(Class(obo:FBcv_0000402))
Declaration(Class(obo:FBcv_0000403))
Declaration(Class(obo:FBcv_0000404))
Declaration(Class(obo:FBcv_0000405))
Declaration(Class(obo:FBcv_0000406))
Declaration(Class(obo:FBcv_0000407))
Declaration(Class(obo:FBcv_0000408))
Declaration(Class(obo:FBcv_0000409))
Declaration(Class(obo:FBcv_0000410))
Declaration(Class(obo:FBcv_0000411))
Declaration(Class(obo:FBcv_0000412))
Declaration(Class(obo:FBcv_0000413))
Declaration(Class(obo:FBcv_0000414))
Declaration(Class(obo:FBcv_0000415))
Declaration(Class(obo:FBcv_0000416))
Declaration(Class(obo:FBcv_0000417))
Declaration(Class(obo:FBcv_0000418))
Declaration(Class(obo:FBcv_0000419))
Declaration(Class(obo:FBcv_0000420))
Declaration(Class(obo:FBcv_0000421))
Declaration(Class(obo:FBcv_0000422))
Declaration(Class(obo:FBcv_0000423))
Declaration(Class(obo:FBcv_0000424))
Declaration(Class(obo:FBcv_0000425))
Declaration(Class(obo:FBcv_0000426))
Declaration(Class(obo:FBcv_0000427))
Declaration(Class(obo:FBcv_0000428))
Declaration(Class(obo:FBcv_0000429))
Declaration(Class(obo:FBcv_0000430))
Declaration(Class(obo:FBcv_0000431))
Declaration(Class(obo:FBcv_0000432))
Declaration(Class(obo:FBcv_0000433))
Declaration(Class(obo:FBcv_0000434))
Declaration(Class(obo:FBcv_0000435))
Declaration(Class(obo:FBcv_0000436))
Declaration(Class(obo:FBcv_0000437))
Declaration(Class(obo:FBcv_0000438))
Declaration(Class(obo:FBcv_0000439))
Declaration(Class(obo:FBcv_0000440))
Declaration(Class(obo:FBcv_0000441))
Declaration(Class(obo:FBcv_0000442))
Declaration(Class(obo:FBcv_0000443))
Declaration(Class(obo:FBcv_0000444))
Declaration(Class(obo:FBcv_0000445))
Declaration(Class(obo:FBcv_0000446))
Declaration(Class(obo:FBcv_0000447))
Declaration(Class(obo:FBcv_0000448))
Declaration(Class(obo:FBcv_0000449))
Declaration(Class(obo:FBcv_0000450))
Declaration(Class(obo:FBcv_0000451))
Declaration(Class(obo:FBcv_0000665))
Declaration(Class(obo:FBcv_0000668))
Declaration(Class(obo:FBcv_0000669))
Declaration(Class(obo:FBcv_0000670))
Declaration(Class(obo:FBcv_0000671))
Declaration(Class(obo:FBcv_0000672))
Declaration(Class(obo:FBcv_0000679))
Declaration(Class(obo:FBcv_0000680))
Declaration(Class(obo:FBcv_0000681))
Declaration(Class(obo:FBcv_0000682))
Declaration(Class(obo:FBcv_0000683))
Declaration(Class(obo:FBcv_0000684))
Declaration(Class(obo:FBcv_0000686))
Declaration(Class(obo:FBcv_0000698))
Declaration(Class(obo:FBcv_0000699))
Declaration(Class(obo:FBcv_0000700))
Declaration(Class(obo:FBcv_0000701))
Declaration(Class(obo:FBcv_0000702))
Declaration(Class(obo:FBcv_0000703))
Declaration(Class(obo:FBcv_0000705))
Declaration(Class(obo:FBcv_0000706))
Declaration(Class(obo:FBcv_0000707))
Declaration(Class(obo:FBcv_0000708))
Declaration(Class(obo:FBcv_0000709))
Declaration(Class(obo:FBcv_0000713))
Declaration(Class(obo:FBcv_0000716))
Declaration(Class(obo:FBcv_0000717))
Declaration(Class(obo:FBcv_0000718))
Declaration(Class(obo:FBcv_0000719))
Declaration(Class(obo:FBcv_0000720))
Declaration(Class(obo:FBcv_0000721))
Declaration(Class(obo:FBcv_0000723))
Declaration(Class(obo:FBcv_0000724))
Declaration(Class(obo:FBcv_0000725))
Declaration(Class(obo:FBcv_0000734))
Declaration(Class(obo:FBcv_0000791))
Declaration(Class(obo:FBcv_0000792))
Declaration(Class(obo:FBcv_0001324))
Declaration(Class(obo:FBcv_0001325))
Declaration(Class(obo:FBcv_0001347))
Declaration(Class(obo:FBcv_0002000))
Declaration(Class(obo:FBcv_0002001))
Declaration(Class(obo:FBcv_0002002))
Declaration(Class(obo:FBcv_0002003))
Declaration(Class(obo:FBcv_0002004))
Declaration(Class(obo:FBcv_0002005))
Declaration(Class(obo:FBcv_0002006))
Declaration(Class(obo:FBcv_0002007))
Declaration(Class(obo:FBcv_0002008))
Declaration(Class(obo:FBcv_0002009))
Declaration(Class(obo:FBcv_0002010))
Declaration(Class(obo:FBcv_0002011))
Declaration(Class(obo:FBcv_0002012))
Declaration(Class(obo:FBcv_0002013))
Declaration(Class(obo:FBcv_0002014))
Declaration(Class(obo:FBcv_0002015))
Declaration(Class(obo:FBcv_0002019))
Declaration(Class(obo:FBcv_0002020))
Declaration(Class(obo:FBcv_0002021))
Declaration(Class(obo:FBcv_0002022))
Declaration(Class(obo:FBcv_0002023))
Declaration(Class(obo:FBcv_0002024))
Declaration(Class(obo:FBcv_0002025))
Declaration(Class(obo:FBcv_0002026))
Declaration(Class(obo:FBcv_0002027))
Declaration(Class(obo:FBcv_0002030))
Declaration(Class(obo:FBcv_0002031))
Declaration(Class(obo:FBcv_0002032))
Declaration(Class(obo:FBcv_0002033))
Declaration(Class(obo:FBcv_0002034))
Declaration(Class(obo:FBcv_0002035))
Declaration(Class(obo:FBcv_0002036))
Declaration(Class(obo:FBcv_0002037))
Declaration(Class(obo:FBcv_0002038))
Declaration(Class(obo:FBcv_0002039))
Declaration(Class(obo:FBcv_0002040))
Declaration(Class(obo:FBcv_0002041))
Declaration(Class(obo:FBcv_0002042))
Declaration(Class(obo:FBcv_0002050))
Declaration(Class(obo:FBcv_0002051))
Declaration(Class(obo:FBcv_0004000))
Declaration(Class(obo:FBcv_0006000))
Declaration(Class(obo:FBcv_0006001))
Declaration(Class(obo:FBcv_0006002))
Declaration(Class(obo:FBcv_0006003))
Declaration(Class(obo:FBcv_0006004))
Declaration(Class(obo:FBcv_0006005))
Declaration(Class(obo:FBcv_0006006))
Declaration(Class(obo:FBcv_0006007))
Declaration(Class(obo:FBcv_0007500))
Declaration(Class(obo:FBcv_0007501))
Declaration(Class(obo:FBcv_0007502))
Declaration(Class(obo:FBcv_0007503))
Declaration(Class(obo:FBcv_0007504))
Declaration(Class(obo:FBcv_0007505))
Declaration(Class(obo:FBcv_0007506))
Declaration(Class(obo:FBcv_0007507))
Declaration(Class(obo:FBcv_0007508))
Declaration(Class(obo:FBcv_0007509))
Declaration(Class(obo:FBcv_0007510))
Declaration(Class(obo:FBcv_0007511))
Declaration(Class(obo:FBcv_0007512))
Declaration(Class(obo:FBcv_0007513))
Declaration(Class(obo:FBcv_0007514))
Declaration(Class(obo:FBcv_0007515))
Declaration(Class(obo:FBcv_0007516))
Declaration(Class(obo:FBcv_0007517))
Declaration(Class(obo:FBcv_0007518))
Declaration(Class(obo:FBcv_0007519))
Declaration(Class(obo:FBcv_0007520))
Declaration(Class(obo:FBcv_0007521))
Declaration(Class(obo:FBcv_0007522))
Declaration(Class(obo:FBcv_0007523))
Declaration(Class(obo:FBcv_0007524))
Declaration(Class(obo:FBcv_0007525))
Declaration(Class(obo:FBcv_0007526))
Declaration(Class(obo:FBcv_0007527))
Declaration(Class(obo:FBcv_0007528))
Declaration(Class(obo:FBcv_0007529))
Declaration(Class(obo:FBcv_0007530))
Declaration(Class(obo:FBcv_0007531))
Declaration(Class(obo:FBcv_0007532))
Declaration(Class(obo:FBcv_0007533))
Declaration(Class(obo:FBcv_0007534))
Declaration(Class(obo:FBcv_0007535))
Declaration(Class(obo:FBcv_0007536))
Declaration(Class(obo:FBcv_0007537))
Declaration(Class(obo:FBcv_0007538))
Declaration(Class(obo:FBcv_0007539))
Declaration(Class(obo:FBcv_0007540))
Declaration(Class(obo:FBcv_0007541))
Declaration(Class(obo:FBcv_0007542))
Declaration(Class(obo:FBcv_0007543))
Declaration(Class(obo:FBcv_0007544))
Declaration(Class(obo:FBcv_0007545))
Declaration(Class(obo:FBcv_0007546))
Declaration(Class(obo:FBcv_0007547))
Declaration(Class(obo:FBcv_0007548))
Declaration(Class(obo:FBcv_0007549))
Declaration(Class(obo:FBcv_0007550))
Declaration(Class(obo:FBcv_0007551))
Declaration(Class(obo:FBcv_0007552))
Declaration(Class(obo:FBcv_0007553))
Declaration(Class(obo:FBcv_0007554))
Declaration(Class(obo:FBcv_0007555))
Declaration(Class(obo:OBI_0100026))
Declaration(ObjectProperty(obo:FBcv_0008000))
Declaration(AnnotationProperty(<http://creativecommons.org/ns#attributionURL>))
Declaration(AnnotationProperty(obo:IAO_0000700))
Declaration(AnnotationProperty(obo:IAO_0100001))
Declaration(AnnotationProperty(FBcv:camcur))
Declaration(AnnotationProperty(fbcv:BRAIN_NAME_ABV))
Declaration(AnnotationProperty(fbcv:BRAND_NAME))
Declaration(AnnotationProperty(fbcv:EmbDevSlim))
Declaration(AnnotationProperty(fbcv:FORMULA))
Declaration(AnnotationProperty(fbcv:FT_new))
Declaration(AnnotationProperty(fbcv:FlyTed))
Declaration(AnnotationProperty(fbcv:INN))
Declaration(AnnotationProperty(fbcv:IUPAC_NAME))
Declaration(AnnotationProperty(fbcv:InChI))
Declaration(AnnotationProperty(fbcv:InChIKey))
Declaration(AnnotationProperty(fbcv:RD))
Declaration(AnnotationProperty(fbcv:SMILES))
Declaration(AnnotationProperty(fbcv:abnormal_slim))
Declaration(AnnotationProperty(fbcv:absent_slim))
Declaration(AnnotationProperty(fbcv:attribute_slim))
Declaration(AnnotationProperty(fbcv:camcur))
Declaration(AnnotationProperty(fbcv:cell_quality))
Declaration(AnnotationProperty(fbcv:cur))
Declaration(AnnotationProperty(fbcv:deprecated))
Declaration(AnnotationProperty(fbcv:do_not_annotate))
Declaration(AnnotationProperty(fbcv:fbcvsubset_mgiribbons))
Declaration(AnnotationProperty(fbcv:larval_OF))
Declaration(AnnotationProperty(fbcv:lethal_phase))
Declaration(AnnotationProperty(fbcv:relational_slim))
Declaration(AnnotationProperty(fbcv:systematic_synonym))
Declaration(AnnotationProperty(fbcv:value_slim))
Declaration(AnnotationProperty(dcterms:contributor))
Declaration(AnnotationProperty(dcterms:creator))
Declaration(AnnotationProperty(dcterms:date))
Declaration(AnnotationProperty(dcterms:description))
Declaration(AnnotationProperty(dcterms:license))
Declaration(AnnotationProperty(dcterms:source))
Declaration(AnnotationProperty(dcterms:title))
Declaration(AnnotationProperty(oboInOwl:SubsetProperty))
Declaration(AnnotationProperty(oboInOwl:SynonymTypeProperty))
Declaration(AnnotationProperty(oboInOwl:auto-generated-by))
Declaration(AnnotationProperty(oboInOwl:consider))
Declaration(AnnotationProperty(oboInOwl:date))
Declaration(AnnotationProperty(oboInOwl:default-namespace))
Declaration(AnnotationProperty(oboInOwl:hasAlternativeId))
Declaration(AnnotationProperty(oboInOwl:hasBroadSynonym))
Declaration(AnnotationProperty(oboInOwl:hasDbXref))
Declaration(AnnotationProperty(oboInOwl:hasExactSynonym))
Declaration(AnnotationProperty(oboInOwl:hasNarrowSynonym))
Declaration(AnnotationProperty(oboInOwl:hasOBOFormatVersion))
Declaration(AnnotationProperty(oboInOwl:hasOBONamespace))
Declaration(AnnotationProperty(oboInOwl:hasRelatedSynonym))
Declaration(AnnotationProperty(oboInOwl:hasScope))
Declaration(AnnotationProperty(oboInOwl:id))
Declaration(AnnotationProperty(oboInOwl:inSubset))
Declaration(AnnotationProperty(oboInOwl:saved-by))
Declaration(AnnotationProperty(oboInOwl:shorthand))
Declaration(AnnotationProperty(rdfs:comment))
Declaration(AnnotationProperty(rdfs:label))
############################
# Annotation Properties
############################
# Annotation Property: obo:IAO_0000115 (definition)
AnnotationAssertion(rdfs:label obo:IAO_0000115 "definition")
# Annotation Property: FBcv:camcur (camcur)
AnnotationAssertion(rdfs:label FBcv:camcur "camcur"@en)
SubAnnotationPropertyOf(FBcv:camcur oboInOwl:SubsetProperty)
# Annotation Property: fbcv:BRAIN_NAME_ABV (BrainName official abbreviation)
AnnotationAssertion(rdfs:label fbcv:BRAIN_NAME_ABV "BrainName official abbreviation")
SubAnnotationPropertyOf(fbcv:BRAIN_NAME_ABV oboInOwl:SynonymTypeProperty)
# Annotation Property: fbcv:BRAND_NAME (BRAND NAME)
AnnotationAssertion(rdfs:label fbcv:BRAND_NAME "BRAND NAME")
SubAnnotationPropertyOf(fbcv:BRAND_NAME oboInOwl:SynonymTypeProperty)
# Annotation Property: fbcv:EmbDevSlim (fbcv:EmbDevSlim)
AnnotationAssertion(rdfs:comment fbcv:EmbDevSlim "EmbDevSlim")
SubAnnotationPropertyOf(fbcv:EmbDevSlim oboInOwl:SubsetProperty)
# Annotation Property: fbcv:FORMULA (FORMULA)
AnnotationAssertion(rdfs:label fbcv:FORMULA "FORMULA")
SubAnnotationPropertyOf(fbcv:FORMULA oboInOwl:SynonymTypeProperty)
# Annotation Property: fbcv:FT_new (fbcv:FT_new)
AnnotationAssertion(rdfs:comment fbcv:FT_new "FlyTed temp subset for edit tracking purposes")
SubAnnotationPropertyOf(fbcv:FT_new oboInOwl:SubsetProperty)
# Annotation Property: fbcv:FlyTed (fbcv:FlyTed)
AnnotationAssertion(rdfs:comment fbcv:FlyTed "Testis slim")
SubAnnotationPropertyOf(fbcv:FlyTed oboInOwl:SubsetProperty)
# Annotation Property: fbcv:INN (INN)
AnnotationAssertion(rdfs:label fbcv:INN "INN")
SubAnnotationPropertyOf(fbcv:INN oboInOwl:SynonymTypeProperty)
# Annotation Property: fbcv:IUPAC_NAME (IUPAC NAME)
AnnotationAssertion(rdfs:label fbcv:IUPAC_NAME "IUPAC NAME")
SubAnnotationPropertyOf(fbcv:IUPAC_NAME oboInOwl:SynonymTypeProperty)
# Annotation Property: fbcv:InChI (InChI)
AnnotationAssertion(rdfs:label fbcv:InChI "InChI")
SubAnnotationPropertyOf(fbcv:InChI oboInOwl:SynonymTypeProperty)
# Annotation Property: fbcv:InChIKey (InChIKey)
AnnotationAssertion(rdfs:label fbcv:InChIKey "InChIKey")
SubAnnotationPropertyOf(fbcv:InChIKey oboInOwl:SynonymTypeProperty)
# Annotation Property: fbcv:RD (fbcv:RD)
AnnotationAssertion(rdfs:comment fbcv:RD "terms for rd test ontology")
SubAnnotationPropertyOf(fbcv:RD oboInOwl:SubsetProperty)
# Annotation Property: fbcv:SMILES (SMILES)
AnnotationAssertion(rdfs:label fbcv:SMILES "SMILES")
SubAnnotationPropertyOf(fbcv:SMILES oboInOwl:SynonymTypeProperty)
# Annotation Property: fbcv:abnormal_slim (fbcv:abnormal_slim)
AnnotationAssertion(rdfs:comment fbcv:abnormal_slim "Abnormal/normal slim")
SubAnnotationPropertyOf(fbcv:abnormal_slim oboInOwl:SubsetProperty)
# Annotation Property: fbcv:absent_slim (fbcv:absent_slim)
AnnotationAssertion(rdfs:comment fbcv:absent_slim "Absent/present slim")
SubAnnotationPropertyOf(fbcv:absent_slim oboInOwl:SubsetProperty)
# Annotation Property: fbcv:attribute_slim (fbcv:attribute_slim)
AnnotationAssertion(rdfs:comment fbcv:attribute_slim "Attribute slim")
SubAnnotationPropertyOf(fbcv:attribute_slim oboInOwl:SubsetProperty)
# Annotation Property: fbcv:camcur (fbcv:camcur)
AnnotationAssertion(rdfs:comment fbcv:camcur "camcur")
SubAnnotationPropertyOf(fbcv:camcur oboInOwl:SubsetProperty)
# Annotation Property: fbcv:cell_quality (fbcv:cell_quality)
AnnotationAssertion(rdfs:comment fbcv:cell_quality "cell_quality")
SubAnnotationPropertyOf(fbcv:cell_quality oboInOwl:SubsetProperty)
# Annotation Property: fbcv:cur (fbcv:cur)
AnnotationAssertion(rdfs:comment fbcv:cur "cur")
SubAnnotationPropertyOf(fbcv:cur oboInOwl:SubsetProperty)
# Annotation Property: fbcv:deprecated (fbcv:deprecated)
AnnotationAssertion(rdfs:comment fbcv:deprecated "warning of impending obsoletion")
SubAnnotationPropertyOf(fbcv:deprecated oboInOwl:SubsetProperty)
# Annotation Property: fbcv:do_not_annotate (fbcv:do_not_annotate)
AnnotationAssertion(rdfs:comment fbcv:do_not_annotate "do not annotate")
SubAnnotationPropertyOf(fbcv:do_not_annotate oboInOwl:SubsetProperty)
# Annotation Property: fbcv:fbcvsubset_mgiribbons (fbcv:fbcvsubset_mgiribbons)
AnnotationAssertion(rdfs:comment fbcv:fbcvsubset_mgiribbons "fbcvsubset_mgiribbons")
SubAnnotationPropertyOf(fbcv:fbcvsubset_mgiribbons oboInOwl:SubsetProperty)
# Annotation Property: fbcv:larval_OF (fbcv:larval_OF)
AnnotationAssertion(rdfs:comment fbcv:larval_OF "larval olfactory system")
SubAnnotationPropertyOf(fbcv:larval_OF oboInOwl:SubsetProperty)
# Annotation Property: fbcv:lethal_phase (fbcv:lethal_phase)
AnnotationAssertion(rdfs:comment fbcv:lethal_phase "lethal phase terms")
SubAnnotationPropertyOf(fbcv:lethal_phase oboInOwl:SubsetProperty)
# Annotation Property: fbcv:relational_slim (fbcv:relational_slim)
AnnotationAssertion(rdfs:comment fbcv:relational_slim "Relational slim: types of quality that require an additional entity in order to exist")
SubAnnotationPropertyOf(fbcv:relational_slim oboInOwl:SubsetProperty)
# Annotation Property: fbcv:systematic_synonym (Systematic synonym)
AnnotationAssertion(oboInOwl:hasScope fbcv:systematic_synonym oboInOwl:hasExactSynonym)
AnnotationAssertion(rdfs:label fbcv:systematic_synonym "Systematic synonym")
SubAnnotationPropertyOf(fbcv:systematic_synonym oboInOwl:SynonymTypeProperty)
# Annotation Property: fbcv:value_slim (fbcv:value_slim)
AnnotationAssertion(rdfs:comment fbcv:value_slim "Value slim")
SubAnnotationPropertyOf(fbcv:value_slim oboInOwl:SubsetProperty)
# Annotation Property: oboInOwl:SubsetProperty (subset_property)
AnnotationAssertion(rdfs:label oboInOwl:SubsetProperty "subset_property")
# Annotation Property: oboInOwl:SynonymTypeProperty (synonym_type_property)
AnnotationAssertion(rdfs:label oboInOwl:SynonymTypeProperty "synonym_type_property")
# Annotation Property: oboInOwl:hasAlternativeId (has_alternative_id)
AnnotationAssertion(rdfs:label oboInOwl:hasAlternativeId "has_alternative_id")
# Annotation Property: oboInOwl:hasBroadSynonym (has_broad_synonym)
AnnotationAssertion(rdfs:label oboInOwl:hasBroadSynonym "has_broad_synonym")
# Annotation Property: oboInOwl:hasDbXref (database_cross_reference)
AnnotationAssertion(rdfs:label oboInOwl:hasDbXref "database_cross_reference")
# Annotation Property: oboInOwl:hasExactSynonym (has_exact_synonym)
AnnotationAssertion(rdfs:label oboInOwl:hasExactSynonym "has_exact_synonym")
# Annotation Property: oboInOwl:hasNarrowSynonym (has_narrow_synonym)
AnnotationAssertion(rdfs:label oboInOwl:hasNarrowSynonym "has_narrow_synonym")
# Annotation Property: oboInOwl:hasOBOFormatVersion (has_obo_format_version)
AnnotationAssertion(rdfs:label oboInOwl:hasOBOFormatVersion "has_obo_format_version")
# Annotation Property: oboInOwl:hasOBONamespace (has_obo_namespace)
AnnotationAssertion(rdfs:label oboInOwl:hasOBONamespace "has_obo_namespace")
# Annotation Property: oboInOwl:hasRelatedSynonym (has_related_synonym)
AnnotationAssertion(rdfs:label oboInOwl:hasRelatedSynonym "has_related_synonym")
# Annotation Property: oboInOwl:hasScope (has_scope)
AnnotationAssertion(rdfs:label oboInOwl:hasScope "has_scope")
# Annotation Property: oboInOwl:shorthand (shorthand)
AnnotationAssertion(rdfs:label oboInOwl:shorthand "shorthand")
############################
# Object Properties
############################
# Object Property: obo:FBcv_0008000 (has_age)
AnnotationAssertion(rdfs:label obo:FBcv_0008000 "has_age"@en)
FunctionalObjectProperty(obo:FBcv_0008000)
ObjectPropertyDomain(obo:FBcv_0008000 obo:CARO_0000012)
ObjectPropertyRange(obo:FBcv_0008000 obo:FBdv_00005259)
############################
# Classes
############################
# Class: obo:FBcv_0000002 (abnormal thermotaxis)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000002 "Phenotype that is any abnormality in thermotaxis (GO:0043052). 'thermotaxis' is defined as: '$sub_GO:0043052'")
AnnotationAssertion(oboInOwl:hasExactSynonym obo:FBcv_0000002 "thermotaxis behavior defective")
AnnotationAssertion(oboInOwl:hasExactSynonym obo:FBcv_0000002 "thermotaxis behaviour defective")
AnnotationAssertion(oboInOwl:hasExactSynonym obo:FBcv_0000002 "thermotaxis defective")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000002 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000002 "FBcv:0000002")
AnnotationAssertion(rdfs:label obo:FBcv_0000002 "abnormal thermotaxis")
SubClassOf(obo:FBcv_0000002 obo:FBcv_0001347)
# Class: obo:FBcv_0000006 (male semi-fertile)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:AO") Annotation(oboInOwl:hasDbXref "FBC:CP") Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000006 "A phenotype that is a reduction in the ability of males to produce fertilized eggs as a result of mating, but only to > 50% of wild-type.")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000006 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000006 "FBcv:0000006")
AnnotationAssertion(rdfs:label obo:FBcv_0000006 "male semi-fertile")
SubClassOf(obo:FBcv_0000006 obo:FBcv_0000375)
SubClassOf(obo:FBcv_0000006 obo:FBcv_0000376)
# Class: obo:FBcv_0000007 (female semi-fertile)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:AO") Annotation(oboInOwl:hasDbXref "FBC:CP") Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000007 "A phenotype that is a reduction in the ability of females to produce fertilized eggs as a result of mating, but only to > 50% of wild-type.")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000007 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000007 "FBcv:0000007")
AnnotationAssertion(rdfs:label obo:FBcv_0000007 "female semi-fertile")
SubClassOf(obo:FBcv_0000007 obo:FBcv_0000375)
SubClassOf(obo:FBcv_0000007 obo:FBcv_0000377)
# Class: obo:FBcv_0000008 (modifier of variegation)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000008 "Genotype g1 is a modifier of variegation if, and only if, some genotype g2 has a variegated phenotype and the degree of variegation caused by g1g2 is significantly different from that caused by g2 alone.")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000008 "phenotypic_class")
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:DOS") oboInOwl:hasRelatedSynonym obo:FBcv_0000008 "variegation")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000008 "FBcv:0000008")
AnnotationAssertion(oboInOwl:inSubset obo:FBcv_0000008 fbcv:fbcvsubset_mgiribbons)
AnnotationAssertion(rdfs:label obo:FBcv_0000008 "modifier of variegation")
SubClassOf(obo:FBcv_0000008 obo:FBcv_0001347)
# Class: obo:FBcv_0000316 (homeotic)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000316 "Phenotype that is the partial or full transformation of one or more segments (FBbt:00000003) or segmental appendages from one identity to another. For example, in antennapedia an antenna is partially or fully transformed into a leg.")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000316 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000316 "FBcv:0000316")
AnnotationAssertion(oboInOwl:inSubset obo:FBcv_0000316 fbcv:fbcvsubset_mgiribbons)
AnnotationAssertion(rdfs:label obo:FBcv_0000316 "homeotic")
SubClassOf(obo:FBcv_0000316 obo:FBcv_0001347)
# Class: obo:FBcv_0000324 (abnormal dorsal/ventral axis specification)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000324 "Phenotype that is any abnormality in dorsal/ventral axis specification (GO:0009950). 'dorsal/ventral axis specification' is defined as: '$sub_GO:0009950'")
AnnotationAssertion(oboInOwl:hasExactSynonym obo:FBcv_0000324 "dorsal/ventral axis specification defective")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000324 "phenotypic_class")
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:DOS") oboInOwl:hasRelatedSynonym obo:FBcv_0000324 "dorsal-ventral polarity")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000324 "FBcv:0000324")
AnnotationAssertion(rdfs:label obo:FBcv_0000324 "abnormal dorsal/ventral axis specification")
SubClassOf(obo:FBcv_0000324 obo:FBcv_0001347)
# Class: obo:FBcv_0000325 (neurogenic phenotype)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FlyBase:FBrf0040185") obo:IAO_0000115 obo:FBcv_0000325 "A phenotype that is an expansion of the developing embryonic nervous system at the expense of developing ventral epidermis.")
AnnotationAssertion(dcterms:contributor obo:FBcv_0000325 <http://orcid.org/0000-0002-7073-9172>)
AnnotationAssertion(dcterms:date obo:FBcv_0000325 "2011-09-13T02:42:10Z"^^xsd:dateTime)
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000325 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000325 "FBcv:0000325")
AnnotationAssertion(oboInOwl:inSubset obo:FBcv_0000325 fbcv:fbcvsubset_mgiribbons)
AnnotationAssertion(rdfs:comment obo:FBcv_0000325 "Typically this is caused by and expansion of the population of neuroblasts at the expense of prospective epidermis, both of which originate in the ventral ectoderm.")
AnnotationAssertion(rdfs:label obo:FBcv_0000325 "neurogenic phenotype")
SubClassOf(obo:FBcv_0000325 obo:FBcv_0001347)
# Class: obo:FBcv_0000347 (phenotypic class)
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000347 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000347 "FBcv:0000347")
AnnotationAssertion(rdfs:label obo:FBcv_0000347 "phenotypic class")
SubClassOf(obo:FBcv_0000347 obo:BFO_0000020)
# Class: obo:FBcv_0000348 (wild-type)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000348 "The canonical phenotype of a wild-type Drosophilid.")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000348 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000348 "FBcv:0000348")
AnnotationAssertion(rdfs:label obo:FBcv_0000348 "wild-type")
SubClassOf(obo:FBcv_0000348 obo:FBcv_0000347)
DisjointClasses(obo:FBcv_0000348 obo:FBcv_0001347)
# Class: obo:FBcv_0000349 (viable)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000349 "A phenotype that is survival to mature adulthood, where mature is defined as after adult stage A3 (FBdv:00006012).")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000349 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000349 "FBcv:0000349")
AnnotationAssertion(oboInOwl:inSubset obo:FBcv_0000349 fbcv:fbcvsubset_mgiribbons)
AnnotationAssertion(rdfs:comment obo:FBcv_0000349 "Note, this term should not be used with the qualifier 'partially'. Use semi-viable or semi-lethal instead.")
AnnotationAssertion(rdfs:label obo:FBcv_0000349 "viable")
SubClassOf(obo:FBcv_0000349 obo:FBcv_0000347)
# Class: obo:FBcv_0000350 (partially lethal - majority live)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000350 "A phenotype of a population that is the death of some significant proportion of animals in that population, but less that half, prior to becoming a mature adult, where mature is defined as after adult stage A3 (FBdv:00006012).")
AnnotationAssertion(oboInOwl:hasExactSynonym obo:FBcv_0000350 "semi-viable")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000350 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000350 "FBcv:0000350")
AnnotationAssertion(oboInOwl:inSubset obo:FBcv_0000350 fbcv:lethal_phase)
AnnotationAssertion(rdfs:label obo:FBcv_0000350 "partially lethal - majority live")
EquivalentClasses(obo:FBcv_0000350 ObjectSomeValuesFrom(obo:BFO_0000051 ObjectIntersectionOf(ObjectSomeValuesFrom(obo:RO_0000052 ObjectIntersectionOf(obo:FBcv_0006003 ObjectSomeValuesFrom(obo:RO_0002351 ObjectIntersectionOf(obo:CARO_0000012 ObjectSomeValuesFrom(obo:FBcv_0008000 ObjectSomeValuesFrom(obo:BFO_0000063 obo:FBdv_00007026)))) ObjectAllValuesFrom(obo:RO_0002351 ObjectIntersectionOf(obo:CARO_0000012 ObjectSomeValuesFrom(obo:FBcv_0008000 ObjectSomeValuesFrom(obo:BFO_0000063 obo:FBdv_00007026)))))) DataSomeValuesFrom(obo:RO_0002029 DatatypeRestriction(xsd:short xsd:minInclusive "5"^^xsd:short xsd:maxExclusive "50"^^xsd:short)))))
SubClassOf(obo:FBcv_0000350 obo:FBcv_0000349)
SubClassOf(obo:FBcv_0000350 obo:FBcv_0001347)
# Class: obo:FBcv_0000351 (lethal)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:DOS") Annotation(oboInOwl:hasDbXref "FBC:KM") obo:IAO_0000115 obo:FBcv_0000351 "A phenotype of a population that is the death of all animals in that population at some stage or stages prior to becoming a mature adult, where mature is defined as after adult stage A3 (FBdv:00006012).")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000351 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000351 "FBcv:0000351")
AnnotationAssertion(oboInOwl:inSubset obo:FBcv_0000351 fbcv:lethal_phase)
AnnotationAssertion(rdfs:comment obo:FBcv_0000351 "Note on usage: lethal is appropriate in cases where escaper adults are very rare. The lethal phase prior to becoming a mature adult may be further specified using children terms which specify stage.")
AnnotationAssertion(rdfs:label obo:FBcv_0000351 "lethal")
EquivalentClasses(obo:FBcv_0000351 ObjectSomeValuesFrom(obo:BFO_0000051 ObjectIntersectionOf(ObjectSomeValuesFrom(obo:RO_0000052 ObjectIntersectionOf(obo:FBcv_0006003 ObjectSomeValuesFrom(obo:RO_0002351 ObjectIntersectionOf(obo:CARO_0000012 ObjectSomeValuesFrom(obo:FBcv_0008000 ObjectSomeValuesFrom(obo:BFO_0000063 obo:FBdv_00007026)))) ObjectAllValuesFrom(obo:RO_0002351 ObjectIntersectionOf(obo:CARO_0000012 ObjectSomeValuesFrom(obo:FBcv_0008000 ObjectSomeValuesFrom(obo:BFO_0000063 obo:FBdv_00007026)))))) DataSomeValuesFrom(obo:RO_0002029 DatatypeRestriction(xsd:short xsd:minInclusive "98"^^xsd:short)))))
SubClassOf(obo:FBcv_0000351 obo:FBcv_0001347)
# Class: obo:FBcv_0000352 (partially lethal - majority die)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:DOS") Annotation(oboInOwl:hasDbXref "FBC:KM") Annotation(oboInOwl:hasDbXref "FBC:NB") obo:IAO_0000115 obo:FBcv_0000352 "A phenotype of a population that is the death of a majority of animals in that population prior to becoming a mature adult, where mature is defined as after adult stage A3 (FBdv:00006012).")
AnnotationAssertion(oboInOwl:hasExactSynonym obo:FBcv_0000352 "semi-lethal")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000352 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000352 "FBcv:0000352")
AnnotationAssertion(oboInOwl:inSubset obo:FBcv_0000352 fbcv:lethal_phase)
AnnotationAssertion(rdfs:comment obo:FBcv_0000352 "Stages during which there is significant death prior to mature adulthood can be indicated using one or more stage qualifiers.")
AnnotationAssertion(rdfs:label obo:FBcv_0000352 "partially lethal - majority die")
EquivalentClasses(obo:FBcv_0000352 ObjectSomeValuesFrom(obo:BFO_0000051 ObjectIntersectionOf(ObjectSomeValuesFrom(obo:RO_0000052 ObjectIntersectionOf(obo:FBcv_0006003 ObjectSomeValuesFrom(obo:RO_0002351 ObjectIntersectionOf(obo:CARO_0000012 ObjectSomeValuesFrom(obo:FBcv_0008000 ObjectSomeValuesFrom(obo:BFO_0000063 obo:FBdv_00007026)))) ObjectAllValuesFrom(obo:RO_0002351 ObjectIntersectionOf(obo:CARO_0000012 ObjectSomeValuesFrom(obo:FBcv_0008000 ObjectSomeValuesFrom(obo:BFO_0000063 obo:FBdv_00007026)))))) DataSomeValuesFrom(obo:RO_0002029 DatatypeRestriction(xsd:short xsd:minInclusive "50"^^xsd:short xsd:maxExclusive "98"^^xsd:short)))))
SubClassOf(obo:FBcv_0000352 obo:FBcv_0001347)
# Class: obo:FBcv_0000353 (cell lethal)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000353 "A phenotype that is a failure of mutant cells to survive.")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000353 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000353 "FBcv:0000353")
AnnotationAssertion(oboInOwl:inSubset obo:FBcv_0000353 fbcv:fbcvsubset_mgiribbons)
AnnotationAssertion(rdfs:comment obo:FBcv_0000353 "Typically, this phenotype is assayed in clones of cells.")
AnnotationAssertion(rdfs:label obo:FBcv_0000353 "cell lethal")
EquivalentClasses(obo:FBcv_0000353 ObjectSomeValuesFrom(obo:BFO_0000051 ObjectIntersectionOf(obo:PATO_0000718 ObjectSomeValuesFrom(obo:RO_0000052 obo:FBbt_00007002))))
SubClassOf(obo:FBcv_0000353 obo:FBcv_0001347)
# Class: obo:FBcv_0000354 (visible)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000354 "A post-embryonic, macroscopic, anatomical phenotype.")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000354 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000354 "FBcv:0000354")
AnnotationAssertion(oboInOwl:inSubset obo:FBcv_0000354 fbcv:fbcvsubset_mgiribbons)
AnnotationAssertion(rdfs:label obo:FBcv_0000354 "visible")
SubClassOf(obo:FBcv_0000354 obo:FBcv_0001347)
# Class: obo:FBcv_0000355 (abnormal eye color)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000355 "Phenotype that is any abnormality in eye color compared to wild-type.")
AnnotationAssertion(oboInOwl:hasExactSynonym obo:FBcv_0000355 "eye color defective")
AnnotationAssertion(oboInOwl:hasExactSynonym obo:FBcv_0000355 "eye colour defective")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000355 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000355 "FBcv:0000355")
AnnotationAssertion(rdfs:label obo:FBcv_0000355 "abnormal eye color")
SubClassOf(obo:FBcv_0000355 obo:FBcv_0000354)
# Class: obo:FBcv_0000356 (abnormal body color)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000356 "A phenotype that is any abnormality in body color compared to wild-type.")
AnnotationAssertion(oboInOwl:hasExactSynonym obo:FBcv_0000356 "body color defective")
AnnotationAssertion(oboInOwl:hasExactSynonym obo:FBcv_0000356 "body colour defective")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000356 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000356 "FBcv:0000356")
AnnotationAssertion(rdfs:label obo:FBcv_0000356 "abnormal body color")
SubClassOf(obo:FBcv_0000356 obo:FBcv_0000354)
# Class: obo:FBcv_0000357 (abnormal size)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000357 "A phenotype that is any abnormality in the size of the whole body or some body part compared to wild-type.")
AnnotationAssertion(oboInOwl:hasExactSynonym obo:FBcv_0000357 "size defective")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000357 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000357 "FBcv:0000357")
AnnotationAssertion(oboInOwl:inSubset obo:FBcv_0000357 fbcv:fbcvsubset_mgiribbons)
AnnotationAssertion(rdfs:label obo:FBcv_0000357 "abnormal size")
SubClassOf(obo:FBcv_0000357 obo:FBcv_0001347)
# Class: obo:FBcv_0000358 (decreased body size)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000358 "Phenotype that is a decrease in body size compared to identically raised wild-type controls.")
AnnotationAssertion(oboInOwl:hasExactSynonym obo:FBcv_0000358 "reduced body size")
AnnotationAssertion(oboInOwl:hasExactSynonym obo:FBcv_0000358 "small body")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000358 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000358 "FBcv:0000358")
AnnotationAssertion(rdfs:label obo:FBcv_0000358 "decreased body size")
SubClassOf(obo:FBcv_0000358 obo:FBcv_0001347)
# Class: obo:FBcv_0000359 (decreased cell number)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000359 "Phenotype that is a decrease in the number of cells in a whole animal or in some specific organ, tissue or clone of cells compared to wild-type. This phenotype is not necessarily accompanied by decreased growth - there may be fewer cells in an otherwise normal volume of tissue.")
AnnotationAssertion(oboInOwl:hasExactSynonym obo:FBcv_0000359 "reduced cell number")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000359 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000359 "FBcv:0000359")
AnnotationAssertion(rdfs:label obo:FBcv_0000359 "decreased cell number")
SubClassOf(obo:FBcv_0000359 obo:FBcv_0001347)
# Class: obo:FBcv_0000360 (decreased cell size)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000360 "Phenotype that is a decrease in the size of cells in a whole animal or in some specific organ, tissue or clone of cells compared to wild-type. This phenotype is not necessarily accompanied by decreased growth of a tissue - there may be more cells in an otherwise normal volume of tissue.")
AnnotationAssertion(oboInOwl:hasExactSynonym obo:FBcv_0000360 "reduced cell size")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000360 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000360 "FBcv:0000360")
AnnotationAssertion(rdfs:comment obo:FBcv_0000360 "Note that defects in cell size are not necessarily the result of defects in cell growth. A change in the rate of cell division in the absence of any change in cell growth rate can result in smaller or larger cells.")
AnnotationAssertion(rdfs:label obo:FBcv_0000360 "decreased cell size")
SubClassOf(obo:FBcv_0000360 obo:FBcv_0001347)
# Class: obo:FBcv_0000361 (increased body size)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000361 "Phenotype that is an increase in body size compared to identically raised wild-type controls.")
AnnotationAssertion(oboInOwl:hasExactSynonym obo:FBcv_0000361 "large body")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000361 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000361 "FBcv:0000361")
AnnotationAssertion(rdfs:label obo:FBcv_0000361 "increased body size")
SubClassOf(obo:FBcv_0000361 obo:FBcv_0001347)
# Class: obo:FBcv_0000362 (increased cell number)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000362 "Phenotype that is an increase in the number of cells in a whole animal or in some specific organ, tissue or clone of cells compared to wild-type.")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000362 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000362 "FBcv:0000362")
AnnotationAssertion(rdfs:comment obo:FBcv_0000362 "This phenotype is not necessarily accompanied by overgrowth of a tissue - there may be more cells in an otherwise normal volume of tissue. It is not necessarily due to an increase in cell growth -it may be the result of an increase in the division rate at normal growth rates. It may not even be due to an increase in the cell division rate - a reduced rate of cell death while the division rate is normal could also achieve it.")
AnnotationAssertion(rdfs:label obo:FBcv_0000362 "increased cell number")
SubClassOf(obo:FBcv_0000362 obo:FBcv_0001347)
# Class: obo:FBcv_0000363 (increased cell size)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000363 "Phenotype that is an increase in the size of cells compared to wild-type.")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000363 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000363 "FBcv:0000363")
AnnotationAssertion(rdfs:comment obo:FBcv_0000363 "May be due to an increase in the cell growth rate or to a reduced rate of cell division along with a normal rate of cell growth.")
AnnotationAssertion(rdfs:label obo:FBcv_0000363 "increased cell size")
SubClassOf(obo:FBcv_0000363 obo:FBcv_0001347)
# Class: obo:FBcv_0000364 (sterile)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:AO") Annotation(oboInOwl:hasDbXref "FBC:CP") Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000364 "A phenotype that is the inability to produce fertilized eggs as a result of mating.")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000364 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000364 "FBcv:0000364")
AnnotationAssertion(oboInOwl:inSubset obo:FBcv_0000364 fbcv:fbcvsubset_mgiribbons)
AnnotationAssertion(rdfs:comment obo:FBcv_0000364 "The cause of sterility may be physical or behavioral. Note, this term should not be used with the qualifier 'partially'. Use semi-sterile or semi-fertile instead.")
AnnotationAssertion(rdfs:label obo:FBcv_0000364 "sterile")
SubClassOf(obo:FBcv_0000364 obo:FBcv_0001347)
# Class: obo:FBcv_0000365 (semi-sterile)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:AO") Annotation(oboInOwl:hasDbXref "FBC:CP") Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000365 "A phenotype that is a reduction in the ability to produce fertilized eggs as a result of mating to below 50% of wild-type.")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000365 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000365 "FBcv:0000365")
AnnotationAssertion(oboInOwl:inSubset obo:FBcv_0000365 fbcv:fbcvsubset_mgiribbons)
AnnotationAssertion(rdfs:label obo:FBcv_0000365 "semi-sterile")
SubClassOf(obo:FBcv_0000365 obo:FBcv_0001347)
# Class: obo:FBcv_0000366 (female sterile)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:AO") Annotation(oboInOwl:hasDbXref "FBC:CP") Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000366 "A phenotype that is the inability of females to produce fertilized eggs as a result of mating.")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000366 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000366 "FBcv:0000366")
AnnotationAssertion(rdfs:comment obo:FBcv_0000366 "The cause of sterility may be physical or behavioral. Note: this term should not be used with the qualifier 'partially' - use semi-sterile or semi-fertile instead.")
AnnotationAssertion(rdfs:label obo:FBcv_0000366 "female sterile")
SubClassOf(obo:FBcv_0000366 obo:FBcv_0000364)
# Class: obo:FBcv_0000367 (female semi-sterile)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:AO") Annotation(oboInOwl:hasDbXref "FBC:CP") Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000367 "A phenotype that is a reduction in the ability of females to produce fertilized eggs as a result of mating to below 50% of wild-type.")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000367 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000367 "FBcv:0000367")
AnnotationAssertion(rdfs:label obo:FBcv_0000367 "female semi-sterile")
SubClassOf(obo:FBcv_0000367 obo:FBcv_0000365)
# Class: obo:FBcv_0000368 (female sterile germline-dependent)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000368 "A phenotype of female sterility due to defects in the female germline.")
AnnotationAssertion(oboInOwl:hasExactSynonym obo:FBcv_0000368 "female sterile germ-line-dependent")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000368 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000368 "FBcv:0000368")
AnnotationAssertion(rdfs:label obo:FBcv_0000368 "female sterile germline-dependent")
SubClassOf(obo:FBcv_0000368 obo:FBcv_0000366)
# Class: obo:FBcv_0000369 (female sterile soma-dependent)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000369 "A phenotype of female sterility due to defects in somatic cells of the ovary (FBbt:00006030), or of the products of these cells (such as eggshell).")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000369 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000369 "FBcv:0000369")
AnnotationAssertion(rdfs:label obo:FBcv_0000369 "female sterile soma-dependent")
SubClassOf(obo:FBcv_0000369 obo:FBcv_0000366)
# Class: obo:FBcv_0000370 (male sterile)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:AO") Annotation(oboInOwl:hasDbXref "FBC:CP") Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000370 "A phenotype that is the inability of males to produce fertilized eggs as a result of mating.")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000370 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000370 "FBcv:0000370")
AnnotationAssertion(rdfs:comment obo:FBcv_0000370 "The cause of sterility may be physical or behavioral. Note - this term should not be used with the qualifier 'partially' - use semi-sterile or semi-fertile instead.")
AnnotationAssertion(rdfs:label obo:FBcv_0000370 "male sterile")
SubClassOf(obo:FBcv_0000370 obo:FBcv_0000364)
# Class: obo:FBcv_0000371 (male semi-sterile)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:AO") Annotation(oboInOwl:hasDbXref "FBC:CP") Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000371 "A phenotype that is a reduction in the ability of males to produce fertilized eggs as a result of mating to below 50% of wild-type.")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000371 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000371 "FBcv:0000371")
AnnotationAssertion(rdfs:label obo:FBcv_0000371 "male semi-sterile")
SubClassOf(obo:FBcv_0000371 obo:FBcv_0000365)
# Class: obo:FBcv_0000372 (male sterile germline-dependent)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000372 "A phenotype of male sterility due to defects in the male germline.")
AnnotationAssertion(oboInOwl:hasExactSynonym obo:FBcv_0000372 "male sterile germ-line-dependent")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000372 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000372 "FBcv:0000372")
AnnotationAssertion(rdfs:label obo:FBcv_0000372 "male sterile germline-dependent")
SubClassOf(obo:FBcv_0000372 obo:FBcv_0000370)
# Class: obo:FBcv_0000373 (male sterile soma-dependent)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000373 "A phenotype of male sterility due to defects in somatic cells of the testis (FBbt:00006031) or of the products of these cells.")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000373 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000373 "FBcv:0000373")
AnnotationAssertion(rdfs:label obo:FBcv_0000373 "male sterile soma-dependent")
SubClassOf(obo:FBcv_0000373 obo:FBcv_0000370)
# Class: obo:FBcv_0000374 (fertile)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:AO") Annotation(oboInOwl:hasDbXref "FBC:CP") Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000374 "A phenotype that is the ability to produce fertilized eggs as a result of mating.")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000374 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000374 "FBcv:0000374")
AnnotationAssertion(oboInOwl:inSubset obo:FBcv_0000374 fbcv:fbcvsubset_mgiribbons)
AnnotationAssertion(rdfs:comment obo:FBcv_0000374 "Note, this term should not be used with the qualifier 'partially'. Use semi-sterile or semi-fertile instead.")
AnnotationAssertion(rdfs:label obo:FBcv_0000374 "fertile")
SubClassOf(obo:FBcv_0000374 obo:FBcv_0000347)
# Class: obo:FBcv_0000375 (semi-fertile)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:AO") Annotation(oboInOwl:hasDbXref "FBC:CP") Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000375 "A phenotype that is a reduction in the ability to produce fertilized eggs as a result of mating, but only to > 50% of wild-type.")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000375 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000375 "FBcv:0000375")
AnnotationAssertion(oboInOwl:inSubset obo:FBcv_0000375 fbcv:fbcvsubset_mgiribbons)
AnnotationAssertion(rdfs:label obo:FBcv_0000375 "semi-fertile")
SubClassOf(obo:FBcv_0000375 obo:FBcv_0000374)
SubClassOf(obo:FBcv_0000375 obo:FBcv_0001347)
# Class: obo:FBcv_0000376 (male fertile)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:AO") Annotation(oboInOwl:hasDbXref "FBC:CP") Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000376 "A phenotype that is the ability of males to produce fertilized eggs as a result of mating.")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000376 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000376 "FBcv:0000376")
AnnotationAssertion(rdfs:comment obo:FBcv_0000376 "Note - this term should not be used with the qualifier 'partially' - use male semi-sterile or male semi-fertile instead.")
AnnotationAssertion(rdfs:label obo:FBcv_0000376 "male fertile")
SubClassOf(obo:FBcv_0000376 obo:FBcv_0000374)
# Class: obo:FBcv_0000377 (female fertile)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:AO") Annotation(oboInOwl:hasDbXref "FBC:CP") Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000377 "A phenotype that is the ability of females to produce fertilized eggs as a result of mating.")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000377 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000377 "FBcv:0000377")
AnnotationAssertion(rdfs:comment obo:FBcv_0000377 "Note - this term should not be used with the qualifier 'partially' - use female semi-sterile or female semi-fertile instead.")
AnnotationAssertion(rdfs:label obo:FBcv_0000377 "female fertile")
SubClassOf(obo:FBcv_0000377 obo:FBcv_0000374)
# Class: obo:FBcv_0000378 (grandchildless)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "ISBN:978-0-87969-321-3") obo:IAO_0000115 obo:FBcv_0000378 "A phenotype in which all offspring are sterile. Typically, this is due to maternal effect sterility resulting from defects in pole cell development.")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000378 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000378 "FBcv:0000378")
AnnotationAssertion(oboInOwl:inSubset obo:FBcv_0000378 fbcv:fbcvsubset_mgiribbons)
AnnotationAssertion(rdfs:label obo:FBcv_0000378 "grandchildless")
SubClassOf(obo:FBcv_0000378 obo:FBcv_0001347)
# Class: obo:FBcv_0000379 (enhancer of variegation)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000379 "Genotype g1 is an enhancer of variegation if, and only if, some genotype g2 has a variegated phenotype and the degree of variegation caused by g1g2 is greater than that caused by g2 alone.")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000379 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000379 "FBcv:0000379")
AnnotationAssertion(rdfs:comment obo:FBcv_0000379 "Typically, g2 is a chromosomal aberration or an insertion.")
AnnotationAssertion(rdfs:label obo:FBcv_0000379 "enhancer of variegation")
SubClassOf(obo:FBcv_0000379 obo:FBcv_0000008)
# Class: obo:FBcv_0000380 (non-enhancer of variegation)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000380 "Genotype g1 is a non-enhancer of variegation of the phenotype due to genotype g2 if, and only if, g2 has a variegated phenotype and the degree of variegation caused by g1g2 is not greater than that caused by g2 alone.")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000380 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000380 "FBcv:0000380")
AnnotationAssertion(rdfs:label obo:FBcv_0000380 "non-enhancer of variegation")
SubClassOf(obo:FBcv_0000380 obo:FBcv_0001347)
# Class: obo:FBcv_0000381 (suppressor of variegation)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000381 "Genotype g1 is a suppressor of variegation if, and only if, some genotype g2 has a variegated phenotype and the degree of variegation caused by g1g2 is less than that caused by to g2 alone.")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000381 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000381 "FBcv:0000381")
AnnotationAssertion(rdfs:comment obo:FBcv_0000381 "Typically, g2 is a chromosomal aberration or an insertion.")
AnnotationAssertion(rdfs:label obo:FBcv_0000381 "suppressor of variegation")
SubClassOf(obo:FBcv_0000381 obo:FBcv_0000008)
# Class: obo:FBcv_0000382 (non-suppressor of variegation)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000382 "Genotype g1 is a non-suppressor of variegation of the phenotype due to genotype g2 if, and only if, g2 has a variegated phenotype and the degree of variegation caused by g1g2 is not less than that caused by g2 alone.")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000382 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000382 "FBcv:0000382")
AnnotationAssertion(rdfs:label obo:FBcv_0000382 "non-suppressor of variegation")
SubClassOf(obo:FBcv_0000382 obo:FBcv_0001347)
# Class: obo:FBcv_0000383 (auxotroph)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "http://en.wikipedia.org/wiki/Auxotrophic") obo:IAO_0000115 obo:FBcv_0000383 "A phenotype that is the inability to synthesize some organic compound that can be synthesized by wild-type animals, and that is required for normal growth and/or development.")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000383 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000383 "FBcv:0000383")
AnnotationAssertion(rdfs:label obo:FBcv_0000383 "auxotroph")
SubClassOf(obo:FBcv_0000383 obo:FBcv_0001347)
# Class: obo:FBcv_0000384 (abnormal aging)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "GOC:PO_curators") obo:IAO_0000115 obo:FBcv_0000384 "Phenotype that is any abnormality in aging.")
AnnotationAssertion(oboInOwl:hasExactSynonym obo:FBcv_0000384 "aging defective")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000384 "phenotypic_class")
AnnotationAssertion(oboInOwl:id obo:FBcv_0000384 "FBcv:0000384")
AnnotationAssertion(oboInOwl:inSubset obo:FBcv_0000384 fbcv:fbcvsubset_mgiribbons)
AnnotationAssertion(rdfs:label obo:FBcv_0000384 "abnormal aging")
SubClassOf(obo:FBcv_0000384 obo:FBcv_0001347)
# Class: obo:FBcv_0000385 (short lived)
AnnotationAssertion(Annotation(oboInOwl:hasDbXref "FBC:DOS") obo:IAO_0000115 obo:FBcv_0000385 "Phenotype that is a shorter adult life-span than wild-type.")
AnnotationAssertion(oboInOwl:hasExactSynonym obo:FBcv_0000385 "increased adult mortality")
AnnotationAssertion(oboInOwl:hasOBONamespace obo:FBcv_0000385 "phenotypic_class")