-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpso-base.obo
More file actions
8812 lines (8052 loc) · 357 KB
/
Copy pathpso-base.obo
File metadata and controls
8812 lines (8052 loc) · 357 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
format-version: 1.2
data-version: pso/releases/2026-01-08/pso-base.owl
default-namespace: plant_stress_ontology
ontology: pso/pso-base
property_value: http://purl.org/dc/elements/1.1/type IAO:8000001
property_value: http://purl.org/dc/terms/description "An ontology describing biotic and abiotic plant stresses." xsd:string
property_value: http://purl.org/dc/terms/license https://creativecommons.org/licenses/by/4.0/
property_value: http://purl.org/dc/terms/title "Plant Stress Ontology" xsd:string
property_value: owl:versionInfo "2026-01-08" xsd:string
[Term]
id: NCBITaxon:3885
[Term]
id: PSO:0000001
name: plant stress
def: "A biological process of some plant structure (PO:0009011) caused by exposure to some causal agent." [PSO:cooperl]
[Term]
id: PSO:0000004
name: plant animal damage
def: "A biotic plant stress (PSO:0000011) which is damage caused by the exposure to an animal." [PSO:cooperl]
comment: Plants may be damaged by various animals such as arachnids (mites and spiders), insects, birds, rodents, nematodes, mollusks, or herbivores.
is_a: PSO:0000011 ! biotic plant stress
intersection_of: PSO:0000011 ! biotic plant stress
intersection_of: PSO:1000001 PO:0009011 ! damage causes dysfunction of
intersection_of: PSO:1000002 NCBITaxon:33208 ! damage has biotic causal agent
intersection_of: RO:0002162 NCBITaxon:33090
[Term]
id: PSO:0000009
name: grape viral disease
def: "A grape disease caused by a Viruses affecting a plant structure." [AUTO:patterns/disease]
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:29760
intersection_of: RO:0004025 PO:0009011
intersection_of: RO:0014001 NCBITaxon:10239
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000010
name: grape oomycete disease
def: "A grape disease caused by a Oomycota affecting a plant structure." [AUTO:patterns/disease]
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:29760
intersection_of: RO:0004025 PO:0009011
intersection_of: RO:0014001 NCBITaxon:4762
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000011
name: biotic plant stress
def: "A plant stress (PSO:0000001) caused by exposure to a biological stress causal agent." []
comment: Causal agents of biological plant stresses include fungi, bacteria, oomycetes, and viruses, as well as animals and other plants.
is_a: PSO:0000001 ! plant stress
intersection_of: BFO:0000016
intersection_of: RO:0002162 NCBITaxon:33090
[Term]
id: PSO:0000012
name: abiotic plant stress
def: "A plant stress (PSO:0000001) caused by exposure to an abiotic causal agent." [PSO:cooperl]
comment: Abiotic stress causal agents can include chemicals or physical agents such as temperature, radiation or drought.
is_a: PSO:0000001 ! plant stress
[Term]
id: PSO:0000013
name: plant disease
def: "A biotic plant stress (PSO:0000011) which is a disorder caused by exposure to a disease-causing organism." [PSO:cooperl]
comment: Disease-causing organisms include fungi, bacteria, viruses and oomycetes.
is_a: PSO:0000011 ! biotic plant stress
intersection_of: PSO:0000011 ! biotic plant stress
intersection_of: RO:0002162 NCBITaxon:33090
intersection_of: RO:0004025 PO:0009011
intersection_of: RO:0014001 NCBITaxon:1
[Term]
id: PSO:0000014
name: potato bacterial disease
def: "A potato disease caused by a Bacteria affecting a plant structure." [AUTO:patterns/disease]
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4113
intersection_of: RO:0004025 PO:0009011
intersection_of: RO:0014001 NCBITaxon:2
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000015
name: potato fungal disease
def: "A potato disease caused by a Fungi affecting a plant structure." [AUTO:patterns/disease]
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4113
intersection_of: RO:0004025 PO:0009011
intersection_of: RO:0014001 NCBITaxon:4751
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000016
name: potato viral disease
def: "A potato disease caused by a Viruses affecting a plant structure." [AUTO:patterns/disease]
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4113
intersection_of: RO:0004025 PO:0009011
intersection_of: RO:0014001 NCBITaxon:10239
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000017
name: potato oomycete disease
def: "A potato disease caused by a Oomycota affecting a plant structure." [AUTO:patterns/disease]
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4113
intersection_of: RO:0004025 PO:0009011
intersection_of: RO:0014001 NCBITaxon:4762
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000018
name: grape bacterial disease
def: "A grape disease caused by a Bacteria affecting a plant structure." [AUTO:patterns/disease]
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:29760
intersection_of: RO:0004025 PO:0009011
intersection_of: RO:0014001 NCBITaxon:2
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000019
name: grape fungal disease
def: "A grape disease caused by a Fungi affecting a plant structure." [AUTO:patterns/disease]
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:29760
intersection_of: RO:0004025 PO:0009011
intersection_of: RO:0014001 NCBITaxon:4751
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000020
name: Bipolaris oryzae pecky rice fungal disease
alt_id: PDO:0000078
def: "A rice disease caused by a Bipolaris oryzae affecting a caryopsis fruit." [AUTO:patterns/disease]
xref: APSNET:Rice
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4530
intersection_of: RO:0004025 PO:0030104
intersection_of: RO:0014001 NCBITaxon:101162
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000021
name: Curvularia pecky rice fungal disease
alt_id: PDO:0000075
def: "A rice disease caused by a Curvularia affecting a caryopsis fruit." [AUTO:patterns/disease]
xref: APSNET:Rice
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4530
intersection_of: RO:0004025 PO:0030104
intersection_of: RO:0014001 NCBITaxon:5502
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000022
name: Fusarium pecky rice fungal disease
alt_id: PDO:0000077
def: "A rice disease caused by a Fusarium affecting a caryopsis fruit." [AUTO:patterns/disease]
xref: APSNET:Rice
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4530
intersection_of: RO:0004025 PO:0030104
intersection_of: RO:0014001 NCBITaxon:5506
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000024
name: maize Alternaria leaf spot fungal disease
alt_id: PDO:0000190|PSO:0000023
def: "A maize disease caused by a Alternaria alternata affecting a vascular leaf." [AUTO:patterns/disease]
synonym: "maize Alternaria alternata leaf rot fungal disease" EXACT []
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009025
intersection_of: RO:0014001 NCBITaxon:5599
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000025
name: maize Alternaria minor root rot fungal disease
alt_id: PDO:0000191
def: "A maize disease caused by a Alternaria alternata affecting a root." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009005
intersection_of: RO:0014001 NCBITaxon:5599
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000026
name: maize Aspergillus flavus leaf rot fungal disease
alt_id: PDO:0000268
def: "A maize disease caused by a Aspergillus flavus affecting a vascular leaf." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009025
intersection_of: RO:0014001 NCBITaxon:5059
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000027
name: maize Aspergillus glaucus minor leaf rot fungal disease
alt_id: PDO:0000192
def: "A maize disease caused by a Aspergillus glaucus affecting a vascular leaf." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009025
intersection_of: RO:0014001 NCBITaxon:41413
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000028
name: maize Aspergillus kernel rot fungal disease
alt_id: PDO:0000253
def: "A maize disease caused by a Aspergillus flavus affecting a caryopsis fruit." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0030104
intersection_of: RO:0014001 NCBITaxon:5059
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000029
name: maize Aspergillus minor ear rot fungal disease
alt_id: PDO:0000270
def: "A maize disease caused by a Aspergillus affecting a ear infructescence." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0025597
intersection_of: RO:0014001 NCBITaxon:5052
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000030
name: maize Aspergillus niger leaf rot fungal disease
alt_id: PDO:0000267
def: "A maize disease caused by a Aspergillus niger affecting a vascular leaf." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009025
intersection_of: RO:0014001 NCBITaxon:5061
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000031
name: maize Aureobasidium eyespot fungal disease
alt_id: PDO:0000188
def: "A maize disease caused by a Aureobasidium zeae affecting a vascular leaf." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009025
intersection_of: RO:0014001 NCBITaxon:1592451
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000032
name: maize bacterial disease
alt_id: PDO:0000011
def: "A maize disease caused by a Bacteria affecting a plant structure." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009011
intersection_of: RO:0014001 NCBITaxon:2
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000033
name: maize bacterial leaf blight and stalk rot disease
alt_id: PDO:0000145
def: "A maize disease caused by a Acidovorax avenae affecting a plant structure." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009011
intersection_of: RO:0014001 NCBITaxon:80867
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000034
name: maize bacterial leaf spot disease
alt_id: PDO:0000146
def: "A maize disease caused by a Xanthomonas vasicola affecting a vascular leaf." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009025
intersection_of: RO:0014001 NCBITaxon:56459
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000035
name: maize bacterial stalk and top rot disease
alt_id: PDO:0000148
def: "A maize disease caused by a Pectobacterium carotovorum subsp. carotovorum affecting a plant structure." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009011
intersection_of: RO:0014001 NCBITaxon:555
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000036
name: maize bacterial stalk rot disease
alt_id: PDO:0000147
def: "A maize disease caused by a Enterobacter cloacae subsp. dissolvens affecting a stem." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009047
intersection_of: RO:0014001 NCBITaxon:69219
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000037
name: maize bacterial stripe disease
alt_id: PDO:0000149
def: "A maize disease caused by a Robbsia andropogonis affecting a plant structure." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009011
intersection_of: RO:0014001 NCBITaxon:28092
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000039
name: maize Bipolaris minor leaf spot fungal disease
alt_id: PDO:0000194
def: "A maize disease caused by a Bipolaris sorokiniana affecting a vascular leaf." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009025
intersection_of: RO:0014001 NCBITaxon:45130
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000040
name: maize Bipolaris southern leaf blight fungal disease
alt_id: PDO:0000184
def: "A maize disease caused by a Bipolaris maydis affecting a vascular leaf." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009025
intersection_of: RO:0014001 NCBITaxon:5016
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000041
name: maize Botrytis cinerea minor leaf rot fungal disease
alt_id: PDO:0000269
def: "A maize disease caused by a Botrytis cinerea affecting a vascular leaf." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009025
intersection_of: RO:0014001 NCBITaxon:40559
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000042
name: maize bushy stunt phytoplasma disease
alt_id: PDO:0000173
def: "A maize disease caused by a Maize bushy stunt phytoplasma affecting a plant structure." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009011
intersection_of: RO:0014001 NCBITaxon:202462
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000043
name: maize Cercospora gray leaf spot fungal disease
alt_id: PDO:0000174
def: "A maize disease caused by a Cercospora zeae-maydis affecting a vascular leaf." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009025
intersection_of: RO:0014001 NCBITaxon:135779
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000044
name: maize chocolate spot bacterial disease
alt_id: PDO:0000150
def: "A maize disease caused by a Pseudomonas coronafaciens pv. coronafaciens affecting a plant structure." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009011
intersection_of: RO:0014001 NCBITaxon:235275
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000045
name: maize Claviceps ergot fungal disease
alt_id: PDO:0000199
def: "A maize disease caused by a Claviceps gigantea affecting a plant structure." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009011
intersection_of: RO:0014001 NCBITaxon:89175
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000046
name: maize Cochliobolus pallescens leaf spot fungal disease
alt_id: PDO:0000260
def: "A maize disease caused by a Curvularia pallescens affecting a vascular leaf." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009025
intersection_of: RO:0014001 NCBITaxon:318706
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000047
name: maize Cochliobolus pallescens minor leaf rot fungal disease
alt_id: PDO:0000202
def: "A maize disease caused by a Curvularia pallescens affecting a ear inflorescence." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0020136
intersection_of: RO:0014001 NCBITaxon:318706
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000048
name: maize Colletotrichum falcatum Anthracnose leaf blight fungal disease
alt_id: PDO:0000249
def: "A maize disease caused by a Colletotrichum falcatum affecting a vascular leaf." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009025
intersection_of: RO:0014001 NCBITaxon:129314
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000049
name: maize Colletotrichum falcatum Anthracnose stalk rot fungal disease
alt_id: PDO:0000250
def: "A maize disease caused by a Colletotrichum falcatum affecting a stem." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009047
intersection_of: RO:0014001 NCBITaxon:129314
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000050
name: maize Colletotrichum graminicola Anthracnose leaf blight fungal disease
alt_id: PDO:0000176
def: "A maize disease caused by a Colletotrichum graminicola affecting a vascular leaf." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009025
intersection_of: RO:0014001 NCBITaxon:31870
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000051
name: maize Colletotrichum graminicola Anthracnose stalk rot fungal disease
alt_id: PDO:0000177
def: "A maize disease caused by a Colletotrichum graminicola affecting a stem." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009047
intersection_of: RO:0014001 NCBITaxon:31870
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000052
name: maize Culvularia clavata leaf spot fungal disease
alt_id: PDO:0000201
def: "A maize disease caused by a Curvularia clavata affecting a vascular leaf." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009025
intersection_of: RO:0014001 NCBITaxon:95742
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000053
name: maize Cunninghamella minor ear rot fungal disease
alt_id: PDO:0000200
def: "A maize disease caused by a Cunninghamella affecting a ear infructescence." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0025597
intersection_of: RO:0014001 NCBITaxon:4852
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000054
name: maize Curvularia eragrostidis leaf spot fungal disease
alt_id: PDO:0000261
def: "A maize disease caused by a Curvularia eragrostidis affecting a vascular leaf." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009025
intersection_of: RO:0014001 NCBITaxon:418125
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000055
name: maize Curvularia inaequalis leaf spot fungal disease
alt_id: PDO:0000262
def: "A maize disease caused by a Curvularia inaequalis affecting a vascular leaf." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009025
intersection_of: RO:0014001 NCBITaxon:38902
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000056
name: maize Curvularia intermedia leaf spot fungal disease
alt_id: PDO:0000263
def: "A maize disease caused by a Curvularia intermedia affecting a vascular leaf." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009025
intersection_of: RO:0014001 NCBITaxon:95735
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000057
name: maize Curvularia lunata leaf spot fungal disease
alt_id: PDO:0000264
def: "A maize disease caused by a Curvularia lunata affecting a vascular leaf." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009025
intersection_of: RO:0014001 NCBITaxon:5503
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000058
name: maize Curvularia senegalensis leaf spot fungal disease
alt_id: PDO:0000265
def: "A maize disease caused by a Curvularia senegalensis affecting a vascular leaf." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009025
intersection_of: RO:0014001 NCBITaxon:215132
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000059
name: maize Curvularia tuberculata leaf spot fungal disease
alt_id: PDO:0000266
def: "A maize disease caused by a Curvularia tuberculata affecting a vascular leaf." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009025
intersection_of: RO:0014001 NCBITaxon:1056642
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000060
name: maize Dictyochaeta minor root rot fungal disease
alt_id: PDO:0000204
def: "A maize disease caused by a Dictyochaeta fertilis affecting a root." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009005
intersection_of: RO:0014001 NCBITaxon:139969
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000061
name: maize Didymella leaf spot fungal disease
alt_id: PDO:0000203
def: "A maize disease caused by a Neoascochyta exitialis affecting a vascular leaf." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009025
intersection_of: RO:0014001 NCBITaxon:487631
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000062
name: maize Diplodia leaf rot fungal disease
alt_id: PDO:0000254
def: "A maize disease caused by a Physalospora zeicola affecting a vascular leaf." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009025
intersection_of: RO:0014001 NCBITaxon:371119
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000063
name: maize Diplodia leaf spot fungal disease
alt_id: PDO:0000258
def: "A maize disease caused by a Stenocarpella maydis affecting a vascular leaf." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009025
intersection_of: RO:0014001 NCBITaxon:238245
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000064
name: maize Diplodia leaf streak fungal disease
alt_id: PDO:0000259
def: "A maize disease caused by a Stenocarpella macrospora affecting a vascular leaf." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009025
intersection_of: RO:0014001 NCBITaxon:371126
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000065
name: maize Diplodia stalk rot fungal disease
alt_id: PDO:0000255
def: "A maize disease caused by a Physalospora zeicola affecting a stem." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009047
intersection_of: RO:0014001 NCBITaxon:371119
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000066
name: maize Doratomyces leafonitis minor leaf rot fungal disease
alt_id: PDO:0000205
def: "A maize disease caused by a Cephalotrichum stemonitis affecting a vascular leaf." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009025
intersection_of: RO:0014001 NCBITaxon:186354
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000067
name: maize Epicoccum minor leaf spot fungal disease
alt_id: PDO:0000206
def: "A maize disease caused by a Epicoccum nigrum affecting a vascular leaf." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009025
intersection_of: RO:0014001 NCBITaxon:105696
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000069
name: maize fungal disease
alt_id: PDO:0000012
def: "A maize disease caused by a Fungi affecting a plant structure." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009011
intersection_of: RO:0014001 NCBITaxon:4751
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000070
name: maize Fusarium culmorum minor leaf rot fungal disease
alt_id: PDO:0000271
def: "A maize disease caused by a Fusarium culmorum affecting a vascular leaf." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009025
intersection_of: RO:0014001 NCBITaxon:5516
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000071
name: maize Fusarium verticillioides leaf rot fungal disease
alt_id: PDO:0000247
def: "A maize disease caused by a Fusarium verticillioides affecting a vascular leaf." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009025
intersection_of: RO:0014001 NCBITaxon:117187
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000072
name: maize Fusarium graminearum leaf rot fungal disease
alt_id: PDO:0000180|PSO:0000076|PDO:0000178
def: "A maize disease caused by a Fusarium graminearum affecting a vascular leaf." [AUTO:patterns/disease]
synonym: "maize Gibberella leaf rot fungal disease" EXACT []
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009025
intersection_of: RO:0014001 NCBITaxon:5518
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000073
name: maize Fusarium seedling blight fungal disease
alt_id: PDO:0000181
def: "A maize disease caused by a Fusarium verticillioides affecting a seedling." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0008037
intersection_of: RO:0014001 NCBITaxon:117187
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000074
name: maize Fusarium seed rot fungal disease
alt_id: PDO:0000248
def: "A maize disease caused by a Fusarium verticillioides affecting a seed." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009010
intersection_of: RO:0014001 NCBITaxon:117187
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000075
name: maize Gaeumannomyces sheath rot fungal disease
alt_id: PDO:0000241
def: "A maize disease caused by a Gaeumannomyces graminis affecting a leaf sheath." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0020104
intersection_of: RO:0014001 NCBITaxon:29850
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000077
name: maize Gibberella stalk rot fungal disease
alt_id: PDO:0000179
def: "A maize disease caused by a Fusarium graminearum affecting a stem." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009047
intersection_of: RO:0014001 NCBITaxon:5518
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000078
name: maize Goss's bacterial wilt disease
alt_id: PDO:0000151
def: "A maize disease caused by a Clavibacter nebraskensis affecting a plant structure." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009011
intersection_of: RO:0014001 NCBITaxon:31963
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000079
name: maize holcus spot bacterial disease
alt_id: PDO:0000152
def: "A maize disease caused by a Pseudomonas syringae pv. syringae affecting a plant structure." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009011
intersection_of: RO:0014001 NCBITaxon:321
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000080
name: maize Hyalothyridium leaf spot fungal disease
alt_id: PDO:0000232
def: "A maize disease caused by a Leptosphaerulina affecting a vascular leaf." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009025
intersection_of: RO:0014001 NCBITaxon:55172
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000081
name: maize Lasiodiplodia black kernel rot fungal disease
alt_id: PDO:0000218
def: "A maize disease caused by a Lasiodiplodia theobromae affecting a plant structure." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009011
intersection_of: RO:0014001 NCBITaxon:45133
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000082
name: maize Macrophomina charcoal rot fungal disease
alt_id: PDO:0000222
def: "A maize disease caused by a Macrophomina phaseolina affecting a plant structure." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009011
intersection_of: RO:0014001 NCBITaxon:35725
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000083
name: maize Magnaporthiopsis late wilt fungal disease
alt_id: PDO:0000234
def: "A maize disease caused by a Magnaporthiopsis maydis affecting a plant structure." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009011
intersection_of: RO:0014001 NCBITaxon:80373
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000084
name: maize Marasmiellus borde blanco fungal disease
alt_id: PDO:0000219
def: "A maize disease caused by a Marasmiellus affecting a plant structure." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009011
intersection_of: RO:0014001 NCBITaxon:71896
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000085
name: maize Microdochium zonate leaf spot fungal disease
alt_id: PDO:0000246
def: "A maize disease caused by a Microdochium sorghi affecting a vascular leaf." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009025
intersection_of: RO:0014001 NCBITaxon:1682391
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000086
name: maize Myrothecium shuck rot fungal disease
alt_id: PDO:0000236
def: "A maize disease caused by a Myrothecium gramineum affecting a plant structure." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009011
intersection_of: RO:0014001 NCBITaxon:226117
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000087
name: maize Nigrospora dry leaf rot fungal disease
alt_id: PDO:0000257
def: "A maize disease caused by a Nigrospora oryzae affecting a vascular leaf." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009025
intersection_of: RO:0014001 NCBITaxon:335854
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000088
name: maize northern leaf blight fungal disease
alt_id: PDO:0000186
def: "A maize disease caused by a Exserohilum turcicum affecting a vascular leaf." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009025
intersection_of: RO:0014001 NCBITaxon:93612
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000089
name: maize northern leaf spot fungal disease
alt_id: PDO:0000183|PSO:0000038|PDO:0000195
def: "A maize disease caused by a Bipolaris zeicola affecting a vascular leaf." [AUTO:patterns/disease]
synonym: "maize Bipolaris leaf rot fungal disease" EXACT []
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009025
intersection_of: RO:0014001 NCBITaxon:5017
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000090
name: maize Peronosclerospora java downy mildew oomycete disease
alt_id: PDO:0000233
def: "A maize disease caused by a Peronosclerospora maydis affecting a plant structure." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009011
intersection_of: RO:0014001 NCBITaxon:886949
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000091
name: maize Peronosclerospora sorghum downy mildew oomycete disease
alt_id: PDO:0000238
def: "A maize disease caused by a Peronosclerospora sorghi affecting a plant structure." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009011
intersection_of: RO:0014001 NCBITaxon:230839
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000092
name: maize Peronosclerospora sugarcane downy mildew oomycete disease
alt_id: PDO:0000243
def: "A maize disease caused by a Peronosclerospora sacchari affecting a plant structure." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009011
intersection_of: RO:0014001 NCBITaxon:467161
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000093
name: maize yellow leaf blight fungal disease
alt_id: PDO:0000245
def: "A maize disease caused by a Didymella maydis affecting a vascular leaf." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009025
intersection_of: RO:0014001 NCBITaxon:259522
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000094
name: maize Phaeosphaeria leaf spot fungal disease
alt_id: PDO:0000235
def: "A maize disease caused by a Phaeosphaeriaceae affecting a vascular leaf." [AUTO:patterns/disease]
synonym: "maize white spot" EXACT []
synonym: "MWS" EXACT []
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease
intersection_of: RO:0002162 NCBITaxon:4577
intersection_of: RO:0004025 PO:0009025
intersection_of: RO:0014001 NCBITaxon:5020
property_value: http://purl.org/dc/terms/contributor "PSO:cooperl" xsd:string
[Term]
id: PSO:0000095
name: maize Phyllachora tar spot fungal disease
alt_id: PDO:0000244
def: "A maize disease caused by a Phyllachora maydis affecting a plant structure." [AUTO:patterns/disease]
xref: APSNET:maize
intersection_of: PSO:0000013 ! plant disease