-
Notifications
You must be signed in to change notification settings - Fork 0
/
genes_texts_annots_sample.json
1002 lines (1002 loc) · 54.9 KB
/
genes_texts_annots_sample.json
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
[
{
"id": 0,
"species": "zma",
"unique_gene_identifiers": ["ns1", "ns1-R", "uniprot=Q70UV1", "ncbi=542051", "..."],
"other_gene_identifiers": ["HB-type transcription factor", "prs", "WUSCHEL-related homeobox 3A", "WUSCHEL-related homeobox 3B", "..."],
"gene_models": ["GRMZM2G069028", "Zm00001d004889"],
"descriptions": "Plants (stems) do not elongate in response to gibberellins. Plants are reduced in height. Extremely ...",
"annotations": ["PO:0000003", "PO:0020142", "PO:0009025", "PO:0009047", "..."],
"sources": ["Plant PhenomeNET", "MaizeGDB", "Planteome"]
},
{
"id": 1,
"species": "zma",
"unique_gene_identifiers": ["ns2", "NM_001111772.1", "ns2-R", "uniprot=Q6S3I3", "..."],
"other_gene_identifiers": ["WUSCHEL-related homeobox 3B"],
"gene_models": ["Zm00001d052598"],
"descriptions": "Plants (stems) do not elongate in response to gibberellins. Plants are reduced in height. Extremely ...",
"annotations": ["PO:0000003", "PO:0020142", "PO:0020104", "PO:0009054", "..."],
"sources": ["Plant PhenomeNET", "MaizeGDB", "Planteome"]
},
{
"id": 2,
"species": "ath",
"unique_gene_identifiers": ["UBP26", "At3g49600", "AT3G49600"],
"other_gene_identifiers": ["Ubiquitin-Specific Protease", "SUP32", "ATUBP26", "ubiquitin-specific protease 26", "..."],
"gene_models": ["At3g49600", "AT3G49600"],
"descriptions": "50% defective seeds. Low penetrance of endosperm development without fertilization. Reduced fertilit...",
"annotations": ["GO:0048316", "GO:0005730", "PO:0000013", "PO:0000037", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 3,
"species": "mtr",
"unique_gene_identifiers": ["cyp716A12", "Medtr3g021350", "Medtr3g021180"],
"other_gene_identifiers": ["lha", "cytochrome P450 monoxygenase"],
"gene_models": ["Medtr3g021350", "Medtr3g021180"],
"descriptions": "Impaired hemolytic saponin synthesis. Plant growth stunted. A cytochrome P450 gene (CYP716A12) is in...",
"annotations": [],
"sources": ["Plant PhenomeNET"]
},
{
"id": 4,
"species": "osa",
"unique_gene_identifiers": ["SL1", "Os01g0129200"],
"other_gene_identifiers": ["stl1.1", "STAMENLESS 1"],
"gene_models": ["Os01g0129200"],
"descriptions": "Degenerated lemma. Degenerated palea. Stamen nonfunctional. Male sterile. Stamens malformed. Stamens...",
"annotations": [],
"sources": ["Plant PhenomeNET"]
},
{
"id": 5,
"species": "zma",
"unique_gene_identifiers": ["d9", "D9-N2319", "ncbi=100127531", "dwarf plant9", "..."],
"other_gene_identifiers": ["D9", "D*-2319", "D*-N2319", "gnp_AI770444a", "..."],
"gene_models": ["GRMZM2G024973", "Zm00001d013465"],
"descriptions": "Whole plant short. Leaves broad. Compact tassel. Anthers in the ears. Andromonoecious. Short leaves....",
"annotations": ["GO:0005634", "GO:0048831", "GO:2000028", "PO:0006354", "..."],
"sources": ["Plant PhenomeNET", "MaizeGDB", "Planteome"]
},
{
"id": 6,
"species": "zma",
"unique_gene_identifiers": ["d8", "D8-1", "D8-Mpl", "uniprot=Q9ST48", "..."],
"other_gene_identifiers": ["D8", "DELLA protein DWARF8", "gnp_AI770444b", "gpm82b", "..."],
"gene_models": ["GRMZM2G144744", "Zm00001d033680"],
"descriptions": "Whole plant short. Leaves broad. Compact tassel. Ear florets are hermaphroditic. Most easily observe...",
"annotations": ["GO:0005634", "PO:0006354", "PO:0000003", "PO:0020126", "..."],
"sources": ["Plant PhenomeNET", "MaizeGDB", "Planteome"]
},
{
"id": 7,
"species": "osa",
"unique_gene_identifiers": ["D1", "Os05g0333200"],
"other_gene_identifiers": ["D1.1", "DAIKOKU DWARF"],
"gene_models": ["Os05g0333200"],
"descriptions": "Small grain. Dwarf. Short stems. Short leaves. Broad leaves. Dark green leaves. Erect paincles. Comp...",
"annotations": [],
"sources": ["Plant PhenomeNET"]
},
{
"id": 8,
"species": "ath",
"unique_gene_identifiers": ["LeuC1", "IIL1", "isopropyl malate isomerase large subunit 1", "At4g13430", "..."],
"other_gene_identifiers": ["ATLEUC1", "T9E8.170", "T9E8_170", "AT4G13430.1"],
"gene_models": ["At4g13430", "AT4G13430"],
"descriptions": "Abnormal aliphatic glucosinolate composition. Elevated levels of intermediates of leucine biosynthes...",
"annotations": ["GO:0019761", "GO:0009536", "GO:0009507", "GO:0009570", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 9,
"species": "ath",
"unique_gene_identifiers": ["SBE2.1", "starch branching enzyme 2.1", "At2g36390", "AT2G36390"],
"other_gene_identifiers": ["Starch Branching Enzyme", "BE3", "BRANCHING ENZYME 3", "F1O11.2", "..."],
"gene_models": ["At2g36390", "AT2G36390"],
"descriptions": "Abnormal amylopectin structure. No visible phenotype. Strong reduction in maltose accumulation compa...",
"annotations": ["GO:0005982", "GO:0010021", "GO:0009570", "GO:0009507", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 10,
"species": "ath",
"unique_gene_identifiers": ["RWP1", "At5g41040", "AT5G41040"],
"other_gene_identifiers": ["ASFT", "HHT", "REDUCED LEVELS OF WALL-BOUND PHENOLICS 1", "aliphatic suberin feruloyl-transferase", "..."],
"gene_models": ["At5g41040", "AT5G41040"],
"descriptions": "Abnormal aromatic suberin biosynthesis.",
"annotations": ["GO:0052325", "GO:0010345", "GO:0050734", "PO:0008019", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 11,
"species": "ath",
"unique_gene_identifiers": ["CYP97A3", "At1g31800", "AT1G31800"],
"other_gene_identifiers": ["Cytochrome P450-Type Monooxygenase", "LUT5", "\"cytochrome P450, family 97, subfamily A, polypeptide 3\"", "LUTEIN DEFICIENT 5", "..."],
"gene_models": ["At1g31800", "AT1G31800"],
"descriptions": "Abnormal carotenoid levels. 18% reduction in lutein and accumulates α. -cryptoxanthin and α....",
"annotations": ["GO:0016123", "GO:0010291", "GO:0016117", "GO:0009941", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 12,
"species": "ath",
"unique_gene_identifiers": ["CRC", "At1g69180", "AT1G69180"],
"other_gene_identifiers": ["Crabs Claw", "CRABS CLAW", "F4N2.14", "F4N2_14", "..."],
"gene_models": ["At1g69180", "AT1G69180"],
"descriptions": "Abnormal carpel development. Strong allele. Lacks nectaries. Gynoecium is wider and shorter througho...",
"annotations": ["GO:0010254", "GO:0005515", "GO:0010582", "GO:0006355", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 13,
"species": "ath",
"unique_gene_identifiers": ["SPT", "At4g36930", "AT4G36930"],
"other_gene_identifiers": ["Spatula", "SPATULA", "AP22.25", "AP22_25"],
"gene_models": ["At4g36930", "AT4G36930"],
"descriptions": "Abnormal carpel development. Gynoecium flattened medially at apex, sometimes unfused at apex, siliqu...",
"annotations": ["GO:0010114", "GO:0010187", "GO:0009409", "GO:0048440", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 14,
"species": "ath",
"unique_gene_identifiers": ["COB", "ATMG00220", "apocytochrome b", "At5g60920", "..."],
"other_gene_identifiers": ["Cobra", "ATMG00220.1", "COBRA", "MSL3.40", "..."],
"gene_models": ["At5g60920", "AT5G60920"],
"descriptions": "Abnormal cell expansion orientation. Reduced crystalline cellulose in root. Callus-induced roots fro...",
"annotations": ["GO:0046658", "GO:0009825", "GO:0003674", "GO:0010215", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 15,
"species": "ath",
"unique_gene_identifiers": ["ARAD1", "At2g35100", "AT2G35100"],
"other_gene_identifiers": ["Arabinan Deficient", "ARABINAN DEFICIENT 1", "T4C15.23", "T4C15_23", "..."],
"gene_models": ["At2g35100", "AT2G35100"],
"descriptions": "Abnormal cell wall composition. Low arabinose levels. Cell wall composition was altered in mutant pl...",
"annotations": ["GO:0005802", "GO:0005515", "GO:0005794", "GO:0045489", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 16,
"species": "ath",
"unique_gene_identifiers": ["PMI1", "PLASTID MOVEMENT IMPAIRED1", "At1g42550", "AT1G42550"],
"other_gene_identifiers": ["Plastid Movement Impaired", "T8D8.2", "T8D8_2", "AT1G42550.1"],
"gene_models": ["At1g42550", "AT1G42550"],
"descriptions": "Abnormal chloroplast movement under a variety of light fluence rates. Mutant plants exhibit severely...",
"annotations": ["GO:0010029", "GO:0009787", "GO:0006970", "GO:0009902", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 17,
"species": "ath",
"unique_gene_identifiers": ["JAC1", "At1g75100", "AT1G75100"],
"other_gene_identifiers": ["J-Domain Protein Required for Chloroplast Accumulation Response", "AUXILIN-LIKE6", "J-domain protein required for chloroplast accumulation response 1", "F9E10.5", "..."],
"gene_models": ["At1g75100", "AT1G75100"],
"descriptions": "Abnormal chloroplast movement in the dark. Abnormal chloroplast movement under weak blue light. Abno...",
"annotations": ["GO:0007015", "GO:0071483", "GO:0005737", "GO:0009903", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 18,
"species": "ath",
"unique_gene_identifiers": ["CHUP1", "At3g25690", "AT3G25690"],
"other_gene_identifiers": ["Chloroplast Unusual Positioning", "AtCHUP1", "CHLOROPLAST UNUSUAL POSITIONING 1", "Arabidopsis thaliana CHLOROPLAST UNUSUAL POSITIONING 1", "..."],
"gene_models": ["At3g25690", "AT3G25690"],
"descriptions": "Abnormal chloroplast positioning.",
"annotations": ["GO:0009707", "GO:0009507", "GO:0005623", "GO:0009902", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 19,
"species": "ath",
"unique_gene_identifiers": ["PCL1", "At3g46640", "AT3G46640"],
"other_gene_identifiers": ["Phytoclock", "LUX", "PHYTOCLOCK 1", "LUX ARRHYTHMO", "..."],
"gene_models": ["At3g46640", "AT3G46640"],
"descriptions": "Abnormal circadian rhythms. Long hypocotyl. Plants flower early in short- and long-day conditions. A...",
"annotations": ["GO:0005634", "GO:0010468", "GO:0006355", "GO:0007623", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 20,
"species": "ath",
"unique_gene_identifiers": ["ZTL", "At5g57360", "AT5G57360"],
"other_gene_identifiers": ["Zeitlupe", "LKP1", "ADO1", "FKL2", "..."],
"gene_models": ["At5g57360", "AT5G57360"],
"descriptions": "Abnormal circadian rhythms. Altered circadian clock controlled processes.",
"annotations": ["GO:0005515", "GO:0043153", "GO:0005829", "GO:0005634", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 21,
"species": "ath",
"unique_gene_identifiers": ["JMJ30", "JMJD5", "At3g20810", "AT3G20810"],
"other_gene_identifiers": ["Jumonji Domain Containing", "jumonji domain containing 5", "Jumonji C domain-containing protein 30", "MOE17.12"],
"gene_models": ["At3g20810", "AT3G20810"],
"descriptions": "Abnormal circadian rhythms in leaf movements. Shortened period length of circadian rhythms under con...",
"annotations": ["GO:0046975", "GO:0070544", "GO:0007623", "GO:0042752", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 22,
"species": "ath",
"unique_gene_identifiers": ["RHM1", "At1g78570", "AT1G78570"],
"other_gene_identifiers": ["Rhamnose Biosynthesis", "ROL1", "ATRHM1", "rhamnose biosynthesis 1", "..."],
"gene_models": ["At1g78570", "AT1G78570"],
"descriptions": "Abnormal cotyledon growth. Deformed trichomes. Slightly shorter root hairs. Slightly shorter roots. ...",
"annotations": ["GO:0005829", "GO:0010253", "GO:0042127", "GO:0051555", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 23,
"species": "ath",
"unique_gene_identifiers": ["AVP1", "PPME1", "AtSBT1.7", "SYN3", "..."],
"other_gene_identifiers": ["Arabidopsis V-PPase", "Pollen Pectin Methylesterase", "Subtilisin-Like Serine Protease", "Radiation Sensitive", "..."],
"gene_models": ["At1g15690", "AT1G15690", "At1g69940", "AT1G69940", "..."],
"descriptions": "Abnormal cotyledon morphology. Collapsed root tip. Complete loss of flower formation. Disorganized v...",
"annotations": ["GO:0009705", "GO:0005739", "GO:0000325", "GO:0005774", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 24,
"species": "ath",
"unique_gene_identifiers": ["FKD1", "At3g63300", "AT3G63300"],
"other_gene_identifiers": ["Forked", "FORKED 1", "MAA21.9"],
"gene_models": ["At3g63300", "AT3G63300"],
"descriptions": "Abnormal cotyledon vascular patterning. No other phenotypes detected. Cotyledons and leaves have ope...",
"annotations": ["GO:0005802", "GO:0010087", "GO:0010305", "GO:0006892", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 25,
"species": "ath",
"unique_gene_identifiers": ["TRN1", "At5g55540", "AT5G55540", "AT2G16950"],
"other_gene_identifiers": ["Tornado", "ATTRN1", "transportin 1", "F12A24.13", "..."],
"gene_models": ["At5g55540", "AT5G55540", "AT2G16950"],
"descriptions": "Abnormal division of lateral root cap. Abnormal positioning of lateral root cap. Abnormal division a...",
"annotations": ["GO:0009933", "GO:0010305", "GO:0010540", "GO:0009926", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 26,
"species": "ath",
"unique_gene_identifiers": ["DMS3", "At3g49250", "AT3G49250"],
"other_gene_identifiers": ["Defective in Meristem Silencing", "IDN1", "DEFECTIVE IN MERISTEM SILENCING 3", "INVOLVED IN DE NOVO 1", "..."],
"gene_models": ["At3g49250", "AT3G49250"],
"descriptions": "Abnormal DNA methylation. No visible phenotype. WT morphological phenotype. Decreased DNA methylatio...",
"annotations": ["GO:0070921", "GO:0031047", "GO:0080188", "GO:0000419", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 27,
"species": "osa",
"unique_gene_identifiers": ["WAF1", "Os07g0164000"],
"other_gene_identifiers": ["Wavy Leaf"],
"gene_models": ["Os07g0164000"],
"descriptions": "Abnormal embryo development. Incomplete penetrance of seedling lethality. Abnormal leaf morphology. ...",
"annotations": [],
"sources": ["Plant PhenomeNET"]
},
{
"id": 28,
"species": "ath",
"unique_gene_identifiers": ["FAD3", "At2g29980", "AT2G29980"],
"other_gene_identifiers": ["Fatty Acid Desaturase", "AtFAD3", "fatty acid desaturase 3", "F23F1.10", "..."],
"gene_models": ["At2g29980", "AT2G29980"],
"descriptions": "Abnormal fatty acid composition. Reduction in desaturation of storage and membrane lipids. Deficient...",
"annotations": ["GO:0006636", "GO:0042389", "GO:0005783", "GO:0080167", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 29,
"species": "ath",
"unique_gene_identifiers": ["CYP86B1", "At5g23190", "AT5G23190"],
"other_gene_identifiers": ["Cytochrome P450", "\"cytochrome P450, family 86, subfamily B, polypeptide 1\"", "MKD15.5", "MKD15_5"],
"gene_models": ["At5g23190", "AT5G23190"],
"descriptions": "Abnormal fatty acid composition.",
"annotations": ["GO:0042761", "GO:0005783", "GO:0010345", "PO:0009005", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 30,
"species": "ath",
"unique_gene_identifiers": ["FAD4", "FADA", "At4g27030", "AT4G27030"],
"other_gene_identifiers": ["Fatty Acid Desaturase", "FATTY ACID DESATURASE 4", "fatty acid desaturase A", "F10M23.370", "..."],
"gene_models": ["At4g27030", "AT4G27030"],
"descriptions": "Abnormal fatty acid composition. Elevated palmitic acid levels. Altered leaf fatty acid composition,...",
"annotations": ["GO:0006636", "GO:0031969", "GO:0009507", "GO:0052637", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 31,
"species": "ath",
"unique_gene_identifiers": ["At1g10310", "AT1G10310", "AT1G10310.1", "At1g10310At1g10310"],
"other_gene_identifiers": ["F14N23.19", "F14N23_19"],
"gene_models": ["At1g10310", "AT1G10310", "AT1G10310.1", "At1g10310At1g10310"],
"descriptions": "Abnormal fatty acid levels. Mutants have reduced seed 18:1 delta nine fatty acids. An analogous chan...",
"annotations": ["GO:0016616", "GO:0055114", "GO:0006760", "GO:0005829", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 32,
"species": "ath",
"unique_gene_identifiers": ["ANT", "At4g37750", "AT4G37750"],
"other_gene_identifiers": ["Aintegumenta", "DRG", "CKC", "CKC1", "..."],
"gene_models": ["At4g37750", "AT4G37750"],
"descriptions": "Abnormal flower development. Abnormal ovule development. Abnormal flower and ovule development. Stro...",
"annotations": ["GO:0007276", "GO:0003700", "GO:0005634", "GO:0009887", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 33,
"species": "ath",
"unique_gene_identifiers": ["PRS", "At2g28610", "AT2G28610"],
"other_gene_identifiers": ["Pressed Flower", "WOX3", "PRS1", "PRESSED FLOWER", "..."],
"gene_models": ["At2g28610", "AT2G28610"],
"descriptions": "Abnormal flower morphology. Altered floral development.",
"annotations": ["GO:0010482", "GO:0009943", "GO:0048513", "GO:0009947", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 34,
"species": "ath",
"unique_gene_identifiers": ["ETT", "At2g33860", "AT2G33860"],
"other_gene_identifiers": ["Ettin", "ARF3", "ETTIN", "AUXIN RESPONSE TRANSCRIPTION FACTOR 3", "..."],
"gene_models": ["At2g33860", "AT2G33860"],
"descriptions": "Abnormal flower morphology. Unusual gynoecium and floral patterning defects, including an increased ...",
"annotations": ["GO:0006355", "GO:0010582", "GO:0010158", "GO:0003700", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 35,
"species": "ath",
"unique_gene_identifiers": ["TSL", "At5g20930", "AT5G20930"],
"other_gene_identifiers": ["Tousled", "TOUSLED", "F22D1.100", "F22D1_100", "..."],
"gene_models": ["At5g20930", "AT5G20930"],
"descriptions": "Abnormal flower morphology. Flowering delayed 1 week compared to wild type. Slightly increased numbe...",
"annotations": ["GO:1900368", "GO:0005634", "GO:0004674", "GO:0005737", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 36,
"species": "ath",
"unique_gene_identifiers": ["SAP", "STERILE APETALA", "At5g35770", "AT5G35770"],
"other_gene_identifiers": ["Sterile Apetala", "MXH1.20", "MXH1_20", "AT5G35770.1"],
"gene_models": ["At5g35770", "AT5G35770"],
"descriptions": "Abnormal flower morphology. Small plants with small organs (leaves, flowers and siliques). Has simil...",
"annotations": ["GO:0005515", "GO:0005634", "GO:0009908", "GO:0003700", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 37,
"species": "ath",
"unique_gene_identifiers": ["OLEO2", "At5g40420", "AT5G40420"],
"other_gene_identifiers": ["Oleosin-deficient mutant"],
"gene_models": ["At5g40420", "AT5G40420"],
"descriptions": "Abnormal germination. Large oil bodies. Slightly larger oil bodies than wildtype. Seeds have reduced...",
"annotations": ["GO:0012511", "GO:0010344", "GO:0050826", "GO:0019915", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 38,
"species": "ath",
"unique_gene_identifiers": ["TASTY", "AESP", "ESP", "epithiospecifier protein", "..."],
"other_gene_identifiers": ["Tasty", "Arabidopsis Separase", "ESR", "EPITHIOSPECIFYING SENESCENCE REGULATOR", "..."],
"gene_models": ["At1g54040", "AT1G54040", "At4g22970", "AT4G22970"],
"descriptions": "Abnormal glucosinolate composition. Altered glucosinolate composition. Embryo defective-Globular. Em...",
"annotations": ["GO:0005634", "GO:0030234", "GO:0019762", "GO:0009753", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 39,
"species": "ath",
"unique_gene_identifiers": ["IMD1", "isopropylmalate dehydrogenase 1", "At5g14200", "AT5G14200"],
"other_gene_identifiers": ["ATIMD1", "ARABIDOPSIS ISOPROPYLMALATE DEHYDROGENASE 1", "AT5G14200.1", "MUA22.20", "..."],
"gene_models": ["At5g14200", "AT5G14200"],
"descriptions": "Abnormal glucosinolate composition.",
"annotations": ["GO:0009507", "GO:0009098", "GO:0009570", "GO:0009555", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 40,
"species": "ath",
"unique_gene_identifiers": ["MAM1", "At5g23010", "AT5G23010"],
"other_gene_identifiers": ["Methylthioalkylmalate Synthase", "GSM1", "IMS3", "glucosinolate metabolism 1", "..."],
"gene_models": ["At5g23010", "AT5G23010"],
"descriptions": "Abnormal glucosinolate composition. Decreased levels of several amino acid substrates required for g...",
"annotations": ["GO:0019761", "GO:0009507", "GO:0009625", "GO:0010177", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 41,
"species": "ath",
"unique_gene_identifiers": ["ZIG", "SGR4", "SHOOT GRAVITROPSIM 4", "At5g39510", "..."],
"other_gene_identifiers": ["Zigzag Stem", "VTI11", "ATVTI1A", "ATVTI11", "..."],
"gene_models": ["At5g39510", "AT5G39510"],
"descriptions": "Abnormal hypocotyl gravitropism. Abnormal inflorescence gravitropism. Abnormal hypocotyl and inflore...",
"annotations": ["GO:0005774", "GO:0005773", "GO:0005515", "GO:0005770", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 42,
"species": "ath",
"unique_gene_identifiers": ["SGR2", "SHOOT GRAVITROPISM 2", "At1g31480", "AT1G31480"],
"other_gene_identifiers": ["Shoot Gravitropism", "T8E3.1", "T8E3_1", "AT1G31480.1"],
"gene_models": ["At1g31480", "AT1G31480"],
"descriptions": "Abnormal hypocotyl gravitropism. Abnormal inflorescence stem gravitropism. Abnormal hypocotyl and in...",
"annotations": ["GO:0009506", "GO:0009959", "GO:0005773", "GO:0009705", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 43,
"species": "ath",
"unique_gene_identifiers": ["TIR1", "At3g62980", "AT3G62980"],
"other_gene_identifiers": ["Transport Inhibitor Response", "AtTIR1", "TRANSPORT INHIBITOR RESPONSE 1", "T20O10.80"],
"gene_models": ["At3g62980", "AT3G62980"],
"descriptions": "Abnormal hypocotyl formation. Abnormal lateral root formation. Insensitive to auxin. Abnormal hypoco...",
"annotations": ["GO:0010011", "GO:0005515", "GO:0009734", "GO:0000822", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 44,
"species": "ath",
"unique_gene_identifiers": ["NEK6", "At3g44200", "AT3G44200"],
"other_gene_identifiers": ["NIMA (Never In Mitosis, Gene A)-Related", "ATNEK6", "IBO1", "NIMA-RELATED KINASE6", "..."],
"gene_models": ["At3g44200", "AT3G44200"],
"descriptions": "Abnormal hypocotyl protrusions. Abnormal petiole protrusions. Abnormal trichome branching. Disordere...",
"annotations": ["GO:0055028", "GO:0043622", "GO:0009913", "GO:0004672", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 45,
"species": "ath",
"unique_gene_identifiers": ["ARG1", "At1g68370", "AT1G68370"],
"other_gene_identifiers": ["Altered Response to Gravity", "ALTERED RESPONSE TO GRAVITY 1", "T22E19.25", "T22E19_25"],
"gene_models": ["At1g68370", "AT1G68370"],
"descriptions": "Abnormal hypocotyl gravitropism. Abnormal root gravitropism. Abnormal hypocotyl and root gravitropis...",
"annotations": ["GO:0009958", "GO:0008092", "PO:0000013", "PO:0000037", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 46,
"species": "ath",
"unique_gene_identifiers": ["PIN5", "At5g16530", "AT5G16530"],
"other_gene_identifiers": ["Pin Formed", "PIN-FORMED 5", "MQK4.28", "MQK4_28"],
"gene_models": ["At5g16530", "AT5G16530"],
"descriptions": "Abnormal hypocotyl growth. Abnormal root growth. Insensitive to IAA. Abnormal hypocotyl and root gro...",
"annotations": ["GO:0009555", "GO:0080162", "GO:0010252", "GO:0005783", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 47,
"species": "ath",
"unique_gene_identifiers": ["PIL1", "At2g46970", "AT2G46970"],
"other_gene_identifiers": ["Phytochrome Interacting Factor 3-Like"],
"gene_models": ["At2g46970", "AT2G46970"],
"descriptions": "Abnormal cotyledon size under far-red light. Abnormal cotyledon size under red light. Abnormal hypoc...",
"annotations": ["GO:0006355", "GO:0010017", "GO:0005515", "GO:0009641", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 48,
"species": "ath",
"unique_gene_identifiers": ["GPAT5", "At3g11430", "AT3G11430"],
"other_gene_identifiers": ["Glycerol-3-Phosphate Acyltransferase", "ATGPAT5", "GLYCEROL-3-PHOSPHATE sn-2-ACYLTRANSFERASE 5", "F24K9.10"],
"gene_models": ["At3g11430", "AT3G11430"],
"descriptions": "Abnormal insoluble lipid polyester biosynthesis. The mutant has a 50% reduction in aliphatic suberin...",
"annotations": ["GO:0010345", "GO:0090447", "PO:0009005", "PO:0009009", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 49,
"species": "ath",
"unique_gene_identifiers": ["INO", "At1g23420", "AT1G23420"],
"other_gene_identifiers": ["Inner No Outer", "INNER NO OUTER", "F26F24.29", "F26F24_29"],
"gene_models": ["At1g23420", "AT1G23420"],
"descriptions": "Abnormal integuments. Strong allele. Ovule defective. Outer integument fails to initiate on the abax...",
"annotations": ["GO:0005515", "GO:0048481", "GO:0009944", "GO:0005634", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 50,
"species": "ath",
"unique_gene_identifiers": ["BEL1", "At5g41410", "AT5G41410"],
"other_gene_identifiers": ["Bell-Shaped Ovules", "BELL 1", "MYC6.12", "MYC6_12"],
"gene_models": ["At5g41410", "AT5G41410"],
"descriptions": "Abnormal integuments. Female sterile. Malformed ovules. Only a single integument-like structure form...",
"annotations": ["GO:0005515", "GO:0048481", "GO:0005829", "GO:0009506", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 51,
"species": "ath",
"unique_gene_identifiers": ["HLL", "At1g17560", "AT1G17560"],
"other_gene_identifiers": ["Huellenlos", "HUELLENLOS", "F1L3.27", "F1L3_27"],
"gene_models": ["At1g17560", "AT1G17560"],
"descriptions": "Abnormal integuments. Female sterile. Female-sterile, integuments mostly absent, ovules senesce prio...",
"annotations": ["GO:0005739", "PO:0000013", "PO:0000037", "PO:0000230", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 52,
"species": "ath",
"unique_gene_identifiers": ["SUR1", "SUPERROOT 1", "At2g20610", "AT2G20610"],
"other_gene_identifiers": ["Super Root", "HLS3", "RTY", "ALF1", "..."],
"gene_models": ["At2g20610", "AT2G20610"],
"descriptions": "Abnormal lateral root formation. Small, pale and fertile plants. Wei2-1 partially suppresses rty1-1 ...",
"annotations": ["GO:0019761", "GO:0001560", "GO:0048830", "GO:0009684", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 53,
"species": "ath",
"unique_gene_identifiers": ["PUCHI", "At5g18560", "AT5G18560"],
"other_gene_identifiers": ["T28N17.40", "T28N17_40"],
"gene_models": ["At5g18560", "AT5G18560"],
"descriptions": "Abnormal lateral root formation. Shorter visible lateral roots at 9 days after germination. The prox...",
"annotations": ["GO:0044212", "GO:1901332", "GO:0010582", "GO:0010432", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 54,
"species": "ath",
"unique_gene_identifiers": ["RFC3", "EMB2810", "At3g17170", "AT3G17170", "..."],
"other_gene_identifiers": ["Regulator of Fatty-Acid Composition", "Embryo Defective", "RFC5", "replication factor C subunit 3", "..."],
"gene_models": ["At3g17170", "AT3G17170", "At1g77470", "AT1G77470"],
"descriptions": "Abnormal lateral root formation in response to sucrose. Altered composition of fatty acids in roots ...",
"annotations": ["GO:0031348", "PO:0000013", "PO:0000037", "PO:0000230", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 55,
"species": "ath",
"unique_gene_identifiers": ["MYB77", "At3g50060", "AT3G50060"],
"other_gene_identifiers": ["MYB Domain Protein", "myb domain protein 77", "F3A4.140"],
"gene_models": ["At3g50060", "AT3G50060"],
"descriptions": "Abnormal lateral root number in response to IAA. Reduced density of lateral roots. Decreased density...",
"annotations": ["GO:0005515", "GO:0010929", "GO:0006355", "GO:0044212", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 56,
"species": "ath",
"unique_gene_identifiers": ["NHX1", "Na+/H+ exchanger 1", "At5g27150", "AT5G27150"],
"other_gene_identifiers": ["Na+/H+ Exchanger", "ATNHX", "AT-NHX1", "ATNHX1", "..."],
"gene_models": ["At5g27150", "AT5G27150"],
"descriptions": "Abnormal leaf growth. Reduced monovalent cation-dependent proton transport activity. Vacuoles isolat...",
"annotations": ["GO:0048366", "GO:0015081", "GO:0055075", "GO:0009651", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 57,
"species": "ath",
"unique_gene_identifiers": ["PLL5", "At1g07630", "AT1G07630"],
"other_gene_identifiers": ["POL-Like", "pol-like 5", "F24B9.31", "F24B9_31"],
"gene_models": ["At1g07630", "AT1G07630"],
"descriptions": "Abnormal leaf morphology. Abnormal leaf shape- semidominant.",
"annotations": ["GO:0048366", "GO:0005886", "PO:0000013", "PO:0000037", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 58,
"species": "ath",
"unique_gene_identifiers": ["PLL4", "At2g28890", "AT2G28890"],
"other_gene_identifiers": ["Poltergeist Like", "poltergeist like 4", "F8N16.18", "F8N16_18", "..."],
"gene_models": ["At2g28890", "AT2G28890"],
"descriptions": "Abnormal leaf morphology. Abnormal leaf shape and size.",
"annotations": ["GO:0048366", "GO:0005886", "PO:0000013", "PO:0000037", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 59,
"species": "ath",
"unique_gene_identifiers": ["LMI1", "HB51", "At5g03790", "AT5G03790"],
"other_gene_identifiers": ["Late Meristem Identity", "ATHB51", "LATE MERISTEM IDENTITY1", "homeobox 51", "..."],
"gene_models": ["At5g03790", "AT5G03790"],
"descriptions": "Abnormal leaf morphology. Base of rosette divided into leaflets. No significant meristem identity de...",
"annotations": ["GO:0010582", "GO:0045893", "GO:0010434", "GO:0009965", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 60,
"species": "ath",
"unique_gene_identifiers": ["EIN4", "At3g04580", "AT3G04580"],
"other_gene_identifiers": ["Ethylene Insensitive", "ETHYLENE INSENSITIVE 4", "F7O18.5", "F7O18_5"],
"gene_models": ["At3g04580", "AT3G04580"],
"descriptions": "Abnormal leaf morphology. Insensitive to ethylene. Constitutive ethylene response phenotype. Seedlin...",
"annotations": ["GO:0010105", "GO:0004674", "GO:0005515", "GO:0051740", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 61,
"species": "ath",
"unique_gene_identifiers": ["FRO1", "At5g67590", "AT5G67590"],
"other_gene_identifiers": ["Frostbite", "NDUFS4", "FROSTBITE1", "NADH:ubiquinone oxidoreductase Fe-S protein4", "..."],
"gene_models": ["At5g67590", "AT5G67590"],
"descriptions": "Abnormal leaf morphology. Reduced acclimation to low temperature. Reduced capacity for cold acclimat...",
"annotations": ["GO:0009631", "GO:0005747", "GO:0006970", "GO:0005739", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 62,
"species": "ath",
"unique_gene_identifiers": ["GTE6", "At3g52280", "AT3G52280"],
"other_gene_identifiers": ["General Transcription Factor Group E6", "general transcription factor group E6", "T25B15.50"],
"gene_models": ["At3g52280", "AT3G52280"],
"descriptions": "Abnormal leaf shape. Round, shorter leaves. Defect in transition from juvenile to adult leaf shape.",
"annotations": ["GO:0005634", "GO:0004402", "GO:0006338", "PO:0000293", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 63,
"species": "ath",
"unique_gene_identifiers": ["JAG", "At1g68480", "AT1G68480"],
"other_gene_identifiers": ["Jagged", "JAGGED", "T26J14.5", "T26J14_5"],
"gene_models": ["At1g68480", "AT1G68480"],
"descriptions": "Abnormal leaf morphology. Abnormal petal morphology. Abnormal sepal morphology. Abnormal stamen morp...",
"annotations": ["GO:0048443", "GO:0048440", "GO:0009965", "GO:0009909", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 64,
"species": "ath",
"unique_gene_identifiers": ["WEB2", "PMI2", "At1g66840", "AT1G66840"],
"other_gene_identifiers": ["Weak Chloroplast Movement Under Blue Light", "plastid movement impaired 2", "WEAK CHLOROPLAST MOVEMENT UNDER BLUE LIGHT 2", "F4N21.22", "..."],
"gene_models": ["At1g66840", "AT1G66840"],
"descriptions": "Abnormal light-responsive chloroplast movement.",
"annotations": ["GO:0005515", "GO:0009637", "GO:0009903", "GO:0009904", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 65,
"species": "ath",
"unique_gene_identifiers": ["WEB1", "WEAK CHLOROPLAST MOVEMENT UNDER BLUE LIGHT 1", "At2g26570", "AT2G26570"],
"other_gene_identifiers": ["Weak Chloroplast Movement Under Blue Light", "T9J22.24", "T9J22_24", "AT2G26570.1"],
"gene_models": ["At2g26570", "AT2G26570"],
"descriptions": "Abnormal light-responsive chloroplast movement.",
"annotations": ["GO:0009904", "GO:0009903", "GO:0005515", "GO:0005829", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 66,
"species": "ath",
"unique_gene_identifiers": ["AtK5", "ATK5", "kinesin 5", "At4g05190", "..."],
"other_gene_identifiers": ["Kinesin", "C17L7.110", "C17L7_110", "AT4G05190.1"],
"gene_models": ["At4g05190", "AT4G05190"],
"descriptions": "Abnormal mitotic spindle morphogenesis. Defect during early spindle formation. Beginning during prop...",
"annotations": ["GO:0051225", "GO:0000226", "GO:0005634", "GO:0005876", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 67,
"species": "ath",
"unique_gene_identifiers": ["ALG3", "At2g47760", "AT2G47760"],
"other_gene_identifiers": ["Asparagine-Linked Glycosylation", "AtALG3", "asparagine-linked glycosylation 3", "Arabidopsis thaliana asparagine-linked glycosylation 3", "..."],
"gene_models": ["At2g47760", "AT2G47760"],
"descriptions": "Abnormal N-glycan composition. No other phenotypes detected. Attenuated calcium signaling response a...",
"annotations": ["GO:0006486", "GO:0000033", "GO:0005783", "GO:0097502", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 68,
"species": "ath",
"unique_gene_identifiers": ["AGO9", "ARGONAUTE 9", "At5g21150", "AT5G21150"],
"other_gene_identifiers": ["Argonaute", "T10F18.180", "T10F18_180", "AT5G21150.1"],
"gene_models": ["At5g21150", "AT5G21150"],
"descriptions": "Abnormal ovule morphology (no effect on fertility). Increased percentage of abnormal ovules in homoz...",
"annotations": ["GO:0051607", "GO:0048481", "GO:0009554", "GO:0005737", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 69,
"species": "ath",
"unique_gene_identifiers": ["RBE", "At5g06070", "AT5G06070"],
"other_gene_identifiers": ["Rabbit Ears", "RAB", "RABBIT EARS"],
"gene_models": ["At5g06070", "AT5G06070"],
"descriptions": "Abnormal petal morphology. Altered petal morphology. A wild-type flower has four petals of almost th...",
"annotations": ["GO:0048441", "GO:0006355", "GO:0009409", "GO:0009934", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 70,
"species": "ath",
"unique_gene_identifiers": ["PMEAMT", "phosphoethanolamine N-methyltransferase", "At1g48600", "AT1G48600"],
"other_gene_identifiers": ["Phosphoethanolamine N-Methyltrasnferase", "AtPMEAMT", "AtPMT2", "Phosphoethanolamine methyltransferase2", "..."],
"gene_models": ["At1g48600", "AT1G48600"],
"descriptions": "Abnormal phosphatidylmethylethanolamine levels. No other phenotypes detected. No obvious phenotypic ...",
"annotations": ["GO:0006656", "GO:0052667", "GO:0032259", "PO:0020030", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 71,
"species": "ath",
"unique_gene_identifiers": ["APE1", "ACCLIMATION OF PHOTOSYNTHESIS TO ENVIRONMENT", "At5g38660", "AT5G38660"],
"other_gene_identifiers": ["Acclimation of Photosynthesis to Environment", "MBB18.21", "MBB18_21", "AT5G38660.1"],
"gene_models": ["At5g38660", "AT5G38660"],
"descriptions": "Abnormal photosynthesis acclimation response. Altered acclimation responses.",
"annotations": ["GO:0009535", "GO:0009534", "GO:0009507", "GO:0009941", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 72,
"species": "ath",
"unique_gene_identifiers": ["APE2", "ACCLIMATION OF PHOTOSYNTHESIS TO ENVIRONMENT 2", "At5g46110", "AT5G46110", "..."],
"other_gene_identifiers": ["Acclimation of Photosynthesis to Environment", "APURINIC/APYRIMIDINIC ENDONUCLEASE2", "T19K4.180", "T19K4_180", "..."],
"gene_models": ["At5g46110", "AT5G46110", "AT4G36050"],
"descriptions": "Abnormal photosynthesis acclimation response.",
"annotations": ["GO:0009941", "GO:0035436", "GO:0009643", "GO:0009534", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 73,
"species": "ath",
"unique_gene_identifiers": ["NGA3", "At1g01030", "AT1G01030"],
"other_gene_identifiers": ["Ngatha", "NGATHA3", "T25K16.3", "T25K16_3"],
"gene_models": ["At1g01030", "AT1G01030"],
"descriptions": "Abnormal pistil morphology.",
"annotations": ["GO:0006355", "GO:1901371", "GO:0048366", "GO:0009908", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 74,
"species": "ath",
"unique_gene_identifiers": ["CLV2", "At1g65380", "AT1G65380"],
"other_gene_identifiers": ["Clavata", "AtRLP10", "clavata 2", "Receptor Like Protein 10", "..."],
"gene_models": ["At1g65380", "AT1G65380"],
"descriptions": "Abnormal pedicel development unless under short days. Abnormal pistil development unless under short...",
"annotations": ["GO:0005515", "GO:0009909", "GO:0048507", "GO:0010075", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 75,
"species": "ath",
"unique_gene_identifiers": ["DEL1", "At3g48160", "AT3G48160"],
"other_gene_identifiers": ["DP-E2F-Like 1", "E2L3", "E2FE", "DP-E2F-like 1", "..."],
"gene_models": ["At3g48160", "AT3G48160"],
"descriptions": "Abnormal ploidy levels. Epidermal cells on abaxial surface have increased DNA content.",
"annotations": ["GO:0003677", "GO:0005515", "GO:0042023", "GO:0032876", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 76,
"species": "ath",
"unique_gene_identifiers": ["LAP6", "At1g02050", "AT1G02050"],
"other_gene_identifiers": ["Less Adhesive Pollen", "PKSA", "LESS ADHESIVE POLLEN 6", "polyketide synthase A", "..."],
"gene_models": ["At1g02050", "AT1G02050"],
"descriptions": "Abnormal pollen exine layer. Abnormal exine patterning. Pollen has a more extensively covered surfac...",
"annotations": ["GO:0010584", "GO:0080110", "GO:0005783", "GO:0030639", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 77,
"species": "ath",
"unique_gene_identifiers": ["TKPR2", "At1g68540", "AT1G68540"],
"other_gene_identifiers": ["Tetraketide Alpha-Pyrone Reductase", "CCRL6", "tetraketide alpha-pyrone reductase 2", "cinnamoyl coA reductase-like 6", "..."],
"gene_models": ["At1g68540", "AT1G68540"],
"descriptions": "Abnormal pollen exine layer.",
"annotations": ["GO:0080110", "GO:0010584", "GO:0005829", "PO:0000013", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 78,
"species": "ath",
"unique_gene_identifiers": ["KOM", "At1g77860", "AT1G77860"],
"other_gene_identifiers": ["Kompeito", "KOMPEITO", "F28K19.7", "F28K19_7"],
"gene_models": ["At1g77860", "AT1G77860"],
"descriptions": "Abnormal pollen exine layer. Altered morphology of pollen exine wall.",
"annotations": ["GO:0008150", "GO:0005575", "GO:0003674", "PO:0009046", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 79,
"species": "ath",
"unique_gene_identifiers": ["DEX1", "At3g09090", "AT3G09090"],
"other_gene_identifiers": ["Defective in Exine Patterning", "DEFECTIVE IN EXINE FORMATION 1", "MZB10.12"],
"gene_models": ["At3g09090", "AT3G09090"],
"descriptions": "Abnormal pollen exine layer. Disruption of the plasma menbrane of microspores. Blocks the normal inv...",
"annotations": ["GO:0005783", "GO:0010208", "PO:0000013", "PO:0000037", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 80,
"species": "ath",
"unique_gene_identifiers": ["LAP5", "At4g34850", "AT4G34850"],
"other_gene_identifiers": ["Less Adhesive Pollen", "PKSB", "LESS ADHESIVE POLLEN 5", "polyketide synthase B", "..."],
"gene_models": ["At4g34850", "AT4G34850"],
"descriptions": "Abnormal pollen exine layer. Abnormal exine patterning. Pollen lacks the characteristic reticulate s...",
"annotations": ["GO:0080110", "GO:0010584", "GO:0005783", "GO:0005515", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 81,
"species": "ath",
"unique_gene_identifiers": ["AtSPS2F", "SPS2F", "sucrose phosphate synthase 2F", "At5g11110", "..."],
"other_gene_identifiers": ["Sucrose Phosphate Synthase", "SPS1", "ATSPS2F", "KNS2", "..."],
"gene_models": ["At5g11110", "AT5G11110"],
"descriptions": "Abnormal pollen exine layer. Defects are specific to pollen exine structure. Smaller mesh size in th...",
"annotations": ["GO:0005886", "GO:0010208", "GO:0071836", "PO:0000013", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 82,
"species": "ath",
"unique_gene_identifiers": ["CYP704B1", "At1g69500", "AT1G69500"],
"other_gene_identifiers": ["Cytochrome P450", "\"cytochrome P450, family 704, subfamily B, polypeptide 1\"", "F10D13.15", "F10D13_15"],
"gene_models": ["At1g69500", "AT1G69500"],
"descriptions": "Abnormal pollen exine layer (no reduction in fertility).",
"annotations": ["GO:0080110", "GO:0010584", "GO:0018685", "PO:0009066", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 83,
"species": "ath",
"unique_gene_identifiers": ["bZIP34", "BZIP34", "At2g42380", "AT2G42380"],
"other_gene_identifiers": ["ATBZIP34", "MHK10.10", "MHK10_10"],
"gene_models": ["At2g42380", "AT2G42380"],
"descriptions": "Abnormal pollen exine layer. Abnormal pollen shape. Abnormal pollen shape and exine layer.",
"annotations": ["GO:0009555", "GO:0045893", "GO:0003677", "GO:0005634", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 84,
"species": "ath",
"unique_gene_identifiers": ["TAM1", "CYCA1;2", "At1g77390", "AT1G77390"],
"other_gene_identifiers": ["Tardy Asynchronous Meiosis", "TAM", "DYP", "CYCA1", "..."],
"gene_models": ["At1g77390", "AT1G77390"],
"descriptions": "Abnormal pollen tetrad formation (no reduction in fertility). Delayed meiotic cell divisions. Meiocy...",
"annotations": ["GO:0007135", "GO:0005515", "GO:0051445", "GO:0007140", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 85,
"species": "ath",
"unique_gene_identifiers": ["NPQ1", "At1g08550", "AT1G08550"],
"other_gene_identifiers": ["Nonphotochemical Quenching Defective", "AVDE1", "non-photochemical quenching 1", "ARABIDOPSIS VIOLAXANTHIN DE-EPOXIDASE 1", "..."],
"gene_models": ["At1g08550", "AT1G08550"],
"descriptions": "Abnormal quenching of chlorophyll fluorescence. Altered nonphotochemical quenching of chlorophyll fl...",
"annotations": ["GO:0030095", "GO:0009507", "GO:0009543", "GO:0016122", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 86,
"species": "ath",
"unique_gene_identifiers": ["AGR1", "EIR1", "At5g57090", "AT5G57090"],
"other_gene_identifiers": ["Agravitropic", "WAV6", "ATPIN2", "PIN2", "..."],
"gene_models": ["At5g57090", "AT5G57090"],
"descriptions": "Abnormal hypocotyl gravicurvature. Abnormal root gravicurvature. Abnormal root and hypocotyl gravicu...",
"annotations": ["GO:0010315", "GO:0009958", "GO:0009926", "GO:0009749", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 87,
"species": "ath",
"unique_gene_identifiers": ["DRL1", "TKPR1", "At1g13870", "AT1G13870", "..."],
"other_gene_identifiers": ["Deformed Roots and Leaves", "Tetraketide Alpha-Pyrone Reductase", "AtKTI12", "DEFORMED ROOTS AND LEAVES 1", "..."],
"gene_models": ["At1g13870", "AT1G13870", "At4g35420", "AT4G35420"],
"descriptions": "Abnormal leaf growth. Abnormal root growth. Abnormal root and leaf growth. Highly abnormal developme...",
"annotations": ["GO:0005516", "GO:0006357", "GO:0006400", "GO:0010449", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 88,
"species": "ath",
"unique_gene_identifiers": ["AGG2", "At3g22942", "AT3G22942"],
"other_gene_identifiers": ["G-Protein Gamma Subunit", "AtGG2", "G-protein gamma subunit 2"],
"gene_models": ["At3g22942", "AT3G22942"],
"descriptions": "Abnormal root architecture. Decreased basipetal auxin transport. Impaired resistance to necrotrophic...",
"annotations": ["GO:0005515", "GO:0005886", "GO:0018345", "GO:0018342", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 89,
"species": "ath",
"unique_gene_identifiers": ["AGG1", "GG1", "Ggamma-subunit 1", "At3g63420", "..."],
"other_gene_identifiers": ["G-Protein Gamma Subunit", "ATAGG1", "MAA21.50", "HETEROTRIMERIC G PROTEIN GAMMA-SUBUNIT", "..."],
"gene_models": ["At3g63420", "AT3G63420"],
"descriptions": "Abnormal root architecture. Increased basipetal auxin transport. Impaired resistance to necrotrophic...",
"annotations": ["GO:0048527", "GO:0005886", "GO:0010541", "GO:0009817", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 90,
"species": "ath",
"unique_gene_identifiers": ["ANL2", "At4g00730", "AT4G00730"],
"other_gene_identifiers": ["Anthocyaninless", "AHDP", "ANTHOCYANINLESS 2", "ARABIDOPSIS THALIANA HOMEODOMAIN PROTEIN", "..."],
"gene_models": ["At4g00730", "AT4G00730"],
"descriptions": "Abnormal root architecture. Low anthocyanin levels. Low anthocyanin levels in subepidermal cells. In...",
"annotations": ["GO:0044212", "GO:0042335", "GO:0043481", "GO:0048765", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 91,
"species": "ath",
"unique_gene_identifiers": ["RCD1", "At1g32230", "AT1G32230"],
"other_gene_identifiers": ["Radical-Induced Cell Death", "CEO", "CEO1", "ATP8", "..."],
"gene_models": ["At1g32230", "AT1G32230"],
"descriptions": "Abnormal root architecture. Early flowering. Malformed leaves. Resistant to UV-B light. Semi-dwarf. ...",
"annotations": ["GO:0009790", "GO:0012501", "GO:0000303", "GO:0006809", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 92,
"species": "ath",
"unique_gene_identifiers": ["SMB", "smB", "At1g79580", "AT1G79580", "..."],
"other_gene_identifiers": ["Sombrero", "ANAC033", "URP7", "SOMBRERO", "..."],
"gene_models": ["At1g79580", "AT1G79580", "AT4G20440"],
"descriptions": "Abnormal root cap cell morphology. Additional columella root cap and lateral root cap cell layers in...",
"annotations": ["GO:0006355", "GO:0048829", "GO:0003002", "GO:0005634", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 93,
"species": "ath",
"unique_gene_identifiers": ["AtPDR2", "ABCG30", "At4g15230", "AT4G15230"],
"other_gene_identifiers": ["Pleiotropic Drug Resistance", "ATPDR2", "PDR2", "pleiotropic drug resistance 2", "..."],
"gene_models": ["At4g15230", "AT4G15230"],
"descriptions": "Abnormal root exudate profiles. No visible phenotype.",
"annotations": ["GO:0033231", "PO:0000013", "PO:0000037", "PO:0000230", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 94,
"species": "ath",
"unique_gene_identifiers": ["AtEB1a", "EB1A", "At3g47690", "AT3G47690"],
"other_gene_identifiers": ["End Binding", "ATEB1H2", "ARABIDOPSIS THALIANA MICROTUBULE END BINDING PROTEIN EB1A", "microtubule end binding protein EB1A", "..."],
"gene_models": ["At3g47690", "AT3G47690"],
"descriptions": "Abnormal root gravitropism. Abnormal root thigmotropism. Abnormal root gravitropism and thigmotropis...",
"annotations": ["GO:0005876", "GO:0009652", "GO:0001578", "GO:0008017", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 95,
"species": "ath",
"unique_gene_identifiers": ["AtEB1B", "EB1B", "At5g62500", "AT5G62500"],
"other_gene_identifiers": ["END Binding Protein", "ATEB1B", "ATEB1", "END BINDING PROTEIN 1B", "..."],
"gene_models": ["At5g62500", "AT5G62500"],
"descriptions": "Abnormal root gravitropism. Abnormal root thigmotropism. Abnormal root gravitropism and thigmotropis...",
"annotations": ["GO:0001578", "GO:0009652", "GO:0009524", "GO:0005874", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 96,
"species": "ath",
"unique_gene_identifiers": ["PIN3", "At1g70940", "AT1G70940"],
"other_gene_identifiers": ["Pin-Formed", "ATPIN3", "PIN-FORMED 3", "ARABIDOPSIS PIN-FORMED 3", "..."],
"gene_models": ["At1g70940", "AT1G70940"],
"descriptions": "Abnormal phototropism. Abnormal root gravitropism. No visible phenotype. Somewhat short hypocotyls. ...",
"annotations": ["GO:0009958", "GO:0048767", "GO:0048766", "GO:0007389", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]
},
{
"id": 97,
"species": "ath",
"unique_gene_identifiers": ["TOR1", "At4g27060", "AT4G27060"],
"other_gene_identifiers": ["Tortifolia", "SPR2", "CN", "TORTIFOLIA 1", "..."],
"gene_models": ["At4g27060", "AT4G27060"],
"descriptions": "Abnormal root gravitropism. Anti-clockwise twisting cauline leaves. Anti-clockwise twisting petals. ...",
"annotations": ["GO:0010005", "GO:0009826", "GO:0007275", "GO:0008017", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 98,
"species": "ath",
"unique_gene_identifiers": ["AUX1", "At2g38120", "AT2G38120"],
"other_gene_identifiers": ["Auxin Resistant", "WAV5", "PIR1", "MAP1", "..."],
"gene_models": ["At2g38120", "AT2G38120"],
"descriptions": "Abnormal root gravitropism. Root growth insensitive to auxin. Altered DR5:GUS expression upon ethyle...",
"annotations": ["GO:0005768", "GO:0010311", "GO:0009926", "GO:0009624", "..."],
"sources": ["Plant PhenomeNET", "TAIR", "Planteome"]
},
{
"id": 99,
"species": "ath",
"unique_gene_identifiers": ["SHR", "At4g37650", "AT4G37650"],
"other_gene_identifiers": ["Short Root", "SGR7", "SHORT ROOT", "SHOOT GRAVITROPISM 7", "..."],
"gene_models": ["At4g37650", "AT4G37650"],
"descriptions": "Abnormal root growth. Reduction of the width of the stele measured at 100 &mu. M above the QC (where...",
"annotations": ["GO:0005515", "GO:0048366", "GO:0044212", "GO:0045930", "..."],
"sources": ["Plant PhenomeNET", "TAIR"]