-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpotato_trait.obo
8565 lines (7578 loc) · 268 KB
/
potato_trait.obo
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
format-version: 1.2
date: 07:04:2020 19:35
default-namespace: PotatoTrait
ontology: co_330
[Term]
id: CO_330:0000000
name: plant growth habit
namespace: PotatoTrait
def: "The growth habit of the plant" []
synonym: "PlGwht" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000001
name: visual estimation - plant growth habit
namespace: PotatoMethod
def: "Observe the growth habit or shape of 10 individual plants and rate it" []
is_a: CO_330:1000014 ! Estimation
relationship: method_of CO_330:0000000 ! plant growth habit
[Term]
id: CO_330:0000002
name: PlGwht 6 pt. scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000001 ! visual estimation - plant growth habit
[Term]
id: CO_330:0000003
name: flowering degree
namespace: PotatoTrait
def: "The degree of flowering" []
synonym: "Flwdgr" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000004
name: visual estimation - flowering degree
namespace: PotatoMethod
def: "Observe the presence of flowers on the plant when it has reached maximum growth and rate it" []
is_a: CO_330:1000014 ! Estimation
relationship: method_of CO_330:0000003 ! flowering degree
[Term]
id: CO_330:0000005
name: Flwdgr 5 pt. scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000004 ! visual estimation - flowering degree
[Term]
id: CO_330:0000006
name: corolla shape
namespace: PotatoTrait
def: "The shape of the corolla" []
synonym: "CorSh" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000007
name: visual estimation - corolla shape
namespace: PotatoMethod
def: "Observe the corolla shape in a fully open flower and rate it" []
is_a: CO_330:1000014 ! Estimation
relationship: method_of CO_330:0000006 ! corolla shape
[Term]
id: CO_330:0000008
name: CorSh 5 pt. scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000007 ! visual estimation - corolla shape
[Term]
id: CO_330:0000009
name: inflorescence number
namespace: PotatoTrait
def: "The number of inflorescences" []
synonym: "FlwNIn" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000010
name: visual estimation - inflorescence number
namespace: PotatoMethod
def: "Count the total number of inflorescences per plant and record it" []
is_a: CO_330:1000012 ! Counting
relationship: method_of CO_330:0000009 ! inflorescence number
[Term]
id: CO_330:0000011
name: FlwNIn 5 pt. scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000010 ! visual estimation - inflorescence number
[Term]
id: CO_330:0000012
name: main inflorescence flower number
namespace: PotatoTrait
def: "The flower number of the main inflorescence" []
synonym: "FlwNum" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000013
name: visual estimation - main inflorescence flower number
namespace: PotatoMethod
def: "Count the total number of flowers per main inflorescence at the time of flowering and record it" []
is_a: CO_330:1000012 ! Counting
relationship: method_of CO_330:0000012 ! main inflorescence flower number
[Term]
id: CO_330:0000014
name: FlwNum 6 pt. scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000013 ! visual estimation - main inflorescence flower number
[Term]
id: CO_330:0000015
name: anther pigmentation
namespace: PotatoTrait
def: "The pigmentation of the anther" []
synonym: "FlrAnP" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000016
name: visual estimation - anther pigmentation
namespace: PotatoMethod
def: "Observe the pigmentation of the anther and rate it" []
is_a: CO_330:1000014 ! Estimation
relationship: method_of CO_330:0000015 ! anther pigmentation
[Term]
id: CO_330:0000017
name: FlrAnP 5 pt. scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000016 ! visual estimation - anther pigmentation
[Term]
id: CO_330:0000018
name: pistil pigmentation
namespace: PotatoTrait
def: "The pigmentation of the pistil" []
synonym: "FlrPPg" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000019
name: visual estimation - pistil pigmentation
namespace: PotatoMethod
def: "Observe the pigmentation of the pistil and rate it" []
is_a: CO_330:1000014 ! Estimation
relationship: method_of CO_330:0000018 ! pistil pigmentation
[Term]
id: CO_330:0000020
name: FlrPPg 9 pt. scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000019 ! visual estimation - pistil pigmentation
[Term]
id: CO_330:0000021
name: fruit shape
namespace: PotatoTrait
def: "The shape of the fruit" []
synonym: "FrtShp" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000022
name: visual estimation - fruit shape
namespace: PotatoMethod
def: "Observe the shape of the fruit and rate it" []
is_a: CO_330:1000014 ! Estimation
relationship: method_of CO_330:0000021 ! fruit shape
[Term]
id: CO_330:0000023
name: FrtShp 7 pt. scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000022 ! visual estimation - fruit shape
[Term]
id: CO_330:0000024
name: fruit color
namespace: PotatoTrait
def: "The color of the fruit" []
synonym: "FrtCol" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000025
name: visual estimation - fruit color
namespace: PotatoMethod
def: "Observe the color of the fruit and rate it" []
is_a: CO_330:1000014 ! Estimation
relationship: method_of CO_330:0000024 ! fruit color
[Term]
id: CO_330:0000026
name: FrtCol 7 pt. scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000025 ! visual estimation - fruit color
[Term]
id: CO_330:0000027
name: pedicel color
namespace: PotatoTrait
def: "The color of the pedicel" []
synonym: "Pedcol" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000028
name: visual estimation - pedicel color
namespace: PotatoMethod
def: "Observe the color of the pedicel and rate it" []
is_a: CO_330:1000014 ! Estimation
relationship: method_of CO_330:0000027 ! pedicel color
[Term]
id: CO_330:0000029
name: Pedcol 8 pt. scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000028 ! visual estimation - pedicel color
[Term]
id: CO_330:0000030
name: calyx color
namespace: PotatoTrait
def: "The color of the calyx" []
synonym: "Calcol" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000031
name: visual estimation - calyx color
namespace: PotatoMethod
def: "Observe the color of the calyx and rate it" []
is_a: CO_330:1000014 ! Estimation
relationship: method_of CO_330:0000030 ! calyx color
[Term]
id: CO_330:0000032
name: Calcol 7 pt. scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000031 ! visual estimation - calyx color
[Term]
id: CO_330:0000033
name: seed production per berry
namespace: PotatoTrait
def: "The number of seeds produced per berry" []
synonym: "SedPro" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000034
name: visual estimation - seed production per berry
namespace: PotatoMethod
def: "Count the number of seeds produced per berry and record it" []
is_a: CO_330:1000012 ! Counting
relationship: method_of CO_330:0000033 ! seed production per berry
[Term]
id: CO_330:0000035
name: SedPro 6 pt. scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000034 ! visual estimation - seed production per berry
[Term]
id: CO_330:0000036
name: stigma shape
namespace: PotatoTrait
def: "The shape of the stigma" []
synonym: "FlrShp" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000037
name: visual estimation - stigma shape
namespace: PotatoMethod
def: "Observe the shape of the stigma and rate it" []
is_a: CO_330:1000014 ! Estimation
relationship: method_of CO_330:0000036 ! stigma shape
[Term]
id: CO_330:0000038
name: FlrShp 3 pt. scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000037 ! visual estimation - stigma shape
[Term]
id: CO_330:0000039
name: leaf shape
namespace: PotatoTrait
def: "The shape of the leaf" []
synonym: "LefShp" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000040
name: visual estimation - leaf shape
namespace: PotatoMethod
def: "Observe the shape of the leaf located in the middle of the main stem of the plant evaluated, and rate it" []
is_a: CO_330:1000014 ! Estimation
relationship: method_of CO_330:0000039 ! leaf shape
[Term]
id: CO_330:0000041
name: LefShp 3 pt. scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000040 ! visual estimation - leaf shape
[Term]
id: CO_330:0000042
name: primary lateral leaflet number
namespace: PotatoTrait
def: "The number of the primary lateral leaflet" []
synonym: "LaLfN" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000043
name: visual estimation - primary lateral leaflet number
namespace: PotatoMethod
def: "Count the number of the primary lateral leaflet on the leaf located in the middle of the main stem of the plant evaluated, and record it" []
is_a: CO_330:1000012 ! Counting
relationship: method_of CO_330:0000042 ! primary lateral leaflet number
[Term]
id: CO_330:0000044
name: LaLfN 9 pt. scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000043 ! visual estimation - primary lateral leaflet number
[Term]
id: CO_330:0000045
name: leaf adaxial surface color
namespace: PotatoTrait
def: "The color of the leaf adaxial surface" []
synonym: "AdLfC" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000046
name: visual estimation - leaf adaxial surface color
namespace: PotatoMethod
def: "Observe the color of the leaf adaxial surface and rate it" []
is_a: CO_330:1000014 ! Estimation
relationship: method_of CO_330:0000045 ! leaf adaxial surface color
[Term]
id: CO_330:0000047
name: AdLfC 5 pt. scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000046 ! visual estimation - leaf adaxial surface color
[Term]
id: CO_330:0000048
name: leaf abaxial surface color
namespace: PotatoTrait
def: "The color of the leaf abaxial surface" []
synonym: "AbLfC" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000049
name: visual estimation - leaf abaxial surface color
namespace: PotatoMethod
def: "Observe the color of the leaf abaxial surface and rate it" []
is_a: CO_330:1000014 ! Estimation
relationship: method_of CO_330:0000048 ! leaf abaxial surface color
[Term]
id: CO_330:0000050
name: AbLfC 5 pt. scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000049 ! visual estimation - leaf abaxial surface color
[Term]
id: CO_330:0000051
name: leaf adaxial surface trichome density
namespace: PotatoTrait
def: "The trichome density of the leaf adaxial surface" []
synonym: "AdLfTd" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000052
name: visual estimation - leaf adaxial surface trichome density
namespace: PotatoMethod
def: "Observe the trichome density of the leaf adaxial surface and rate it" []
is_a: CO_330:1000014 ! Estimation
relationship: method_of CO_330:0000051 ! leaf adaxial surface trichome density
[Term]
id: CO_330:0000053
name: AdLfTd 4 pt. scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000052 ! visual estimation - leaf adaxial surface trichome density
[Term]
id: CO_330:0000054
name: leaf abaxial surface trichome density
namespace: PotatoTrait
def: "The trichome density of the leaf abaxial surface" []
synonym: "AbLfTd" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000055
name: visual estimation - leaf abaxial surface trichome density
namespace: PotatoMethod
def: "Observe the trichome density of the leaf abaxial surface and rate it" []
is_a: CO_330:1000014 ! Estimation
relationship: method_of CO_330:0000054 ! leaf abaxial surface trichome density
[Term]
id: CO_330:0000056
name: AbLfTd 4 pt. scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000055 ! visual estimation - leaf abaxial surface trichome density
[Term]
id: CO_330:0000057
name: apical leaflet size
namespace: PotatoTrait
def: "The size of the apical leaflet" []
synonym: "ApLfSz" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000058
name: visual estimation - apical leaflet size
namespace: PotatoMethod
def: "Measure the size of the apical leaflet in centimeters and rate it" []
is_a: CO_330:1000015 ! Measurement
relationship: method_of CO_330:0000057 ! apical leaflet size
[Term]
id: CO_330:0000059
name: ApLfSz 4 pt. scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000058 ! visual estimation - apical leaflet size
[Term]
id: CO_330:0000060
name: apical leaflet shape
namespace: PotatoTrait
def: "The shape of the apical leaflet" []
synonym: "ApLfSh" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000061
name: visual estimation - apical leaflet shape
namespace: PotatoMethod
def: "Observe the shape of the apical leaflet on the leaf located in the middle of the main stem and rate it" []
is_a: CO_330:1000014 ! Estimation
relationship: method_of CO_330:0000060 ! apical leaflet shape
[Term]
id: CO_330:0000062
name: ApLfSh 7 pt. scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000061 ! visual estimation - apical leaflet shape
[Term]
id: CO_330:0000063
name: lateral leaflet shape
namespace: PotatoTrait
def: "The shape of the lateral leaflet" []
synonym: "LaLfSh" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000064
name: visual estimation - lateral leaflet shape
namespace: PotatoMethod
def: "Observe the shape of the lateral leaflet and rate it" []
is_a: CO_330:1000014 ! Estimation
relationship: method_of CO_330:0000063 ! lateral leaflet shape
[Term]
id: CO_330:0000065
name: LaLfSh 7 pt. scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000064 ! visual estimation - lateral leaflet shape
[Term]
id: CO_330:0000066
name: base shape of the terminal leaflets
namespace: PotatoTrait
def: "The base shape of the terminal leaflet" []
synonym: "BShTLf" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000067
name: visual estimation - base shape of the terminal leaflets
namespace: PotatoMethod
def: "Observe the base shape of the terminal leaflet and rate it" []
is_a: CO_330:1000014 ! Estimation
relationship: method_of CO_330:0000066 ! base shape of the terminal leaflets
[Term]
id: CO_330:0000068
name: BShTLf 7 pt. scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000067 ! visual estimation - base shape of the terminal leaflets
[Term]
id: CO_330:0000069
name: apex shape of the terminal leaflets
namespace: PotatoTrait
def: "The apex shape of the terminal leaflet" []
synonym: "AShTLf" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000070
name: visual estimation - apex shape of the terminal leaflets
namespace: PotatoMethod
def: "Observe the apex shape of the terminal leaflet and rate it" []
is_a: CO_330:1000014 ! Estimation
relationship: method_of CO_330:0000069 ! apex shape of the terminal leaflets
[Term]
id: CO_330:0000071
name: AShTLf 5 pt. scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000070 ! visual estimation - apex shape of the terminal leaflets
[Term]
id: CO_330:0000072
name: main stem pigmentation
namespace: PotatoTrait
def: "The pigmentation of the main stem" []
synonym: "MStPg" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000073
name: visual estimation - main stem pigmentation
namespace: PotatoMethod
def: "Observe the pigmentation of the main stem and rate it" []
is_a: CO_330:1000014 ! Estimation
relationship: method_of CO_330:0000072 ! main stem pigmentation
[Term]
id: CO_330:0000074
name: MStPg 7 pt. scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000073 ! visual estimation - main stem pigmentation
[Term]
id: CO_330:0000075
name: wing stem shape
namespace: PotatoTrait
def: "The shape of the wing stem" []
synonym: "StWgSh" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000076
name: visual estimation - wing stem shape
namespace: PotatoMethod
def: "Observe the shape of the wings in the main stem and rate it" []
is_a: CO_330:1000014 ! Estimation
relationship: method_of CO_330:0000075 ! wing stem shape
[Term]
id: CO_330:0000077
name: StWgSh 3 pt. scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000076 ! visual estimation - wing stem shape
[Term]
id: CO_330:0000078
name: predominant tuber skin color
namespace: PotatoTrait
def: "The color of the predominant tuber skin" []
synonym: "PSknCol" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000079
name: visual estimation - predominant tuber skin color
namespace: PotatoMethod
def: "Observe the color of the predominant tuber skin and rate it" []
is_a: CO_330:1000014 ! Estimation
relationship: method_of CO_330:0000078 ! predominant tuber skin color
[Term]
id: CO_330:0000080
name: PrdSknCol 9 pt. scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000079 ! visual estimation - predominant tuber skin color
[Term]
id: CO_330:0000081
name: tuber skin main color intensity
namespace: PotatoTrait
def: "The main color instensity of the tuber skin" []
synonym: "SknCPI" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000082
name: visual estimation - tuber skin main color intensity
namespace: PotatoMethod
def: "Observe the main color instensity of the tuber skin and rate it" []
is_a: CO_330:1000014 ! Estimation
relationship: method_of CO_330:0000081 ! tuber skin main color intensity
[Term]
id: CO_330:0000083
name: SknCPI 3 pt. Scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000082 ! visual estimation - tuber skin main color intensity
[Term]
id: CO_330:0000084
name: tuber skin secondary color
namespace: PotatoTrait
def: "The secondary color of the skin" []
synonym: "SknCSc" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000085
name: visual estimation - tuber skin secondary color
namespace: PotatoMethod
def: "Observe the secondary color of the skin and rate it" []
is_a: CO_330:1000014 ! Estimation
relationship: method_of CO_330:0000084 ! tuber skin secondary color
[Term]
id: CO_330:0000086
name: SknCSc 10 pt. Scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000085 ! visual estimation - tuber skin secondary color
[Term]
id: CO_330:0000087
name: distribution of secondary tuber skin color
namespace: PotatoTrait
def: "The color distribution of secondary tuber skin" []
synonym: "SknCScD" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000088
name: visual estimation - distribution of secondary tuber skin color
namespace: PotatoMethod
def: "Observe the color distribution of secondary tuber skin in recently harvested tubers, and rate it" []
is_a: CO_330:1000014 ! Estimation
relationship: method_of CO_330:0000087 ! distribution of secondary tuber skin color
[Term]
id: CO_330:0000089
name: SknCScD 8 pt. Scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000088 ! visual estimation - distribution of secondary tuber skin color
[Term]
id: CO_330:0000090
name: predominant tuber flesh color
namespace: PotatoTrait
def: "The color of the predominant tuber flesh" []
synonym: "PFlshCol" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000091
name: visual estimation - predominant tuber flesh color
namespace: PotatoMethod
def: "Observe the color of the predominant tuber flesh and rate it" []
is_a: CO_330:1000014 ! Estimation
relationship: method_of CO_330:0000090 ! predominant tuber flesh color
[Term]
id: CO_330:0000092
name: PrdFlshCol 8 pt. scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000091 ! visual estimation - predominant tuber flesh color
[Term]
id: CO_330:0000093
name: tuber flesh secondary color
namespace: PotatoTrait
def: "The secondary color of the tuber flesh" []
synonym: "FlsCSc" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000094
name: visual estimation - tuber flesh secondary color
namespace: PotatoMethod
def: "Observe the secondary color of the tuber flesh and rate it" []
is_a: CO_330:1000014 ! Estimation
relationship: method_of CO_330:0000093 ! tuber flesh secondary color
[Term]
id: CO_330:0000095
name: FlsCSc 9 pt. Scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000094 ! visual estimation - tuber flesh secondary color
[Term]
id: CO_330:0000096
name: distribution of secondary tuber flesh color
namespace: PotatoTrait
def: "The distribution of the secondary tuber flesh color" []
synonym: "FlsCSD" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000097
name: visual estimation - distribution of secondary tuber flesh color
namespace: PotatoMethod
def: "Observe the distribution of the secondary tuber flesh color and rate it" []
is_a: CO_330:1000014 ! Estimation
relationship: method_of CO_330:0000096 ! distribution of secondary tuber flesh color
[Term]
id: CO_330:0000098
name: FlsCSD 8 pt. Scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000097 ! visual estimation - distribution of secondary tuber flesh color
[Term]
id: CO_330:0000099
name: tuber shape
namespace: PotatoTrait
def: "The shape of the tuber" []
synonym: "TbShp" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000100
name: visual estimation - tuber shape
namespace: PotatoMethod
def: "Observe the shape of the tuber and rate it" []
is_a: CO_330:1000014 ! Estimation
relationship: method_of CO_330:0000099 ! tuber shape
[Term]
id: CO_330:0000101
name: TbShp 8 pt. Scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000100 ! visual estimation - tuber shape
[Term]
id: CO_330:0000102
name: unusual tuber shape
namespace: PotatoTrait
def: "The unsual shape of the tuber" []
synonym: "UTbShp" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000103
name: visual estimation - unusual tuber shape
namespace: PotatoMethod
def: "Observe the unsual shape of the tuber and rate it" []
is_a: CO_330:1000014 ! Estimation
relationship: method_of CO_330:0000102 ! unusual tuber shape
[Term]
id: CO_330:0000104
name: UTbShp 9 pt. Scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000103 ! visual estimation - unusual tuber shape
[Term]
id: CO_330:0000105
name: tuber depth eyes
namespace: PotatoTrait
def: "The depth of the tuber eyes" []
synonym: "DpEyTb" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000106
name: visual estimation - tuber depth eyes
namespace: PotatoMethod
def: "Observe the depth of the tuber eyes and rate it" []
is_a: CO_330:1000014 ! Estimation
relationship: method_of CO_330:0000105 ! tuber depth eyes
[Term]
id: CO_330:0000107
name: DpEyTb 5 pt. scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000106 ! visual estimation - tuber depth eyes
[Term]
id: CO_330:0000108
name: tuber number per plant
namespace: PotatoTrait
def: "The total number of tubers per plant" []
synonym: "TubN" EXACT []
is_a: CO_330:1000005 ! Agronomic trait
[Term]
id: CO_330:0000109
name: tuber number per plant - method
namespace: PotatoMethod
def: "Compute the total number of tubers per plant using the formula" []
is_a: CO_330:1000013 ! Computation
relationship: method_of CO_330:0000108 ! tuber number per plant
[Term]
id: CO_330:0000110
name: tuber/ plant
namespace: PotatoScale
is_a: CO_330:1000016 ! Numerical
relationship: scale_of CO_330:0000109 ! tuber number per plant - method
[Term]
id: CO_330:0000111
name: predominant sprout color
namespace: PotatoTrait
def: "The predominant color of the sprout" []
synonym: "PSpCol" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000112
name: visual estimation - predominant sprout color
namespace: PotatoMethod
def: "Observe the predominant color of the sprout and rate it" []
is_a: CO_330:1000014 ! Estimation
relationship: method_of CO_330:0000111 ! predominant sprout color
[Term]
id: CO_330:0000113
name: PSpCol 5 pt. scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000112 ! visual estimation - predominant sprout color
[Term]
id: CO_330:0000114
name: secondary sprout color
namespace: PotatoTrait
def: "The secondary color of the sprout" []
synonym: "SpScCol" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000115
name: visual estimation - secondary sprout color
namespace: PotatoMethod
def: "Observe the secondary color of the sprout and rate it" []
is_a: CO_330:1000014 ! Estimation
relationship: method_of CO_330:0000114 ! secondary sprout color
[Term]
id: CO_330:0000116
name: SpScCol 6 pt. scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000115 ! visual estimation - secondary sprout color
[Term]
id: CO_330:0000117
name: distribution of secondary sprout color
namespace: PotatoTrait
def: "The secondary color distribution of the sprout" []
synonym: "SpCSD" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000118
name: visual estimation - distribution of secondary sprout color
namespace: PotatoMethod
def: "Observe the secondary color distribution of the sprout" []
is_a: CO_330:1000014 ! Estimation
relationship: method_of CO_330:0000117 ! distribution of secondary sprout color
[Term]
id: CO_330:0000119
name: SpCSD 7pt. scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000118 ! visual estimation - distribution of secondary sprout color
[Term]
id: CO_330:0000120
name: ploidy
namespace: PotatoTrait
def: "The ploidy of plant" []
synonym: "Pldy" EXACT []
is_a: CO_330:1000010 ! Morphological trait
[Term]
id: CO_330:0000121
name: visual estimation - ploidy
namespace: PotatoMethod
def: "Count the number of chromosomes and rate it" []
is_a: CO_330:1000012 ! Counting
relationship: method_of CO_330:0000120 ! ploidy
[Term]
id: CO_330:0000122
name: Pldy 5 pt. scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000121 ! visual estimation - ploidy
[Term]
id: CO_330:0000123
name: late blight resistance
namespace: PotatoTrait
def: "The plant resistance to late blight" []
synonym: "PlRLb" EXACT []
is_a: CO_330:1000006 ! Biotic stress trait
[Term]
id: CO_330:0000124
name: late blight resistance - method
namespace: PotatoMethod
def: "Observe the plant resistance late blight and rate it" []
is_a: CO_330:1000014 ! Estimation
relationship: method_of CO_330:0000123 ! late blight resistance
[Term]
id: CO_330:0000125
name: SES 7 pt scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000124 ! late blight resistance - method
[Term]
id: CO_330:0000126
name: potato virus x resistance
namespace: PotatoTrait
def: "The plant resistance to potato virus X" []
synonym: "RPvx" EXACT []
is_a: CO_330:1000006 ! Biotic stress trait
[Term]
id: CO_330:0000127
name: potato virus x resistance - method
namespace: PotatoMethod
def: "Observe the plant resistance to potato virus X and rate it" []
is_a: CO_330:1000014 ! Estimation
relationship: method_of CO_330:0000126 ! potato virus x resistance
[Term]
id: CO_330:0000128
name: SES 7 pt scale
namespace: PotatoScale
is_a: CO_330:1000017 ! Ordinal
relationship: scale_of CO_330:0000127 ! potato virus x resistance - method
[Term]
id: CO_330:0000129
name: potato virus y resistance
namespace: PotatoTrait
def: "The plant resistance to potato virus Y" []
synonym: "Rpvy" EXACT []