-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpigeonpea-trait-ontology.obo
3525 lines (3064 loc) · 93.7 KB
/
pigeonpea-trait-ontology.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: cco
[Term]
id: CO_341:0000000
name: flowering pattern
namespace: PigeonpeaTrait
def: "Flowering pattern like DT (determinate) vs NDT (non determinate)" []
synonym: "FP" EXACT []
is_a: CO_341:Morphological_traits ! Morphological_traits
[Term]
id: CO_341:0000001
name: flowering pattern - method
namespace: PigeonpeaMethod
def: "On the basis of visual observation at the time of flowering" []
is_a: CO_341:Estimation ! Estimation
relationship: method_of CO_341:0000000 ! flowering pattern
[Term]
id: CO_341:0000002
name: visual observation flowering pattern scale
namespace: PigeonpeaScale
is_a: CO_341:Nominal ! Nominal
relationship: scale_of CO_341:0000001 ! flowering pattern - method
[Term]
id: CO_341:0000002:1
name: Determinate
namespace: PigeonpeaScale
synonym: "1" EXACT []
is_a: CO_341:0000002 ! visual observation flowering pattern scale
[Term]
id: CO_341:0000002:2
name: Non determinate
namespace: PigeonpeaScale
synonym: "2" EXACT []
is_a: CO_341:0000002 ! visual observation flowering pattern scale
[Term]
id: CO_341:0000003
name: maturity group
namespace: PigeonpeaTrait
def: "Maturity group based on days to 50 % flowering" []
synonym: "MTG" EXACT []
is_a: CO_341:Phenological_traits ! Phenological_traits
[Term]
id: CO_341:0000004
name: maturity group - method
namespace: PigeonpeaMethod
def: "Groups are formed on the basis of days to 50 % flowering" []
is_a: CO_341:Estimation ! Estimation
relationship: method_of CO_341:0000003 ! maturity group
[Term]
id: CO_341:0000005
name: days required to 50 % flowering
namespace: PigeonpeaScale
is_a: CO_341:Nominal ! Nominal
relationship: scale_of CO_341:0000004 ! maturity group - method
[Term]
id: CO_341:0000005:1
name: Super early < 50 days
namespace: PigeonpeaScale
synonym: "00" EXACT []
synonym: "1" EXACT []
is_a: CO_341:0000005 ! days required to 50 % flowering
[Term]
id: CO_341:0000005:10
name: Medium long between 141-160
namespace: PigeonpeaScale
synonym: "10" EXACT []
synonym: "VIII" EXACT []
is_a: CO_341:0000005 ! days required to 50 % flowering
[Term]
id: CO_341:0000005:11
name: Medium long between 141-160
namespace: PigeonpeaScale
synonym: "11" EXACT []
synonym: "IX" EXACT []
is_a: CO_341:0000005 ! days required to 50 % flowering
[Term]
id: CO_341:0000005:2
name: Extra short between 51-60
namespace: PigeonpeaScale
synonym: "0" EXACT []
synonym: "2" EXACT []
is_a: CO_341:0000005 ! days required to 50 % flowering
[Term]
id: CO_341:0000005:3
name: Extra short between 61-70
namespace: PigeonpeaScale
synonym: "3" EXACT []
synonym: "I" EXACT []
is_a: CO_341:0000005 ! days required to 50 % flowering
[Term]
id: CO_341:0000005:4
name: Short between 71-80
namespace: PigeonpeaScale
synonym: "4" EXACT []
synonym: "II" EXACT []
is_a: CO_341:0000005 ! days required to 50 % flowering
[Term]
id: CO_341:0000005:5
name: Short between 81-90
namespace: PigeonpeaScale
synonym: "5" EXACT []
synonym: "III" EXACT []
is_a: CO_341:0000005 ! days required to 50 % flowering
[Term]
id: CO_341:0000005:6
name: Short between 91-100
namespace: PigeonpeaScale
synonym: "6" EXACT []
synonym: "IV" EXACT []
is_a: CO_341:0000005 ! days required to 50 % flowering
[Term]
id: CO_341:0000005:7
name: Short medium between 101-110
namespace: PigeonpeaScale
synonym: "7" EXACT []
synonym: "V" EXACT []
is_a: CO_341:0000005 ! days required to 50 % flowering
[Term]
id: CO_341:0000005:8
name: Medium between 111-130
namespace: PigeonpeaScale
synonym: "8" EXACT []
synonym: "VI" EXACT []
is_a: CO_341:0000005 ! days required to 50 % flowering
[Term]
id: CO_341:0000005:9
name: Medium between 131-140
namespace: PigeonpeaScale
synonym: "9" EXACT []
synonym: "VII" EXACT []
is_a: CO_341:0000005 ! days required to 50 % flowering
[Term]
id: CO_341:0000006
name: days to 50 % flowering
namespace: PigeonpeaTrait
def: "Number of days required to flower 50 % population in a plot" []
synonym: "DF" EXACT []
is_a: CO_341:Phenological_traits ! Phenological_traits
[Term]
id: CO_341:0000007
name: days to 50 % flowering - method
namespace: PigeonpeaMethod
def: "Days required from planting to flower 50 % of the plant population" []
is_a: CO_341:Counting ! Counting
relationship: method_of CO_341:0000006 ! days to 50 % flowering
[Term]
id: CO_341:0000009
name: days to 75 % maturity
namespace: PigeonpeaTrait
def: "Number of days required to mature 75 % of the population" []
synonym: "MT" EXACT []
is_a: CO_341:Phenological_traits ! Phenological_traits
[Term]
id: CO_341:0000010
name: days to maturity - method
namespace: PigeonpeaMethod
def: "Days required from planting to mature 75 % of the population" []
is_a: CO_341:Counting ! Counting
relationship: method_of CO_341:0000009 ! days to 75 % maturity
[Term]
id: CO_341:0000012
name: number of productive branches
namespace: PigeonpeaTrait
def: "Number of productive branches counted per plant" []
synonym: "PBR" EXACT []
is_a: CO_341:Agronomical_traits ! Agronomical_traits
[Term]
id: CO_341:0000013
name: number of productive branches - method
namespace: PigeonpeaMethod
def: "Number of branches that bears pods out of total branches" []
is_a: CO_341:Counting ! Counting
relationship: method_of CO_341:0000012 ! number of productive branches
[Term]
id: CO_341:0000015
name: number of primary branches
namespace: PigeonpeaTrait
def: "Number of primary branches counted per plant" []
synonym: "PRB" EXACT []
is_a: CO_341:Agronomical_traits ! Agronomical_traits
[Term]
id: CO_341:0000016
name: number of primary branches count - method
namespace: PigeonpeaMethod
def: "Number of branches that arise from main stem" []
is_a: CO_341:Counting ! Counting
relationship: method_of CO_341:0000015 ! number of primary branches
[Term]
id: CO_341:0000018
name: number of secondary branches
namespace: PigeonpeaTrait
def: "Number of secondary branches counted per plant" []
synonym: "SBR" EXACT []
is_a: CO_341:Agronomical_traits ! Agronomical_traits
[Term]
id: CO_341:0000019
name: number of secondary branches - method
namespace: PigeonpeaMethod
def: "Number of branches that arise from primary branches" []
is_a: CO_341:Counting ! Counting
relationship: method_of CO_341:0000018 ! number of secondary branches
[Term]
id: CO_341:0000020
name: branches
namespace: PigeonpeaScale
is_a: CO_341:Numerical ! Numerical
relationship: scale_of CO_341:0000013 ! number of productive branches - method
relationship: scale_of CO_341:0000016 ! number of primary branches count - method
relationship: scale_of CO_341:0000019 ! number of secondary branches - method
relationship: scale_of CO_341:0000177 ! average number of secondary branches - method
relationship: scale_of CO_341:0000178 ! number of primary branches average - method
[Term]
id: CO_341:0000021
name: plant height
namespace: PigeonpeaTrait
def: "Plant height recorded per plant" []
synonym: "PHT" EXACT []
is_a: CO_341:Agronomical_traits ! Agronomical_traits
[Term]
id: CO_341:0000022
name: plant height average - method
namespace: PigeonpeaMethod
def: "Average height of randomly selected 5 plants recorded from the base of the plant to the tip of plant at maturity." []
is_a: CO_341:Computation ! Computation
relationship: method_of CO_341:0000021 ! plant height
[Term]
id: CO_341:0000024
name: plant stand
namespace: PigeonpeaTrait
def: "Number of plants per plot" []
synonym: "PST" EXACT []
is_a: CO_341:Agronomical_traits ! Agronomical_traits
[Term]
id: CO_341:0000025
name: plant stand - method
namespace: PigeonpeaMethod
def: "Total number of plants in a plot recorded at the time of maturity" []
is_a: CO_341:Counting ! Counting
relationship: method_of CO_341:0000024 ! plant stand
[Term]
id: CO_341:0000026
name: plants
namespace: PigeonpeaScale
is_a: CO_341:Numerical ! Numerical
relationship: scale_of CO_341:0000025 ! plant stand - method
[Term]
id: CO_341:0000027
name: pod bearing length
namespace: PigeonpeaTrait
def: "Distance between uppermost and lowermost pod present on plant" []
synonym: "PBL" EXACT []
is_a: CO_341:Agronomical_traits ! Agronomical_traits
[Term]
id: CO_341:0000028
name: pod bearing length - method
namespace: PigeonpeaMethod
def: "Length between upper most and lower most pod present on plant recorded and averaged for 5 randomly selected plants" []
is_a: CO_341:Computation ! Computation
relationship: method_of CO_341:0000027 ! pod bearing length
[Term]
id: CO_341:0000030
name: seed weight
namespace: PigeonpeaTrait
def: "Weight of seeds" []
synonym: "Seed size, Grain weight" EXACT []
synonym: "SWT" EXACT []
is_a: CO_341:Quality_traits ! Quality_traits
[Term]
id: CO_341:0000031
name: seed size - method
namespace: PigeonpeaMethod
def: "Categorize seed size based on the seed weight of air dried 100 seeds" []
is_a: CO_341:Estimation ! Estimation
relationship: method_of CO_341:0000030 ! seed weight
[Term]
id: CO_341:0000032
name: seed size 1 to 4 scale
namespace: PigeonpeaScale
is_a: CO_341:Ordinal ! Ordinal
relationship: scale_of CO_341:0000031 ! seed size - method
[Term]
id: CO_341:0000032:1
name: Small (< 7)
namespace: PigeonpeaScale
synonym: "1" EXACT []
is_a: CO_341:0000032 ! seed size 1 to 4 scale
[Term]
id: CO_341:0000032:2
name: Medium (7-9)
namespace: PigeonpeaScale
synonym: "2" EXACT []
is_a: CO_341:0000032 ! seed size 1 to 4 scale
[Term]
id: CO_341:0000032:3
name: Large (> 9-11)
namespace: PigeonpeaScale
synonym: "3" EXACT []
is_a: CO_341:0000032 ! seed size 1 to 4 scale
[Term]
id: CO_341:0000032:4
name: Very large (>11 g)
namespace: PigeonpeaScale
synonym: "4" EXACT []
is_a: CO_341:0000032 ! seed size 1 to 4 scale
[Term]
id: CO_341:0000033
name: pods per cluster
namespace: PigeonpeaTrait
def: "Number of pods per cluster" []
synonym: "PPC" EXACT []
is_a: CO_341:Agronomical_traits ! Agronomical_traits
[Term]
id: CO_341:0000034
name: pods per cluster - method
namespace: PigeonpeaMethod
def: "Total number of pods present on plant divided by number of clusters and recorded for 5 randomly selected plants" []
is_a: CO_341:Computation ! Computation
relationship: method_of CO_341:0000033 ! pods per cluster
[Term]
id: CO_341:0000035
name: pod/cluster
namespace: PigeonpeaScale
is_a: CO_341:Numerical ! Numerical
relationship: scale_of CO_341:0000034 ! pods per cluster - method
[Term]
id: CO_341:0000036
name: pods per plant
namespace: PigeonpeaTrait
def: "Number of pods per plant" []
synonym: "PPL" EXACT []
is_a: CO_341:Agronomical_traits ! Agronomical_traits
[Term]
id: CO_341:0000037
name: pods per plant - method
namespace: PigeonpeaMethod
def: "Average number of pods recorded for 5 randomly selected plants in a plot" []
is_a: CO_341:Computation ! Computation
relationship: method_of CO_341:0000036 ! pods per plant
[Term]
id: CO_341:0000038
name: pod/plant
namespace: PigeonpeaScale
is_a: CO_341:Numerical ! Numerical
relationship: scale_of CO_341:0000037 ! pods per plant - method
relationship: scale_of CO_341:0000270 ! pods per plant count - method
[Term]
id: CO_341:0000039
name: seeds per pod
namespace: PigeonpeaTrait
def: "Number of seeds per pod" []
synonym: "SPP" EXACT []
is_a: CO_341:Agronomical_traits ! Agronomical_traits
[Term]
id: CO_341:0000040
name: seeds per pod average - method
namespace: PigeonpeaMethod
def: "Average number of seeds present in a pod for 10 randomly selected pods" []
is_a: CO_341:Computation ! Computation
relationship: method_of CO_341:0000039 ! seeds per pod
[Term]
id: CO_341:0000041
name: seed/pod
namespace: PigeonpeaScale
is_a: CO_341:Numerical ! Numerical
relationship: scale_of CO_341:0000040 ! seeds per pod average - method
relationship: scale_of CO_341:0000176 ! seeds per pod count - method
[Term]
id: CO_341:0000042
name: seeds per plant
namespace: PigeonpeaTrait
def: "Number of seeds per plant" []
synonym: "SPL" EXACT []
is_a: CO_341:Agronomical_traits ! Agronomical_traits
[Term]
id: CO_341:0000043
name: seeds per plant - method
namespace: PigeonpeaMethod
def: "Average number of seeds counted for 5 randomly selected plants in a plot at maturity" []
is_a: CO_341:Computation ! Computation
relationship: method_of CO_341:0000042 ! seeds per plant
[Term]
id: CO_341:0000044
name: seed/plant
namespace: PigeonpeaScale
is_a: CO_341:Numerical ! Numerical
relationship: scale_of CO_341:0000043 ! seeds per plant - method
[Term]
id: CO_341:0000045
name: visual selection scores at flowering stage
namespace: PigeonpeaTrait
def: "Visual selection scores recorded at the time of flowering" []
synonym: "Selection scores" EXACT []
synonym: "VSF" EXACT []
is_a: CO_341:Agronomical_traits ! Agronomical_traits
[Term]
id: CO_341:0000046
name: visual selection scores at flowering stage - method
namespace: PigeonpeaMethod
def: "Visual scores given at the time of flowering considering check varieties as the middle level of the scale" []
is_a: CO_341:Estimation ! Estimation
relationship: method_of CO_341:0000045 ! visual selection scores at flowering stage
[Term]
id: CO_341:0000047
name: visual scores in 1-5 scale
namespace: PigeonpeaScale
is_a: CO_341:Ordinal ! Ordinal
relationship: scale_of CO_341:0000046 ! visual selection scores at flowering stage - method
[Term]
id: CO_341:0000047:1
name: very good
namespace: PigeonpeaScale
synonym: "1" EXACT []
is_a: CO_341:0000047 ! visual scores in 1-5 scale
[Term]
id: CO_341:0000047:2
name: good
namespace: PigeonpeaScale
synonym: "2" EXACT []
is_a: CO_341:0000047 ! visual scores in 1-5 scale
[Term]
id: CO_341:0000047:3
name: average
namespace: PigeonpeaScale
synonym: "3" EXACT []
is_a: CO_341:0000047 ! visual scores in 1-5 scale
[Term]
id: CO_341:0000047:4
name: below average
namespace: PigeonpeaScale
synonym: "4" EXACT []
is_a: CO_341:0000047 ! visual scores in 1-5 scale
[Term]
id: CO_341:0000047:5
name: poor
namespace: PigeonpeaScale
synonym: "5" EXACT []
is_a: CO_341:0000047 ! visual scores in 1-5 scale
[Term]
id: CO_341:0000048
name: visual selection scores at podding stage
namespace: PigeonpeaTrait
def: "Visual selection scores recorded at the time of podding" []
synonym: "VSP" EXACT []
is_a: CO_341:Agronomical_traits ! Agronomical_traits
[Term]
id: CO_341:0000049
name: visual selection scores at podding stage - method
namespace: PigeonpeaMethod
def: "Visual scores given at the time of flowering considering check varieties as the middle level of the scale" []
is_a: CO_341:Estimation ! Estimation
relationship: method_of CO_341:0000048 ! visual selection scores at podding stage
[Term]
id: CO_341:0000050
name: visual scores in 1-5 scale
namespace: PigeonpeaScale
is_a: CO_341:Ordinal ! Ordinal
relationship: scale_of CO_341:0000049 ! visual selection scores at podding stage - method
[Term]
id: CO_341:0000050:1
name: very good
namespace: PigeonpeaScale
synonym: "1" EXACT []
is_a: CO_341:0000050 ! visual scores in 1-5 scale
[Term]
id: CO_341:0000050:2
name: good
namespace: PigeonpeaScale
synonym: "2" EXACT []
is_a: CO_341:0000050 ! visual scores in 1-5 scale
[Term]
id: CO_341:0000050:3
name: average
namespace: PigeonpeaScale
synonym: "3" EXACT []
is_a: CO_341:0000050 ! visual scores in 1-5 scale
[Term]
id: CO_341:0000050:4
name: below average
namespace: PigeonpeaScale
synonym: "4" EXACT []
is_a: CO_341:0000050 ! visual scores in 1-5 scale
[Term]
id: CO_341:0000050:5
name: poor
namespace: PigeonpeaScale
synonym: "5" EXACT []
is_a: CO_341:0000050 ! visual scores in 1-5 scale
[Term]
id: CO_341:0000051
name: visual selection scores at maturity stage
namespace: PigeonpeaTrait
def: "Visual selection scores recorded at the time of maturity" []
synonym: "VSM" EXACT []
is_a: CO_341:Agronomical_traits ! Agronomical_traits
[Term]
id: CO_341:0000052
name: visual selection scores at maturity stage - method
namespace: PigeonpeaMethod
def: "Visual scores given at the time of maturity considering check varieties as the middle level of the scale" []
is_a: CO_341:Estimation ! Estimation
relationship: method_of CO_341:0000051 ! visual selection scores at maturity stage
[Term]
id: CO_341:0000053
name: visual scores in 1-5 scale
namespace: PigeonpeaScale
is_a: CO_341:Ordinal ! Ordinal
relationship: scale_of CO_341:0000052 ! visual selection scores at maturity stage - method
[Term]
id: CO_341:0000053:1
name: very good
namespace: PigeonpeaScale
synonym: "1" EXACT []
is_a: CO_341:0000053 ! visual scores in 1-5 scale
[Term]
id: CO_341:0000053:2
name: good
namespace: PigeonpeaScale
synonym: "2" EXACT []
is_a: CO_341:0000053 ! visual scores in 1-5 scale
[Term]
id: CO_341:0000053:3
name: average
namespace: PigeonpeaScale
synonym: "3" EXACT []
is_a: CO_341:0000053 ! visual scores in 1-5 scale
[Term]
id: CO_341:0000053:4
name: below average
namespace: PigeonpeaScale
synonym: "4" EXACT []
is_a: CO_341:0000053 ! visual scores in 1-5 scale
[Term]
id: CO_341:0000053:5
name: poor
namespace: PigeonpeaScale
synonym: "5" EXACT []
is_a: CO_341:0000053 ! visual scores in 1-5 scale
[Term]
id: CO_341:0000054
name: fusarium wilt incidence
namespace: PigeonpeaTrait
def: "Plants infected with fusarium wilt disease in a plot" []
synonym: "FW" EXACT []
is_a: CO_341:Biotic_stress_traits ! Biotic_stress_traits
[Term]
id: CO_341:0000055
name: fusarium wilt - method
namespace: PigeonpeaMethod
def: "Recorded in percentage as the number of infected plants / Total number of plants X 100" []
is_a: CO_341:Computation ! Computation
relationship: method_of CO_341:0000054 ! fusarium wilt incidence
[Term]
id: CO_341:0000057
name: sterility mosaic incidence
namespace: PigeonpeaTrait
def: "Plants infected with sterility mosaic disease in a plot" []
synonym: "SM" EXACT []
is_a: CO_341:Biotic_stress_traits ! Biotic_stress_traits
[Term]
id: CO_341:0000058
name: sterility mosaic - method
namespace: PigeonpeaMethod
def: "Recorded in percentage as the number of infected plants / total number of plants X 100" []
is_a: CO_341:Computation ! Computation
relationship: method_of CO_341:0000057 ! sterility mosaic incidence
[Term]
id: CO_341:0000059
name: Percent
namespace: PigeonpeaScale
is_a: CO_341:Numerical ! Numerical
relationship: scale_of CO_341:0000055 ! fusarium wilt - method
relationship: scale_of CO_341:0000058 ! sterility mosaic - method
relationship: scale_of CO_341:0000061 ! moisture content - method
relationship: scale_of CO_341:0000064 ! harvest index - method
relationship: scale_of CO_341:0000076 ! germination percentage - method
relationship: scale_of CO_341:0000106 ! protein content - method
relationship: scale_of CO_341:0000109 ! milling percentage - method
relationship: scale_of CO_341:0000148 ! fertility fertility assessment - method
[Term]
id: CO_341:0000060
name: seed moisture content
namespace: PigeonpeaTrait
def: "Moisture content" []
synonym: "MC" EXACT []
is_a: CO_341:Physiological_traits ! Physiological_traits
[Term]
id: CO_341:0000061
name: moisture content - method
namespace: PigeonpeaMethod
def: "Recorded in percentage as dry weight / Fresh weight X 100" []
is_a: CO_341:Computation ! Computation
relationship: method_of CO_341:0000060 ! seed moisture content
[Term]
id: CO_341:0000063
name: harvest index
namespace: PigeonpeaTrait
def: "Proportion of (economically significant) biomass over total (biological) biomass" []
synonym: "HI" EXACT []
synonym: "Plant biomass partitioning" EXACT []
is_a: CO_341:Physiological_traits ! Physiological_traits
[Term]
id: CO_341:0000064
name: harvest index - method
namespace: PigeonpeaMethod
def: "Recorded in percentage as seed yield / total biological yield x 100" []
is_a: CO_341:Computation ! Computation
relationship: method_of CO_341:0000063 ! harvest index
[Term]
id: CO_341:0000066
name: leaf chlorophyll content
namespace: PigeonpeaTrait
def: "Leaf chlorophyll content" []
synonym: "SPAD" EXACT []
is_a: CO_341:Physiological_traits ! Physiological_traits
[Term]
id: CO_341:0000067
name: spad chlorophyll index - method
namespace: PigeonpeaMethod
def: "Average number recorded for 5 randomly selected plants in a plot with SPAD device before noon" []
is_a: CO_341:Computation ! Computation
relationship: method_of CO_341:0000066 ! leaf chlorophyll content
[Term]
id: CO_341:0000068
name: CCI
namespace: PigeonpeaScale
is_a: CO_341:Numerical ! Numerical
relationship: scale_of CO_341:0000067 ! spad chlorophyll index - method
[Term]
id: CO_341:0000069
name: radicle length
namespace: PigeonpeaTrait
def: "Length of radicle" []
synonym: "RADL" EXACT []
is_a: CO_341:Physiological_traits ! Physiological_traits
[Term]
id: CO_341:0000070
name: radicle length - method
namespace: PigeonpeaMethod
def: "Average length of radicle for 50 seeds incubated for 10 days at 25 degree celcius in paper towel method" []
is_a: CO_341:Computation ! Computation
relationship: method_of CO_341:0000069 ! radicle length
[Term]
id: CO_341:0000071
name: cm
namespace: PigeonpeaScale
is_a: CO_341:Numerical ! Numerical
relationship: scale_of CO_341:0000022 ! plant height average - method
relationship: scale_of CO_341:0000028 ! pod bearing length - method
relationship: scale_of CO_341:0000070 ! radicle length - method
relationship: scale_of CO_341:0000073 ! plumule length - method
relationship: scale_of CO_341:0000142 ! pod length - method
relationship: scale_of CO_341:0000180 ! plant height measured - method
[Term]
id: CO_341:0000072
name: plumule length
namespace: PigeonpeaTrait
def: "Length of plumule" []
synonym: "PLUL" EXACT []
is_a: CO_341:Physiological_traits ! Physiological_traits
[Term]
id: CO_341:0000073
name: plumule length - method
namespace: PigeonpeaMethod
def: "Average length of plumule for 50 seeds incubated for 10 days at 25 degree celcius in paper towel method" []
is_a: CO_341:Computation ! Computation
relationship: method_of CO_341:0000072 ! plumule length
[Term]
id: CO_341:0000075
name: seed germination
namespace: PigeonpeaTrait
def: "Propertion of grains that germinate under proper condition" []
synonym: "GP" EXACT []
is_a: CO_341:Physiological_traits ! Physiological_traits
[Term]
id: CO_341:0000076
name: germination percentage - method
namespace: PigeonpeaMethod
def: "Number of seeds germinated / Total number of seeds X 100" []
is_a: CO_341:Computation ! Computation
relationship: method_of CO_341:0000075 ! seed germination
[Term]
id: CO_341:0000078
name: seed base colour
namespace: PigeonpeaTrait
def: "Seed base color" []
synonym: "SBC" EXACT []
is_a: CO_341:Quality_traits ! Quality_traits
[Term]
id: CO_341:0000079
name: seed base colour - method
namespace: PigeonpeaMethod
def: "Recorded visually based on the Royal Horticultural Society (RHS) colour codes" []
is_a: CO_341:Estimation ! Estimation
relationship: method_of CO_341:0000078 ! seed base colour
[Term]
id: CO_341:0000080
name: rhs color chart
namespace: PigeonpeaScale
is_a: CO_341:Nominal ! Nominal
relationship: scale_of CO_341:0000079 ! seed base colour - method
[Term]
id: CO_341:0000080:1
name: White (yellow-white group 158C)
namespace: PigeonpeaScale
synonym: "1" EXACT []
is_a: CO_341:0000080 ! rhs color chart
[Term]
id: CO_341:0000080:10
name: Dark grey (black group 202B)
namespace: PigeonpeaScale
synonym: "10" EXACT []
is_a: CO_341:0000080 ! rhs color chart
[Term]
id: CO_341:0000080:2
name: Cream (greyed-white group 156C)
namespace: PigeonpeaScale
synonym: "2" EXACT []
is_a: CO_341:0000080 ! rhs color chart
[Term]
id: CO_341:0000080:3
name: Orange (greyed-orange group 163B)
namespace: PigeonpeaScale
synonym: "3" EXACT []
is_a: CO_341:0000080 ! rhs color chart
[Term]
id: CO_341:0000080:4
name: Light brown (yellow-orange group 22C)
namespace: PigeonpeaScale
synonym: "4" EXACT []
is_a: CO_341:0000080 ! rhs color chart
[Term]
id: CO_341:0000080:5
name: Reddish-brown (reddish-brown group 200D)
namespace: PigeonpeaScale
synonym: "5" EXACT []
is_a: CO_341:0000080 ! rhs color chart
[Term]
id: CO_341:0000080:6
name: Light grey (grey-brown group 199B)
namespace: PigeonpeaScale
synonym: "6" EXACT []
is_a: CO_341:0000080 ! rhs color chart
[Term]
id: CO_341:0000080:7
name: Grey (greyed-green group 197A)
namespace: PigeonpeaScale
synonym: "7" EXACT []
is_a: CO_341:0000080 ! rhs color chart
[Term]
id: CO_341:0000080:8
name: Purple (greyed-purple group 187A)
namespace: PigeonpeaScale
synonym: "8" EXACT []
is_a: CO_341:0000080 ! rhs color chart
[Term]
id: CO_341:0000080:9
name: Dark purple (black group 202A
namespace: PigeonpeaScale
synonym: "9" EXACT []
is_a: CO_341:0000080 ! rhs color chart
[Term]
id: CO_341:0000081
name: stem color
namespace: PigeonpeaTrait
def: "Color of the stem" []
synonym: "SC" EXACT []
is_a: CO_341:Morphological_traits ! Morphological_traits
[Term]
id: CO_341:0000082
name: stem color - method
namespace: PigeonpeaMethod
def: "Recorded visually at 50 % flowering stage" []
is_a: CO_341:Estimation ! Estimation
relationship: method_of CO_341:0000081 ! stem color
[Term]
id: CO_341:0000083
name: visual stem color scale
namespace: PigeonpeaScale
is_a: CO_341:Nominal ! Nominal
relationship: scale_of CO_341:0000082 ! stem color - method
[Term]
id: CO_341:0000083:1
name: Green
namespace: PigeonpeaScale
synonym: "1" EXACT []
is_a: CO_341:0000083 ! visual stem color scale
[Term]
id: CO_341:0000083:2
name: Sun red
namespace: PigeonpeaScale
synonym: "2" EXACT []
is_a: CO_341:0000083 ! visual stem color scale
[Term]
id: CO_341:0000083:3
name: Purple
namespace: PigeonpeaScale
synonym: "3" EXACT []
is_a: CO_341:0000083 ! visual stem color scale
[Term]
id: CO_341:0000083:4
name: Dark purple
namespace: PigeonpeaScale
synonym: "4" EXACT []
is_a: CO_341:0000083 ! visual stem color scale
[Term]
id: CO_341:0000084
name: leaf shape
namespace: PigeonpeaTrait
def: "Leaf shape" []
synonym: "LS" EXACT []
is_a: CO_341:Morphological_traits ! Morphological_traits
[Term]
id: CO_341:0000085
name: leaf shape - method
namespace: PigeonpeaMethod
def: "Recorded visually at 50 % flowering stage" []
is_a: CO_341:Estimation ! Estimation
relationship: method_of CO_341:0000084 ! leaf shape
[Term]
id: CO_341:0000086
name: visual leaf shape scale
namespace: PigeonpeaScale
is_a: CO_341:Nominal ! Nominal
relationship: scale_of CO_341:0000085 ! leaf shape - method
[Term]
id: CO_341:0000086:1
name: Lanceolate
namespace: PigeonpeaScale
synonym: "1" EXACT []
is_a: CO_341:0000086 ! visual leaf shape scale
[Term]
id: CO_341:0000086:2
name: Narrow elliptic
namespace: PigeonpeaScale
synonym: "2" EXACT []
is_a: CO_341:0000086 ! visual leaf shape scale
[Term]
id: CO_341:0000086:3
name: Broad elliptic
namespace: PigeonpeaScale
synonym: "3" EXACT []
is_a: CO_341:0000086 ! visual leaf shape scale
[Term]
id: CO_341:0000086:4
name: Obtuse
namespace: PigeonpeaScale
synonym: "4" EXACT []
is_a: CO_341:0000086 ! visual leaf shape scale
[Term]
id: CO_341:0000086:5
name: Obcordate
namespace: PigeonpeaScale
synonym: "5" EXACT []
is_a: CO_341:0000086 ! visual leaf shape scale
[Term]
id: CO_341:0000087
name: leaf pubescence
namespace: PigeonpeaTrait
def: "Leaf pubescence (hair like structure on leaf)" []
synonym: "LFP" EXACT []
is_a: CO_341:Morphological_traits ! Morphological_traits
[Term]
id: CO_341:0000088
name: leaf pubescence - method
namespace: PigeonpeaMethod
def: "Recorded visually at flowering stage" []
is_a: CO_341:Estimation ! Estimation
relationship: method_of CO_341:0000087 ! leaf pubescence
[Term]