-
Notifications
You must be signed in to change notification settings - Fork 0
/
lentil_withcropname.obo
1761 lines (1509 loc) · 59.4 KB
/
lentil_withcropname.obo
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
format-version: 1.2
auto-generated-by: java
default-namespace: CO_339_lentil
ontology: co_339
[Term]
id: CO_339:0000000
name: lentil anthracnose resistance trait
def: "Degree of tolerance to Anthracnose disease. Causative organism: Colletotrichum truncatum." [CO:curators, NCBITaxon:5467]
comment: Symptoms develop when plants start to flower. Necrotic lesions can be found on the lower leaflets and cause premature leaf senescence. Symptoms can also be found on stem starting from the base to the top of the plant.
synonym: "ANTR" EXACT []
is_a: TO:0001145 ! Ascomycete fungal disease response
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000001
name: lentil scoring method for anthracnose resistance
def: "Quantification of symptoms development in leaves and stem" [CO:curators]
relationship: method_of: CO_339:0000000 ! Anthracnose resistance
[Term]
id: CO_339:0000002
name: lentil 1 to 9 symptom scale
relationship: scale_of: CO_339:0000001 ! Scoring method for Anthracnose resistance
[Term]
id: CO_339:0000003
name: lentil aphid resistance trait
def: "Degree of tolerance to Aphids. Acrythosiphon pisum. Suck sap from tender parts of plants and it is the vector of viral diseases." [CO:curators]
synonym: "APHR" EXACT []
is_a: TO:0006067
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000004
name: lentil screening method for aphid resitance
def: "Infestation area was taken and the percentage of infestation was determined at seven days interval" [CO:curators]
relationship: method_of CO_339:0000003 ! Aphid resistance
[Term]
id: CO_339:0000005
name: lentil percentage scale
relationship: scale_of CO_339:0000004 ! Screening method for Aphid Resitance
relationship: scale_of CO_339:0000025 ! Screening method for Bruchid Resistance
relationship: scale_of CO_339:0000043 ! Straw protein content analysis - Method
relationship: scale_of CO_339:0000094 ! Micro nutrient content analysis -Method
relationship: scale_of CO_339:0000163 ! Grain protein content analysis - Method
relationship: scale_of CO_339:0000175 ! Screening method for Stem weevil resistance
[Term]
id: CO_339:0000006
name: lentil ascochyta blight resistance trait
def: "Degree of resistance to Ascochyta blight. Causative agent: Ascochyta lentis (Didymella lentis)." [CO:curators, NCBITaxon:205686]
comment: The pathogen infects leaves, stems, petioles, pods and seeds. On leaves, young lesions with small necrotic spots of 3-5mm diameter can be found. Reddish brown to black pycnidia from in the middle of the mature lesions. In severe infections, lesions gridle the stem, kill the epidermal and cortical cells and lead to stem breakage. Pods can also be infected and results seed infection. Heavily infected seeds look shrivelled and discoloured with a whitish mycelium and pycnidia.
synonym: "ABR" EXACT []
is_a: TO:0001145 ! Ascomycete fungal disease response
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000007
name: lentil scoring method for ascochyta blight resistance
def: "Quantification of infestation rate in leaves and stem" [CO:curators]
relationship: method_of CO_339:0000006 ! Ascochyta blight resistance
[Term]
id: CO_339:0000008
name: lentil 1 to 9 symptom scale
relationship: scale_of CO_339:0000007 ! Scoring method for Ascochyta blight Resistance
[Term]
id: CO_339:0000009
name: lentil biological yield per plant trait
def: "The total biological yield of a plant (seed yield + straw yield)" [CO:curators]
synonym: "BYPL" EXACT []
is_a: TO:0000457
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000010
name: lentil method of measuring bypl
def: "Yield of dried matured plants after pulling" [CO:curators]
relationship: method_of CO_339:0000009 ! Biological yield per plant
[Term]
id: CO_339:0000011
name: lentil g/plant scale
relationship: scale_of CO_339:0000010 ! Method of measuring BYPL
[Term]
id: CO_339:0000012
name: lentil biological yield per area trait
def: "The total biological yield (seed yield + straw yield) of plants in a plot" [CO:curators]
synonym: "BYPO" EXACT []
is_a: TO:0000458
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000013
name: lentil method of measuring bypo
def: "Yield of dried matured plants in a plot after pulling" [CO:curators]
relationship: method_of CO_339:0000012 ! Biological yield per area
[Term]
id: CO_339:0000014
name: lentil g/plot scale
relationship: scale_of CO_339:0000013 ! Method of measuring BYPO
[Term]
id: CO_339:0000015
name: lentil boron deficiency trait
def: "Deficiency of Boron in the plant" [CO:curators]
synonym: "BORD" EXACT []
is_a: TO:0000018
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000016
name: lentil screening method for boron deficiency
def: "Quantification of symptoms development in leaves and stem, measured after six weeks of sowing" [CO:curators]
relationship: method_of CO_339:0000015 ! Boron deficiency
[Term]
id: CO_339:0000017
name: lentil 1 to 10 percentage scale
relationship: scale_of CO_339:0000016 ! Screening method for Boron Deficiency
[Term]
id: CO_339:0000018
name: lentil boron toxicity tolerance trait
def: "Degree of tolerance to boron toxicity" [CO:curators]
synonym: "BORT" EXACT []
is_a: TO:0000018
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000019
name: lentil screening method for boron toxicity tolerance
def: "Quantification of symptoms of boron toxicity in leaves" [CO:curators]
relationship: method_of CO_339:0000018 ! Boron toxicity tolerance
[Term]
id: CO_339:0000020
name: lentil 1 to 10 percentage scale
relationship: scale_of CO_339:0000019 ! Screening method for Boron toxicity tolerance
[Term]
id: CO_339:0000021
name: lentil branching pattern trait
def: "A qualitative trait describing the branching pattern of plant" [CO:curators]
synonym: "BRPT" EXACT []
is_a: TO:0002639
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000022
name: lentil branching pattern - method
def: "Visual observation of the branching pattern" [CO:curators]
relationship: method_of CO_339:0000021 ! Branching pattern
[Term]
id: CO_339:0000023
name: lentil 1 to 3 pattern scale
relationship: scale_of CO_339:0000022 ! Branching pattern - method
[Term]
id: CO_339:0000024
name: lentil bruchid resistance trait
def: "Degree of tolerance to Bruchids.Callosobruchus analis. Damage flowers, pods and seeds" [CO:curators]
synonym: "BRUR" EXACT []
is_a: TO:0000261
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000025
name: lentil screening method for bruchid resistance
def: "Proportion of penetrated seeds in a sample of 40 seeds" [CO:curators]
relationship: method_of CO_339:0000024 ! Bruchid resistance
[Term]
id: CO_339:0000027
name: lentil canopy width trait
def: "Width of the canopy" [CO:curators]
synonym: "CANW" EXACT []
is_a: TO:0006062
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000028
name: lentil canopy width - method
def: "Average canopy width of three/five representative plants of an accession." [CO:curators]
relationship: method_of CO_339:0000027 ! Canopy width
[Term]
id: CO_339:0000029
name: lentil cm scale
relationship: scale_of CO_339:0000028 ! Canopy Width - method
relationship: scale_of CO_339:0000061 ! Early growth vigour - Method
relationship: scale_of CO_339:0000079 ! Height of the lowest pod - Method
relationship: scale_of CO_339:0000115 ! Plant height highest leaf - Method
relationship: scale_of CO_339:0000145 ! Root length by Winrhizo - Method
relationship: scale_of CO_339:0000196 ! Root length measurement - Method
[Term]
id: CO_339:0000030
name: lentil cold tolerance trait
def: "Tolerance to damage caused to aerial plant parts by cold stress." [CO:curators]
synonym: "CTOL" EXACT []
is_a: TO:0000303
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000031
name: lentil screening method for cold tolerance
def: "visual estimation of the proportion of plants showing symptoms of cold stress" [CO:curators]
relationship: method_of CO_339:0000030 ! Cold tolerance
[Term]
id: CO_339:0000032
name: lentil 1 to 5 percentage scale
relationship: scale_of CO_339:0000031 ! Screening method for Cold Tolerance
[Term]
id: CO_339:0000033
name: lentil collar rot resistance trait
def: "Degree of tolerance to collar rot. Causative agent: Sclerotium rolfsii." [CO:curators, NCBITaxon:39291]
synonym: "COLRR" EXACT []
is_a: TO:0001145 ! Ascomycete fungal disease response
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000034
name: lentil screening method for colar resistance
def: "Observation of seedling mortality" [CO:curators]
relationship: method_of CO_339:0000033 ! Collar rot resistance
[Term]
id: CO_339:0000035
name: lentil 1 to 10 percentage scale
relationship: scale_of CO_339:0000034 ! Screening method for Colar resistance
[Term]
id: CO_339:0000036
name: lentil cooking time trait
def: "Time needed for lentil sample to cook" [CO:curators]
synonym: "CKT" EXACT []
is_a: TO:0001069
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000037
name: lentil cooking time - method
def: "Cooking time for dry seed without soaking" [CO:curators]
relationship: method_of CO_339:0000036 ! Cooking time
[Term]
id: CO_339:0000038
name: lentil minutes scale
relationship: scale_of CO_339:0000037 ! Cooking time - Method
[Term]
id: CO_339:0000039
name: lentil cotyledon colour trait
def: "A trait describing the colour of cotyledon" [CO:curators]
synonym: "CTLC" EXACT []
is_a: TO:0000980
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000040
name: lentil cotyledon colour - method
def: "To be observed on seeds less than three months old" [CO:curators]
relationship: method_of CO_339:0000039 ! Cotyledon colour
[Term]
id: CO_339:0000041
name: lentil 1 to 3 colour scale
relationship: scale_of CO_339:0000040 ! Cotyledon Colour - Method
[Term]
id: CO_339:0000042
name: lentil straw protein content trait
def: "The amount of protein content in the straw" [CO:curators]
synonym: "STRP" EXACT []
is_a: TO:0000598
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000043
name: lentil straw protein content analysis - method
def: "Crude protein analysis in lentil straw" [CO:curators]
relationship: method_of CO_339:0000042 ! Straw protein content
[Term]
id: CO_339:0000045
name: lentil days to 50% flowering trait
def: "Number of days from sowing to when 50% of the plants have started flowering" [CO:curators]
synonym: "DFTFL" EXACT []
is_a: TO:0000344
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000046
name: lentil dftfl calculation method
def: "Number of days from sowing until 50% of the plants are in flower under irrigated condition. In rain-fed conditions, it is counted from first day of rainfall or irrigation, which is sufficient for germination" [CO:curators]
relationship: method_of CO_339:0000045 ! Days to 50% flowering
relationship: method_of CO_339:0000195 ! Time to flowering
[Term]
id: CO_339:0000047
name: lentil days scale
relationship: scale_of CO_339:0000046 ! DFTFL calculation method
relationship: scale_of CO_339:0000046 ! DFTFL calculation method
relationship: scale_of CO_339:0000049 ! DFFL calculation method
relationship: scale_of CO_339:0000049 ! DFFL calculation method
relationship: scale_of CO_339:0000052 ! Time to first pod formation - method
relationship: scale_of CO_339:0000055 ! Time to maturity - method
[Term]
id: CO_339:0000048
name: lentil days to first flowering trait
def: "Number of days from sowing to when first flower started to occur" [CO:curators]
synonym: "DFFL" EXACT []
is_a: TO:0000344
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000049
name: lentil dffl calculation method
def: "Number of days from sowing until the first flower started to occur." [CO:curators]
relationship: method_of CO_339:0000048 ! Days to first flowering
relationship: method_of CO_339:0000195 ! Time to flowering
[Term]
id: CO_339:0000051
name: lentil time to first pod formation trait
def: "Number of days from sowing to formation of first pod" [CO:curators]
synonym: "DFPD" EXACT []
is_a: TO:0000852 ! fruit set trait
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000052
name: lentil time to first pod formation - method
def: "Counting the number of days from sowing to first pod formation" [CO:curators]
relationship: method_of CO_339:0000051 ! Time to first pod formation
[Term]
id: CO_339:0000054
name: lentil time to maturity trait
def: "A quantitative trait describing the physiological maturity of plant" [CO:curators]
synonym: "DM" EXACT []
is_a: TO:0000469
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000055
name: lentil time to maturity - method
def: "Number of days from sowing until 90% of the pods are in golden brown" [CO:curators]
relationship: method_of CO_339:0000054 ! Time to maturity
[Term]
id: CO_339:0000057
name: lentil drought tolerance trait
def: "Degree of tolerance to drought stress" [CO:curators]
synonym: "DRTL" EXACT []
is_a: TO:0000276
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000058
name: lentil screening method for drought tolerance
def: "Drought tolerance index is calucated by using the formula of crop yield under drought conditons to the non-drought conditions i.e., 1-[(Ys)/(Yp)]" [CO:curators]
relationship: method_of CO_339:0000057 ! Drought tolerance
[Term]
id: CO_339:0000059
name: lentil index scale
relationship: scale_of CO_339:0000058 ! Screening method for Drought tolerance
[Term]
id: CO_339:0000060
name: lentil early growth vigour trait
def: "A quantitative traits desrcibing the growth of seedlings" [CO:curators]
synonym: "EGV" EXACT []
is_a: TO:0000280
created_by: Dr. Jitendra Kumar
[Term]
id: CO_339:0000061
name: lentil early growth vigour - method
def: "Seedling length after 40-45 days of sowing , which is measured in field" [CO:curators]
relationship: method_of CO_339:0000060 ! Early growth vigour
[Term]
id: CO_339:0000063
name: lentil fusarium wilt resistance trait
def: "Degree of tolerance to Fusarium wilt disease. Causative organism: Fusarium oxysporum f. sp. lentis." [CO:curators, NCBITaxon:5507]
comment: Typical symptoms of wilt are first seen as sudden drooping of leaflets starting at the plant top and progressing downward. Leaflets close and do not shed prematurely, turning dull green. Finally the whole plant wilts. Wilting may be unilateral and confined to individual branches. When wilt appears at flowering, no seeds are produced.
synonym: "FWR" EXACT []
is_a: TO:0001145 ! Ascomycete fungal disease response
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000064
name: lentil screening method for fusarium wilt resistance
def: "Proportion of wilted or dead plants per plot were recorded periodically every 3-4 days interval" [CO:curators]
relationship: method_of CO_339:0000063 ! Fusarium wilt resistance
[Term]
id: CO_339:0000065
name: lentil 1 to 5 resistance scale
relationship: scale_of CO_339:0000064 ! Screening method for Fusarium wilt resistance
[Term]
id: CO_339:0000066
name: lentil ground colour of seed testa trait
def: "A qualitative trait indicating seed coat color." [CO:curators]
synonym: "CSTA" EXACT []
is_a: TO:0000190
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000067
name: lentil seed coat color - method
def: "To be observed on seeds less than three months old" [CO:curators]
relationship: method_of CO_339:0000066 ! Ground colour of seed testa
[Term]
id: CO_339:0000068
name: lentil 1 to 6 colour scale
relationship: scale_of CO_339:0000067 ! Seed coat color - Method
[Term]
id: CO_339:0000069
name: lentil growth habit trait
def: "A qualitative description of the growth habit of the plant." [CO:curators]
synonym: "GRH" EXACT []
synonym: "Plant growth habit" EXACT []
is_a: TO:0000947
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000070
name: lentil growth habit - method
def: "Visual observation of the angle of primary branches recorded at mid-pod" [CO:curators]
relationship: method_of CO_339:0000069 ! Growth habit
[Term]
id: CO_339:0000071
name: lentil 1 to 5 habit scale
relationship: scale_of CO_339:0000070 ! Growth Habit - Method
[Term]
id: CO_339:0000072
name: lentil harvest index trait
def: "A measurement of crop yield, the weight of the harvested product as a percentage of the total plant weight of a crop" [CO:curators]
synonym: "HI" EXACT []
is_a: TO:0000128
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000073
name: lentil harvest index - method
def: "Grain yield/ (straw yield + grain yield)" [CO:curators]
relationship: method_of CO_339:0000072 ! Harvest Index
[Term]
id: CO_339:0000074
name: lentil ratio scale
relationship: scale_of CO_339:0000073 ! Harvest Index - Method
relationship: scale_of CO_339:0000190 ! Screening method for Water logging tolerance
relationship: scale_of CO_339:0000193 ! Screening method for Winter survival
[Term]
id: CO_339:0000075
name: lentil heat tolerance trait
def: "Degree of tolerance to high temperature" [CO:curators]
synonym: "HTOL" EXACT []
is_a: TO:0000259
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000076
name: lentil screening method for heat tolerance
def: "Heat tolerance can be observed by counting number of unfilled or filled pods per plant" [CO:curators]
relationship: method_of CO_339:0000075 ! Heat tolerance
[Term]
id: CO_339:0000077
name: lentil number of pods scale
relationship: scale_of CO_339:0000076 ! Screening method for Heat tolerance
[Term]
id: CO_339:0000078
name: lentil height of the lowest pod trait
def: "Height above ground of the lowest pod" [CO:curators]
synonym: "HLPD" EXACT []
is_a: TO:1000011
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000079
name: lentil height of the lowest pod - method
def: "Estimate of the average height above ground of the lowest pod on randomly selected 3 to 5 unlodged plants at harvest" [CO:curators]
relationship: method_of CO_339:0000078 ! Height of the lowest pod
[Term]
id: CO_339:0000081
name: lentil herbicide tolerance trait
def: "The plant ability to resist the toxic effects of herbicides." [CO:curators]
synonym: "HERBT" EXACT []
is_a: TO:0000058
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000082
name: lentil screening method for herbicide tolerance
def: "Estimation of the tolerance to herbicide" [CO:curators]
relationship: method_of CO_339:0000081 ! Herbicide tolerance
[Term]
id: CO_339:0000083
name: lentil 1 to 5 tolerance scale
relationship: scale_of CO_339:0000082 ! Screening method for Herbicide Tolerance
[Term]
id: CO_339:0000084
name: lentil seed weight trait
def: "Weight of seeds" [CO:curators]
synonym: "HSW" EXACT []
is_a: TO:0000181
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000085
name: lentil 100 seed weight - method
def: "Average weight of two samples of 100 randomly chosen seeds" [CO:curators]
relationship: method_of CO_339:0000084 ! Seed weight
[Term]
id: CO_339:0000086
name: lentil g scale
relationship: scale_of CO_339:0000085 ! 100 seed weight - Method
relationship: scale_of CO_339:0000136 ! Pod Weight - Method
relationship: scale_of CO_339:0000166 ! SYPL measurment method
[Term]
id: CO_339:0000087
name: lentil iron (fe) deficiency trait
def: "Deficiency of Iron (Fe) in the plant measured at flowering stage" [CO:curators]
synonym: "IRND" EXACT []
is_a: TO:0006049
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000088
name: lentil screening method for iron deficency
def: "Visual estimation of Fe deficiency" [CO:curators]
relationship: method_of CO_339:0000087 ! Iron (Fe) deficiency
[Term]
id: CO_339:0000089
name: lentil 0 to 9 percentage scale
relationship: scale_of CO_339:0000088 ! Screening method for Iron Deficency
[Term]
id: CO_339:0000090
name: lentil lodging susceptibility trait
def: "A trait describing status of susceptibilty of genotypes to lodging" [CO:curators]
synonym: "LOSP" EXACT []
is_a: TO:0000068
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000091
name: lentil lodgind susceptibility assessment - method
def: "Visually assessed at maturity" [CO:curators]
relationship: method_of CO_339:0000090 ! Lodging susceptibility
[Term]
id: CO_339:0000092
name: lentil 1 to 7 incidence scale
relationship: scale_of CO_339:0000091 ! Lodgind susceptibility assessment - Method
[Term]
id: CO_339:0000093
name: lentil micro nutrient content trait
def: "The amount of micro-nutrient including Fe and Zn in the seed" [CO:curators]
synonym: "Micro-nutrient content in the grain" EXACT []
synonym: "MNCG" EXACT []
is_a: TO:0000465
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000094
name: lentil micro nutrient content analysis -method
def: "Using atomic absorption spectrometry" [CO:curators]
relationship: method_of CO_339:0000093 ! Micro nutrient content
[Term]
id: CO_339:0000096
name: lentil number of pods per plant trait
def: "A trait indicating total number of pods per plant" [CO:curators]
synonym: "NPDPL" EXACT []
is_a: TO:0001125 ! pod number trait
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000097
name: lentil number of pod per plant - method
def: "Mean number of pods recorded from 10 randomly selected plants at physiological maturity" [CO:curators]
relationship: method_of CO_339:0000096 ! Number of pods per plant
[Term]
id: CO_339:0000098
name: lentil pod scale
relationship: scale_of CO_339:0000097 ! Number of Pod per Plant - method
relationship: scale_of CO_339:0000103 ! Number of pod per peduncle method
[Term]
id: CO_339:0000099
name: lentil number of peduncles per plant trait
def: "A trait indicating total number of peduncles per plant" [CO:curators]
synonym: "NPPP" EXACT []
is_a: TO:0000582
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000100
name: lentil number of peduncle per plant - method
def: "The mean number of peduncles on 10 representative plants" [CO:curators]
relationship: method_of CO_339:0000099 ! Number of peduncles per plant
[Term]
id: CO_339:0000101
name: lentil peduncle scale
relationship: scale_of CO_339:0000100 ! Number of peduncle per plant - Method
[Term]
id: CO_339:0000102
name: lentil number of pods per peduncle trait
def: "A trait indicating number of pods per peduncle" [CO:curators]
synonym: "NPPE" EXACT []
is_a: TO:0001125 ! pod number trait
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000103
name: lentil number of pod per peduncle method
def: "Maximum number of pods per peduncle on 10 representative plants" [CO:curators]
relationship: method_of CO_339:0000102 ! Number of pods per peduncle
[Term]
id: CO_339:0000105
name: lentil number of seeds per pod trait
def: "A trait indicating number of seeds per pod" [CO:curators]
synonym: "NSPP" EXACT []
is_a: TO:0000445
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000106
name: lentil number of seed per pod - method
def: "Average number of seeds of 10 dry pods" [CO:curators]
relationship: method_of CO_339:0000105 ! Number of seeds per pod
[Term]
id: CO_339:0000107
name: lentil seed scale
relationship: scale_of CO_339:0000106 ! Number of seed per pod - method
[Term]
id: CO_339:0000108
name: lentil orobanche resistance trait
def: "Plant resistance to Orobanche. Casative agent: Orobanche crenata." [CO:curators]
synonym: "OROR" EXACT []
is_a: TO:0000444
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000109
name: lentil screening method for orobanche resistance
def: "1/ Count the number of broomrapes emerged in the four rows of faba bean surrounding each row of lentil plants. 2/ divide the number of broomrapes by the number of lentil plants to compute an average" [CO:curators]
relationship: method_of CO_339:0000108 ! Orobanche resistance
[Term]
id: CO_339:0000110
name: lentil orobranch/lentil plant scale
relationship: scale_of CO_339:0000109 ! Screening method for Orobanche Resistance
[Term]
id: CO_339:0000111
name: lentil pattern of seed testa trait
def: "A qualitative trait describing the pattern of seed testa" [CO:curators]
synonym: "PAST" EXACT []
is_a: TO:0000904
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000112
name: lentil pattern of seed testa - method
def: "Visual assessment of the pattern of the seed testa" [CO:curators]
relationship: method_of CO_339:0000111 ! Pattern of seed testa
[Term]
id: CO_339:0000113
name: lentil 1 to 5 pattern scale
relationship: scale_of CO_339:0000112 ! Pattern of seed testa - method
[Term]
id: CO_339:0000114
name: lentil plant height trait
def: "Height of the plant" [CO:curators]
synonym: "PLHGT" EXACT []
is_a: TO:0000207
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000115
name: lentil plant height highest leaf - method
def: "Height of the plant measured from the ground to the tip of the extended foliage at maturity. Mean plant height (cm) of five representative plants from soil surface measured at the end of flowering" [CO:curators]
relationship: method_of CO_339:0000114 ! Plant height
[Term]
id: CO_339:0000117
name: lentil plant pubescence trait
def: "A qualitative trait describing extent of hairiness of the shoot" [CO:curators]
synonym: "Plant hairiness" EXACT []
synonym: "PLPUB" EXACT []
is_a: TO:0000879
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000118
name: lentil plant pubescence - method
def: "Visual assessment of the plant pubescence" [CO:curators]
relationship: method_of CO_339:0000117 ! Plant pubescence
[Term]
id: CO_339:0000119
name: lentil 1 to 3 extent scale
relationship: scale_of CO_339:0000118 ! Plant pubescence - Method
[Term]
id: CO_339:0000120
name: lentil plant structure trait
def: "A qualitative trait describing the structure and branching pattern of the plant" [CO:curators]
synonym: "Plant artitecture" EXACT []
synonym: "PSTR" EXACT []
is_a: TO:0002756
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000121
name: lentil plant structure - method
def: "Visual assessment of plant structure" [CO:curators]
relationship: method_of CO_339:0000120 ! Plant structure
[Term]
id: CO_339:0000122
name: lentil 1 to 5 structure scale
relationship: scale_of CO_339:0000121 ! Plant Structure - Method
[Term]
id: CO_339:0000123
name: lentil pod borer resistance trait
def: "Degree of tolerance to podborer.Helicoverpa armigera. Damage pods and seeds" [CO:curators]
synonym: "PBR" EXACT []
is_a: TO:0000262
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000124
name: lentil screening method for pod borer resistance
def: "Damage at pod stage measured by counting total pods and damaged pods and calculating proportion of damaged pods" [CO:curators]
relationship: method_of CO_339:0000123 ! Pod borer resistance
[Term]
id: CO_339:0000125
name: lentil percentage of pod damage scale
relationship: scale_of CO_339:0000124 ! Screening method for Pod borer resistance
[Term]
id: CO_339:0000126
name: lentil pod dehiscence trait
def: "Splitting of pods at maturity along its built in line of weakness in order to release seeds" [CO:curators]
synonym: "PDEH" EXACT []
is_a: TO:0001074
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000127
name: lentil pod dehiscence - method
def: "Visually assessed one week after maturity" [CO:curators]
relationship: method_of CO_339:0000126 ! Pod dehiscence
[Term]
id: CO_339:0000128
name: lentil 1 to 9 intensity scale
relationship: scale_of CO_339:0000127 ! Pod dehiscence - Method
[Term]
id: CO_339:0000129
name: lentil pod filling period trait
def: "A quantitative trait indicating the time required for pod filling" [CO:curators]
synonym: "PFIP" EXACT []
is_a: TO:0000933
created_by: Dr. Jitendra Kumar
[Term]
id: CO_339:0000130
name: lentil pod filing per pod - method
def: "Counting up the duration of flowering and pod maturing period" [CO:curators]
relationship: method_of CO_339:0000129 ! Pod filling period
[Term]
id: CO_339:0000131
name: lentil day scale
relationship: scale_of CO_339:0000130 ! Pod filing per pod - Method
[Term]
id: CO_339:0000132
name: lentil pod shedding trait
def: "Dropping of pods at maturity" [CO:curators]
synonym: "PSHD" EXACT []
is_a: TO:0002633
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000133
name: lentil pod shedding - method
def: "Visually assessed after or during harvesting one week after maturity" [CO:curators]
relationship: method_of CO_339:0000132 ! Pod shedding
[Term]
id: CO_339:0000134
name: lentil 1 to 9 intensity scale
relationship: scale_of CO_339:0000133 ! Pod shedding - method
[Term]
id: CO_339:0000135
name: lentil pod weight trait
def: "Weight of pods" [CO:curators]
synonym: "PDWT" EXACT []
is_a: TO:0002746
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000136
name: lentil pod weight - method
def: "Average weight from 3 or 5 randomly-selected plants at maturity, from a plant grown in the pot or field." [CO:curators]
relationship: method_of CO_339:0000135 ! Pod weight
[Term]
id: CO_339:0000138
name: lentil presence of tendrils trait
def: "A qualitative trait describing presence of tendrils" [CO:curators]
synonym: "PTEN" EXACT []
is_a: TO:0000768
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000139
name: lentil presence of tendrils - method
def: "Visual observation of the presence and nature of tendrils" [CO:curators]
relationship: method_of CO_339:0000138 ! Presence of Tendrils
[Term]
id: CO_339:0000140
name: lentil 1 to 3 presence scale
relationship: scale_of CO_339:0000139 ! Presence of tendrils - Method
[Term]
id: CO_339:0000141
name: lentil primary branches number trait
def: "Number of basal primary branches per plant" [CO:curators]
synonym: "BPBR" EXACT []
synonym: "Number of basal primary branches per plant" EXACT []
is_a: TO:0000547
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000142
name: lentil primary branch number - method
def: "Mean number of basal primary branches from 3 or 5 randomly selected plants at maturity" [CO:curators]
relationship: method_of CO_339:0000141 ! Primary branches number
[Term]
id: CO_339:0000143
name: lentil primary branch scale
relationship: scale_of CO_339:0000142 ! Primary Branch number - Method
[Term]
id: CO_339:0000144
name: lentil root length trait
def: "Cumulative root length of a sample" [CO:curators]
synonym: "RL" EXACT []
is_a: TO:0000227
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000145
name: lentil root length by winrhizo - method
def: "Measured through winrhizo software from scanned image files" [CO:curators]
relationship: method_of CO_339:0000144 ! Root length
[Term]
id: CO_339:0000147
name: lentil root length density trait
def: "The length of roots present in a unit volume of soil" [CO:curators]
synonym: "RLD" EXACT []
is_a: TO:0000227
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000148
name: lentil rld measurement - method
def: "Calculated using both root length measured and soil volume from where the root comes." [CO:curators]
relationship: method_of CO_339:0000147 ! Root length density
[Term]
id: CO_339:0000149
name: lentil cm cm-3 scale
relationship: scale_of CO_339:0000148 ! RLD measurement - method
[Term]
id: CO_339:0000150
name: lentil rust resistance trait
def: "Degree of resistance to rust disease. Causative agent: Uromyces viciae-faba." [CO:curators, NCBITaxon:55588]
comment: It produces lesions on stems and leaves which result leaf fall and premature plant death.
synonym: "RUSR" EXACT []
is_a: TO:0001146 ! Basidiomycete fungal disease response
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000151
name: lentil screening method for rust resistance scale
def: "Quantification of symptoms development in leaves and stems" [CO:curators]
relationship: method_of CO_339:0000150 ! Rust resistance
[Term]
id: CO_339:0000152
name: lentil 1 to 9 percentage scale
relationship: scale_of CO_339:0000151 ! Screening method for Rust resistance
[Term]
id: CO_339:0000153
name: lentil salinity tolerance trait
def: "Degree of tolerance to salinity" [CO:curators]
synonym: "SALT" EXACT []
is_a: TO:0006001
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000154
name: lentil screening method for salinity tolerance
def: "Visual estimation of leaf symptoms" [CO:curators]
relationship: method_of CO_339:0000153 ! Salinity tolerance
[Term]
id: CO_339:0000155
name: lentil 1 to 5 suceptibility scale
relationship: scale_of CO_339:0000154 ! Screening method for Salinity tolerance
[Term]
id: CO_339:0000156
name: lentil secondary branches number trait
def: "Number of basal secondary branches per plant" [CO:curators]
synonym: "BSBR" EXACT []
synonym: "Number of basal secondary branches per plant" EXACT []
is_a: TO:0020019
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000157
name: lentil secondary branch number - method
def: "Mean number of basal secondary branches from 3 or 5 randomly selected plants at maturity" [CO:curators]
relationship: method_of CO_339:0000156 ! Secondary branches number
[Term]
id: CO_339:0000158
name: lentil secondary branch scale
relationship: scale_of CO_339:0000157 ! Secondary Branch number - Method
[Term]
id: CO_339:0000159
name: lentil seed diameter trait
def: "Seed diameter" [CO:curators]
synonym: "SDDIA" EXACT []
is_a: TO:0000391
created_by: Karthika Rajendran & Shiv Kumar
[Term]
id: CO_339:0000160
name: lentil seed diameter - method
def: "Diameter of fully dried seed is measured using vernier caliper" [CO:curators]
relationship: method_of CO_339:0000159 ! Seed diameter
[Term]
id: CO_339:0000161