-
Notifications
You must be signed in to change notification settings - Fork 3
/
ddpheno-edit.obo
8000 lines (6928 loc) · 290 KB
/
ddpheno-edit.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
date: 14:07:2020 18:35
saved-by: Petra
auto-generated-by: OBO-Edit 2.2
default-namespace: Dicty Phenotypes
property_value: http://purl.org/dc/elements/1.1/description "A structured controlled vocabulary of phenotypes of the slime-mould Dictyostelium discoideum." xsd:string
property_value: http://purl.org/dc/elements/1.1/title "Dicty Phenotype Ontology (DDPHENO)" xsd:string
property_value: http://purl.org/dc/terms/license http://creativecommons.org/publicdomain/zero/1.0/
ontology: ddpheno
[Term]
id: DDPHENO:0000001
name: aberrant spore color
def: "Deviation from the normal, usual, or expected spore color." [DDB:pf]
synonym: "aberrant spore pigmentation" EXACT []
is_a: DDPHENO:0000513 ! aberrant sporulation
created_by: pfey
creation_date: 2013-08-14T16:28:20Z
[Term]
id: DDPHENO:0000002
name: aberrant standing slug morphology
def: "Deviation from the normal, usual, or expected morphology of the standing slug (finger)." [DDB:pf]
synonym: "aberrant finger morphology" EXACT []
synonym: "curly fingers" BROAD []
is_a: DDPHENO:0001014 ! aberrant slug formation
created_by: pfey
creation_date: 2013-08-15T16:54:08Z
[Term]
id: DDPHENO:0000003
name: increased slug length
def: "Increase in length of the slug." [DDB:pf]
synonym: "long slug" EXACT []
is_a: DDPHENO:0000160 ! increased slug size
created_by: pfey
creation_date: 2013-08-16T15:21:25Z
[Term]
id: DDPHENO:0000004
name: decreased slug size
def: "Decrease in relative or proportionate dimensions of the slug." [DDB:pf]
is_a: DDPHENO:0001014 ! aberrant slug formation
created_by: pfey
creation_date: 2013-08-27T16:36:33Z
[Term]
id: DDPHENO:0000005
name: aberrant autophagy
def: "Deviation from the normal, usual, or expected events during autophagy." [DDB:pf]
is_a: DDPHENO:0001005 ! aberrant cellular metabolic process
created_by: pfey
creation_date: 2013-09-23T14:27:57Z
[Term]
id: DDPHENO:0000006
name: increased autophagy
def: "Increase in extent, amount, or degree of autophagy." [DDB:pf]
is_a: DDPHENO:0000005 ! aberrant autophagy
created_by: pfey
creation_date: 2013-09-23T14:29:45Z
[Term]
id: DDPHENO:0000007
name: decreased autophagy
def: "Reduction in extent, amount, or degree of autophagy." [DDB:pf]
is_a: DDPHENO:0000005 ! aberrant autophagy
created_by: pfey
creation_date: 2013-09-23T14:30:03Z
[Term]
id: DDPHENO:0000008
name: aberrant post-transciptional gene silencing by RNA
def: "Deviation from the normal, usual, or expected events during post-transciptional gene silencing by RNA." [DDB:pf]
is_a: DDPHENO:0001005 ! aberrant cellular metabolic process
created_by: pfey
creation_date: 2013-10-28T15:52:58Z
[Term]
id: DDPHENO:0000009
name: aberrant fruiting body morphology
def: "Deviation from the normal, usual, or expected morphology of the fruiting body." [DDB:pg]
synonym: "aberrant sorocarp morphology" EXACT []
is_a: DDPHENO:0000154 ! aberrant sorocarp development
[Term]
id: DDPHENO:0000010
name: abolished post-transciptional gene silencing by RNA
def: "Complete inability for post-transciptional gene silencing by RNA." [DDB:pf]
is_a: DDPHENO:0000008 ! aberrant post-transciptional gene silencing by RNA
created_by: pfey
creation_date: 2013-10-28T15:57:20Z
[Term]
id: DDPHENO:0000011
name: decreased post-transciptional gene silencing by RNA
def: "Reduction in level of modification of post-transciptional gene silencing by RNA." [DDB:pf]
is_a: DDPHENO:0000008 ! aberrant post-transciptional gene silencing by RNA
created_by: pfey
creation_date: 2013-10-28T15:59:10Z
[Term]
id: DDPHENO:0000012
name: aberrant microRNA processing
def: "Deviation from the normal, usual, or expected events during microRNA processing." [DDB:pf]
synonym: "aberrant miRNA processing" EXACT []
is_a: DDPHENO:0001005 ! aberrant cellular metabolic process
created_by: pfey
creation_date: 2013-10-28T18:00:23Z
[Term]
id: DDPHENO:0000014
name: abolished microRNA processing
def: "Complete inability for microRNA processing." [DDB:pf]
synonym: "abolished miRNA processing" EXACT []
is_a: DDPHENO:0000012 ! aberrant microRNA processing
created_by: pfey
creation_date: 2013-10-28T18:01:47Z
[Term]
id: DDPHENO:0000015
name: increased microRNA processing
def: "Increase in level of microRNA processing." [DDB:pf]
synonym: "increased miRNA processing" EXACT []
is_a: DDPHENO:0000012 ! aberrant microRNA processing
created_by: pfey
creation_date: 2013-10-28T18:03:08Z
[Term]
id: DDPHENO:0000016
name: decreased microRNA processing
def: "Reduction in level of microRNA processing." [DDB:pf]
synonym: "decreased miRNA processing" EXACT []
is_a: DDPHENO:0000012 ! aberrant microRNA processing
created_by: pfey
creation_date: 2013-10-28T18:03:53Z
[Term]
id: DDPHENO:0000017
name: aberrant transitive RNA interference
def: "Deviation from the normal, usual, or expected events during transitive RNA interference." [DDB:pf]
synonym: "aberrant transitive RNAi" EXACT []
is_a: DDPHENO:0000020 ! aberrant RNA interference
created_by: pfey
creation_date: 2013-11-06T10:25:06Z
[Term]
id: DDPHENO:0000018
name: abolished transitive RNA interference
def: "Complete inability for transitive RNA interference." [DDB:pf]
synonym: "abolished transitive RNAi" EXACT []
is_a: DDPHENO:0000017 ! aberrant transitive RNA interference
created_by: pfey
creation_date: 2013-11-06T10:26:55Z
[Term]
id: DDPHENO:0000019
name: abolished culmination
def: "Complete inability for culmination." [DDB:pg]
synonym: "culmination defective" RELATED []
is_a: DDPHENO:0001015 ! aberrant culmination
[Term]
id: DDPHENO:0000020
name: aberrant RNA interference
def: "Deviation from the normal, usual, or expected events during RNA interference." [DDB:pf]
synonym: "aberrant RNAi" RELATED []
is_a: DDPHENO:0000008 ! aberrant post-transciptional gene silencing by RNA
created_by: pfey
creation_date: 2013-11-06T10:35:04Z
[Term]
id: DDPHENO:0000021
name: abolished RNA interference
synonym: "abolished RNAi" RELATED []
is_a: DDPHENO:0000020 ! aberrant RNA interference
created_by: pfey
creation_date: 2013-11-06T10:38:10Z
[Term]
id: DDPHENO:0000022
name: aberrant production of siRNA involved in RNA interference
def: "Deviation from the normal, usual, or expected events during production of siRNA involved in RNA interference." [DDB:pf]
synonym: "aberrant production of siRNA involved in RNAi" RELATED []
is_a: DDPHENO:0000020 ! aberrant RNA interference
created_by: pfey
creation_date: 2013-11-06T11:17:36Z
[Term]
id: DDPHENO:0000024
name: abolished production of siRNA involved in RNA interference
def: "Complete inability for production of siRNA involved in RNA interference." [DDB:pf]
synonym: "abolished production of siRNA involved in RNAi" RELATED []
is_a: DDPHENO:0000022 ! aberrant production of siRNA involved in RNA interference
created_by: pfey
creation_date: 2013-11-06T11:20:17Z
[Term]
id: DDPHENO:0000025
name: abolished exocytosis
def: "Complete inability for exocytosis." [DDB:pf]
is_a: DDPHENO:0001110 ! aberrant exocytosis
created_by: pfey
creation_date: 2013-12-02T17:36:22Z
[Term]
id: DDPHENO:0000026
name: development arrests at mound stage
def: "Development cannot progress past the mound stage." [DDB:pf]
synonym: "development arrests at aggregate stage" EXACT []
is_a: DDPHENO:0000154 ! aberrant sorocarp development
[Term]
id: DDPHENO:0000027
name: abolished phagosome re-neutralization
def: "Complete inability for phagosome re-neutralization." [DDB:pf]
is_a: DDPHENO:0001488 ! aberrant phagosome maturation
created_by: pfey
creation_date: 2013-12-02T17:39:10Z
[Term]
id: DDPHENO:0000028
name: abolished stalk formation
def: "Complete inability for formation of the stalk." [DDB:pg]
is_a: DDPHENO:0001012 ! aberrant stalk formation
[Term]
id: DDPHENO:0000029
name: increased resistance to N-Phenylthiourea
def: "Increase in extent, amount, or degree of resistance to N-Phenylthiourea." [DDB:pf]
is_a: DDPHENO:0000041 ! aberrant response to N-Phenylthiourea
created_by: pfey
creation_date: 2014-01-16T15:06:08Z
[Term]
id: DDPHENO:0000030
name: abolished slug formation
def: "Complete inability to form slugs during development." [DDB:pf]
is_a: DDPHENO:0001014 ! aberrant slug formation
created_by: pfey
creation_date: 2014-01-24T13:54:53Z
[Term]
id: DDPHENO:0000031
name: obsolete abolished rate of endocytosis
def: "Complete inability for endocytosis." [DDB:pf]
is_obsolete: true
created_by: pfey
creation_date: 2014-01-27T14:30:48Z
[Term]
id: DDPHENO:0000032
name: increased sporulation
def: "Increase in extent, amount, or degree of sporulation." [DDB:pg]
synonym: "increased number of spore cells" RELATED []
synonym: "increased number of spores" RELATED []
is_a: DDPHENO:0000513 ! aberrant sporulation
[Term]
id: DDPHENO:0000033
name: aberrant secretion
def: "Deviation from the normal, usual, or expected events during secretion of a substance." [DDB:pf]
is_a: DDPHENO:0001047 ! aberrant transport
created_by: pfey
creation_date: 2014-01-27T14:34:52Z
[Term]
id: DDPHENO:0000034
name: aberrant contractile vacuole discharge
def: "Deviation from the normal, usual, or expected events during contractile vacuole discharge." [DDB:pf]
is_a: DDPHENO:0000033 ! aberrant secretion
is_a: DDPHENO:0001110 ! aberrant exocytosis
created_by: pfey
creation_date: 2014-01-27T16:14:28Z
[Term]
id: DDPHENO:0000035
name: abolished contractile vacuole discharge
def: "Complete inability for contractile vacuole discharge." [DDB:pf]
is_a: DDPHENO:0000034 ! aberrant contractile vacuole discharge
created_by: pfey
creation_date: 2014-01-27T16:15:45Z
[Term]
id: DDPHENO:0000036
name: multiple tips
def: "Increase in extend, amount, or degree of the number of tips." [DDB:pf]
synonym: "increased number of tips" EXACT []
is_a: DDPHENO:0000009 ! aberrant fruiting body morphology
is_a: DDPHENO:0001431 ! aberrant tip formation
[Term]
id: DDPHENO:0000037
name: decreased contractile vacuole discharge
def: "Reduction in extent, amount, or degree of contractile vacuole discharge." [DDB:pf]
is_a: DDPHENO:0000034 ! aberrant contractile vacuole discharge
created_by: pfey
creation_date: 2014-01-27T16:16:48Z
[Term]
id: DDPHENO:0000038
name: increased contractile vacuole discharge
def: "Increase in extent, amount, or degree of contractile vacuole discharge." [DDB:pf]
is_a: DDPHENO:0000034 ! aberrant contractile vacuole discharge
created_by: pfey
creation_date: 2014-01-27T16:17:55Z
[Term]
id: DDPHENO:0000039
name: aberrant plasma membrane organization and biogenesis
def: "Deviation from the normal, usual, or expected events during plasma membrane organization and biogenesis." [DDB:pf]
synonym: "aberrant plasma membrane circulation" RELATED []
synonym: "aberrant plasma membrane organization" NARROW []
is_a: DDPHENO:0001042 ! aberrant cellular component organization or biogenesis
created_by: pfey
creation_date: 2014-01-27T16:39:23Z
[Term]
id: DDPHENO:0000040
name: aberrant response to chemical
def: "Deviation from the normal, usual, or expected events during the response to a chemical." [DDB:pf]
synonym: "aberrant response to chemical stimulus" RELATED []
is_a: DDPHENO:0001003 ! aberrant response to stimulus
created_by: pfey
creation_date: 2014-03-20T12:02:35Z
[Term]
id: DDPHENO:0000041
name: aberrant response to N-Phenylthiourea
def: "Deviation from the normal, usual, or expected events during the response to N-Phenylthiourea." [DDB:pf]
is_a: DDPHENO:0000040 ! aberrant response to chemical
created_by: pfey
creation_date: 2014-03-20T12:09:31Z
[Term]
id: DDPHENO:0000042
name: aberrant membrane ruffling
def: "Deviation from the normal, usual, or expected events during membrane ruffling." [DDB:pf]
synonym: "aberrant ruffle assembly" RELATED []
is_a: DDPHENO:0001042 ! aberrant cellular component organization or biogenesis
created_by: pfey
creation_date: 2014-03-20T13:02:03Z
[Term]
id: DDPHENO:0000043
name: decreased membrane ruffling
def: "Reduction in extent, amount, or degree of membrane ruffling." [DDB:pf]
synonym: "decreased ruffle assembly" RELATED []
is_a: DDPHENO:0000042 ! aberrant membrane ruffling
created_by: pfey
creation_date: 2014-03-20T13:04:44Z
[Term]
id: DDPHENO:0000044
name: aberrant SDF production
def: "Deviation from the normal, usual, or expected during SDF production, peptides that promote terminal spore differentiation." [DDB:pf]
is_a: DDPHENO:0001005 ! aberrant cellular metabolic process
created_by: pfey
creation_date: 2014-03-20T13:59:32Z
[Term]
id: DDPHENO:0000045
name: aberrant phosphatidylinositol metabolism
def: "Deviation from the normal, usual, or expected events during phosphatidylinositol metabolism." [DDB:pf]
synonym: "aberrant phosphoinositide metabolism" EXACT []
is_a: DDPHENO:0001005 ! aberrant cellular metabolic process
created_by: pfey
creation_date: 2014-03-20T14:03:28Z
[Term]
id: DDPHENO:0000046
name: aberrant phosphatidylinositol biosynthesis
def: "Deviation from the normal, usual, or expected events during phosphatidylinositol biosynthesis." [DDB:pf]
is_a: DDPHENO:0000045 ! aberrant phosphatidylinositol metabolism
created_by: pfey
creation_date: 2014-03-20T14:07:21Z
[Term]
id: DDPHENO:0000047
name: decreased phosphatidylinositol biosynthesis
def: "Reduction in extent, amount, or degree of phosphatidylinositol biosynthesis." [DDB:pf]
is_a: DDPHENO:0000046 ! aberrant phosphatidylinositol biosynthesis
created_by: pfey
creation_date: 2014-03-20T14:09:34Z
[Term]
id: DDPHENO:0000048
name: increased phosphatidylinositol biosynthesis
def: "Increase in amount or accumulation of phosphatidylinositol biosynthesis." [DDB:pf]
is_a: DDPHENO:0000046 ! aberrant phosphatidylinositol biosynthesis
created_by: pfey
creation_date: 2014-03-20T14:10:51Z
[Term]
id: DDPHENO:0000049
name: abolished phosphatidylinositol biosynthesis
def: "Complete inability for the production of phosphatidylinositol." [DDB:pf]
is_a: DDPHENO:0000046 ! aberrant phosphatidylinositol biosynthesis
created_by: pfey
creation_date: 2014-03-20T14:12:10Z
[Term]
id: DDPHENO:0000050
name: abolished hypotonic response
def: "Complete inability to respond to hypo-osmotic stress." [DDB:pf]
synonym: "abolished response to hypo-osmotic stress" EXACT []
synonym: "abolished response to hypotonic stress" EXACT []
is_a: DDPHENO:0001068 ! aberrant hypotonic response
created_by: pfey
creation_date: 2014-03-26T09:43:34Z
[Term]
id: DDPHENO:0000051
name: decreased hypotonic response
def: "Reduction in extent, amount, or degree of the response to hypo-osmotic stress." [DDB:pf]
synonym: "decreased response to hypo-osmotic stress" EXACT []
synonym: "decreased response to hypotonic stress" EXACT []
is_a: DDPHENO:0001068 ! aberrant hypotonic response
created_by: pfey
creation_date: 2014-03-26T09:45:52Z
[Term]
id: DDPHENO:0000052
name: increased hypotonic response
def: "Increase in extent, amount, or degree of the response to hypo-osmotic stress." [DDB:pf]
synonym: "increased response to hypo-osmotic stress" EXACT []
synonym: "increased response to hypotonic stress" EXACT []
is_a: DDPHENO:0001068 ! aberrant hypotonic response
created_by: pfey
creation_date: 2014-03-26T09:49:08Z
[Term]
id: DDPHENO:0000053
name: decreased contractile vacuole size
def: "Decrease in relative or proportionate dimensions of the contractile vacuole." [DDB:pf]
is_a: DDPHENO:0001066 ! aberrant contractile vacuole morphology
created_by: pfey
creation_date: 2014-03-26T09:52:55Z
[Term]
id: DDPHENO:0000054
name: aberrant localization to cell cortex
def: "Deviation from the normal, usual, or expected localization to the cell cortex." [DDB:pf]
is_a: DDPHENO:0001217 ! aberrant cellular localization
created_by: pfey
creation_date: 2014-05-21T10:23:59Z
[Term]
id: DDPHENO:0000055
name: abolished localization to cell cortex
def: "Complete inability to localize to the cell cortex." [DDB:pf]
is_a: DDPHENO:0000054 ! aberrant localization to cell cortex
is_a: DDPHENO:0000110 ! abolished cellular localization
created_by: pfey
creation_date: 2014-05-21T10:25:02Z
[Term]
id: DDPHENO:0000056
name: increased localization to cell cortex
def: "Increase in amount or accumulation at the cell cortex." [DDB:pf]
is_a: DDPHENO:0000054 ! aberrant localization to cell cortex
is_a: DDPHENO:0000113 ! increased cellular localization
created_by: pfey
creation_date: 2014-05-21T10:25:31Z
[Term]
id: DDPHENO:0000057
name: decreased localization to cell cortex
def: "Reduction in amount or accumulation at the cell cortex." [DDB:pf]
is_a: DDPHENO:0000054 ! aberrant localization to cell cortex
is_a: DDPHENO:0000112 ! decreased cellular localization
created_by: pfey
creation_date: 2014-05-21T10:26:03Z
[Term]
id: DDPHENO:0000058
name: aberrant localization to cell surface
def: "Deviation from the normal, usual, or expected localization to the cell surface." [DDB:pf]
is_a: DDPHENO:0001217 ! aberrant cellular localization
created_by: pfey
creation_date: 2014-05-21T10:26:59Z
[Term]
id: DDPHENO:0000059
name: abolished localization to cell surface
def: "Complete inability to localize to the cell surface." [DDB:pf]
is_a: DDPHENO:0000058 ! aberrant localization to cell surface
is_a: DDPHENO:0000110 ! abolished cellular localization
created_by: pfey
creation_date: 2014-05-21T10:27:37Z
[Term]
id: DDPHENO:0000060
name: increased localization to cell surface
def: "Increase in amount or accumulation on the cell surface." [DDB:pf]
is_a: DDPHENO:0000058 ! aberrant localization to cell surface
is_a: DDPHENO:0000113 ! increased cellular localization
created_by: pfey
creation_date: 2014-05-21T10:28:27Z
[Term]
id: DDPHENO:0000061
name: decreased localization to cell surface
def: "Reduction in amount or accumulation on the cell surface." [DDB:pf]
is_a: DDPHENO:0000058 ! aberrant localization to cell surface
is_a: DDPHENO:0000112 ! decreased cellular localization
created_by: pfey
creation_date: 2014-05-21T10:29:01Z
[Term]
id: DDPHENO:0000062
name: aberrant localization to coated pits
def: "Deviation from the normal, usual, or expected localization to coated pits." [DDB:pf]
is_a: DDPHENO:0001217 ! aberrant cellular localization
created_by: pfey
creation_date: 2014-05-21T10:29:31Z
[Term]
id: DDPHENO:0000063
name: abolished localization to coated pits
def: "Complete inability to localize to coated pits." [DDB:pf]
is_a: DDPHENO:0000062 ! aberrant localization to coated pits
is_a: DDPHENO:0000110 ! abolished cellular localization
created_by: pfey
creation_date: 2014-05-21T10:30:14Z
[Term]
id: DDPHENO:0000064
name: increased localization to coated pits
def: "Increase in amount or accumulation at coated pits." [DDB:pf]
is_a: DDPHENO:0000062 ! aberrant localization to coated pits
is_a: DDPHENO:0000113 ! increased cellular localization
created_by: pfey
creation_date: 2014-05-21T10:30:34Z
[Term]
id: DDPHENO:0000065
name: decreased localization to coated pits
def: "Reduction in amount or accumulation at coated pits." [DDB:pf]
is_a: DDPHENO:0000062 ! aberrant localization to coated pits
is_a: DDPHENO:0000112 ! decreased cellular localization
created_by: pfey
creation_date: 2014-05-21T10:30:49Z
[Term]
id: DDPHENO:0000066
name: aberrant localization to cytoplasm
def: "Deviation from the normal, usual, or expected localization to the cytoplasm." [DDB:pf]
is_a: DDPHENO:0001217 ! aberrant cellular localization
created_by: pfey
creation_date: 2014-05-21T10:31:22Z
[Term]
id: DDPHENO:0000067
name: abolished localization to cytoplasm
def: "Complete inability to localize to the cytoplasm." [DDB:pf]
is_a: DDPHENO:0000066 ! aberrant localization to cytoplasm
is_a: DDPHENO:0000110 ! abolished cellular localization
created_by: pfey
creation_date: 2014-05-21T10:32:06Z
[Term]
id: DDPHENO:0000068
name: increased localization to cytoplasm
def: "Increase in amount or accumulation in the cytoplasm." [DDB:pf]
is_a: DDPHENO:0000066 ! aberrant localization to cytoplasm
is_a: DDPHENO:0000113 ! increased cellular localization
created_by: pfey
creation_date: 2014-05-21T10:32:18Z
[Term]
id: DDPHENO:0000069
name: decreased localization to cytoplasm
def: "Reduction in amount or accumulation in the cytoplasm." [DDB:pf]
is_a: DDPHENO:0000066 ! aberrant localization to cytoplasm
is_a: DDPHENO:0000112 ! decreased cellular localization
created_by: pfey
creation_date: 2014-05-21T10:32:39Z
[Term]
id: DDPHENO:0000070
name: aberrant localization to microtubule organizing center
def: "Deviation from the normal, usual, or expected localization to the microtubule organizing center." [DDB:pf]
synonym: "aberrant localization to the MTOC" EXACT []
is_a: DDPHENO:0001217 ! aberrant cellular localization
created_by: pfey
creation_date: 2014-05-21T10:33:13Z
[Term]
id: DDPHENO:0000071
name: abolished localization to microtubule organizing center
def: "Complete inability to localize to the microtubule organizing center." [DDB:pf]
synonym: "abolished localization to the MTOC" EXACT []
is_a: DDPHENO:0000070 ! aberrant localization to microtubule organizing center
is_a: DDPHENO:0000110 ! abolished cellular localization
created_by: pfey
creation_date: 2014-05-21T10:33:38Z
[Term]
id: DDPHENO:0000072
name: increased localization to microtubule organizing center
def: "Increase in amount or accumulation at the microtubule organizing center." [DDB:pf]
synonym: "increased localization to the MTOC" EXACT []
is_a: DDPHENO:0000070 ! aberrant localization to microtubule organizing center
is_a: DDPHENO:0000113 ! increased cellular localization
created_by: pfey
creation_date: 2014-05-21T10:33:54Z
[Term]
id: DDPHENO:0000073
name: decreased localization to microtubule organizing center
def: "Reduction in amount or accumulation at the microtubule organizing center." [DDB:pf]
synonym: "decreased localization to the MTOC" EXACT []
is_a: DDPHENO:0000070 ! aberrant localization to microtubule organizing center
is_a: DDPHENO:0000112 ! decreased cellular localization
created_by: pfey
creation_date: 2014-05-21T10:34:07Z
[Term]
id: DDPHENO:0000074
name: aberrant localization to microtubules
def: "Deviation from the normal, usual, or expected localization to the microtubules." [DDB:pf]
is_a: DDPHENO:0001217 ! aberrant cellular localization
created_by: pfey
creation_date: 2014-05-21T10:34:45Z
[Term]
id: DDPHENO:0000075
name: abolished localization to microtubules
def: "Complete inability to localize to the microtubules." [DDB:pf]
is_a: DDPHENO:0000074 ! aberrant localization to microtubules
is_a: DDPHENO:0000110 ! abolished cellular localization
created_by: pfey
creation_date: 2014-05-21T10:35:28Z
[Term]
id: DDPHENO:0000076
name: decreased localization to microtubules
def: "Reduction in amount or accumulation at the microtubules." [DDB:pf]
is_a: DDPHENO:0000074 ! aberrant localization to microtubules
is_a: DDPHENO:0000112 ! decreased cellular localization
created_by: pfey
creation_date: 2014-05-21T10:35:41Z
[Term]
id: DDPHENO:0000077
name: decreased fruiting body size
def: "Reduction in relative or proportionate dimensions of the fruiting body." [DDB:pf]
synonym: "decreased sorocarp size" EXACT []
synonym: "small fruiting body" EXACT []
is_a: DDPHENO:0000009 ! aberrant fruiting body morphology
[Term]
id: DDPHENO:0000078
name: increased localization to microtubules
def: "Increase in amount or accumulation at the microtubules." [DDB:pf]
is_a: DDPHENO:0000074 ! aberrant localization to microtubules
is_a: DDPHENO:0000113 ! increased cellular localization
created_by: pfey
creation_date: 2014-05-21T10:35:57Z
[Term]
id: DDPHENO:0000079
name: aberrant localization to nuclear envelope
def: "Deviation from the normal, usual, or expected localization to the nuclear envelope." [DDB:pf]
is_a: DDPHENO:0001217 ! aberrant cellular localization
created_by: pfey
creation_date: 2014-05-21T10:36:20Z
[Term]
id: DDPHENO:0000080
name: abolished localization to nuclear envelope
def: "Complete inability to localize to the nuclear envelope." [DDB:pf]
is_a: DDPHENO:0000079 ! aberrant localization to nuclear envelope
is_a: DDPHENO:0000110 ! abolished cellular localization
created_by: pfey
creation_date: 2014-05-21T10:36:52Z
[Term]
id: DDPHENO:0000081
name: increased localization to nuclear envelope
def: "Increase in amount or accumulation at the nuclear envelope." [DDB:pf]
is_a: DDPHENO:0000079 ! aberrant localization to nuclear envelope
is_a: DDPHENO:0000113 ! increased cellular localization
created_by: pfey
creation_date: 2014-05-21T10:37:15Z
[Term]
id: DDPHENO:0000082
name: decreased localization to nuclear envelope
def: "Reduction in amount or accumulation at the nuclear envelope." [DDB:pf]
is_a: DDPHENO:0000079 ! aberrant localization to nuclear envelope
is_a: DDPHENO:0000112 ! decreased cellular localization
created_by: pfey
creation_date: 2014-05-21T10:37:27Z
[Term]
id: DDPHENO:0000083
name: aberrant localization to nucleus
def: "Deviation from the normal, usual, or expected localization to the nucleus." [DDB:pf]
synonym: "aberrant nuclear localization" EXACT []
is_a: DDPHENO:0001217 ! aberrant cellular localization
created_by: pfey
creation_date: 2014-05-21T10:38:50Z
[Term]
id: DDPHENO:0000084
name: abolished localization to nucleus
def: "Complete inability to localize to the nucleus." [DDB:pf]
synonym: "abolished nuclear localization" EXACT []
is_a: DDPHENO:0000083 ! aberrant localization to nucleus
is_a: DDPHENO:0000110 ! abolished cellular localization
created_by: pfey
creation_date: 2014-05-21T10:39:27Z
[Term]
id: DDPHENO:0000085
name: increased localization to nucleus
def: "Increase in amount or accumulation in the nucleus." [DDB:pf]
synonym: "increased nuclear localization" EXACT []
is_a: DDPHENO:0000083 ! aberrant localization to nucleus
is_a: DDPHENO:0000113 ! increased cellular localization
created_by: pfey
creation_date: 2014-05-21T10:39:47Z
[Term]
id: DDPHENO:0000086
name: decreased localization to nucleus
def: "Reduction in amount or accumulation in the nucleus." [DDB:pf]
is_a: DDPHENO:0000083 ! aberrant localization to nucleus
is_a: DDPHENO:0000112 ! decreased cellular localization
created_by: pfey
creation_date: 2014-05-21T10:40:02Z
[Term]
id: DDPHENO:0000087
name: aberrant localization to plasma membrane
def: "Deviation from the normal, usual, or expected localization to the plasma membrane." [DDB:pf]
is_a: DDPHENO:0001217 ! aberrant cellular localization
created_by: pfey
creation_date: 2014-05-21T10:40:53Z
[Term]
id: DDPHENO:0000088
name: abolished localization to plasma membrane
def: "Complete inability to localize to the plasma membrane." [DDB:pf]
is_a: DDPHENO:0000087 ! aberrant localization to plasma membrane
is_a: DDPHENO:0000110 ! abolished cellular localization
created_by: pfey
creation_date: 2014-05-21T10:41:22Z
[Term]
id: DDPHENO:0000089
name: decreased localization to plasma membrane
def: "Reduction in amount or accumulation at the plasma membrane." [DDB:pf]
is_a: DDPHENO:0000087 ! aberrant localization to plasma membrane
is_a: DDPHENO:0000112 ! decreased cellular localization
created_by: pfey
creation_date: 2014-05-21T10:41:35Z
[Term]
id: DDPHENO:0000090
name: aberrant endocytosis
def: "Deviation from the normal, usual, or expected events during endocytosis." [DDB:pg]
synonym: "endocytosis defect" RELATED []
is_a: DDPHENO:0001047 ! aberrant transport
[Term]
id: DDPHENO:0000091
name: increased localization to plasma membrane
def: "Increase in amount or accumulation at the plasma membrane." [DDB:pf]
is_a: DDPHENO:0000087 ! aberrant localization to plasma membrane
is_a: DDPHENO:0000113 ! increased cellular localization
created_by: pfey
creation_date: 2014-05-21T10:41:49Z
[Term]
id: DDPHENO:0000092
name: aberrant localization to pseudopodium
def: "Deviation from the normal, usual, or expected localization to pseudopodia." [DDB:pf]
is_a: DDPHENO:0001217 ! aberrant cellular localization
created_by: pfey
creation_date: 2014-05-21T10:43:03Z
[Term]
id: DDPHENO:0000093
name: abolished localization to pseudopodium
def: "Complete inability to localize to pseudopodia." [DDB:pf]
is_a: DDPHENO:0000092 ! aberrant localization to pseudopodium
is_a: DDPHENO:0000110 ! abolished cellular localization
created_by: pfey
creation_date: 2014-05-21T10:43:49Z
[Term]
id: DDPHENO:0000094
name: obsolete spores inviable
is_obsolete: true
[Term]
id: DDPHENO:0000095
name: decreased localization to pseudopodium
def: "Reduction in amount or accumulation at pseudopodia." [DDB:pf]
is_a: DDPHENO:0000092 ! aberrant localization to pseudopodium
is_a: DDPHENO:0000112 ! decreased cellular localization
created_by: pfey
creation_date: 2014-05-21T10:44:00Z
[Term]
id: DDPHENO:0000096
name: increased localization to pseudopodium
def: "Increase in amount or accumulation at pseudopodia." [DDB:pf]
is_a: DDPHENO:0000092 ! aberrant localization to pseudopodium
is_a: DDPHENO:0000113 ! increased cellular localization
created_by: pfey
creation_date: 2014-05-21T10:44:26Z
[Term]
id: DDPHENO:0000097
name: aberrant localization to nucleolus
def: "Deviation from the normal, usual, or expected localization to the nucleolus." [DDB:pf]
is_a: DDPHENO:0001217 ! aberrant cellular localization
created_by: pfey
creation_date: 2014-05-21T10:45:17Z
[Term]
id: DDPHENO:0000098
name: aberrant prestalk A cell differentiation
def: "Deviation from the normal, usual, or expected events during differentiation of prestalk A cells." [DDB:pg]
synonym: "aberrant pstA cell differentiation" EXACT []
is_a: DDPHENO:0001023 ! aberrant prestalk cell differentiation
[Term]
id: DDPHENO:0000099
name: decreased chemotaxis rate
def: "Reduction in extent, amount, or degree of chemotaxis rate during the locomotory response to a chemical concentration gradient." [DDB:kp]
is_a: DDPHENO:0000148 ! decreased cell motility
is_a: DDPHENO:0001122 ! aberrant chemotaxis
is_a: DDPHENO:0001130 ! decreased taxis
[Term]
id: DDPHENO:0000100
name: abolished localization to nucleolus
def: "Complete inability to localize to the nucleolus." [DDB:pf]
is_a: DDPHENO:0000097 ! aberrant localization to nucleolus
is_a: DDPHENO:0000110 ! abolished cellular localization
created_by: pfey
creation_date: 2014-05-21T10:45:50Z
[Term]
id: DDPHENO:0000101
name: increased localization to nucleolus
def: "Increase in amount or accumulation in the nucleolus." [DDB:pf]
is_a: DDPHENO:0000097 ! aberrant localization to nucleolus
is_a: DDPHENO:0000113 ! increased cellular localization
created_by: pfey
creation_date: 2014-05-21T10:46:03Z
[Term]
id: DDPHENO:0000102
name: increased number of aggregates
def: "Quantitative increase in aggregates." [DDB:pg]
is_a: DDPHENO:0000483 ! aberrant aggregation
[Term]
id: DDPHENO:0000103
name: decreased localization to nucleolus
def: "Reduction in amount or accumulation in the nucleolus." [DDB:pf]
synonym: "decreased nuclear localization" EXACT []
is_a: DDPHENO:0000097 ! aberrant localization to nucleolus
is_a: DDPHENO:0000112 ! decreased cellular localization
created_by: pfey
creation_date: 2014-05-21T10:46:16Z
[Term]
id: DDPHENO:0000104
name: aberrant protein localization to nucleolus
def: "Deviation from the normal, usual, or expected events during localization of a protein to the nucleolus." [DDB:pf]
is_a: DDPHENO:0000471 ! aberrant protein localization
created_by: pfey
creation_date: 2014-05-21T10:46:32Z
[Term]
id: DDPHENO:0000105
name: abolished protein localization to nucleolus
def: "Complete inability to localize a protein to the nucleolus." [DDB:pf]
is_a: DDPHENO:0000104 ! aberrant protein localization to nucleolus
created_by: pfey
creation_date: 2014-05-21T10:46:58Z
[Term]
id: DDPHENO:0000106
name: decreased protein localization to nucleolus
def: "Reduction in amount or accumulation of a protein to the nucleolus." [DDB:pf]
is_a: DDPHENO:0000104 ! aberrant protein localization to nucleolus
created_by: pfey
creation_date: 2014-05-21T10:47:16Z
[Term]
id: DDPHENO:0000107
name: increased protein localization to nucleolus
def: "Increase in amount or accumulation of a protein at the nucleolus." [DDB:pf]
is_a: DDPHENO:0000104 ! aberrant protein localization to nucleolus
created_by: pfey
creation_date: 2014-05-21T10:47:28Z
[Term]
id: DDPHENO:0000108
name: increased intracellular glucose level
def: "Increase in amount or accumulation of cytosolic glucose." [DDB:pg]
synonym: "increased cytosolic glucose level" EXACT []
is_a: DDPHENO:0001375 ! aberrant cellular homeostasis
[Term]
id: DDPHENO:0000109
name: increased cell-cell adhesion
def: "Increase in extent, amount, or degree of cell-cell adhesion." [DDB:pg]
is_a: DDPHENO:0000412 ! aberrant cell-cell adhesion
[Term]
id: DDPHENO:0000110
name: abolished cellular localization
def: "Complete inability to localize to a cellular compartment or structure." [DDB:pf]
comment: Use for mutated gene products that do not localize to their typical cellular compartment compared to the wild type gene product.
is_a: DDPHENO:0001217 ! aberrant cellular localization
created_by: pfey
creation_date: 2014-06-02T11:45:51Z
[Term]
id: DDPHENO:0000111
name: increased aggregate size
alt_id: DDPHENO:0001018
def: "Increase in relative or proportionate dimensions of the aggregate." [DDB:pg]
synonym: "aberrant negative regulation of aggregate size" RELATED []
is_a: DDPHENO:0001017 ! aberrant regulation of aggregate size
[Term]
id: DDPHENO:0000112
name: decreased cellular localization
def: "Reduction in amount or accumulation at a certain cellular location." [DDB:pf]
comment: Use for mutated gene products that do not localize to their typical cellular compartment compared to the wild type gene product.
is_a: DDPHENO:0001217 ! aberrant cellular localization
created_by: pfey
creation_date: 2014-06-02T11:49:54Z
[Term]
id: DDPHENO:0000113
name: increased cellular localization
def: "Increase in amount or accumulation at a certain cellular location." [DDB:pf]
comment: Use for mutated gene products that do not localize to their typical cellular compartment compared to the wild type gene product.
is_a: DDPHENO:0001217 ! aberrant cellular localization
created_by: pfey
creation_date: 2014-06-02T11:50:23Z
[Term]
id: DDPHENO:0000115
name: aberrant substrate adhesion-dependent cell spreading
def: "Deviation from the normal, usual, or expected events during substrate adhesion-dependent cell spreading." [DDB:pf]
synonym: "aberrant cell spreading during cell substrate adhesion" EXACT []
synonym: "aberrant substrate adhesion dependent cell spreading" EXACT []
is_a: DDPHENO:0000187 ! aberrant cell-substrate adhesion
created_by: pfey
creation_date: 2014-08-27T11:05:50Z
[Term]
id: DDPHENO:0000116
name: increased cell motility
def: "Increase in extent, amount, or degree of cell motility." [DD:pg]
is_a: DDPHENO:0000264 ! aberrant cell motility
[Term]
id: DDPHENO:0000117
name: abolished substrate adhesion-dependent cell spreading
def: "Complete inability for substrate adhesion-dependent cell spreading." [DDB:pf]
synonym: "abolished cell spreading during cell substrate adhesion" EXACT []
synonym: "abolished substrate adhesion dependent cell spreading" EXACT []
is_a: DDPHENO:0000115 ! aberrant substrate adhesion-dependent cell spreading
created_by: pfey
creation_date: 2014-08-27T11:08:28Z
[Term]
id: DDPHENO:0000118
name: decreased substrate adhesion-dependent cell spreading
def: "Reduction in extent, amount, or degree of substrate adhesion-dependent cell spreading." [DDB:pf]
synonym: "decreased cell spreading during cell substrate adhesion" EXACT []
synonym: "decreased substrate adhesion dependent cell spreading" EXACT []
synonym: "reduced cell spreading during cell substrate adhesion" EXACT []
synonym: "reduced substrate adhesion dependent cell spreading" EXACT []
synonym: "reduced substrate adhesion-dependent cell spreading" EXACT []
is_a: DDPHENO:0000115 ! aberrant substrate adhesion-dependent cell spreading
created_by: pfey
creation_date: 2014-08-27T11:10:54Z
[Term]
id: DDPHENO:0000119
name: increased substrate adhesion-dependent cell spreading
def: "Increase in extent, amount, or degree of substrate adhesion-dependent cell spreading." [DDB:pf]
synonym: "increased cell spreading during cell substrate adhesion" EXACT []
synonym: "increased substrate adhesion dependent cell spreading" EXACT []
is_a: DDPHENO:0000115 ! aberrant substrate adhesion-dependent cell spreading
created_by: pfey