-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathflybase_controlled_vocabulary.obo
10594 lines (9204 loc) · 475 KB
/
flybase_controlled_vocabulary.obo
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: 2024-12-05
date: 05:12:2024 13:42
subsetdef: camcur "camcur"
subsetdef: common_tool_use "Terms to summarize typical use of a gene from one organism that is introduced into another organism primarily for use an experimental tool, rather than to study the function of the gene"
subsetdef: do_not_annotate "Term not to be used for direct annotation"
subsetdef: do_not_manually_annotate "Term not to be used for direct manual annotation"
subsetdef: fbcvsubset_mgiribbons "MGI ribbon terms"
subsetdef: lethal_phase "lethal phase terms"
default-namespace: FlyBase miscellaneous CV
idspace: oboInOwl http://www.geneontology.org/formats/oboInOwl#
idspace: terms http://purl.org/dc/terms/
ontology: fbcv/fbcv-simple
[Term]
id: FBcv:0000000
name: FlyBase CV
def: "FlyBase miscellaneous controlled vocabulary term." []
[Term]
id: FBcv:0000001
name: obsolete death certificate
namespace: pub_type
comment: This term was obsoleted because it was only ever used to annotate one publication: A copy of Calvin Bridges death certificate. This can still be found in the Drosophila offprint collection (FBrf0186653).
is_obsolete: true
[Term]
id: FBcv:0000002
name: abnormal thermotaxis
namespace: phenotypic_class
def: "Phenotype that is any abnormality in thermotaxis (GO:0043052). 'thermotaxis' is defined as: 'The directed movement of a motile cell or organism in response to a temperature gradient. Movement may be towards either a higher or lower temperature.'" [FBC:DOS, GOC:cab1, WB_REF:cgc467]
synonym: "thermotaxis behavior defective" EXACT []
synonym: "thermotaxis behaviour defective" EXACT []
synonym: "thermotaxis defective" EXACT []
is_a: FBcv:0000683 ! abnormal temperature response
[Term]
id: FBcv:0000003
name: obsolete In transgenic Drosophila (intraspecific)
namespace: mode_of_assay
comment: This term has been obsoleted because it is no longer used and relevant. mc151005
is_obsolete: true
consider: FBcv:0000807
[Term]
id: FBcv:0000004
name: obsolete Whole-organism transient assay (intraspecific)
namespace: mode_of_assay
comment: This term has been obsoleted because it is no longer used and relevant. mc151005
is_obsolete: true
consider: FBcv:0000807
[Term]
id: FBcv:0000005
name: qualifier
def: "Term used to qualify a descriptor." [FBC:MMC]
subset: do_not_annotate
is_a: FBcv:0000000 ! FlyBase CV
[Term]
id: FBcv:0000006
name: male semi-fertile
namespace: phenotypic_class
def: "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." [FBC:AO, FBC:CP, FBC:DOS]
is_a: FBcv:0000375 ! semi-fertile
is_a: FBcv:0000376 ! male fertile
[Term]
id: FBcv:0000007
name: female semi-fertile
namespace: phenotypic_class
def: "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." [FBC:AO, FBC:CP, FBC:DOS]
is_a: FBcv:0000375 ! semi-fertile
is_a: FBcv:0000377 ! female fertile
[Term]
id: FBcv:0000008
name: modifier of variegation
namespace: phenotypic_class
def: "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." [FBC:DOS]
subset: fbcvsubset_mgiribbons
synonym: "variegation" RELATED [FBC:DOS]
is_a: FBcv:0001347 ! phenotype
[Term]
id: FBcv:0000009
name: obsolete temporal stage qualifier
namespace: temporal_qualifier
comment: This term has been obsoleted because all of its children terms have been obsoleted [FBC:MMC]. mc161027
is_obsolete: true
consider: FBcv:0000176
[Term]
id: FBcv:0000010
name: obsolete monophasic
comment: This term has been obsoleted because there are new terms to replace it [FBC:MMC]. mc160113
is_obsolete: true
consider: FBcv:0000176
[Term]
id: FBcv:0000011
name: obsolete relative temporal qualifier
namespace: temporal_qualifier
comment: This term has been obsoleted because all of its children terms have been obsoleted [FBC:MMC]. mc161027
is_obsolete: true
consider: FBcv:0000176
[Term]
id: FBcv:0000012
name: obsolete absolute temporal qualifier
comment: This term has been obsoleted because both of its children terms have been obsoleted [FBC:MMC]. mc160113
is_obsolete: true
consider: FBcv:0000176
[Term]
id: FBcv:0000013
name: descriptor
def: "Term that describes an allele, balancer, group or publication." [FBC:MMC]
subset: do_not_annotate
is_a: FBcv:0000000 ! FlyBase CV
[Term]
id: FBcv:0000014
name: structural qualifier
namespace: structural_qualifier
def: "Qualifier used to describe changes in number or location of an anatomical structure compared to wild type." [FBC:CP, FBC:MMC]
subset: do_not_annotate
is_a: FBcv:0000809 ! phenotype qualifier
[Term]
id: FBcv:0000015
name: obsolete postage stamp
namespace: pub_type
comment: This term was obsoleted because it was little used.
is_obsolete: true
[Term]
id: FBcv:0000016
name: obsolete Baylor TE recombination mapping kit stock
comment: Consider - FBsv:0000605.
is_obsolete: true
[Term]
id: FBcv:0000017
name: obsolete penetrance qualifier
def: "Penetrance is the fraction of individuals of a given genotype who exhibit the phenotype associated with that genotype." [ISBN:978-0-7167-3520-5]
is_obsolete: true
[Term]
id: FBcv:0000018
name: obsolete penetrance complete
def: "Penetrance is the fraction of individuals of a given genotype who exhibit the phenotype associated with that genotype. Penetrance is complete when all the individuals of a given genotype exhibit the phenotype associated with that genotype." [ISBN:978-0-7167-3520-5]
is_obsolete: true
[Term]
id: FBcv:0000019
name: obsolete penetrance incomplete
def: "Penetrance is the fraction of individuals of a given genotype who exhibit the phenotype associated with that genotype. Penetrance is incomplete when only some the individuals of a given genotype exhibit the phenotype associated with that genotype." [ISBN:978-0-7167-3520-5]
is_obsolete: true
[Term]
id: FBcv:0000020
name: obsolete penetrance percent
def: "Penetrance is the fraction of individuals of a given genotype who exhibit the phenotype associated with that genotype. Penetrance is incomplete when only a percentage of the individuals of a given genotype exhibit the phenotype associated with that genotype." [ISBN:978-0-7167-3520-5]
comment: This term should be modified by a % value. This is not currently possible in FlyBase curation.
is_obsolete: true
[Term]
id: FBcv:0000021
name: obsolete expressivity qualifier
def: "Expressivity measures the extent to which a given genotype is expressed at the phenotypic level." [ISBN:978-0-7167-3520-5]
is_obsolete: true
[Term]
id: FBcv:0000022
name: obsolete expressivity complete
def: "Expressivity measures the extent to which a given genotype is expressed at the phenotypic level. Expressivity is complete when an individual of a given genotype expresses the full phenotype associated with that genotype." [ISBN:978-0-7167-3520-5]
is_obsolete: true
[Term]
id: FBcv:0000023
name: obsolete expressivity incomplete
def: "Expressivity measures the extent to which a given genotype is expressed at the phenotypic level. Expressivity is incomplete when an individual of a given genotype expresses only partially the phenotype associated with that genotype." [ISBN:978-0-7167-3520-5]
is_obsolete: true
[Term]
id: FBcv:0000024
name: obsolete expressivity high
def: "Expressivity measures the extent to which a given genotype is expressed at the phenotypic level. 'High expressivity' conveys that while expressivity is not complete, the phenotype expressed is approaching that of complete expressivity." [ISBN:978-0-7167-3520-5]
is_obsolete: true
[Term]
id: FBcv:0000025
name: obsolete expressivity low
def: "Expressivity measures the extent to which a given genotype is expressed at the phenotypic level. 'Low expressivity' conveys that phenotype expressed is a much reduced version compared to complete expressivity." [ISBN:978-0-7167-3520-5]
is_obsolete: true
[Term]
id: FBcv:0000026
name: obsolete recessive visible allele recombination mapping stock
is_obsolete: true
[Term]
id: FBcv:0000027
name: obsolete dominant visible allele recombination mapping stock
is_obsolete: true
[Term]
id: FBcv:0000028
name: obsolete SNP recombination mapping stock
comment: Consider - FBsv:0001018.
is_obsolete: true
[Term]
id: FBcv:0000029
name: obsolete transposable element mutagenesis stock
is_obsolete: true
[Term]
id: FBcv:0000030
name: obsolete compartment
namespace: spatial_qualifier
comment: This term was obsoleted because a term from the anatom ontology (FBbt) should be used instead. If possible, please use 'developmental compartment' (FBbt:00007110) or one of its subclasses [FBC:MMC]. mc161027
is_obsolete: true
consider: FBcv:0000052
[Term]
id: FBcv:0000031
name: obsolete anterior compartment
namespace: spatial_qualifier
comment: This term was obsoleted because a term from the anatom ontology (FBbt) should be used instead. If possible, please use 'developmental compartment' (FBbt:00007110) or one of its subclasses [FBC:MMC]. mc161027
is_obsolete: true
consider: FBcv:0000052
[Term]
id: FBcv:0000032
name: obsolete compartment boundary
namespace: spatial_qualifier
comment: This term was obsoleted because a term from the anatom ontology (FBbt) should be used instead. If possible, please use 'developmental compartment' (FBbt:00007110) or one of its subclasses [FBC:MMC]. mc161027
is_obsolete: true
consider: FBcv:0000052
[Term]
id: FBcv:0000033
name: obsolete anterior/posterior compartment boundary
namespace: spatial_qualifier
comment: This term was obsoleted because a term from the anatom ontology (FBbt) should be used instead. If possible, please use 'developmental compartment' (FBbt:00007110) or one of its subclasses [FBC:MMC]. mc161027
is_obsolete: true
consider: FBcv:0000052
[Term]
id: FBcv:0000034
name: obsolete dorsal/ventral compartment boundary
namespace: spatial_qualifier
comment: This term was obsoleted because a term from the anatom ontology (FBbt) should be used instead. If possible, please use 'developmental compartment' (FBbt:00007110) or one of its subclasses [FBC:MMC]. mc161027
is_obsolete: true
consider: FBcv:0000052
[Term]
id: FBcv:0000035
name: obsolete dorsal compartment
namespace: spatial_qualifier
comment: This term was obsoleted because a term from the anatom ontology (FBbt) should be used instead. If possible, please use 'developmental compartment' (FBbt:00007110) or one of its subclasses [FBC:MMC]. mc161027
is_obsolete: true
consider: FBcv:0000052
[Term]
id: FBcv:0000036
name: obsolete posterior compartment
namespace: spatial_qualifier
comment: This term was obsoleted because a term from the anatom ontology (FBbt) should be used instead. If possible, please use 'developmental compartment' (FBbt:00007110) or one of its subclasses [FBC:MMC]. mc161027
is_obsolete: true
consider: FBcv:0000052
[Term]
id: FBcv:0000037
name: obsolete ventral compartment
namespace: spatial_qualifier
comment: This term was obsoleted because a term from the anatom ontology (FBbt) should be used instead. If possible, please use 'developmental compartment' (FBbt:00007110) or one of its subclasses [FBC:MMC]. mc161027
is_obsolete: true
consider: FBcv:0000052
[Term]
id: FBcv:0000038
name: relative spatial qualifier
namespace: spatial_qualifier
def: "Qualifier that describes the spatial characteristics of a phenotype or expression pattern relative to the position of another entity." [FBC:CP]
subset: do_not_annotate
xref: PATO:0001631
is_a: FBcv:0000052 ! spatial qualifier
[Term]
id: FBcv:0000039
name: anterior to
namespace: spatial_qualifier
def: "A spatial quality inhering in a bearer by virtue of the bearer's being located toward the front of an organism relative to another entity." [PATO:0001632]
xref: PATO:0001632
is_a: FBcv:0000038 ! relative spatial qualifier
[Term]
id: FBcv:0000040
name: distal to
namespace: spatial_qualifier
def: "A spatial quality inhering in a bearer by virtue of the bearer's being located further from a more centrally located entity." [PATO:0001234]
xref: PATO:0001234
is_a: FBcv:0000038 ! relative spatial qualifier
[Term]
id: FBcv:0000041
name: dorsal to
namespace: spatial_qualifier
def: "A spatial quality inhering in a bearer by virtue of the bearer's being located toward the back or upper surface of an organism relative to another entity." [PATO:0001233]
xref: PATO:0001233
is_a: FBcv:0000038 ! relative spatial qualifier
[Term]
id: FBcv:0000042
name: obsolete deficiency kit stock
synonym: "deletion kit stock" RELATED []
is_obsolete: true
[Term]
id: FBcv:0000043
name: obsolete transposase source for transposable element mutagenesis
comment: Consider - FBsv:0001020.
is_obsolete: true
[Term]
id: FBcv:0000044
name: obsolete ammunition source for transposable element mutagenesis
comment: Consider - FBsv:0001022.
is_obsolete: true
[Term]
id: FBcv:0000045
name: posterior to
namespace: spatial_qualifier
def: "A spatial quality inhering in a bearer by virtue of the bearer's being located toward the rear of an organism relative to another entity." [PATO:0001633]
xref: PATO:0001633
is_a: FBcv:0000038 ! relative spatial qualifier
[Term]
id: FBcv:0000046
name: precursor
namespace: temporal_qualifier
is_a: FBcv:0000176 ! temporal qualifier
[Term]
id: FBcv:0000047
name: proximal to
namespace: spatial_qualifier
def: "A spatial quality inhering in a bearer by virtue of the bearer's being located more centrally than another entity." [PATO:0001195]
xref: PATO:0001195
is_a: FBcv:0000038 ! relative spatial qualifier
[Term]
id: FBcv:0000048
name: surrounding
namespace: spatial_qualifier
def: "A spatial quality inhering in a bearer by virtue of the bearer's being extended on all sides of another entity simultaneously." [PATO:0001772]
xref: PATO:0001772
is_a: FBcv:0000038 ! relative spatial qualifier
[Term]
id: FBcv:0000049
name: ventral to
namespace: spatial_qualifier
def: "A spatial quality inhering in a bearer by virtue of the bearer's being located toward the belly or lower surface of an organism relative to another entity." [FBC:CP]
xref: PATO:0001196
is_a: FBcv:0000038 ! relative spatial qualifier
[Term]
id: FBcv:0000050
name: vicinity of
namespace: spatial_qualifier
def: "A spatial quality inhering in a bearer by virtue of the bearer's being located near in space in relation to another entity." [PATO:0002259]
synonym: "adjacent to" NARROW [PATO:0002259]
xref: PATO:0002259
is_a: FBcv:0000038 ! relative spatial qualifier
[Term]
id: FBcv:0000051
name: segment boundary
namespace: spatial_qualifier
def: "Present in the area that separates segments." [FBC:MMC]
is_a: FBcv:0000052 ! spatial qualifier
[Term]
id: FBcv:0000052
name: spatial qualifier
namespace: spatial_qualifier
def: "Qualifier that describes the spatial characteristics of a phenotype or expression pattern." [FBC:MMC]
subset: do_not_annotate
is_a: FBcv:0000005 ! qualifier
[Term]
id: FBcv:0000053
name: anterior
namespace: spatial_qualifier
def: "Restricted to anterior region of some specified type." [FBC:DS]
is_a: FBcv:0000052 ! spatial qualifier
[Term]
id: FBcv:0000054
name: apical
namespace: spatial_qualifier
def: "Restricted to apical region of some specified type." [FBC:DS]
is_a: FBcv:0000052 ! spatial qualifier
[Term]
id: FBcv:0000055
name: basal
namespace: spatial_qualifier
def: "Restricted to basal region of some specified type." [FBC:DS]
is_a: FBcv:0000052 ! spatial qualifier
[Term]
id: FBcv:0000056
name: central
namespace: spatial_qualifier
def: "Restricted to central region of some specified type." [FBC:DS]
is_a: FBcv:0000052 ! spatial qualifier
[Term]
id: FBcv:0000057
name: obsolete contralateral
namespace: spatial_qualifier
comment: This term has been obsoleted because there is no way to combine it with an anatomy term to produce a meaningful statement [FBC:MMC]. mc160113.
is_obsolete: true
consider: FBcv:0000052
[Term]
id: FBcv:0000058
name: distal
namespace: spatial_qualifier
def: "Restricted to distal region of some specified type." [FBC:DS]
is_a: FBcv:0000052 ! spatial qualifier
[Term]
id: FBcv:0000059
name: dorsal
namespace: spatial_qualifier
def: "Restricted to dorsal region of some specified type." [FBC:DS]
is_a: FBcv:0000052 ! spatial qualifier
[Term]
id: FBcv:0000060
name: dorso-lateral
namespace: spatial_qualifier
def: "Restricted to dorso-lateral region of some specified type." [FBC:DS]
is_a: FBcv:0000052 ! spatial qualifier
[Term]
id: FBcv:0000061
name: ectopic
namespace: structural_qualifier
def: "Anatomical structure is present in a location in which it would not be present in wild-type." [FBC:CP]
comment: An extra copy of an anatomical structure that is present in the same location as in wild-type should use 'increased number', rather than 'ectopic'.
xref: PATO:0000628
is_a: FBcv:0000014 ! structural qualifier
[Term]
id: FBcv:0000062
name: obsolete ipsilateral
namespace: spatial_qualifier
comment: This term has been obsoleted because there is no way to combine it with an anatomy term to produce a meaningful statement [FBC:MMC]. mc161027
is_obsolete: true
consider: FBcv:0000052
[Term]
id: FBcv:0000063
name: lateral
namespace: spatial_qualifier
def: "Restricted to lateral region(s) of some specified type." [FBC:DS]
is_a: FBcv:0000052 ! spatial qualifier
[Term]
id: FBcv:0000064
name: medial
namespace: spatial_qualifier
def: "Restricted to medial region of some specified type." [FBC:DS]
is_a: FBcv:0000052 ! spatial qualifier
[Term]
id: FBcv:0000065
name: posterior
namespace: spatial_qualifier
def: "Restricted to posterior region of some specified type." [FBC:DS]
is_a: FBcv:0000052 ! spatial qualifier
[Term]
id: FBcv:0000066
name: proximal
namespace: spatial_qualifier
def: "Restricted to proximal region of some specified type." [FBC:DS]
is_a: FBcv:0000052 ! spatial qualifier
[Term]
id: FBcv:0000067
name: restricted
namespace: spatial_qualifier
def: "Restricted to unknown part(s) of a specified type." [FBC:DS]
is_a: FBcv:0000052 ! spatial qualifier
[Term]
id: FBcv:0000068
name: increased number
namespace: structural_qualifier
def: "Present in the correct location but in larger numbers than in wild-type." [FBC:DOS]
synonym: "supernumerary" EXACT []
is_a: FBcv:0000014 ! structural qualifier
[Term]
id: FBcv:0000069
name: ubiquitous
namespace: spatial_qualifier
def: "Expressed everywhere at some specified stage." [FBC:DOS]
is_a: FBcv:0000052 ! spatial qualifier
[Term]
id: FBcv:0000070
name: ventral
namespace: spatial_qualifier
def: "Restricted to ventral region of some specified type." [FBC:DS]
is_a: FBcv:0000052 ! spatial qualifier
[Term]
id: FBcv:0000071
name: ventro-lateral
namespace: spatial_qualifier
def: "Restricted to ventro-lateral region of some specified type." [FBC:DS]
is_a: FBcv:0000052 ! spatial qualifier
[Term]
id: FBcv:0000072
name: obsolete gene expression qualifier
is_obsolete: true
[Term]
id: FBcv:0000073
name: obsolete embryonic expression pattern
is_obsolete: true
[Term]
id: FBcv:0000074
name: egg length
namespace: spatial_qualifier
def: "Position in the egg or pre-gastrula embryo expressed as a percentage of egg length, where 0% corresponds to the posterior tip and 100% to the anterior tip." [FBC:DOS]
is_a: FBcv:0000052 ! spatial qualifier
[Term]
id: FBcv:0000075
name: 0% egg length
namespace: spatial_qualifier
def: "At the posterior tip of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000076
name: 0-10% egg length
namespace: spatial_qualifier
def: "0-10% of egg length from the posterior tip of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000077
name: 0-100% egg length
namespace: spatial_qualifier
def: "The full length of the pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000078
name: 0-20% egg length
namespace: spatial_qualifier
def: "0-20% of egg length from the posterior tip of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000079
name: 0-30% egg length
namespace: spatial_qualifier
def: "0-30% of egg length from the posterior tip of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000080
name: 0-40% egg length
namespace: spatial_qualifier
def: "0-40% of egg length from the posterior tip of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000081
name: 0-50% egg length
namespace: spatial_qualifier
def: "0-50% of egg length from the posterior tip of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000082
name: 0-60% egg length
namespace: spatial_qualifier
def: "0-60% of egg length from the posterior tip of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000083
name: 0-70% egg length
namespace: spatial_qualifier
def: "0-70% of egg length from the posterior tip of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000084
name: 0-80% egg length
namespace: spatial_qualifier
def: "0-80% of egg length from the posterior tip of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000085
name: 0-90% egg length
namespace: spatial_qualifier
def: "0-90% of egg length from the posterior tip of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000086
name: 10% egg length
namespace: spatial_qualifier
def: "10% of egg length from the posterior tip of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000087
name: 10-100% egg length
namespace: spatial_qualifier
def: "10-100% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000088
name: 10-20% egg length
namespace: spatial_qualifier
def: "10-20% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000089
name: 10-30% egg length
namespace: spatial_qualifier
def: "10-30% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000090
name: 10-40% egg length
namespace: spatial_qualifier
def: "10-40% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000091
name: 10-50% egg length
namespace: spatial_qualifier
def: "10-50% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000092
name: 10-60% egg length
namespace: spatial_qualifier
def: "10-60% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000093
name: 10-70% egg length
namespace: spatial_qualifier
def: "10-70% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000094
name: 10-80% egg length
namespace: spatial_qualifier
def: "10-80% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000095
name: 10-90% egg length
namespace: spatial_qualifier
def: "10-90% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000096
name: 100% egg length
namespace: spatial_qualifier
def: "At the anterior tip of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000097
name: 20% egg length
namespace: spatial_qualifier
def: "20% of egg length from the posterior tip of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000098
name: 20-100% egg length
namespace: spatial_qualifier
def: "20-100% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000099
name: 20-30% egg length
namespace: spatial_qualifier
def: "20-30% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000100
name: 20-40% egg length
namespace: spatial_qualifier
def: "20-40% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000101
name: 20-50% egg length
namespace: spatial_qualifier
def: "20-50% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000102
name: 20-60% egg length
namespace: spatial_qualifier
def: "20-60% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000103
name: 20-70% egg length
namespace: spatial_qualifier
def: "20-70% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000104
name: 20-80% egg length
namespace: spatial_qualifier
def: "20-80% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000105
name: 20-90% egg length
namespace: spatial_qualifier
def: "20-90% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000106
name: 30% egg length
namespace: spatial_qualifier
def: "30% of egg length from the posterior tip of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000107
name: 30-100% egg length
namespace: spatial_qualifier
def: "30-100% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000108
name: 30-40% egg length
namespace: spatial_qualifier
def: "30-40% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000109
name: 30-50% egg length
namespace: spatial_qualifier
def: "30-50% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000110
name: 30-60% egg length
namespace: spatial_qualifier
def: "30-60% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000111
name: 30-70% egg length
namespace: spatial_qualifier
def: "30-70% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000112
name: 30-80% egg length
namespace: spatial_qualifier
def: "30-80% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000113
name: 30-90% egg length
namespace: spatial_qualifier
def: "30-90% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000114
name: 40% egg length
namespace: spatial_qualifier
def: "40% of egg length from the posterior tip of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000115
name: 40-100% egg length
namespace: spatial_qualifier
def: "40-100% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000116
name: 40-50% egg length
namespace: spatial_qualifier
def: "40-50% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000117
name: 40-60% egg length
namespace: spatial_qualifier
def: "40-60% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000118
name: 40-70% egg length
namespace: spatial_qualifier
def: "40-70% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000119
name: 40-80% egg length
namespace: spatial_qualifier
def: "40-80% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000120
name: 40-90% egg length
namespace: spatial_qualifier
def: "40-90% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000121
name: 50% egg length
namespace: spatial_qualifier
def: "50% of egg length from the posterior tip of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000122
name: 50-100% egg length
namespace: spatial_qualifier
def: "50-100% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000123
name: 50-60% egg length
namespace: spatial_qualifier
def: "50-60% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000124
name: 50-70% egg length
namespace: spatial_qualifier
def: "50-70% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000125
name: 50-80% egg length
namespace: spatial_qualifier
def: "50-80% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000126
name: 50-90% egg length
namespace: spatial_qualifier
def: "50-90% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000127
name: 60% egg length
namespace: spatial_qualifier
def: "60% of egg length from the posterior tip of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000128
name: 60-100% egg length
namespace: spatial_qualifier
def: "60-100% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000129
name: 60-80% egg length
namespace: spatial_qualifier
def: "60-80% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000130
name: 60-90% egg length
namespace: spatial_qualifier
def: "60-90% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000131
name: 70% egg length
namespace: spatial_qualifier
def: "70% of egg length from the posterior tip of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000132
name: 70-100% egg length
namespace: spatial_qualifier
def: "70-100% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000133
name: 70-80% egg length
namespace: spatial_qualifier
def: "70-80% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000134
name: 70-90% egg length
namespace: spatial_qualifier
def: "70-90% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000135
name: 80% egg length
namespace: spatial_qualifier
def: "80% of egg length from the posterior tip of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000136
name: 80-90% egg length
namespace: spatial_qualifier
def: "80-90% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000137
name: 90% egg length
namespace: spatial_qualifier
def: "90% of egg length from the posterior tip of the egg or pre-gastrula embryo." [FBC:DOS]
is_a: FBcv:0000074 ! egg length
[Term]
id: FBcv:0000139
name: 90-100% egg length
namespace: spatial_qualifier
alt_id: FBcv:0000138
def: "90-100% of egg length from the posterior tip (0%) of the egg or pre-gastrula embryo." [FBC:DOS]
synonym: "90-100% egg length" RELATED []
is_a: FBcv:0000074 ! egg length