-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathGnetum_sample_genes.gff
More file actions
1160 lines (1160 loc) · 131 KB
/
Gnetum_sample_genes.gff
File metadata and controls
1160 lines (1160 loc) · 131 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Downloaded from https://datadryad.org//resource/doi:10.5061/dryad.0vm37
scaffold830595 . gene 607185 608811 . + . ID=TnS000830595g08;Name=TnS000830595g08
scaffold830595 . mRNA 607185 608811 . + . ID=TnS000830595t08;Name=TnS000830595t08;Parent=TnS000830595g08
scaffold830595 . five_prime_UTR 607185 607363 . + . ID=TnS000830595t08.utr5p1;Name=TnS000830595t08.utr5p1;Parent=TnS000830595t08
scaffold830595 . exon 607185 607805 . + . ID=TnS000830595t08.exon1;Name=TnS000830595t08.exon1;Parent=TnS000830595t08
scaffold830595 . CDS 607364 607805 . + 0 ID=TnS000830595t08.cds1;Name=TnS000830595t08.cds1;Parent=TnS000830595t08
scaffold830595 . exon 607968 608811 . + . ID=TnS000830595t08.exon2;Name=TnS000830595t08.exon2;Parent=TnS000830595t08
scaffold830595 . CDS 607968 608605 . + 2 ID=TnS000830595t08.cds2;Name=TnS000830595t08.cds2;Parent=TnS000830595t08
scaffold830595 . three_prime_UTR 608606 608811 . + . ID=TnS000830595t08.utr3p1;Name=TnS000830595t08.utr3p1;Parent=TnS000830595t08
scaffold830595 . gene 57109 60821 . + . ID=TnS000830595g02;Name=TnS000830595g02
scaffold830595 . mRNA 57109 60821 . + . ID=TnS000830595t02;Name=TnS000830595t02;Parent=TnS000830595g02
scaffold830595 . five_prime_UTR 57109 57649 . + . ID=TnS000830595t02.utr5p1;Name=TnS000830595t02.utr5p1;Parent=TnS000830595t02
scaffold830595 . five_prime_UTR 57796 57815 . + . ID=TnS000830595t02.utr5p2;Name=TnS000830595t02.utr5p2;Parent=TnS000830595t02
scaffold830595 . five_prime_UTR 57935 58066 . + . ID=TnS000830595t02.utr5p3;Name=TnS000830595t02.utr5p3;Parent=TnS000830595t02
scaffold830595 . five_prime_UTR 58774 58847 . + . ID=TnS000830595t02.utr5p4;Name=TnS000830595t02.utr5p4;Parent=TnS000830595t02
scaffold830595 . exon 57109 57649 . + . ID=TnS000830595t02.exon1;Name=TnS000830595t02.exon1;Parent=TnS000830595t02
scaffold830595 . exon 57796 57815 . + . ID=TnS000830595t02.exon2;Name=TnS000830595t02.exon2;Parent=TnS000830595t02
scaffold830595 . exon 57935 58066 . + . ID=TnS000830595t02.exon3;Name=TnS000830595t02.exon3;Parent=TnS000830595t02
scaffold830595 . exon 58774 60821 . + . ID=TnS000830595t02.exon4;Name=TnS000830595t02.exon4;Parent=TnS000830595t02
scaffold830595 . CDS 58848 60452 . + 0 ID=TnS000830595t02.cds1;Name=TnS000830595t02.cds1;Parent=TnS000830595t02
scaffold830595 . three_prime_UTR 60453 60821 . + . ID=TnS000830595t02.utr3p1;Name=TnS000830595t02.utr3p1;Parent=TnS000830595t02
scaffold830595 . gene 839407 845707 . + . ID=TnS000830595g12;Name=TnS000830595g12
scaffold830595 . mRNA 839407 845707 . + . ID=TnS000830595t12;Name=TnS000830595t12;Parent=TnS000830595g12
scaffold830595 . five_prime_UTR 839407 839721 . + . ID=TnS000830595t12.utr5p1;Name=TnS000830595t12.utr5p1;Parent=TnS000830595t12
scaffold830595 . exon 839407 840355 . + . ID=TnS000830595t12.exon1;Name=TnS000830595t12.exon1;Parent=TnS000830595t12
scaffold830595 . CDS 839722 840355 . + 0 ID=TnS000830595t12.cds1;Name=TnS000830595t12.cds1;Parent=TnS000830595t12
scaffold830595 . exon 842017 842132 . + . ID=TnS000830595t12.exon2;Name=TnS000830595t12.exon2;Parent=TnS000830595t12
scaffold830595 . CDS 842017 842132 . + 2 ID=TnS000830595t12.cds2;Name=TnS000830595t12.cds2;Parent=TnS000830595t12
scaffold830595 . exon 842407 842529 . + . ID=TnS000830595t12.exon3;Name=TnS000830595t12.exon3;Parent=TnS000830595t12
scaffold830595 . CDS 842407 842529 . + 0 ID=TnS000830595t12.cds3;Name=TnS000830595t12.cds3;Parent=TnS000830595t12
scaffold830595 . exon 842623 842808 . + . ID=TnS000830595t12.exon4;Name=TnS000830595t12.exon4;Parent=TnS000830595t12
scaffold830595 . CDS 842623 842808 . + 0 ID=TnS000830595t12.cds4;Name=TnS000830595t12.cds4;Parent=TnS000830595t12
scaffold830595 . exon 842905 843120 . + . ID=TnS000830595t12.exon5;Name=TnS000830595t12.exon5;Parent=TnS000830595t12
scaffold830595 . CDS 842905 843120 . + 0 ID=TnS000830595t12.cds5;Name=TnS000830595t12.cds5;Parent=TnS000830595t12
scaffold830595 . exon 843262 843479 . + . ID=TnS000830595t12.exon6;Name=TnS000830595t12.exon6;Parent=TnS000830595t12
scaffold830595 . CDS 843262 843479 . + 0 ID=TnS000830595t12.cds6;Name=TnS000830595t12.cds6;Parent=TnS000830595t12
scaffold830595 . exon 843565 843640 . + . ID=TnS000830595t12.exon7;Name=TnS000830595t12.exon7;Parent=TnS000830595t12
scaffold830595 . CDS 843565 843640 . + 1 ID=TnS000830595t12.cds7;Name=TnS000830595t12.cds7;Parent=TnS000830595t12
scaffold830595 . exon 843748 843837 . + . ID=TnS000830595t12.exon8;Name=TnS000830595t12.exon8;Parent=TnS000830595t12
scaffold830595 . CDS 843748 843837 . + 0 ID=TnS000830595t12.cds8;Name=TnS000830595t12.cds8;Parent=TnS000830595t12
scaffold830595 . exon 843964 845707 . + . ID=TnS000830595t12.exon9;Name=TnS000830595t12.exon9;Parent=TnS000830595t12
scaffold830595 . CDS 843964 845187 . + 0 ID=TnS000830595t12.cds9;Name=TnS000830595t12.cds9;Parent=TnS000830595t12
scaffold830595 . three_prime_UTR 845188 845707 . + . ID=TnS000830595t12.utr3p1;Name=TnS000830595t12.utr3p1;Parent=TnS000830595t12
scaffold830595 EVM gene 2055 55418 . - . ID=TnS000830595g01;Name=TnS000830595g01
scaffold830595 EVM mRNA 2055 55418 . - . ID=TnS000830595t01;Name=TnS000830595t01;Parent=TnS000830595g01
scaffold830595 EVM exon 55340 55418 . - . ID=TnS000830595t01.exon1;Name=TnS000830595t01.exon1;Parent=TnS000830595t01
scaffold830595 EVM CDS 55340 55418 . - 0 ID=TnS000830595t01.cds1;Name=TnS000830595t01.cds1;Parent=TnS000830595t01
scaffold830595 EVM exon 18721 18761 . - . ID=TnS000830595t01.exon2;Name=TnS000830595t01.exon2;Parent=TnS000830595t01
scaffold830595 EVM CDS 18721 18761 . - 1 ID=TnS000830595t01.cds2;Name=TnS000830595t01.cds2;Parent=TnS000830595t01
scaffold830595 EVM exon 13501 13658 . - . ID=TnS000830595t01.exon3;Name=TnS000830595t01.exon3;Parent=TnS000830595t01
scaffold830595 EVM CDS 13501 13658 . - 0 ID=TnS000830595t01.cds3;Name=TnS000830595t01.cds3;Parent=TnS000830595t01
scaffold830595 EVM exon 13292 13353 . - . ID=TnS000830595t01.exon4;Name=TnS000830595t01.exon4;Parent=TnS000830595t01
scaffold830595 EVM CDS 13292 13353 . - 2 ID=TnS000830595t01.cds4;Name=TnS000830595t01.cds4;Parent=TnS000830595t01
scaffold830595 EVM exon 4321 4838 . - . ID=TnS000830595t01.exon5;Name=TnS000830595t01.exon5;Parent=TnS000830595t01
scaffold830595 EVM CDS 4321 4838 . - 1 ID=TnS000830595t01.cds5;Name=TnS000830595t01.cds5;Parent=TnS000830595t01
scaffold830595 EVM exon 4049 4156 . - . ID=TnS000830595t01.exon6;Name=TnS000830595t01.exon6;Parent=TnS000830595t01
scaffold830595 EVM CDS 4049 4156 . - 0 ID=TnS000830595t01.cds6;Name=TnS000830595t01.cds6;Parent=TnS000830595t01
scaffold830595 EVM exon 3793 3948 . - . ID=TnS000830595t01.exon7;Name=TnS000830595t01.exon7;Parent=TnS000830595t01
scaffold830595 EVM CDS 3793 3948 . - 0 ID=TnS000830595t01.cds7;Name=TnS000830595t01.cds7;Parent=TnS000830595t01
scaffold830595 EVM exon 2055 2099 . - . ID=TnS000830595t01.exon8;Name=TnS000830595t01.exon8;Parent=TnS000830595t01
scaffold830595 EVM CDS 2055 2099 . - 0 ID=TnS000830595t01.cds8;Name=TnS000830595t01.cds8;Parent=TnS000830595t01
scaffold830595 . gene 700689 703993 . + . ID=TnS000830595g10;Name=TnS000830595g10
scaffold830595 . mRNA 700689 703993 . + . ID=TnS000830595t10;Name=TnS000830595t10;Parent=TnS000830595g10
scaffold830595 . five_prime_UTR 700689 701032 . + . ID=TnS000830595t10.utr5p1;Name=TnS000830595t10.utr5p1;Parent=TnS000830595t10
scaffold830595 . exon 700689 701078 . + . ID=TnS000830595t10.exon1;Name=TnS000830595t10.exon1;Parent=TnS000830595t10
scaffold830595 . CDS 701033 701078 . + 0 ID=TnS000830595t10.cds1;Name=TnS000830595t10.cds1;Parent=TnS000830595t10
scaffold830595 . exon 701624 701763 . + . ID=TnS000830595t10.exon2;Name=TnS000830595t10.exon2;Parent=TnS000830595t10
scaffold830595 . CDS 701624 701763 . + 2 ID=TnS000830595t10.cds2;Name=TnS000830595t10.cds2;Parent=TnS000830595t10
scaffold830595 . exon 702338 702420 . + . ID=TnS000830595t10.exon3;Name=TnS000830595t10.exon3;Parent=TnS000830595t10
scaffold830595 . CDS 702338 702420 . + 0 ID=TnS000830595t10.cds3;Name=TnS000830595t10.cds3;Parent=TnS000830595t10
scaffold830595 . exon 703066 703270 . + . ID=TnS000830595t10.exon4;Name=TnS000830595t10.exon4;Parent=TnS000830595t10
scaffold830595 . CDS 703066 703270 . + 1 ID=TnS000830595t10.cds4;Name=TnS000830595t10.cds4;Parent=TnS000830595t10
scaffold830595 . exon 703367 703435 . + . ID=TnS000830595t10.exon5;Name=TnS000830595t10.exon5;Parent=TnS000830595t10
scaffold830595 . CDS 703367 703435 . + 0 ID=TnS000830595t10.cds5;Name=TnS000830595t10.cds5;Parent=TnS000830595t10
scaffold830595 . exon 703523 703993 . + . ID=TnS000830595t10.exon6;Name=TnS000830595t10.exon6;Parent=TnS000830595t10
scaffold830595 . CDS 703523 703606 . + 0 ID=TnS000830595t10.cds6;Name=TnS000830595t10.cds6;Parent=TnS000830595t10
scaffold830595 . three_prime_UTR 703607 703993 . + . ID=TnS000830595t10.utr3p1;Name=TnS000830595t10.utr3p1;Parent=TnS000830595t10
scaffold830595 . gene 1547381 1547977 . + . ID=TnS000830595g24;Name=TnS000830595g24
scaffold830595 . mRNA 1547381 1547977 . + . ID=TnS000830595t24;Name=TnS000830595t24;Parent=TnS000830595g24
scaffold830595 . exon 1547381 1547405 . + . ID=TnS000830595t24.exon1;Name=TnS000830595t24.exon1;Parent=TnS000830595t24
scaffold830595 . CDS 1547381 1547405 . + 0 ID=TnS000830595t24.cds1;Name=TnS000830595t24.cds1;Parent=TnS000830595t24
scaffold830595 . exon 1547446 1547731 . + . ID=TnS000830595t24.exon2;Name=TnS000830595t24.exon2;Parent=TnS000830595t24
scaffold830595 . CDS 1547446 1547731 . + 2 ID=TnS000830595t24.cds2;Name=TnS000830595t24.cds2;Parent=TnS000830595t24
scaffold830595 . exon 1547782 1547977 . + . ID=TnS000830595t24.exon3;Name=TnS000830595t24.exon3;Parent=TnS000830595t24
scaffold830595 . CDS 1547782 1547977 . + 1 ID=TnS000830595t24.cds3;Name=TnS000830595t24.cds3;Parent=TnS000830595t24
scaffold830595 EVM gene 1548292 1548645 . + . ID=TnS000830595g25;Name=TnS000830595g25
scaffold830595 EVM mRNA 1548292 1548645 . + . ID=TnS000830595t25;Name=TnS000830595t25;Parent=TnS000830595g25
scaffold830595 EVM exon 1548292 1548645 . + . ID=TnS000830595t25.exon1;Name=TnS000830595t25.exon1;Parent=TnS000830595t25
scaffold830595 EVM CDS 1548292 1548645 . + 0 ID=TnS000830595t25.cds1;Name=TnS000830595t25.cds1;Parent=TnS000830595t25
scaffold830595 EVM gene 1601833 1602075 . + . ID=TnS000830595g26;Name=TnS000830595g26
scaffold830595 EVM mRNA 1601833 1602075 . + . ID=TnS000830595t26;Name=TnS000830595t26;Parent=TnS000830595g26
scaffold830595 EVM exon 1601833 1602075 . + . ID=TnS000830595t26.exon1;Name=TnS000830595t26.exon1;Parent=TnS000830595t26
scaffold830595 EVM CDS 1601833 1602075 . + 0 ID=TnS000830595t26.cds1;Name=TnS000830595t26.cds1;Parent=TnS000830595t26
scaffold830595 . gene 150788 153222 . + . ID=TnS000830595g04;Name=TnS000830595g04
scaffold830595 . mRNA 150788 153222 . + . ID=TnS000830595t04;Name=TnS000830595t04;Parent=TnS000830595g04
scaffold830595 . five_prime_UTR 150788 151217 . + . ID=TnS000830595t04.utr5p1;Name=TnS000830595t04.utr5p1;Parent=TnS000830595t04
scaffold830595 . exon 150788 153222 . + . ID=TnS000830595t04.exon1;Name=TnS000830595t04.exon1;Parent=TnS000830595t04
scaffold830595 . CDS 151218 152720 . + 0 ID=TnS000830595t04.cds1;Name=TnS000830595t04.cds1;Parent=TnS000830595t04
scaffold830595 . three_prime_UTR 152721 153222 . + . ID=TnS000830595t04.utr3p1;Name=TnS000830595t04.utr3p1;Parent=TnS000830595t04
scaffold830595 . gene 120298 126631 . + . ID=TnS000830595g03;Name=TnS000830595g03
scaffold830595 . mRNA 120298 126631 . + . ID=TnS000830595t03;Name=TnS000830595t03;Parent=TnS000830595g03
scaffold830595 . five_prime_UTR 120298 120533 . + . ID=TnS000830595t03.utr5p1;Name=TnS000830595t03.utr5p1;Parent=TnS000830595t03
scaffold830595 . exon 120298 120776 . + . ID=TnS000830595t03.exon1;Name=TnS000830595t03.exon1;Parent=TnS000830595t03
scaffold830595 . CDS 120534 120776 . + 0 ID=TnS000830595t03.cds1;Name=TnS000830595t03.cds1;Parent=TnS000830595t03
scaffold830595 . exon 125403 126167 . + . ID=TnS000830595t03.exon2;Name=TnS000830595t03.exon2;Parent=TnS000830595t03
scaffold830595 . CDS 125403 126125 . + 0 ID=TnS000830595t03.cds2;Name=TnS000830595t03.cds2;Parent=TnS000830595t03
scaffold830595 . exon 126295 126631 . + . ID=TnS000830595t03.exon3;Name=TnS000830595t03.exon3;Parent=TnS000830595t03
scaffold830595 . three_prime_UTR 126126 126167 . + . ID=TnS000830595t03.utr3p1;Name=TnS000830595t03.utr3p1;Parent=TnS000830595t03
scaffold830595 . three_prime_UTR 126295 126631 . + . ID=TnS000830595t03.utr3p2;Name=TnS000830595t03.utr3p2;Parent=TnS000830595t03
scaffold830595 . gene 1238920 1242692 . + . ID=TnS000830595g20;Name=TnS000830595g20
scaffold830595 . mRNA 1238920 1242692 . + . ID=TnS000830595t20;Name=TnS000830595t20;Parent=TnS000830595g20
scaffold830595 . five_prime_UTR 1238920 1239589 . + . ID=TnS000830595t20.utr5p1;Name=TnS000830595t20.utr5p1;Parent=TnS000830595t20
scaffold830595 . exon 1238920 1240272 . + . ID=TnS000830595t20.exon1;Name=TnS000830595t20.exon1;Parent=TnS000830595t20
scaffold830595 . CDS 1239590 1240272 . + 0 ID=TnS000830595t20.cds1;Name=TnS000830595t20.cds1;Parent=TnS000830595t20
scaffold830595 . exon 1241166 1241533 . + . ID=TnS000830595t20.exon2;Name=TnS000830595t20.exon2;Parent=TnS000830595t20
scaffold830595 . CDS 1241166 1241533 . + 1 ID=TnS000830595t20.cds2;Name=TnS000830595t20.cds2;Parent=TnS000830595t20
scaffold830595 . exon 1241650 1241719 . + . ID=TnS000830595t20.exon3;Name=TnS000830595t20.exon3;Parent=TnS000830595t20
scaffold830595 . CDS 1241650 1241719 . + 2 ID=TnS000830595t20.cds3;Name=TnS000830595t20.cds3;Parent=TnS000830595t20
scaffold830595 . exon 1241942 1242692 . + . ID=TnS000830595t20.exon4;Name=TnS000830595t20.exon4;Parent=TnS000830595t20
scaffold830595 . CDS 1241942 1242011 . + 1 ID=TnS000830595t20.cds4;Name=TnS000830595t20.cds4;Parent=TnS000830595t20
scaffold830595 . three_prime_UTR 1242012 1242692 . + . ID=TnS000830595t20.utr3p1;Name=TnS000830595t20.utr3p1;Parent=TnS000830595t20
scaffold830595 . gene 693425 697219 . + . ID=TnS000830595g09;Name=TnS000830595g09
scaffold830595 . mRNA 693425 697219 . + . ID=TnS000830595t09;Name=TnS000830595t09;Parent=TnS000830595g09
scaffold830595 . five_prime_UTR 693425 693706 . + . ID=TnS000830595t09.utr5p1;Name=TnS000830595t09.utr5p1;Parent=TnS000830595t09
scaffold830595 . five_prime_UTR 695758 695780 . + . ID=TnS000830595t09.utr5p2;Name=TnS000830595t09.utr5p2;Parent=TnS000830595t09
scaffold830595 . exon 693425 693706 . + . ID=TnS000830595t09.exon1;Name=TnS000830595t09.exon1;Parent=TnS000830595t09
scaffold830595 . exon 695758 696044 . + . ID=TnS000830595t09.exon2;Name=TnS000830595t09.exon2;Parent=TnS000830595t09
scaffold830595 . CDS 695781 696044 . + 0 ID=TnS000830595t09.cds1;Name=TnS000830595t09.cds1;Parent=TnS000830595t09
scaffold830595 . exon 696133 696255 . + . ID=TnS000830595t09.exon3;Name=TnS000830595t09.exon3;Parent=TnS000830595t09
scaffold830595 . CDS 696133 696255 . + 0 ID=TnS000830595t09.cds2;Name=TnS000830595t09.cds2;Parent=TnS000830595t09
scaffold830595 . exon 696349 696639 . + . ID=TnS000830595t09.exon4;Name=TnS000830595t09.exon4;Parent=TnS000830595t09
scaffold830595 . CDS 696349 696639 . + 0 ID=TnS000830595t09.cds3;Name=TnS000830595t09.cds3;Parent=TnS000830595t09
scaffold830595 . exon 696751 697219 . + . ID=TnS000830595t09.exon5;Name=TnS000830595t09.exon5;Parent=TnS000830595t09
scaffold830595 . CDS 696751 696960 . + 0 ID=TnS000830595t09.cds4;Name=TnS000830595t09.cds4;Parent=TnS000830595t09
scaffold830595 . three_prime_UTR 696961 697219 . + . ID=TnS000830595t09.utr3p1;Name=TnS000830595t09.utr3p1;Parent=TnS000830595t09
scaffold830595 . gene 707265 714668 . - . ID=TnS000830595g11;Name=TnS000830595g11
scaffold830595 . mRNA 707265 714668 . - . ID=TnS000830595t11;Name=TnS000830595t11;Parent=TnS000830595g11
scaffold830595 . five_prime_UTR 714445 714668 . - . ID=TnS000830595t11.utr5p1;Name=TnS000830595t11.utr5p1;Parent=TnS000830595t11
scaffold830595 . exon 714432 714668 . - . ID=TnS000830595t11.exon1;Name=TnS000830595t11.exon1;Parent=TnS000830595t11
scaffold830595 . CDS 714432 714444 . - 0 ID=TnS000830595t11.cds1;Name=TnS000830595t11.cds1;Parent=TnS000830595t11
scaffold830595 . exon 714183 714321 . - . ID=TnS000830595t11.exon2;Name=TnS000830595t11.exon2;Parent=TnS000830595t11
scaffold830595 . CDS 714183 714321 . - 2 ID=TnS000830595t11.cds2;Name=TnS000830595t11.cds2;Parent=TnS000830595t11
scaffold830595 . exon 713514 713703 . - . ID=TnS000830595t11.exon3;Name=TnS000830595t11.exon3;Parent=TnS000830595t11
scaffold830595 . CDS 713514 713703 . - 1 ID=TnS000830595t11.cds3;Name=TnS000830595t11.cds3;Parent=TnS000830595t11
scaffold830595 . exon 713318 713407 . - . ID=TnS000830595t11.exon4;Name=TnS000830595t11.exon4;Parent=TnS000830595t11
scaffold830595 . CDS 713318 713407 . - 0 ID=TnS000830595t11.cds4;Name=TnS000830595t11.cds4;Parent=TnS000830595t11
scaffold830595 . exon 712956 713024 . - . ID=TnS000830595t11.exon5;Name=TnS000830595t11.exon5;Parent=TnS000830595t11
scaffold830595 . CDS 712956 713024 . - 0 ID=TnS000830595t11.cds5;Name=TnS000830595t11.cds5;Parent=TnS000830595t11
scaffold830595 . exon 712699 712768 . - . ID=TnS000830595t11.exon6;Name=TnS000830595t11.exon6;Parent=TnS000830595t11
scaffold830595 . CDS 712699 712768 . - 0 ID=TnS000830595t11.cds6;Name=TnS000830595t11.cds6;Parent=TnS000830595t11
scaffold830595 . exon 712391 712455 . - . ID=TnS000830595t11.exon7;Name=TnS000830595t11.exon7;Parent=TnS000830595t11
scaffold830595 . CDS 712391 712455 . - 2 ID=TnS000830595t11.cds7;Name=TnS000830595t11.cds7;Parent=TnS000830595t11
scaffold830595 . exon 711808 711862 . - . ID=TnS000830595t11.exon8;Name=TnS000830595t11.exon8;Parent=TnS000830595t11
scaffold830595 . CDS 711808 711862 . - 0 ID=TnS000830595t11.cds8;Name=TnS000830595t11.cds8;Parent=TnS000830595t11
scaffold830595 . exon 711424 711554 . - . ID=TnS000830595t11.exon9;Name=TnS000830595t11.exon9;Parent=TnS000830595t11
scaffold830595 . CDS 711424 711554 . - 2 ID=TnS000830595t11.cds9;Name=TnS000830595t11.cds9;Parent=TnS000830595t11
scaffold830595 . exon 711210 711325 . - . ID=TnS000830595t11.exon10;Name=TnS000830595t11.exon10;Parent=TnS000830595t11
scaffold830595 . CDS 711210 711325 . - 0 ID=TnS000830595t11.cds10;Name=TnS000830595t11.cds10;Parent=TnS000830595t11
scaffold830595 . exon 710924 710993 . - . ID=TnS000830595t11.exon11;Name=TnS000830595t11.exon11;Parent=TnS000830595t11
scaffold830595 . CDS 710924 710993 . - 1 ID=TnS000830595t11.cds11;Name=TnS000830595t11.cds11;Parent=TnS000830595t11
scaffold830595 . exon 710240 710344 . - . ID=TnS000830595t11.exon12;Name=TnS000830595t11.exon12;Parent=TnS000830595t11
scaffold830595 . CDS 710240 710344 . - 0 ID=TnS000830595t11.cds12;Name=TnS000830595t11.cds12;Parent=TnS000830595t11
scaffold830595 . exon 710038 710127 . - . ID=TnS000830595t11.exon13;Name=TnS000830595t11.exon13;Parent=TnS000830595t11
scaffold830595 . CDS 710038 710127 . - 0 ID=TnS000830595t11.cds13;Name=TnS000830595t11.cds13;Parent=TnS000830595t11
scaffold830595 . exon 709798 709946 . - . ID=TnS000830595t11.exon14;Name=TnS000830595t11.exon14;Parent=TnS000830595t11
scaffold830595 . CDS 709798 709946 . - 0 ID=TnS000830595t11.cds14;Name=TnS000830595t11.cds14;Parent=TnS000830595t11
scaffold830595 . exon 708939 709050 . - . ID=TnS000830595t11.exon15;Name=TnS000830595t11.exon15;Parent=TnS000830595t11
scaffold830595 . CDS 708939 709050 . - 1 ID=TnS000830595t11.cds15;Name=TnS000830595t11.cds15;Parent=TnS000830595t11
scaffold830595 . exon 708777 708860 . - . ID=TnS000830595t11.exon16;Name=TnS000830595t11.exon16;Parent=TnS000830595t11
scaffold830595 . CDS 708777 708860 . - 0 ID=TnS000830595t11.cds16;Name=TnS000830595t11.cds16;Parent=TnS000830595t11
scaffold830595 . exon 708614 708694 . - . ID=TnS000830595t11.exon17;Name=TnS000830595t11.exon17;Parent=TnS000830595t11
scaffold830595 . CDS 708614 708694 . - 0 ID=TnS000830595t11.cds17;Name=TnS000830595t11.cds17;Parent=TnS000830595t11
scaffold830595 . exon 708266 708490 . - . ID=TnS000830595t11.exon18;Name=TnS000830595t11.exon18;Parent=TnS000830595t11
scaffold830595 . CDS 708266 708490 . - 0 ID=TnS000830595t11.cds18;Name=TnS000830595t11.cds18;Parent=TnS000830595t11
scaffold830595 . exon 707933 708055 . - . ID=TnS000830595t11.exon19;Name=TnS000830595t11.exon19;Parent=TnS000830595t11
scaffold830595 . CDS 707933 708055 . - 0 ID=TnS000830595t11.cds19;Name=TnS000830595t11.cds19;Parent=TnS000830595t11
scaffold830595 . exon 707265 707809 . - . ID=TnS000830595t11.exon20;Name=TnS000830595t11.exon20;Parent=TnS000830595t11
scaffold830595 . CDS 707693 707809 . - 0 ID=TnS000830595t11.cds20;Name=TnS000830595t11.cds20;Parent=TnS000830595t11
scaffold830595 . three_prime_UTR 707265 707692 . - . ID=TnS000830595t11.utr3p1;Name=TnS000830595t11.utr3p1;Parent=TnS000830595t11
scaffold830595 . gene 854934 860586 . - . ID=TnS000830595g13;Name=TnS000830595g13
scaffold830595 . mRNA 854934 860586 . - . ID=TnS000830595t13;Name=TnS000830595t13;Parent=TnS000830595g13
scaffold830595 . exon 859971 860586 . - . ID=TnS000830595t13.exon1;Name=TnS000830595t13.exon1;Parent=TnS000830595t13
scaffold830595 . CDS 859971 860586 . - 0 ID=TnS000830595t13.cds1;Name=TnS000830595t13.cds1;Parent=TnS000830595t13
scaffold830595 . exon 858363 858478 . - . ID=TnS000830595t13.exon2;Name=TnS000830595t13.exon2;Parent=TnS000830595t13
scaffold830595 . CDS 858363 858478 . - 2 ID=TnS000830595t13.cds2;Name=TnS000830595t13.cds2;Parent=TnS000830595t13
scaffold830595 . exon 858158 858280 . - . ID=TnS000830595t13.exon3;Name=TnS000830595t13.exon3;Parent=TnS000830595t13
scaffold830595 . CDS 858158 858280 . - 0 ID=TnS000830595t13.cds3;Name=TnS000830595t13.cds3;Parent=TnS000830595t13
scaffold830595 . exon 857610 857795 . - . ID=TnS000830595t13.exon4;Name=TnS000830595t13.exon4;Parent=TnS000830595t13
scaffold830595 . CDS 857610 857795 . - 0 ID=TnS000830595t13.cds4;Name=TnS000830595t13.cds4;Parent=TnS000830595t13
scaffold830595 . exon 857260 857475 . - . ID=TnS000830595t13.exon5;Name=TnS000830595t13.exon5;Parent=TnS000830595t13
scaffold830595 . CDS 857260 857475 . - 0 ID=TnS000830595t13.cds5;Name=TnS000830595t13.cds5;Parent=TnS000830595t13
scaffold830595 . exon 856938 857155 . - . ID=TnS000830595t13.exon6;Name=TnS000830595t13.exon6;Parent=TnS000830595t13
scaffold830595 . CDS 856938 857155 . - 0 ID=TnS000830595t13.cds6;Name=TnS000830595t13.cds6;Parent=TnS000830595t13
scaffold830595 . exon 856783 856858 . - . ID=TnS000830595t13.exon7;Name=TnS000830595t13.exon7;Parent=TnS000830595t13
scaffold830595 . CDS 856783 856858 . - 1 ID=TnS000830595t13.cds7;Name=TnS000830595t13.cds7;Parent=TnS000830595t13
scaffold830595 . exon 856602 856691 . - . ID=TnS000830595t13.exon8;Name=TnS000830595t13.exon8;Parent=TnS000830595t13
scaffold830595 . CDS 856602 856691 . - 0 ID=TnS000830595t13.cds8;Name=TnS000830595t13.cds8;Parent=TnS000830595t13
scaffold830595 . exon 854934 856517 . - . ID=TnS000830595t13.exon9;Name=TnS000830595t13.exon9;Parent=TnS000830595t13
scaffold830595 . CDS 855312 856517 . - 0 ID=TnS000830595t13.cds9;Name=TnS000830595t13.cds9;Parent=TnS000830595t13
scaffold830595 . three_prime_UTR 854934 855311 . - . ID=TnS000830595t13.utr3p1;Name=TnS000830595t13.utr3p1;Parent=TnS000830595t13
scaffold830595 . gene 1245242 1250610 . - . ID=TnS000830595g21;Name=TnS000830595g21
scaffold830595 . mRNA 1245242 1250610 . - . ID=TnS000830595t21;Name=TnS000830595t21;Parent=TnS000830595g21
scaffold830595 . five_prime_UTR 1250310 1250610 . - . ID=TnS000830595t21.utr5p1;Name=TnS000830595t21.utr5p1;Parent=TnS000830595t21
scaffold830595 . exon 1250208 1250610 . - . ID=TnS000830595t21.exon1;Name=TnS000830595t21.exon1;Parent=TnS000830595t21
scaffold830595 . CDS 1250208 1250309 . - 0 ID=TnS000830595t21.cds1;Name=TnS000830595t21.cds1;Parent=TnS000830595t21
scaffold830595 . exon 1249477 1249648 . - . ID=TnS000830595t21.exon2;Name=TnS000830595t21.exon2;Parent=TnS000830595t21
scaffold830595 . CDS 1249477 1249648 . - 0 ID=TnS000830595t21.cds2;Name=TnS000830595t21.cds2;Parent=TnS000830595t21
scaffold830595 . exon 1248200 1248385 . - . ID=TnS000830595t21.exon3;Name=TnS000830595t21.exon3;Parent=TnS000830595t21
scaffold830595 . CDS 1248200 1248385 . - 2 ID=TnS000830595t21.cds3;Name=TnS000830595t21.cds3;Parent=TnS000830595t21
scaffold830595 . exon 1247791 1247993 . - . ID=TnS000830595t21.exon4;Name=TnS000830595t21.exon4;Parent=TnS000830595t21
scaffold830595 . CDS 1247791 1247993 . - 2 ID=TnS000830595t21.cds4;Name=TnS000830595t21.cds4;Parent=TnS000830595t21
scaffold830595 . exon 1247373 1247524 . - . ID=TnS000830595t21.exon5;Name=TnS000830595t21.exon5;Parent=TnS000830595t21
scaffold830595 . CDS 1247373 1247524 . - 0 ID=TnS000830595t21.cds5;Name=TnS000830595t21.cds5;Parent=TnS000830595t21
scaffold830595 . exon 1246229 1246353 . - . ID=TnS000830595t21.exon6;Name=TnS000830595t21.exon6;Parent=TnS000830595t21
scaffold830595 . CDS 1246229 1246353 . - 1 ID=TnS000830595t21.cds6;Name=TnS000830595t21.cds6;Parent=TnS000830595t21
scaffold830595 . exon 1245919 1246031 . - . ID=TnS000830595t21.exon7;Name=TnS000830595t21.exon7;Parent=TnS000830595t21
scaffold830595 . CDS 1245919 1246031 . - 2 ID=TnS000830595t21.cds7;Name=TnS000830595t21.cds7;Parent=TnS000830595t21
scaffold830595 . exon 1245242 1245702 . - . ID=TnS000830595t21.exon8;Name=TnS000830595t21.exon8;Parent=TnS000830595t21
scaffold830595 . CDS 1245589 1245702 . - 0 ID=TnS000830595t21.cds8;Name=TnS000830595t21.cds8;Parent=TnS000830595t21
scaffold830595 . three_prime_UTR 1245242 1245588 . - . ID=TnS000830595t21.utr3p1;Name=TnS000830595t21.utr3p1;Parent=TnS000830595t21
scaffold830595 . gene 1128365 1132704 . - . ID=TnS000830595g17;Name=TnS000830595g17
scaffold830595 . mRNA 1128365 1132704 . - . ID=TnS000830595t17;Name=TnS000830595t17;Parent=TnS000830595g17
scaffold830595 . five_prime_UTR 1132308 1132704 . - . ID=TnS000830595t17.utr5p1;Name=TnS000830595t17.utr5p1;Parent=TnS000830595t17
scaffold830595 . five_prime_UTR 1131591 1131718 . - . ID=TnS000830595t17.utr5p2;Name=TnS000830595t17.utr5p2;Parent=TnS000830595t17
scaffold830595 . five_prime_UTR 1131334 1131489 . - . ID=TnS000830595t17.utr5p3;Name=TnS000830595t17.utr5p3;Parent=TnS000830595t17
scaffold830595 . exon 1132308 1132704 . - . ID=TnS000830595t17.exon1;Name=TnS000830595t17.exon1;Parent=TnS000830595t17
scaffold830595 . exon 1131591 1131718 . - . ID=TnS000830595t17.exon2;Name=TnS000830595t17.exon2;Parent=TnS000830595t17
scaffold830595 . exon 1130290 1131489 . - . ID=TnS000830595t17.exon3;Name=TnS000830595t17.exon3;Parent=TnS000830595t17
scaffold830595 . CDS 1130290 1131333 . - 0 ID=TnS000830595t17.cds1;Name=TnS000830595t17.cds1;Parent=TnS000830595t17
scaffold830595 . exon 1128365 1129232 . - . ID=TnS000830595t17.exon4;Name=TnS000830595t17.exon4;Parent=TnS000830595t17
scaffold830595 . CDS 1128969 1129232 . - 0 ID=TnS000830595t17.cds2;Name=TnS000830595t17.cds2;Parent=TnS000830595t17
scaffold830595 . three_prime_UTR 1128365 1128968 . - . ID=TnS000830595t17.utr3p1;Name=TnS000830595t17.utr3p1;Parent=TnS000830595t17
scaffold830595 EVM gene 1521516 1521680 . + . ID=TnS000830595g23;Name=TnS000830595g23
scaffold830595 EVM mRNA 1521516 1521680 . + . ID=TnS000830595t23;Name=TnS000830595t23;Parent=TnS000830595g23
scaffold830595 EVM exon 1521516 1521680 . + . ID=TnS000830595t23.exon1;Name=TnS000830595t23.exon1;Parent=TnS000830595t23
scaffold830595 EVM CDS 1521516 1521680 . + 0 ID=TnS000830595t23.cds1;Name=TnS000830595t23.cds1;Parent=TnS000830595t23
scaffold830595 EVM gene 1786054 1786392 . + . ID=TnS000830595g30;Name=TnS000830595g30
scaffold830595 EVM mRNA 1786054 1786392 . + . ID=TnS000830595t30;Name=TnS000830595t30;Parent=TnS000830595g30
scaffold830595 EVM exon 1786054 1786392 . + . ID=TnS000830595t30.exon1;Name=TnS000830595t30.exon1;Parent=TnS000830595t30
scaffold830595 EVM CDS 1786054 1786392 . + 0 ID=TnS000830595t30.cds1;Name=TnS000830595t30.cds1;Parent=TnS000830595t30
scaffold830595 . gene 292732 301600 . - . ID=TnS000830595g06;Name=TnS000830595g06
scaffold830595 . mRNA 292732 301600 . - . ID=TnS000830595t06;Name=TnS000830595t06;Parent=TnS000830595g06
scaffold830595 . five_prime_UTR 301447 301600 . - . ID=TnS000830595t06.utr5p1;Name=TnS000830595t06.utr5p1;Parent=TnS000830595t06
scaffold830595 . exon 300265 301600 . - . ID=TnS000830595t06.exon1;Name=TnS000830595t06.exon1;Parent=TnS000830595t06
scaffold830595 . CDS 300265 301446 . - 0 ID=TnS000830595t06.cds1;Name=TnS000830595t06.cds1;Parent=TnS000830595t06
scaffold830595 . exon 299159 299338 . - . ID=TnS000830595t06.exon2;Name=TnS000830595t06.exon2;Parent=TnS000830595t06
scaffold830595 . CDS 299159 299338 . - 0 ID=TnS000830595t06.cds2;Name=TnS000830595t06.cds2;Parent=TnS000830595t06
scaffold830595 . exon 298379 298543 . - . ID=TnS000830595t06.exon3;Name=TnS000830595t06.exon3;Parent=TnS000830595t06
scaffold830595 . CDS 298379 298543 . - 0 ID=TnS000830595t06.cds3;Name=TnS000830595t06.cds3;Parent=TnS000830595t06
scaffold830595 . exon 297447 297545 . - . ID=TnS000830595t06.exon4;Name=TnS000830595t06.exon4;Parent=TnS000830595t06
scaffold830595 . CDS 297447 297545 . - 0 ID=TnS000830595t06.cds4;Name=TnS000830595t06.cds4;Parent=TnS000830595t06
scaffold830595 . exon 296991 297269 . - . ID=TnS000830595t06.exon5;Name=TnS000830595t06.exon5;Parent=TnS000830595t06
scaffold830595 . CDS 296991 297269 . - 0 ID=TnS000830595t06.cds5;Name=TnS000830595t06.cds5;Parent=TnS000830595t06
scaffold830595 . exon 296536 296802 . - . ID=TnS000830595t06.exon6;Name=TnS000830595t06.exon6;Parent=TnS000830595t06
scaffold830595 . CDS 296536 296802 . - 0 ID=TnS000830595t06.cds6;Name=TnS000830595t06.cds6;Parent=TnS000830595t06
scaffold830595 . exon 296318 296449 . - . ID=TnS000830595t06.exon7;Name=TnS000830595t06.exon7;Parent=TnS000830595t06
scaffold830595 . CDS 296318 296449 . - 0 ID=TnS000830595t06.cds7;Name=TnS000830595t06.cds7;Parent=TnS000830595t06
scaffold830595 . exon 295724 295984 . - . ID=TnS000830595t06.exon8;Name=TnS000830595t06.exon8;Parent=TnS000830595t06
scaffold830595 . CDS 295724 295984 . - 0 ID=TnS000830595t06.cds8;Name=TnS000830595t06.cds8;Parent=TnS000830595t06
scaffold830595 . exon 295543 295614 . - . ID=TnS000830595t06.exon9;Name=TnS000830595t06.exon9;Parent=TnS000830595t06
scaffold830595 . CDS 295543 295614 . - 0 ID=TnS000830595t06.cds9;Name=TnS000830595t06.cds9;Parent=TnS000830595t06
scaffold830595 . exon 295309 295458 . - . ID=TnS000830595t06.exon10;Name=TnS000830595t06.exon10;Parent=TnS000830595t06
scaffold830595 . CDS 295309 295458 . - 0 ID=TnS000830595t06.cds10;Name=TnS000830595t06.cds10;Parent=TnS000830595t06
scaffold830595 . exon 293702 294223 . - . ID=TnS000830595t06.exon11;Name=TnS000830595t06.exon11;Parent=TnS000830595t06
scaffold830595 . CDS 293702 294223 . - 0 ID=TnS000830595t06.cds11;Name=TnS000830595t06.cds11;Parent=TnS000830595t06
scaffold830595 . exon 292732 293613 . - . ID=TnS000830595t06.exon12;Name=TnS000830595t06.exon12;Parent=TnS000830595t06
scaffold830595 . CDS 293248 293613 . - 0 ID=TnS000830595t06.cds12;Name=TnS000830595t06.cds12;Parent=TnS000830595t06
scaffold830595 . three_prime_UTR 292732 293247 . - . ID=TnS000830595t06.utr3p1;Name=TnS000830595t06.utr3p1;Parent=TnS000830595t06
scaffold830595 . gene 1168325 1172439 . + . ID=TnS000830595g19;Name=TnS000830595g19
scaffold830595 . mRNA 1168325 1172439 . + . ID=TnS000830595t19;Name=TnS000830595t19;Parent=TnS000830595g19
scaffold830595 . five_prime_UTR 1168325 1168327 . + . ID=TnS000830595t19.utr5p1;Name=TnS000830595t19.utr5p1;Parent=TnS000830595t19
scaffold830595 . exon 1168325 1168401 . + . ID=TnS000830595t19.exon1;Name=TnS000830595t19.exon1;Parent=TnS000830595t19
scaffold830595 . CDS 1168328 1168401 . + 0 ID=TnS000830595t19.cds1;Name=TnS000830595t19.cds1;Parent=TnS000830595t19
scaffold830595 . exon 1168499 1168827 . + . ID=TnS000830595t19.exon2;Name=TnS000830595t19.exon2;Parent=TnS000830595t19
scaffold830595 . CDS 1168499 1168827 . + 1 ID=TnS000830595t19.cds2;Name=TnS000830595t19.cds2;Parent=TnS000830595t19
scaffold830595 . exon 1171776 1171804 . + . ID=TnS000830595t19.exon3;Name=TnS000830595t19.exon3;Parent=TnS000830595t19
scaffold830595 . CDS 1171776 1171804 . + 2 ID=TnS000830595t19.cds3;Name=TnS000830595t19.cds3;Parent=TnS000830595t19
scaffold830595 . exon 1171967 1172439 . + . ID=TnS000830595t19.exon4;Name=TnS000830595t19.exon4;Parent=TnS000830595t19
scaffold830595 . CDS 1171967 1172044 . + 0 ID=TnS000830595t19.cds4;Name=TnS000830595t19.cds4;Parent=TnS000830595t19
scaffold830595 . three_prime_UTR 1172045 1172439 . + . ID=TnS000830595t19.utr3p1;Name=TnS000830595t19.utr3p1;Parent=TnS000830595t19
scaffold830595 EVM gene 1753980 1754157 . + . ID=TnS000830595g28;Name=TnS000830595g28
scaffold830595 EVM mRNA 1753980 1754157 . + . ID=TnS000830595t28;Name=TnS000830595t28;Parent=TnS000830595g28
scaffold830595 EVM exon 1753980 1754157 . + . ID=TnS000830595t28.exon1;Name=TnS000830595t28.exon1;Parent=TnS000830595t28
scaffold830595 EVM CDS 1753980 1754157 . + 1 ID=TnS000830595t28.cds1;Name=TnS000830595t28.cds1;Parent=TnS000830595t28
scaffold830595 EVM gene 1103125 1105777 . - . ID=TnS000830595g16;Name=TnS000830595g16
scaffold830595 EVM mRNA 1103125 1105777 . - . ID=TnS000830595t16;Name=TnS000830595t16;Parent=TnS000830595g16
scaffold830595 EVM exon 1105200 1105777 . - . ID=TnS000830595t16.exon1;Name=TnS000830595t16.exon1;Parent=TnS000830595t16
scaffold830595 EVM CDS 1105200 1105777 . - 0 ID=TnS000830595t16.cds1;Name=TnS000830595t16.cds1;Parent=TnS000830595t16
scaffold830595 EVM exon 1103125 1104013 . - . ID=TnS000830595t16.exon2;Name=TnS000830595t16.exon2;Parent=TnS000830595t16
scaffold830595 EVM CDS 1103125 1104013 . - 2 ID=TnS000830595t16.cds2;Name=TnS000830595t16.cds2;Parent=TnS000830595t16
scaffold830595 . gene 1268975 1276868 . - . ID=TnS000830595g22;Name=TnS000830595g22
scaffold830595 . mRNA 1268975 1276868 . - . ID=TnS000830595t22;Name=TnS000830595t22;Parent=TnS000830595g22
scaffold830595 . five_prime_UTR 1276752 1276868 . - . ID=TnS000830595t22.utr5p1;Name=TnS000830595t22.utr5p1;Parent=TnS000830595t22
scaffold830595 . five_prime_UTR 1275543 1276149 . - . ID=TnS000830595t22.utr5p2;Name=TnS000830595t22.utr5p2;Parent=TnS000830595t22
scaffold830595 . exon 1276752 1276868 . - . ID=TnS000830595t22.exon1;Name=TnS000830595t22.exon1;Parent=TnS000830595t22
scaffold830595 . exon 1275027 1276149 . - . ID=TnS000830595t22.exon2;Name=TnS000830595t22.exon2;Parent=TnS000830595t22
scaffold830595 . CDS 1275027 1275542 . - 0 ID=TnS000830595t22.cds1;Name=TnS000830595t22.cds1;Parent=TnS000830595t22
scaffold830595 . exon 1273791 1274147 . - . ID=TnS000830595t22.exon3;Name=TnS000830595t22.exon3;Parent=TnS000830595t22
scaffold830595 . CDS 1273791 1274147 . - 0 ID=TnS000830595t22.cds2;Name=TnS000830595t22.cds2;Parent=TnS000830595t22
scaffold830595 . exon 1273510 1273600 . - . ID=TnS000830595t22.exon4;Name=TnS000830595t22.exon4;Parent=TnS000830595t22
scaffold830595 . CDS 1273510 1273600 . - 0 ID=TnS000830595t22.cds3;Name=TnS000830595t22.cds3;Parent=TnS000830595t22
scaffold830595 . exon 1272234 1272679 . - . ID=TnS000830595t22.exon5;Name=TnS000830595t22.exon5;Parent=TnS000830595t22
scaffold830595 . CDS 1272234 1272679 . - 2 ID=TnS000830595t22.cds4;Name=TnS000830595t22.cds4;Parent=TnS000830595t22
scaffold830595 . exon 1271597 1271752 . - . ID=TnS000830595t22.exon6;Name=TnS000830595t22.exon6;Parent=TnS000830595t22
scaffold830595 . CDS 1271597 1271752 . - 0 ID=TnS000830595t22.cds5;Name=TnS000830595t22.cds5;Parent=TnS000830595t22
scaffold830595 . exon 1271314 1271481 . - . ID=TnS000830595t22.exon7;Name=TnS000830595t22.exon7;Parent=TnS000830595t22
scaffold830595 . CDS 1271314 1271481 . - 0 ID=TnS000830595t22.cds6;Name=TnS000830595t22.cds6;Parent=TnS000830595t22
scaffold830595 . exon 1270837 1270977 . - . ID=TnS000830595t22.exon8;Name=TnS000830595t22.exon8;Parent=TnS000830595t22
scaffold830595 . CDS 1270837 1270977 . - 0 ID=TnS000830595t22.cds7;Name=TnS000830595t22.cds7;Parent=TnS000830595t22
scaffold830595 . exon 1270500 1270730 . - . ID=TnS000830595t22.exon9;Name=TnS000830595t22.exon9;Parent=TnS000830595t22
scaffold830595 . CDS 1270500 1270730 . - 0 ID=TnS000830595t22.cds8;Name=TnS000830595t22.cds8;Parent=TnS000830595t22
scaffold830595 . exon 1270290 1270403 . - . ID=TnS000830595t22.exon10;Name=TnS000830595t22.exon10;Parent=TnS000830595t22
scaffold830595 . CDS 1270290 1270403 . - 0 ID=TnS000830595t22.cds9;Name=TnS000830595t22.cds9;Parent=TnS000830595t22
scaffold830595 . exon 1268975 1269484 . - . ID=TnS000830595t22.exon11;Name=TnS000830595t22.exon11;Parent=TnS000830595t22
scaffold830595 . CDS 1269275 1269484 . - 0 ID=TnS000830595t22.cds10;Name=TnS000830595t22.cds10;Parent=TnS000830595t22
scaffold830595 . three_prime_UTR 1268975 1269274 . - . ID=TnS000830595t22.utr3p1;Name=TnS000830595t22.utr3p1;Parent=TnS000830595t22
scaffold830595 . gene 1051186 1099446 . + . ID=TnS000830595g15;Name=TnS000830595g15
scaffold830595 . mRNA 1051186 1099446 . + . ID=TnS000830595t15;Name=TnS000830595t15;Parent=TnS000830595g15
scaffold830595 . five_prime_UTR 1051186 1051264 . + . ID=TnS000830595t15.utr5p1;Name=TnS000830595t15.utr5p1;Parent=TnS000830595t15
scaffold830595 . exon 1051186 1051596 . + . ID=TnS000830595t15.exon1;Name=TnS000830595t15.exon1;Parent=TnS000830595t15
scaffold830595 . CDS 1051265 1051596 . + 0 ID=TnS000830595t15.cds1;Name=TnS000830595t15.cds1;Parent=TnS000830595t15
scaffold830595 . exon 1053841 1053925 . + . ID=TnS000830595t15.exon2;Name=TnS000830595t15.exon2;Parent=TnS000830595t15
scaffold830595 . CDS 1053841 1053925 . + 1 ID=TnS000830595t15.cds2;Name=TnS000830595t15.cds2;Parent=TnS000830595t15
scaffold830595 . exon 1054017 1054124 . + . ID=TnS000830595t15.exon3;Name=TnS000830595t15.exon3;Parent=TnS000830595t15
scaffold830595 . CDS 1054017 1054124 . + 0 ID=TnS000830595t15.cds3;Name=TnS000830595t15.cds3;Parent=TnS000830595t15
scaffold830595 . exon 1064317 1064507 . + . ID=TnS000830595t15.exon4;Name=TnS000830595t15.exon4;Parent=TnS000830595t15
scaffold830595 . CDS 1064317 1064507 . + 0 ID=TnS000830595t15.cds4;Name=TnS000830595t15.cds4;Parent=TnS000830595t15
scaffold830595 . exon 1069158 1069353 . + . ID=TnS000830595t15.exon5;Name=TnS000830595t15.exon5;Parent=TnS000830595t15
scaffold830595 . CDS 1069158 1069353 . + 1 ID=TnS000830595t15.cds5;Name=TnS000830595t15.cds5;Parent=TnS000830595t15
scaffold830595 . exon 1079083 1079340 . + . ID=TnS000830595t15.exon6;Name=TnS000830595t15.exon6;Parent=TnS000830595t15
scaffold830595 . CDS 1079083 1079340 . + 0 ID=TnS000830595t15.cds6;Name=TnS000830595t15.cds6;Parent=TnS000830595t15
scaffold830595 . exon 1079458 1079598 . + . ID=TnS000830595t15.exon7;Name=TnS000830595t15.exon7;Parent=TnS000830595t15
scaffold830595 . CDS 1079458 1079598 . + 0 ID=TnS000830595t15.cds7;Name=TnS000830595t15.cds7;Parent=TnS000830595t15
scaffold830595 . exon 1079890 1079965 . + . ID=TnS000830595t15.exon8;Name=TnS000830595t15.exon8;Parent=TnS000830595t15
scaffold830595 . CDS 1079890 1079965 . + 0 ID=TnS000830595t15.cds8;Name=TnS000830595t15.cds8;Parent=TnS000830595t15
scaffold830595 . exon 1083147 1083260 . + . ID=TnS000830595t15.exon9;Name=TnS000830595t15.exon9;Parent=TnS000830595t15
scaffold830595 . CDS 1083147 1083260 . + 2 ID=TnS000830595t15.cds9;Name=TnS000830595t15.cds9;Parent=TnS000830595t15
scaffold830595 . exon 1083453 1083604 . + . ID=TnS000830595t15.exon10;Name=TnS000830595t15.exon10;Parent=TnS000830595t15
scaffold830595 . CDS 1083453 1083604 . + 2 ID=TnS000830595t15.cds10;Name=TnS000830595t15.cds10;Parent=TnS000830595t15
scaffold830595 . exon 1089499 1089617 . + . ID=TnS000830595t15.exon11;Name=TnS000830595t15.exon11;Parent=TnS000830595t15
scaffold830595 . CDS 1089499 1089617 . + 0 ID=TnS000830595t15.cds11;Name=TnS000830595t15.cds11;Parent=TnS000830595t15
scaffold830595 . exon 1092810 1092939 . + . ID=TnS000830595t15.exon12;Name=TnS000830595t15.exon12;Parent=TnS000830595t15
scaffold830595 . CDS 1092810 1092939 . + 1 ID=TnS000830595t15.cds12;Name=TnS000830595t15.cds12;Parent=TnS000830595t15
scaffold830595 . exon 1093035 1093106 . + . ID=TnS000830595t15.exon13;Name=TnS000830595t15.exon13;Parent=TnS000830595t15
scaffold830595 . CDS 1093035 1093106 . + 0 ID=TnS000830595t15.cds13;Name=TnS000830595t15.cds13;Parent=TnS000830595t15
scaffold830595 . exon 1097627 1097744 . + . ID=TnS000830595t15.exon14;Name=TnS000830595t15.exon14;Parent=TnS000830595t15
scaffold830595 . CDS 1097627 1097744 . + 0 ID=TnS000830595t15.cds14;Name=TnS000830595t15.cds14;Parent=TnS000830595t15
scaffold830595 . exon 1097845 1097959 . + . ID=TnS000830595t15.exon15;Name=TnS000830595t15.exon15;Parent=TnS000830595t15
scaffold830595 . CDS 1097845 1097959 . + 2 ID=TnS000830595t15.cds15;Name=TnS000830595t15.cds15;Parent=TnS000830595t15
scaffold830595 . exon 1098443 1098633 . + . ID=TnS000830595t15.exon16;Name=TnS000830595t15.exon16;Parent=TnS000830595t15
scaffold830595 . CDS 1098443 1098633 . + 1 ID=TnS000830595t15.cds16;Name=TnS000830595t15.cds16;Parent=TnS000830595t15
scaffold830595 . exon 1098706 1098818 . + . ID=TnS000830595t15.exon17;Name=TnS000830595t15.exon17;Parent=TnS000830595t15
scaffold830595 . CDS 1098706 1098818 . + 2 ID=TnS000830595t15.cds17;Name=TnS000830595t15.cds17;Parent=TnS000830595t15
scaffold830595 . exon 1098922 1099446 . + . ID=TnS000830595t15.exon18;Name=TnS000830595t15.exon18;Parent=TnS000830595t15
scaffold830595 . CDS 1098922 1099200 . + 0 ID=TnS000830595t15.cds18;Name=TnS000830595t15.cds18;Parent=TnS000830595t15
scaffold830595 . three_prime_UTR 1099201 1099446 . + . ID=TnS000830595t15.utr3p1;Name=TnS000830595t15.utr3p1;Parent=TnS000830595t15
scaffold830595 . gene 1135227 1141175 . - . ID=TnS000830595g18;Name=TnS000830595g18
scaffold830595 . mRNA 1135227 1141175 . - . ID=TnS000830595t18;Name=TnS000830595t18;Parent=TnS000830595g18
scaffold830595 . five_prime_UTR 1140994 1141175 . - . ID=TnS000830595t18.utr5p1;Name=TnS000830595t18.utr5p1;Parent=TnS000830595t18
scaffold830595 . five_prime_UTR 1138687 1138695 . - . ID=TnS000830595t18.utr5p2;Name=TnS000830595t18.utr5p2;Parent=TnS000830595t18
scaffold830595 . exon 1140994 1141175 . - . ID=TnS000830595t18.exon1;Name=TnS000830595t18.exon1;Parent=TnS000830595t18
scaffold830595 . exon 1138534 1138695 . - . ID=TnS000830595t18.exon2;Name=TnS000830595t18.exon2;Parent=TnS000830595t18
scaffold830595 . CDS 1138534 1138686 . - 0 ID=TnS000830595t18.cds1;Name=TnS000830595t18.cds1;Parent=TnS000830595t18
scaffold830595 . exon 1135758 1135844 . - . ID=TnS000830595t18.exon3;Name=TnS000830595t18.exon3;Parent=TnS000830595t18
scaffold830595 . CDS 1135758 1135844 . - 0 ID=TnS000830595t18.cds2;Name=TnS000830595t18.cds2;Parent=TnS000830595t18
scaffold830595 . exon 1135227 1135669 . - . ID=TnS000830595t18.exon4;Name=TnS000830595t18.exon4;Parent=TnS000830595t18
scaffold830595 . CDS 1135574 1135669 . - 0 ID=TnS000830595t18.cds3;Name=TnS000830595t18.cds3;Parent=TnS000830595t18
scaffold830595 . three_prime_UTR 1135227 1135573 . - . ID=TnS000830595t18.utr3p1;Name=TnS000830595t18.utr3p1;Parent=TnS000830595t18
scaffold830595 . gene 259367 262000 . + . ID=TnS000830595g05;Name=TnS000830595g05
scaffold830595 . mRNA 259367 262000 . + . ID=TnS000830595t05;Name=TnS000830595t05;Parent=TnS000830595g05
scaffold830595 . five_prime_UTR 259367 259598 . + . ID=TnS000830595t05.utr5p1;Name=TnS000830595t05.utr5p1;Parent=TnS000830595t05
scaffold830595 . exon 259367 259800 . + . ID=TnS000830595t05.exon1;Name=TnS000830595t05.exon1;Parent=TnS000830595t05
scaffold830595 . CDS 259599 259800 . + 0 ID=TnS000830595t05.cds1;Name=TnS000830595t05.cds1;Parent=TnS000830595t05
scaffold830595 . exon 260223 260272 . + . ID=TnS000830595t05.exon2;Name=TnS000830595t05.exon2;Parent=TnS000830595t05
scaffold830595 . CDS 260223 260272 . + 2 ID=TnS000830595t05.cds2;Name=TnS000830595t05.cds2;Parent=TnS000830595t05
scaffold830595 . exon 260819 262000 . + . ID=TnS000830595t05.exon3;Name=TnS000830595t05.exon3;Parent=TnS000830595t05
scaffold830595 . CDS 260819 261727 . + 0 ID=TnS000830595t05.cds3;Name=TnS000830595t05.cds3;Parent=TnS000830595t05
scaffold830595 . three_prime_UTR 261728 262000 . + . ID=TnS000830595t05.utr3p1;Name=TnS000830595t05.utr3p1;Parent=TnS000830595t05
scaffold830595 EVM gene 926351 927230 . + . ID=TnS000830595g14;Name=TnS000830595g14
scaffold830595 EVM mRNA 926351 927230 . + . ID=TnS000830595t14;Name=TnS000830595t14;Parent=TnS000830595g14
scaffold830595 EVM exon 926351 927152 . + . ID=TnS000830595t14.exon1;Name=TnS000830595t14.exon1;Parent=TnS000830595t14
scaffold830595 EVM CDS 926351 927152 . + 0 ID=TnS000830595t14.cds1;Name=TnS000830595t14.cds1;Parent=TnS000830595t14
scaffold830595 EVM exon 927178 927230 . + . ID=TnS000830595t14.exon2;Name=TnS000830595t14.exon2;Parent=TnS000830595t14
scaffold830595 EVM CDS 927178 927230 . + 1 ID=TnS000830595t14.cds2;Name=TnS000830595t14.cds2;Parent=TnS000830595t14
scaffold830595 EVM gene 426695 427108 . + . ID=TnS000830595g07;Name=TnS000830595g07
scaffold830595 EVM mRNA 426695 427108 . + . ID=TnS000830595t07;Name=TnS000830595t07;Parent=TnS000830595g07
scaffold830595 EVM exon 426695 427108 . + . ID=TnS000830595t07.exon1;Name=TnS000830595t07.exon1;Parent=TnS000830595t07
scaffold830595 EVM CDS 426695 427108 . + 0 ID=TnS000830595t07.cds1;Name=TnS000830595t07.cds1;Parent=TnS000830595t07
scaffold989535 . gene 1815471 1818079 . + . ID=TnS000989535g13;Name=TnS000989535g13
scaffold989535 . mRNA 1815471 1818079 . + . ID=TnS000989535t13;Name=TnS000989535t13;Parent=TnS000989535g13
scaffold989535 . exon 1815471 1816914 . + . ID=TnS000989535t13.exon1;Name=TnS000989535t13.exon1;Parent=TnS000989535t13
scaffold989535 . CDS 1815471 1816914 . + 0 ID=TnS000989535t13.cds1;Name=TnS000989535t13.cds1;Parent=TnS000989535t13
scaffold989535 . exon 1817158 1818079 . + . ID=TnS000989535t13.exon2;Name=TnS000989535t13.exon2;Parent=TnS000989535t13
scaffold989535 . CDS 1817158 1817726 . + 2 ID=TnS000989535t13.cds2;Name=TnS000989535t13.cds2;Parent=TnS000989535t13
scaffold989535 . three_prime_UTR 1817727 1818079 . + . ID=TnS000989535t13.utr3p1;Name=TnS000989535t13.utr3p1;Parent=TnS000989535t13
scaffold989535 . gene 307364 327541 . - . ID=TnS000989535g04;Name=TnS000989535g04
scaffold989535 . mRNA 307364 327541 . - . ID=TnS000989535t04;Name=TnS000989535t04;Parent=TnS000989535g04
scaffold989535 . five_prime_UTR 327222 327541 . - . ID=TnS000989535t04.utr5p1;Name=TnS000989535t04.utr5p1;Parent=TnS000989535t04
scaffold989535 . exon 327153 327541 . - . ID=TnS000989535t04.exon1;Name=TnS000989535t04.exon1;Parent=TnS000989535t04
scaffold989535 . CDS 327153 327221 . - 0 ID=TnS000989535t04.cds1;Name=TnS000989535t04.cds1;Parent=TnS000989535t04
scaffold989535 . exon 326934 326991 . - . ID=TnS000989535t04.exon2;Name=TnS000989535t04.exon2;Parent=TnS000989535t04
scaffold989535 . CDS 326934 326991 . - 0 ID=TnS000989535t04.cds2;Name=TnS000989535t04.cds2;Parent=TnS000989535t04
scaffold989535 . exon 325652 325898 . - . ID=TnS000989535t04.exon3;Name=TnS000989535t04.exon3;Parent=TnS000989535t04
scaffold989535 . CDS 325652 325898 . - 2 ID=TnS000989535t04.cds3;Name=TnS000989535t04.cds3;Parent=TnS000989535t04
scaffold989535 . exon 325201 325502 . - . ID=TnS000989535t04.exon4;Name=TnS000989535t04.exon4;Parent=TnS000989535t04
scaffold989535 . CDS 325201 325502 . - 1 ID=TnS000989535t04.cds4;Name=TnS000989535t04.cds4;Parent=TnS000989535t04
scaffold989535 . exon 308459 308685 . - . ID=TnS000989535t04.exon5;Name=TnS000989535t04.exon5;Parent=TnS000989535t04
scaffold989535 . CDS 308459 308685 . - 2 ID=TnS000989535t04.cds5;Name=TnS000989535t04.cds5;Parent=TnS000989535t04
scaffold989535 . exon 308194 308261 . - . ID=TnS000989535t04.exon6;Name=TnS000989535t04.exon6;Parent=TnS000989535t04
scaffold989535 . CDS 308194 308261 . - 0 ID=TnS000989535t04.cds6;Name=TnS000989535t04.cds6;Parent=TnS000989535t04
scaffold989535 . exon 308039 308100 . - . ID=TnS000989535t04.exon7;Name=TnS000989535t04.exon7;Parent=TnS000989535t04
scaffold989535 . CDS 308039 308100 . - 1 ID=TnS000989535t04.cds7;Name=TnS000989535t04.cds7;Parent=TnS000989535t04
scaffold989535 . exon 307364 307911 . - . ID=TnS000989535t04.exon8;Name=TnS000989535t04.exon8;Parent=TnS000989535t04
scaffold989535 . CDS 307850 307911 . - 2 ID=TnS000989535t04.cds8;Name=TnS000989535t04.cds8;Parent=TnS000989535t04
scaffold989535 . three_prime_UTR 307364 307849 . - . ID=TnS000989535t04.utr3p1;Name=TnS000989535t04.utr3p1;Parent=TnS000989535t04
scaffold989535 . gene 1504362 1505334 . - . ID=TnS000989535g11;Name=TnS000989535g11
scaffold989535 . mRNA 1504362 1505334 . - . ID=TnS000989535t11;Name=TnS000989535t11;Parent=TnS000989535g11
scaffold989535 . five_prime_UTR 1504783 1505334 . - . ID=TnS000989535t11.utr5p1;Name=TnS000989535t11.utr5p1;Parent=TnS000989535t11
scaffold989535 . exon 1504362 1505334 . - . ID=TnS000989535t11.exon1;Name=TnS000989535t11.exon1;Parent=TnS000989535t11
scaffold989535 . CDS 1504582 1504782 . - 0 ID=TnS000989535t11.cds1;Name=TnS000989535t11.cds1;Parent=TnS000989535t11
scaffold989535 . three_prime_UTR 1504362 1504581 . - . ID=TnS000989535t11.utr3p1;Name=TnS000989535t11.utr3p1;Parent=TnS000989535t11
scaffold989535 EVM gene 162877 164103 . + . ID=TnS000989535g02;Name=TnS000989535g02
scaffold989535 EVM mRNA 162877 164103 . + . ID=TnS000989535t02;Name=TnS000989535t02;Parent=TnS000989535g02
scaffold989535 EVM exon 162877 164103 . + . ID=TnS000989535t02.exon1;Name=TnS000989535t02.exon1;Parent=TnS000989535t02
scaffold989535 EVM CDS 162877 164103 . + 0 ID=TnS000989535t02.cds1;Name=TnS000989535t02.cds1;Parent=TnS000989535t02
scaffold989535 . gene 1575739 1610413 . - . ID=TnS000989535g12;Name=TnS000989535g12
scaffold989535 . mRNA 1575739 1610413 . - . ID=TnS000989535t12;Name=TnS000989535t12;Parent=TnS000989535g12
scaffold989535 . five_prime_UTR 1609776 1610413 . - . ID=TnS000989535t12.utr5p1;Name=TnS000989535t12.utr5p1;Parent=TnS000989535t12
scaffold989535 . exon 1609489 1610413 . - . ID=TnS000989535t12.exon1;Name=TnS000989535t12.exon1;Parent=TnS000989535t12
scaffold989535 . CDS 1609489 1609775 . - 0 ID=TnS000989535t12.cds1;Name=TnS000989535t12.cds1;Parent=TnS000989535t12
scaffold989535 . exon 1607056 1607153 . - . ID=TnS000989535t12.exon2;Name=TnS000989535t12.exon2;Parent=TnS000989535t12
scaffold989535 . CDS 1607056 1607153 . - 1 ID=TnS000989535t12.cds2;Name=TnS000989535t12.cds2;Parent=TnS000989535t12
scaffold989535 . exon 1603445 1603534 . - . ID=TnS000989535t12.exon3;Name=TnS000989535t12.exon3;Parent=TnS000989535t12
scaffold989535 . CDS 1603445 1603534 . - 2 ID=TnS000989535t12.cds3;Name=TnS000989535t12.cds3;Parent=TnS000989535t12
scaffold989535 . exon 1594903 1594955 . - . ID=TnS000989535t12.exon4;Name=TnS000989535t12.exon4;Parent=TnS000989535t12
scaffold989535 . CDS 1594903 1594955 . - 2 ID=TnS000989535t12.cds4;Name=TnS000989535t12.cds4;Parent=TnS000989535t12
scaffold989535 . exon 1592045 1592110 . - . ID=TnS000989535t12.exon5;Name=TnS000989535t12.exon5;Parent=TnS000989535t12
scaffold989535 . CDS 1592045 1592110 . - 0 ID=TnS000989535t12.cds5;Name=TnS000989535t12.cds5;Parent=TnS000989535t12
scaffold989535 . exon 1591919 1591972 . - . ID=TnS000989535t12.exon6;Name=TnS000989535t12.exon6;Parent=TnS000989535t12
scaffold989535 . CDS 1591919 1591972 . - 0 ID=TnS000989535t12.cds6;Name=TnS000989535t12.cds6;Parent=TnS000989535t12
scaffold989535 . exon 1590321 1590380 . - . ID=TnS000989535t12.exon7;Name=TnS000989535t12.exon7;Parent=TnS000989535t12
scaffold989535 . CDS 1590321 1590380 . - 0 ID=TnS000989535t12.cds7;Name=TnS000989535t12.cds7;Parent=TnS000989535t12
scaffold989535 . exon 1589266 1589344 . - . ID=TnS000989535t12.exon8;Name=TnS000989535t12.exon8;Parent=TnS000989535t12
scaffold989535 . CDS 1589266 1589344 . - 0 ID=TnS000989535t12.cds8;Name=TnS000989535t12.cds8;Parent=TnS000989535t12
scaffold989535 . exon 1588914 1588981 . - . ID=TnS000989535t12.exon9;Name=TnS000989535t12.exon9;Parent=TnS000989535t12
scaffold989535 . CDS 1588914 1588981 . - 2 ID=TnS000989535t12.cds9;Name=TnS000989535t12.cds9;Parent=TnS000989535t12
scaffold989535 . exon 1587568 1587624 . - . ID=TnS000989535t12.exon10;Name=TnS000989535t12.exon10;Parent=TnS000989535t12
scaffold989535 . CDS 1587568 1587624 . - 0 ID=TnS000989535t12.cds10;Name=TnS000989535t12.cds10;Parent=TnS000989535t12
scaffold989535 . exon 1587318 1587422 . - . ID=TnS000989535t12.exon11;Name=TnS000989535t12.exon11;Parent=TnS000989535t12
scaffold989535 . CDS 1587318 1587422 . - 0 ID=TnS000989535t12.cds11;Name=TnS000989535t12.cds11;Parent=TnS000989535t12
scaffold989535 . exon 1587082 1587186 . - . ID=TnS000989535t12.exon12;Name=TnS000989535t12.exon12;Parent=TnS000989535t12
scaffold989535 . CDS 1587082 1587186 . - 0 ID=TnS000989535t12.cds12;Name=TnS000989535t12.cds12;Parent=TnS000989535t12
scaffold989535 . exon 1586817 1586924 . - . ID=TnS000989535t12.exon13;Name=TnS000989535t12.exon13;Parent=TnS000989535t12
scaffold989535 . CDS 1586817 1586924 . - 0 ID=TnS000989535t12.cds13;Name=TnS000989535t12.cds13;Parent=TnS000989535t12
scaffold989535 . exon 1586586 1586732 . - . ID=TnS000989535t12.exon14;Name=TnS000989535t12.exon14;Parent=TnS000989535t12
scaffold989535 . CDS 1586586 1586732 . - 0 ID=TnS000989535t12.cds14;Name=TnS000989535t12.cds14;Parent=TnS000989535t12
scaffold989535 . exon 1585578 1585760 . - . ID=TnS000989535t12.exon15;Name=TnS000989535t12.exon15;Parent=TnS000989535t12
scaffold989535 . CDS 1585578 1585760 . - 0 ID=TnS000989535t12.cds15;Name=TnS000989535t12.cds15;Parent=TnS000989535t12
scaffold989535 . exon 1585127 1585291 . - . ID=TnS000989535t12.exon16;Name=TnS000989535t12.exon16;Parent=TnS000989535t12
scaffold989535 . CDS 1585127 1585291 . - 0 ID=TnS000989535t12.cds16;Name=TnS000989535t12.cds16;Parent=TnS000989535t12
scaffold989535 . exon 1584060 1584296 . - . ID=TnS000989535t12.exon17;Name=TnS000989535t12.exon17;Parent=TnS000989535t12
scaffold989535 . CDS 1584060 1584296 . - 0 ID=TnS000989535t12.cds17;Name=TnS000989535t12.cds17;Parent=TnS000989535t12
scaffold989535 . exon 1583253 1583393 . - . ID=TnS000989535t12.exon18;Name=TnS000989535t12.exon18;Parent=TnS000989535t12
scaffold989535 . CDS 1583253 1583393 . - 0 ID=TnS000989535t12.cds18;Name=TnS000989535t12.cds18;Parent=TnS000989535t12
scaffold989535 . exon 1583027 1583152 . - . ID=TnS000989535t12.exon19;Name=TnS000989535t12.exon19;Parent=TnS000989535t12
scaffold989535 . CDS 1583027 1583152 . - 0 ID=TnS000989535t12.cds19;Name=TnS000989535t12.cds19;Parent=TnS000989535t12
scaffold989535 . exon 1582874 1582924 . - . ID=TnS000989535t12.exon20;Name=TnS000989535t12.exon20;Parent=TnS000989535t12
scaffold989535 . CDS 1582874 1582924 . - 0 ID=TnS000989535t12.cds20;Name=TnS000989535t12.cds20;Parent=TnS000989535t12
scaffold989535 . exon 1582674 1582721 . - . ID=TnS000989535t12.exon21;Name=TnS000989535t12.exon21;Parent=TnS000989535t12
scaffold989535 . CDS 1582674 1582721 . - 0 ID=TnS000989535t12.cds21;Name=TnS000989535t12.cds21;Parent=TnS000989535t12
scaffold989535 . exon 1582340 1582579 . - . ID=TnS000989535t12.exon22;Name=TnS000989535t12.exon22;Parent=TnS000989535t12
scaffold989535 . CDS 1582340 1582579 . - 0 ID=TnS000989535t12.cds22;Name=TnS000989535t12.cds22;Parent=TnS000989535t12
scaffold989535 . exon 1581470 1582195 . - . ID=TnS000989535t12.exon23;Name=TnS000989535t12.exon23;Parent=TnS000989535t12
scaffold989535 . CDS 1581470 1582195 . - 0 ID=TnS000989535t12.cds23;Name=TnS000989535t12.cds23;Parent=TnS000989535t12
scaffold989535 . exon 1580647 1580736 . - . ID=TnS000989535t12.exon24;Name=TnS000989535t12.exon24;Parent=TnS000989535t12
scaffold989535 . CDS 1580647 1580736 . - 0 ID=TnS000989535t12.cds24;Name=TnS000989535t12.cds24;Parent=TnS000989535t12
scaffold989535 . exon 1579572 1579716 . - . ID=TnS000989535t12.exon25;Name=TnS000989535t12.exon25;Parent=TnS000989535t12
scaffold989535 . CDS 1579572 1579716 . - 0 ID=TnS000989535t12.cds25;Name=TnS000989535t12.cds25;Parent=TnS000989535t12
scaffold989535 . exon 1579372 1579458 . - . ID=TnS000989535t12.exon26;Name=TnS000989535t12.exon26;Parent=TnS000989535t12
scaffold989535 . CDS 1579376 1579458 . - 2 ID=TnS000989535t12.cds26;Name=TnS000989535t12.cds26;Parent=TnS000989535t12
scaffold989535 . exon 1578139 1578282 . - . ID=TnS000989535t12.exon27;Name=TnS000989535t12.exon27;Parent=TnS000989535t12
scaffold989535 . exon 1576149 1576198 . - . ID=TnS000989535t12.exon28;Name=TnS000989535t12.exon28;Parent=TnS000989535t12
scaffold989535 . exon 1575739 1576054 . - . ID=TnS000989535t12.exon29;Name=TnS000989535t12.exon29;Parent=TnS000989535t12
scaffold989535 . three_prime_UTR 1579372 1579375 . - . ID=TnS000989535t12.utr3p1;Name=TnS000989535t12.utr3p1;Parent=TnS000989535t12
scaffold989535 . three_prime_UTR 1578139 1578282 . - . ID=TnS000989535t12.utr3p2;Name=TnS000989535t12.utr3p2;Parent=TnS000989535t12
scaffold989535 . three_prime_UTR 1576149 1576198 . - . ID=TnS000989535t12.utr3p3;Name=TnS000989535t12.utr3p3;Parent=TnS000989535t12
scaffold989535 . three_prime_UTR 1575739 1576054 . - . ID=TnS000989535t12.utr3p4;Name=TnS000989535t12.utr3p4;Parent=TnS000989535t12
scaffold989535 EVM gene 725064 726104 . - . ID=TnS000989535g07;Name=TnS000989535g07
scaffold989535 EVM mRNA 725064 726104 . - . ID=TnS000989535t07;Name=TnS000989535t07;Parent=TnS000989535g07
scaffold989535 EVM exon 726085 726104 . - . ID=TnS000989535t07.exon1;Name=TnS000989535t07.exon1;Parent=TnS000989535t07
scaffold989535 EVM CDS 726085 726104 . - 0 ID=TnS000989535t07.cds1;Name=TnS000989535t07.cds1;Parent=TnS000989535t07
scaffold989535 EVM exon 725738 725978 . - . ID=TnS000989535t07.exon2;Name=TnS000989535t07.exon2;Parent=TnS000989535t07
scaffold989535 EVM CDS 725738 725978 . - 2 ID=TnS000989535t07.cds2;Name=TnS000989535t07.cds2;Parent=TnS000989535t07
scaffold989535 EVM exon 725064 725192 . - . ID=TnS000989535t07.exon3;Name=TnS000989535t07.exon3;Parent=TnS000989535t07
scaffold989535 EVM CDS 725064 725192 . - 0 ID=TnS000989535t07.cds3;Name=TnS000989535t07.cds3;Parent=TnS000989535t07
scaffold989535 EVM gene 73068 74901 . - . ID=TnS000989535g01;Name=TnS000989535g01
scaffold989535 EVM mRNA 73068 74901 . - . ID=TnS000989535t01;Name=TnS000989535t01;Parent=TnS000989535g01
scaffold989535 EVM exon 74771 74901 . - . ID=TnS000989535t01.exon1;Name=TnS000989535t01.exon1;Parent=TnS000989535t01
scaffold989535 EVM CDS 74771 74901 . - 0 ID=TnS000989535t01.cds1;Name=TnS000989535t01.cds1;Parent=TnS000989535t01
scaffold989535 EVM exon 74104 74225 . - . ID=TnS000989535t01.exon2;Name=TnS000989535t01.exon2;Parent=TnS000989535t01
scaffold989535 EVM CDS 74104 74225 . - 2 ID=TnS000989535t01.cds2;Name=TnS000989535t01.cds2;Parent=TnS000989535t01
scaffold989535 EVM exon 73700 73950 . - . ID=TnS000989535t01.exon3;Name=TnS000989535t01.exon3;Parent=TnS000989535t01
scaffold989535 EVM CDS 73700 73950 . - 1 ID=TnS000989535t01.cds3;Name=TnS000989535t01.cds3;Parent=TnS000989535t01
scaffold989535 EVM exon 73534 73631 . - . ID=TnS000989535t01.exon4;Name=TnS000989535t01.exon4;Parent=TnS000989535t01
scaffold989535 EVM CDS 73534 73631 . - 0 ID=TnS000989535t01.cds4;Name=TnS000989535t01.cds4;Parent=TnS000989535t01
scaffold989535 EVM exon 73358 73450 . - . ID=TnS000989535t01.exon5;Name=TnS000989535t01.exon5;Parent=TnS000989535t01
scaffold989535 EVM CDS 73358 73450 . - 2 ID=TnS000989535t01.cds5;Name=TnS000989535t01.cds5;Parent=TnS000989535t01
scaffold989535 EVM exon 73068 73283 . - . ID=TnS000989535t01.exon6;Name=TnS000989535t01.exon6;Parent=TnS000989535t01
scaffold989535 EVM CDS 73068 73283 . - 2 ID=TnS000989535t01.cds6;Name=TnS000989535t01.cds6;Parent=TnS000989535t01
scaffold989535 EVM gene 726107 910937 . - . ID=TnS000989535g08;Name=TnS000989535g08
scaffold989535 EVM mRNA 726107 910937 . - . ID=TnS000989535t08;Name=TnS000989535t08;Parent=TnS000989535g08
scaffold989535 EVM exon 910827 910937 . - . ID=TnS000989535t08.exon1;Name=TnS000989535t08.exon1;Parent=TnS000989535t08
scaffold989535 EVM CDS 910827 910937 . - 0 ID=TnS000989535t08.cds1;Name=TnS000989535t08.cds1;Parent=TnS000989535t08
scaffold989535 EVM exon 910601 910721 . - . ID=TnS000989535t08.exon2;Name=TnS000989535t08.exon2;Parent=TnS000989535t08
scaffold989535 EVM CDS 910601 910721 . - 0 ID=TnS000989535t08.cds2;Name=TnS000989535t08.cds2;Parent=TnS000989535t08
scaffold989535 EVM exon 910412 910505 . - . ID=TnS000989535t08.exon3;Name=TnS000989535t08.exon3;Parent=TnS000989535t08
scaffold989535 EVM CDS 910412 910505 . - 1 ID=TnS000989535t08.cds3;Name=TnS000989535t08.cds3;Parent=TnS000989535t08
scaffold989535 EVM exon 902296 902406 . - . ID=TnS000989535t08.exon4;Name=TnS000989535t08.exon4;Parent=TnS000989535t08
scaffold989535 EVM CDS 902296 902406 . - 2 ID=TnS000989535t08.cds4;Name=TnS000989535t08.cds4;Parent=TnS000989535t08
scaffold989535 EVM exon 750716 750869 . - . ID=TnS000989535t08.exon5;Name=TnS000989535t08.exon5;Parent=TnS000989535t08
scaffold989535 EVM CDS 750716 750869 . - 2 ID=TnS000989535t08.cds5;Name=TnS000989535t08.cds5;Parent=TnS000989535t08
scaffold989535 EVM exon 750559 750597 . - . ID=TnS000989535t08.exon6;Name=TnS000989535t08.exon6;Parent=TnS000989535t08
scaffold989535 EVM CDS 750559 750597 . - 0 ID=TnS000989535t08.cds6;Name=TnS000989535t08.cds6;Parent=TnS000989535t08
scaffold989535 EVM exon 750392 750466 . - . ID=TnS000989535t08.exon7;Name=TnS000989535t08.exon7;Parent=TnS000989535t08
scaffold989535 EVM CDS 750392 750466 . - 0 ID=TnS000989535t08.cds7;Name=TnS000989535t08.cds7;Parent=TnS000989535t08
scaffold989535 EVM exon 727036 727095 . - . ID=TnS000989535t08.exon8;Name=TnS000989535t08.exon8;Parent=TnS000989535t08
scaffold989535 EVM CDS 727036 727095 . - 0 ID=TnS000989535t08.cds8;Name=TnS000989535t08.cds8;Parent=TnS000989535t08
scaffold989535 EVM exon 726804 726868 . - . ID=TnS000989535t08.exon9;Name=TnS000989535t08.exon9;Parent=TnS000989535t08
scaffold989535 EVM CDS 726804 726868 . - 0 ID=TnS000989535t08.cds9;Name=TnS000989535t08.cds9;Parent=TnS000989535t08
scaffold989535 EVM exon 726276 726366 . - . ID=TnS000989535t08.exon10;Name=TnS000989535t08.exon10;Parent=TnS000989535t08
scaffold989535 EVM CDS 726276 726366 . - 2 ID=TnS000989535t08.cds10;Name=TnS000989535t08.cds10;Parent=TnS000989535t08
scaffold989535 EVM exon 726107 726169 . - . ID=TnS000989535t08.exon11;Name=TnS000989535t08.exon11;Parent=TnS000989535t08
scaffold989535 EVM CDS 726107 726169 . - 0 ID=TnS000989535t08.cds11;Name=TnS000989535t08.cds11;Parent=TnS000989535t08
scaffold989535 . gene 247609 254719 . - . ID=TnS000989535g03;Name=TnS000989535g03
scaffold989535 . mRNA 247609 254719 . - . ID=TnS000989535t03;Name=TnS000989535t03;Parent=TnS000989535g03
scaffold989535 . five_prime_UTR 254207 254719 . - . ID=TnS000989535t03.utr5p1;Name=TnS000989535t03.utr5p1;Parent=TnS000989535t03
scaffold989535 . five_prime_UTR 253943 254091 . - . ID=TnS000989535t03.utr5p2;Name=TnS000989535t03.utr5p2;Parent=TnS000989535t03
scaffold989535 . exon 254207 254719 . - . ID=TnS000989535t03.exon1;Name=TnS000989535t03.exon1;Parent=TnS000989535t03
scaffold989535 . exon 253865 254091 . - . ID=TnS000989535t03.exon2;Name=TnS000989535t03.exon2;Parent=TnS000989535t03
scaffold989535 . CDS 253865 253942 . - 0 ID=TnS000989535t03.cds1;Name=TnS000989535t03.cds1;Parent=TnS000989535t03
scaffold989535 . exon 252989 253095 . - . ID=TnS000989535t03.exon3;Name=TnS000989535t03.exon3;Parent=TnS000989535t03
scaffold989535 . CDS 252989 253095 . - 0 ID=TnS000989535t03.cds2;Name=TnS000989535t03.cds2;Parent=TnS000989535t03
scaffold989535 . exon 252462 252594 . - . ID=TnS000989535t03.exon4;Name=TnS000989535t03.exon4;Parent=TnS000989535t03
scaffold989535 . CDS 252462 252594 . - 1 ID=TnS000989535t03.cds3;Name=TnS000989535t03.cds3;Parent=TnS000989535t03
scaffold989535 . exon 251958 252101 . - . ID=TnS000989535t03.exon5;Name=TnS000989535t03.exon5;Parent=TnS000989535t03
scaffold989535 . CDS 251958 252101 . - 0 ID=TnS000989535t03.cds4;Name=TnS000989535t03.cds4;Parent=TnS000989535t03
scaffold989535 . exon 251393 251551 . - . ID=TnS000989535t03.exon6;Name=TnS000989535t03.exon6;Parent=TnS000989535t03
scaffold989535 . CDS 251393 251551 . - 0 ID=TnS000989535t03.cds5;Name=TnS000989535t03.cds5;Parent=TnS000989535t03
scaffold989535 . exon 250698 250771 . - . ID=TnS000989535t03.exon7;Name=TnS000989535t03.exon7;Parent=TnS000989535t03
scaffold989535 . CDS 250698 250771 . - 0 ID=TnS000989535t03.cds6;Name=TnS000989535t03.cds6;Parent=TnS000989535t03
scaffold989535 . exon 250521 250593 . - . ID=TnS000989535t03.exon8;Name=TnS000989535t03.exon8;Parent=TnS000989535t03
scaffold989535 . CDS 250521 250593 . - 1 ID=TnS000989535t03.cds7;Name=TnS000989535t03.cds7;Parent=TnS000989535t03
scaffold989535 . exon 250354 250409 . - . ID=TnS000989535t03.exon9;Name=TnS000989535t03.exon9;Parent=TnS000989535t03
scaffold989535 . CDS 250354 250409 . - 0 ID=TnS000989535t03.cds8;Name=TnS000989535t03.cds8;Parent=TnS000989535t03
scaffold989535 . exon 249595 249682 . - . ID=TnS000989535t03.exon10;Name=TnS000989535t03.exon10;Parent=TnS000989535t03
scaffold989535 . CDS 249595 249682 . - 1 ID=TnS000989535t03.cds9;Name=TnS000989535t03.cds9;Parent=TnS000989535t03
scaffold989535 . exon 249359 249499 . - . ID=TnS000989535t03.exon11;Name=TnS000989535t03.exon11;Parent=TnS000989535t03
scaffold989535 . CDS 249359 249499 . - 0 ID=TnS000989535t03.cds10;Name=TnS000989535t03.cds10;Parent=TnS000989535t03
scaffold989535 . exon 249122 249271 . - . ID=TnS000989535t03.exon12;Name=TnS000989535t03.exon12;Parent=TnS000989535t03
scaffold989535 . CDS 249122 249271 . - 0 ID=TnS000989535t03.cds11;Name=TnS000989535t03.cds11;Parent=TnS000989535t03
scaffold989535 . exon 247609 248375 . - . ID=TnS000989535t03.exon13;Name=TnS000989535t03.exon13;Parent=TnS000989535t03
scaffold989535 . CDS 248163 248375 . - 0 ID=TnS000989535t03.cds12;Name=TnS000989535t03.cds12;Parent=TnS000989535t03
scaffold989535 . three_prime_UTR 247609 248162 . - . ID=TnS000989535t03.utr3p1;Name=TnS000989535t03.utr3p1;Parent=TnS000989535t03
scaffold989535 . gene 550267 550936 . - . ID=TnS000989535g06;Name=TnS000989535g06
scaffold989535 . mRNA 550267 550936 . - . ID=TnS000989535t06;Name=TnS000989535t06;Parent=TnS000989535g06
scaffold989535 . five_prime_UTR 550915 550936 . - . ID=TnS000989535t06.utr5p1;Name=TnS000989535t06.utr5p1;Parent=TnS000989535t06
scaffold989535 . exon 550267 550936 . - . ID=TnS000989535t06.exon1;Name=TnS000989535t06.exon1;Parent=TnS000989535t06
scaffold989535 . CDS 550351 550914 . - 0 ID=TnS000989535t06.cds1;Name=TnS000989535t06.cds1;Parent=TnS000989535t06
scaffold989535 . three_prime_UTR 550267 550350 . - . ID=TnS000989535t06.utr3p1;Name=TnS000989535t06.utr3p1;Parent=TnS000989535t06
scaffold989535 EVM gene 1015362 1016218 . - . ID=TnS000989535g09;Name=TnS000989535g09
scaffold989535 EVM mRNA 1015362 1016218 . - . ID=TnS000989535t09;Name=TnS000989535t09;Parent=TnS000989535g09
scaffold989535 EVM exon 1016047 1016218 . - . ID=TnS000989535t09.exon1;Name=TnS000989535t09.exon1;Parent=TnS000989535t09
scaffold989535 EVM CDS 1016047 1016218 . - 0 ID=TnS000989535t09.cds1;Name=TnS000989535t09.cds1;Parent=TnS000989535t09
scaffold989535 EVM exon 1015423 1015803 . - . ID=TnS000989535t09.exon2;Name=TnS000989535t09.exon2;Parent=TnS000989535t09
scaffold989535 EVM CDS 1015423 1015803 . - 1 ID=TnS000989535t09.cds2;Name=TnS000989535t09.cds2;Parent=TnS000989535t09
scaffold989535 EVM exon 1015362 1015375 . - . ID=TnS000989535t09.exon3;Name=TnS000989535t09.exon3;Parent=TnS000989535t09
scaffold989535 EVM CDS 1015362 1015375 . - 1 ID=TnS000989535t09.cds3;Name=TnS000989535t09.cds3;Parent=TnS000989535t09
scaffold989535 . gene 410687 413179 . - . ID=TnS000989535g05;Name=TnS000989535g05
scaffold989535 . mRNA 410687 413179 . - . ID=TnS000989535t05;Name=TnS000989535t05;Parent=TnS000989535g05
scaffold989535 . five_prime_UTR 412855 413179 . - . ID=TnS000989535t05.utr5p1;Name=TnS000989535t05.utr5p1;Parent=TnS000989535t05
scaffold989535 . five_prime_UTR 412600 412732 . - . ID=TnS000989535t05.utr5p2;Name=TnS000989535t05.utr5p2;Parent=TnS000989535t05
scaffold989535 . exon 412855 413179 . - . ID=TnS000989535t05.exon1;Name=TnS000989535t05.exon1;Parent=TnS000989535t05
scaffold989535 . exon 412504 412732 . - . ID=TnS000989535t05.exon2;Name=TnS000989535t05.exon2;Parent=TnS000989535t05
scaffold989535 . CDS 412504 412599 . - 0 ID=TnS000989535t05.cds1;Name=TnS000989535t05.cds1;Parent=TnS000989535t05
scaffold989535 . exon 412133 412338 . - . ID=TnS000989535t05.exon3;Name=TnS000989535t05.exon3;Parent=TnS000989535t05
scaffold989535 . CDS 412133 412338 . - 0 ID=TnS000989535t05.cds2;Name=TnS000989535t05.cds2;Parent=TnS000989535t05
scaffold989535 . exon 410687 411442 . - . ID=TnS000989535t05.exon4;Name=TnS000989535t05.exon4;Parent=TnS000989535t05
scaffold989535 . CDS 411136 411442 . - 1 ID=TnS000989535t05.cds3;Name=TnS000989535t05.cds3;Parent=TnS000989535t05
scaffold989535 . three_prime_UTR 410687 411135 . - . ID=TnS000989535t05.utr3p1;Name=TnS000989535t05.utr3p1;Parent=TnS000989535t05
scaffold989535 EVM gene 1227906 1228741 . - . ID=TnS000989535g10;Name=TnS000989535g10
scaffold989535 EVM mRNA 1227906 1228741 . - . ID=TnS000989535t10;Name=TnS000989535t10;Parent=TnS000989535g10
scaffold989535 EVM exon 1228630 1228741 . - . ID=TnS000989535t10.exon1;Name=TnS000989535t10.exon1;Parent=TnS000989535t10
scaffold989535 EVM CDS 1228630 1228741 . - 0 ID=TnS000989535t10.cds1;Name=TnS000989535t10.cds1;Parent=TnS000989535t10
scaffold989535 EVM exon 1227967 1228326 . - . ID=TnS000989535t10.exon2;Name=TnS000989535t10.exon2;Parent=TnS000989535t10
scaffold989535 EVM CDS 1227967 1228326 . - 1 ID=TnS000989535t10.cds2;Name=TnS000989535t10.cds2;Parent=TnS000989535t10
scaffold989535 EVM exon 1227906 1227919 . - . ID=TnS000989535t10.exon3;Name=TnS000989535t10.exon3;Parent=TnS000989535t10
scaffold989535 EVM CDS 1227906 1227919 . - 1 ID=TnS000989535t10.cds3;Name=TnS000989535t10.cds3;Parent=TnS000989535t10
scaffold103297 . gene 1757953 1774986 . - . ID=TnS000103297g12;Name=TnS000103297g12
scaffold103297 . mRNA 1757953 1774986 . - . ID=TnS000103297t12;Name=TnS000103297t12;Parent=TnS000103297g12
scaffold103297 . five_prime_UTR 1774955 1774986 . - . ID=TnS000103297t12.utr5p1;Name=TnS000103297t12.utr5p1;Parent=TnS000103297t12
scaffold103297 . exon 1774610 1774986 . - . ID=TnS000103297t12.exon1;Name=TnS000103297t12.exon1;Parent=TnS000103297t12
scaffold103297 . CDS 1774610 1774954 . - 0 ID=TnS000103297t12.cds1;Name=TnS000103297t12.cds1;Parent=TnS000103297t12
scaffold103297 . exon 1771667 1771834 . - . ID=TnS000103297t12.exon2;Name=TnS000103297t12.exon2;Parent=TnS000103297t12
scaffold103297 . CDS 1771667 1771834 . - 0 ID=TnS000103297t12.cds2;Name=TnS000103297t12.cds2;Parent=TnS000103297t12
scaffold103297 . exon 1771226 1771349 . - . ID=TnS000103297t12.exon3;Name=TnS000103297t12.exon3;Parent=TnS000103297t12
scaffold103297 . CDS 1771226 1771349 . - 0 ID=TnS000103297t12.cds3;Name=TnS000103297t12.cds3;Parent=TnS000103297t12
scaffold103297 . exon 1769743 1769819 . - . ID=TnS000103297t12.exon4;Name=TnS000103297t12.exon4;Parent=TnS000103297t12
scaffold103297 . CDS 1769743 1769819 . - 2 ID=TnS000103297t12.cds4;Name=TnS000103297t12.cds4;Parent=TnS000103297t12
scaffold103297 . exon 1768067 1768210 . - . ID=TnS000103297t12.exon5;Name=TnS000103297t12.exon5;Parent=TnS000103297t12
scaffold103297 . CDS 1768067 1768210 . - 0 ID=TnS000103297t12.cds5;Name=TnS000103297t12.cds5;Parent=TnS000103297t12
scaffold103297 . exon 1767732 1767962 . - . ID=TnS000103297t12.exon6;Name=TnS000103297t12.exon6;Parent=TnS000103297t12
scaffold103297 . CDS 1767732 1767962 . - 0 ID=TnS000103297t12.cds6;Name=TnS000103297t12.cds6;Parent=TnS000103297t12
scaffold103297 . exon 1767562 1767652 . - . ID=TnS000103297t12.exon7;Name=TnS000103297t12.exon7;Parent=TnS000103297t12
scaffold103297 . CDS 1767562 1767652 . - 0 ID=TnS000103297t12.cds7;Name=TnS000103297t12.cds7;Parent=TnS000103297t12
scaffold103297 . exon 1764170 1764291 . - . ID=TnS000103297t12.exon8;Name=TnS000103297t12.exon8;Parent=TnS000103297t12
scaffold103297 . CDS 1764170 1764291 . - 2 ID=TnS000103297t12.cds8;Name=TnS000103297t12.cds8;Parent=TnS000103297t12
scaffold103297 . exon 1763895 1764002 . - . ID=TnS000103297t12.exon9;Name=TnS000103297t12.exon9;Parent=TnS000103297t12
scaffold103297 . CDS 1763895 1764002 . - 0 ID=TnS000103297t12.cds9;Name=TnS000103297t12.cds9;Parent=TnS000103297t12
scaffold103297 . exon 1763544 1763789 . - . ID=TnS000103297t12.exon10;Name=TnS000103297t12.exon10;Parent=TnS000103297t12
scaffold103297 . CDS 1763544 1763789 . - 0 ID=TnS000103297t12.cds10;Name=TnS000103297t12.cds10;Parent=TnS000103297t12
scaffold103297 . exon 1762965 1763110 . - . ID=TnS000103297t12.exon11;Name=TnS000103297t12.exon11;Parent=TnS000103297t12
scaffold103297 . CDS 1762965 1763110 . - 0 ID=TnS000103297t12.cds11;Name=TnS000103297t12.cds11;Parent=TnS000103297t12
scaffold103297 . exon 1762317 1762434 . - . ID=TnS000103297t12.exon12;Name=TnS000103297t12.exon12;Parent=TnS000103297t12
scaffold103297 . CDS 1762317 1762434 . - 1 ID=TnS000103297t12.cds12;Name=TnS000103297t12.cds12;Parent=TnS000103297t12
scaffold103297 . exon 1761866 1762025 . - . ID=TnS000103297t12.exon13;Name=TnS000103297t12.exon13;Parent=TnS000103297t12
scaffold103297 . CDS 1761866 1762025 . - 0 ID=TnS000103297t12.cds13;Name=TnS000103297t12.cds13;Parent=TnS000103297t12
scaffold103297 . exon 1761707 1761738 . - . ID=TnS000103297t12.exon14;Name=TnS000103297t12.exon14;Parent=TnS000103297t12
scaffold103297 . CDS 1761707 1761738 . - 2 ID=TnS000103297t12.cds14;Name=TnS000103297t12.cds14;Parent=TnS000103297t12
scaffold103297 . exon 1761286 1761351 . - . ID=TnS000103297t12.exon15;Name=TnS000103297t12.exon15;Parent=TnS000103297t12
scaffold103297 . CDS 1761286 1761351 . - 0 ID=TnS000103297t12.cds15;Name=TnS000103297t12.cds15;Parent=TnS000103297t12
scaffold103297 . exon 1758738 1758809 . - . ID=TnS000103297t12.exon16;Name=TnS000103297t12.exon16;Parent=TnS000103297t12
scaffold103297 . CDS 1758738 1758809 . - 0 ID=TnS000103297t12.cds16;Name=TnS000103297t12.cds16;Parent=TnS000103297t12
scaffold103297 . exon 1757953 1758567 . - . ID=TnS000103297t12.exon17;Name=TnS000103297t12.exon17;Parent=TnS000103297t12
scaffold103297 . CDS 1758481 1758567 . - 0 ID=TnS000103297t12.cds17;Name=TnS000103297t12.cds17;Parent=TnS000103297t12
scaffold103297 . three_prime_UTR 1757953 1758480 . - . ID=TnS000103297t12.utr3p1;Name=TnS000103297t12.utr3p1;Parent=TnS000103297t12
scaffold103297 EVM gene 1950489 1952968 . + . ID=TnS000103297g16;Name=TnS000103297g16
scaffold103297 EVM mRNA 1950489 1952968 . + . ID=TnS000103297t16;Name=TnS000103297t16;Parent=TnS000103297g16
scaffold103297 EVM exon 1950489 1950525 . + . ID=TnS000103297t16.exon1;Name=TnS000103297t16.exon1;Parent=TnS000103297t16
scaffold103297 EVM CDS 1950489 1950525 . + 0 ID=TnS000103297t16.cds1;Name=TnS000103297t16.cds1;Parent=TnS000103297t16
scaffold103297 EVM exon 1950650 1951152 . + . ID=TnS000103297t16.exon2;Name=TnS000103297t16.exon2;Parent=TnS000103297t16
scaffold103297 EVM CDS 1950650 1951152 . + 1 ID=TnS000103297t16.cds2;Name=TnS000103297t16.cds2;Parent=TnS000103297t16
scaffold103297 EVM exon 1952847 1952968 . + . ID=TnS000103297t16.exon3;Name=TnS000103297t16.exon3;Parent=TnS000103297t16
scaffold103297 EVM CDS 1952847 1952968 . + 0 ID=TnS000103297t16.cds3;Name=TnS000103297t16.cds3;Parent=TnS000103297t16
scaffold103297 . gene 1353295 1368779 . + . ID=TnS000103297g09;Name=TnS000103297g09
scaffold103297 . mRNA 1353295 1368779 . + . ID=TnS000103297t09;Name=TnS000103297t09;Parent=TnS000103297g09
scaffold103297 . five_prime_UTR 1353295 1353739 . + . ID=TnS000103297t09.utr5p1;Name=TnS000103297t09.utr5p1;Parent=TnS000103297t09
scaffold103297 . five_prime_UTR 1367251 1368086 . + . ID=TnS000103297t09.utr5p2;Name=TnS000103297t09.utr5p2;Parent=TnS000103297t09
scaffold103297 . exon 1353295 1353739 . + . ID=TnS000103297t09.exon1;Name=TnS000103297t09.exon1;Parent=TnS000103297t09
scaffold103297 . exon 1367251 1368779 . + . ID=TnS000103297t09.exon2;Name=TnS000103297t09.exon2;Parent=TnS000103297t09
scaffold103297 . CDS 1368087 1368557 . + 0 ID=TnS000103297t09.cds1;Name=TnS000103297t09.cds1;Parent=TnS000103297t09
scaffold103297 . three_prime_UTR 1368558 1368779 . + . ID=TnS000103297t09.utr3p1;Name=TnS000103297t09.utr3p1;Parent=TnS000103297t09
scaffold103297 . gene 1047739 1057143 . - . ID=TnS000103297g05;Name=TnS000103297g05
scaffold103297 . mRNA 1047739 1057143 . - . ID=TnS000103297t05;Name=TnS000103297t05;Parent=TnS000103297g05
scaffold103297 . five_prime_UTR 1057121 1057143 . - . ID=TnS000103297t05.utr5p1;Name=TnS000103297t05.utr5p1;Parent=TnS000103297t05
scaffold103297 . exon 1056700 1057143 . - . ID=TnS000103297t05.exon1;Name=TnS000103297t05.exon1;Parent=TnS000103297t05
scaffold103297 . CDS 1056700 1057120 . - 0 ID=TnS000103297t05.cds1;Name=TnS000103297t05.cds1;Parent=TnS000103297t05
scaffold103297 . exon 1056497 1056611 . - . ID=TnS000103297t05.exon2;Name=TnS000103297t05.exon2;Parent=TnS000103297t05
scaffold103297 . CDS 1056497 1056611 . - 2 ID=TnS000103297t05.cds2;Name=TnS000103297t05.cds2;Parent=TnS000103297t05
scaffold103297 . exon 1055719 1055786 . - . ID=TnS000103297t05.exon3;Name=TnS000103297t05.exon3;Parent=TnS000103297t05
scaffold103297 . CDS 1055719 1055786 . - 1 ID=TnS000103297t05.cds3;Name=TnS000103297t05.cds3;Parent=TnS000103297t05
scaffold103297 . exon 1055488 1055620 . - . ID=TnS000103297t05.exon4;Name=TnS000103297t05.exon4;Parent=TnS000103297t05
scaffold103297 . CDS 1055488 1055620 . - 2 ID=TnS000103297t05.cds4;Name=TnS000103297t05.cds4;Parent=TnS000103297t05
scaffold103297 . exon 1053976 1054075 . - . ID=TnS000103297t05.exon5;Name=TnS000103297t05.exon5;Parent=TnS000103297t05
scaffold103297 . CDS 1053976 1054075 . - 1 ID=TnS000103297t05.cds5;Name=TnS000103297t05.cds5;Parent=TnS000103297t05
scaffold103297 . exon 1053674 1053786 . - . ID=TnS000103297t05.exon6;Name=TnS000103297t05.exon6;Parent=TnS000103297t05
scaffold103297 . CDS 1053674 1053786 . - 0 ID=TnS000103297t05.cds6;Name=TnS000103297t05.cds6;Parent=TnS000103297t05
scaffold103297 . exon 1053381 1053474 . - . ID=TnS000103297t05.exon7;Name=TnS000103297t05.exon7;Parent=TnS000103297t05
scaffold103297 . CDS 1053381 1053474 . - 1 ID=TnS000103297t05.cds7;Name=TnS000103297t05.cds7;Parent=TnS000103297t05
scaffold103297 . exon 1050234 1050387 . - . ID=TnS000103297t05.exon8;Name=TnS000103297t05.exon8;Parent=TnS000103297t05
scaffold103297 . CDS 1050234 1050387 . - 0 ID=TnS000103297t05.cds8;Name=TnS000103297t05.cds8;Parent=TnS000103297t05
scaffold103297 . exon 1049966 1050109 . - . ID=TnS000103297t05.exon9;Name=TnS000103297t05.exon9;Parent=TnS000103297t05
scaffold103297 . CDS 1049966 1050109 . - 2 ID=TnS000103297t05.cds9;Name=TnS000103297t05.cds9;Parent=TnS000103297t05
scaffold103297 . exon 1049798 1049871 . - . ID=TnS000103297t05.exon10;Name=TnS000103297t05.exon10;Parent=TnS000103297t05
scaffold103297 . CDS 1049798 1049871 . - 2 ID=TnS000103297t05.cds10;Name=TnS000103297t05.cds10;Parent=TnS000103297t05
scaffold103297 . exon 1049626 1049714 . - . ID=TnS000103297t05.exon11;Name=TnS000103297t05.exon11;Parent=TnS000103297t05
scaffold103297 . CDS 1049626 1049714 . - 0 ID=TnS000103297t05.cds11;Name=TnS000103297t05.cds11;Parent=TnS000103297t05
scaffold103297 . exon 1048569 1048683 . - . ID=TnS000103297t05.exon12;Name=TnS000103297t05.exon12;Parent=TnS000103297t05
scaffold103297 . CDS 1048569 1048683 . - 1 ID=TnS000103297t05.cds12;Name=TnS000103297t05.cds12;Parent=TnS000103297t05
scaffold103297 . exon 1047739 1048461 . - . ID=TnS000103297t05.exon13;Name=TnS000103297t05.exon13;Parent=TnS000103297t05
scaffold103297 . CDS 1048279 1048461 . - 0 ID=TnS000103297t05.cds13;Name=TnS000103297t05.cds13;Parent=TnS000103297t05
scaffold103297 . three_prime_UTR 1047739 1048278 . - . ID=TnS000103297t05.utr3p1;Name=TnS000103297t05.utr3p1;Parent=TnS000103297t05
scaffold103297 . gene 100537 102621 . + . ID=TnS000103297g01;Name=TnS000103297g01
scaffold103297 . mRNA 100537 102621 . + . ID=TnS000103297t01;Name=TnS000103297t01;Parent=TnS000103297g01
scaffold103297 . five_prime_UTR 100537 100599 . + . ID=TnS000103297t01.utr5p1;Name=TnS000103297t01.utr5p1;Parent=TnS000103297t01
scaffold103297 . exon 100537 102621 . + . ID=TnS000103297t01.exon1;Name=TnS000103297t01.exon1;Parent=TnS000103297t01
scaffold103297 . CDS 100600 102354 . + 0 ID=TnS000103297t01.cds1;Name=TnS000103297t01.cds1;Parent=TnS000103297t01
scaffold103297 . three_prime_UTR 102355 102621 . + . ID=TnS000103297t01.utr3p1;Name=TnS000103297t01.utr3p1;Parent=TnS000103297t01
scaffold103297 EVM gene 1826015 1837766 . - . ID=TnS000103297g14;Name=TnS000103297g14
scaffold103297 EVM mRNA 1826015 1837766 . - . ID=TnS000103297t14;Name=TnS000103297t14;Parent=TnS000103297g14
scaffold103297 EVM exon 1837745 1837766 . - . ID=TnS000103297t14.exon1;Name=TnS000103297t14.exon1;Parent=TnS000103297t14
scaffold103297 EVM CDS 1837745 1837766 . - 0 ID=TnS000103297t14.cds1;Name=TnS000103297t14.cds1;Parent=TnS000103297t14
scaffold103297 EVM exon 1828848 1828924 . - . ID=TnS000103297t14.exon2;Name=TnS000103297t14.exon2;Parent=TnS000103297t14
scaffold103297 EVM CDS 1828848 1828924 . - 1 ID=TnS000103297t14.cds2;Name=TnS000103297t14.cds2;Parent=TnS000103297t14
scaffold103297 EVM exon 1828358 1828390 . - . ID=TnS000103297t14.exon3;Name=TnS000103297t14.exon3;Parent=TnS000103297t14
scaffold103297 EVM CDS 1828358 1828390 . - 0 ID=TnS000103297t14.cds3;Name=TnS000103297t14.cds3;Parent=TnS000103297t14
scaffold103297 EVM exon 1826820 1827638 . - . ID=TnS000103297t14.exon4;Name=TnS000103297t14.exon4;Parent=TnS000103297t14
scaffold103297 EVM CDS 1826820 1827638 . - 0 ID=TnS000103297t14.cds4;Name=TnS000103297t14.cds4;Parent=TnS000103297t14
scaffold103297 EVM exon 1826015 1826107 . - . ID=TnS000103297t14.exon5;Name=TnS000103297t14.exon5;Parent=TnS000103297t14
scaffold103297 EVM CDS 1826015 1826107 . - 0 ID=TnS000103297t14.cds5;Name=TnS000103297t14.cds5;Parent=TnS000103297t14
scaffold103297 EVM gene 388098 388274 . + . ID=TnS000103297g03;Name=TnS000103297g03
scaffold103297 EVM mRNA 388098 388274 . + . ID=TnS000103297t03;Name=TnS000103297t03;Parent=TnS000103297g03
scaffold103297 EVM exon 388098 388274 . + . ID=TnS000103297t03.exon1;Name=TnS000103297t03.exon1;Parent=TnS000103297t03
scaffold103297 EVM CDS 388098 388274 . + 0 ID=TnS000103297t03.cds1;Name=TnS000103297t03.cds1;Parent=TnS000103297t03
scaffold103297 . gene 1744900 1756064 . + . ID=TnS000103297g11;Name=TnS000103297g11
scaffold103297 . mRNA 1744900 1756064 . + . ID=TnS000103297t11;Name=TnS000103297t11;Parent=TnS000103297g11
scaffold103297 . five_prime_UTR 1744900 1745247 . + . ID=TnS000103297t11.utr5p1;Name=TnS000103297t11.utr5p1;Parent=TnS000103297t11
scaffold103297 . exon 1744900 1745380 . + . ID=TnS000103297t11.exon1;Name=TnS000103297t11.exon1;Parent=TnS000103297t11
scaffold103297 . CDS 1745248 1745380 . + 0 ID=TnS000103297t11.cds1;Name=TnS000103297t11.cds1;Parent=TnS000103297t11
scaffold103297 . exon 1745840 1746792 . + . ID=TnS000103297t11.exon2;Name=TnS000103297t11.exon2;Parent=TnS000103297t11
scaffold103297 . CDS 1745840 1746792 . + 2 ID=TnS000103297t11.cds2;Name=TnS000103297t11.cds2;Parent=TnS000103297t11
scaffold103297 . exon 1747986 1748057 . + . ID=TnS000103297t11.exon3;Name=TnS000103297t11.exon3;Parent=TnS000103297t11
scaffold103297 . CDS 1747986 1748057 . + 0 ID=TnS000103297t11.cds3;Name=TnS000103297t11.cds3;Parent=TnS000103297t11
scaffold103297 . exon 1748214 1748288 . + . ID=TnS000103297t11.exon4;Name=TnS000103297t11.exon4;Parent=TnS000103297t11
scaffold103297 . CDS 1748214 1748288 . + 0 ID=TnS000103297t11.cds4;Name=TnS000103297t11.cds4;Parent=TnS000103297t11
scaffold103297 . exon 1751043 1751157 . + . ID=TnS000103297t11.exon5;Name=TnS000103297t11.exon5;Parent=TnS000103297t11
scaffold103297 . CDS 1751043 1751157 . + 0 ID=TnS000103297t11.cds5;Name=TnS000103297t11.cds5;Parent=TnS000103297t11
scaffold103297 . exon 1751270 1751331 . + . ID=TnS000103297t11.exon6;Name=TnS000103297t11.exon6;Parent=TnS000103297t11
scaffold103297 . CDS 1751270 1751331 . + 2 ID=TnS000103297t11.cds6;Name=TnS000103297t11.cds6;Parent=TnS000103297t11
scaffold103297 . exon 1751454 1751501 . + . ID=TnS000103297t11.exon7;Name=TnS000103297t11.exon7;Parent=TnS000103297t11
scaffold103297 . CDS 1751454 1751501 . + 0 ID=TnS000103297t11.cds7;Name=TnS000103297t11.cds7;Parent=TnS000103297t11
scaffold103297 . exon 1751627 1751911 . + . ID=TnS000103297t11.exon8;Name=TnS000103297t11.exon8;Parent=TnS000103297t11
scaffold103297 . CDS 1751627 1751911 . + 0 ID=TnS000103297t11.cds8;Name=TnS000103297t11.cds8;Parent=TnS000103297t11
scaffold103297 . exon 1751987 1752046 . + . ID=TnS000103297t11.exon9;Name=TnS000103297t11.exon9;Parent=TnS000103297t11
scaffold103297 . CDS 1751987 1752046 . + 0 ID=TnS000103297t11.cds9;Name=TnS000103297t11.cds9;Parent=TnS000103297t11
scaffold103297 . exon 1752167 1752250 . + . ID=TnS000103297t11.exon10;Name=TnS000103297t11.exon10;Parent=TnS000103297t11
scaffold103297 . CDS 1752167 1752250 . + 0 ID=TnS000103297t11.cds10;Name=TnS000103297t11.cds10;Parent=TnS000103297t11
scaffold103297 . exon 1752459 1752524 . + . ID=TnS000103297t11.exon11;Name=TnS000103297t11.exon11;Parent=TnS000103297t11
scaffold103297 . CDS 1752459 1752524 . + 0 ID=TnS000103297t11.cds11;Name=TnS000103297t11.cds11;Parent=TnS000103297t11
scaffold103297 . exon 1752612 1752710 . + . ID=TnS000103297t11.exon12;Name=TnS000103297t11.exon12;Parent=TnS000103297t11
scaffold103297 . CDS 1752612 1752710 . + 0 ID=TnS000103297t11.cds12;Name=TnS000103297t11.cds12;Parent=TnS000103297t11
scaffold103297 . exon 1753203 1753421 . + . ID=TnS000103297t11.exon13;Name=TnS000103297t11.exon13;Parent=TnS000103297t11
scaffold103297 . CDS 1753203 1753421 . + 0 ID=TnS000103297t11.cds13;Name=TnS000103297t11.cds13;Parent=TnS000103297t11
scaffold103297 . exon 1753553 1753670 . + . ID=TnS000103297t11.exon14;Name=TnS000103297t11.exon14;Parent=TnS000103297t11
scaffold103297 . CDS 1753553 1753670 . + 0 ID=TnS000103297t11.cds14;Name=TnS000103297t11.cds14;Parent=TnS000103297t11
scaffold103297 . exon 1753769 1754004 . + . ID=TnS000103297t11.exon15;Name=TnS000103297t11.exon15;Parent=TnS000103297t11
scaffold103297 . CDS 1753769 1754004 . + 2 ID=TnS000103297t11.cds15;Name=TnS000103297t11.cds15;Parent=TnS000103297t11
scaffold103297 . exon 1754217 1754276 . + . ID=TnS000103297t11.exon16;Name=TnS000103297t11.exon16;Parent=TnS000103297t11
scaffold103297 . CDS 1754217 1754276 . + 0 ID=TnS000103297t11.cds16;Name=TnS000103297t11.cds16;Parent=TnS000103297t11
scaffold103297 . exon 1754370 1754483 . + . ID=TnS000103297t11.exon17;Name=TnS000103297t11.exon17;Parent=TnS000103297t11
scaffold103297 . CDS 1754370 1754483 . + 0 ID=TnS000103297t11.cds17;Name=TnS000103297t11.cds17;Parent=TnS000103297t11
scaffold103297 . exon 1755533 1755607 . + . ID=TnS000103297t11.exon18;Name=TnS000103297t11.exon18;Parent=TnS000103297t11
scaffold103297 . CDS 1755533 1755607 . + 0 ID=TnS000103297t11.cds18;Name=TnS000103297t11.cds18;Parent=TnS000103297t11
scaffold103297 . exon 1755690 1756064 . + . ID=TnS000103297t11.exon19;Name=TnS000103297t11.exon19;Parent=TnS000103297t11
scaffold103297 . CDS 1755690 1755725 . + 0 ID=TnS000103297t11.cds19;Name=TnS000103297t11.cds19;Parent=TnS000103297t11
scaffold103297 . three_prime_UTR 1755726 1756064 . + . ID=TnS000103297t11.utr3p1;Name=TnS000103297t11.utr3p1;Parent=TnS000103297t11
scaffold103297 . gene 1908070 1909515 . + . ID=TnS000103297g15;Name=TnS000103297g15
scaffold103297 . mRNA 1908070 1909515 . + . ID=TnS000103297t15;Name=TnS000103297t15;Parent=TnS000103297g15
scaffold103297 . exon 1908070 1908075 . + . ID=TnS000103297t15.exon1;Name=TnS000103297t15.exon1;Parent=TnS000103297t15
scaffold103297 . CDS 1908070 1908075 . + 0 ID=TnS000103297t15.cds1;Name=TnS000103297t15.cds1;Parent=TnS000103297t15
scaffold103297 . exon 1908750 1909515 . + . ID=TnS000103297t15.exon2;Name=TnS000103297t15.exon2;Parent=TnS000103297t15
scaffold103297 . CDS 1908750 1909148 . + 0 ID=TnS000103297t15.cds2;Name=TnS000103297t15.cds2;Parent=TnS000103297t15
scaffold103297 . three_prime_UTR 1909149 1909515 . + . ID=TnS000103297t15.utr3p1;Name=TnS000103297t15.utr3p1;Parent=TnS000103297t15
scaffold103297 . gene 1041955 1045294 . - . ID=TnS000103297g04;Name=TnS000103297g04
scaffold103297 . mRNA 1041955 1045294 . - . ID=TnS000103297t04;Name=TnS000103297t04;Parent=TnS000103297g04
scaffold103297 . exon 1045255 1045294 . - . ID=TnS000103297t04.exon1;Name=TnS000103297t04.exon1;Parent=TnS000103297t04
scaffold103297 . CDS 1045255 1045294 . - 0 ID=TnS000103297t04.cds1;Name=TnS000103297t04.cds1;Parent=TnS000103297t04
scaffold103297 . exon 1041955 1042556 . - . ID=TnS000103297t04.exon2;Name=TnS000103297t04.exon2;Parent=TnS000103297t04
scaffold103297 . CDS 1041955 1042556 . - 2 ID=TnS000103297t04.cds2;Name=TnS000103297t04.cds2;Parent=TnS000103297t04
scaffold103297 EVM gene 116646 116866 . + . ID=TnS000103297g02;Name=TnS000103297g02
scaffold103297 EVM mRNA 116646 116866 . + . ID=TnS000103297t02;Name=TnS000103297t02;Parent=TnS000103297g02
scaffold103297 EVM exon 116646 116866 . + . ID=TnS000103297t02.exon1;Name=TnS000103297t02.exon1;Parent=TnS000103297t02
scaffold103297 EVM CDS 116646 116866 . + 1 ID=TnS000103297t02.cds1;Name=TnS000103297t02.cds1;Parent=TnS000103297t02
scaffold103297 EVM gene 1274591 1278416 . - . ID=TnS000103297g08;Name=TnS000103297g08
scaffold103297 EVM mRNA 1274591 1278416 . - . ID=TnS000103297t08;Name=TnS000103297t08;Parent=TnS000103297g08
scaffold103297 EVM exon 1278355 1278416 . - . ID=TnS000103297t08.exon1;Name=TnS000103297t08.exon1;Parent=TnS000103297t08
scaffold103297 EVM CDS 1278355 1278416 . - 0 ID=TnS000103297t08.cds1;Name=TnS000103297t08.cds1;Parent=TnS000103297t08
scaffold103297 EVM exon 1278131 1278236 . - . ID=TnS000103297t08.exon2;Name=TnS000103297t08.exon2;Parent=TnS000103297t08
scaffold103297 EVM CDS 1278131 1278236 . - 2 ID=TnS000103297t08.cds2;Name=TnS000103297t08.cds2;Parent=TnS000103297t08
scaffold103297 EVM exon 1277848 1277958 . - . ID=TnS000103297t08.exon3;Name=TnS000103297t08.exon3;Parent=TnS000103297t08
scaffold103297 EVM CDS 1277848 1277958 . - 0 ID=TnS000103297t08.cds3;Name=TnS000103297t08.cds3;Parent=TnS000103297t08
scaffold103297 EVM exon 1277591 1277728 . - . ID=TnS000103297t08.exon4;Name=TnS000103297t08.exon4;Parent=TnS000103297t08
scaffold103297 EVM CDS 1277591 1277728 . - 0 ID=TnS000103297t08.cds4;Name=TnS000103297t08.cds4;Parent=TnS000103297t08
scaffold103297 EVM exon 1277055 1277123 . - . ID=TnS000103297t08.exon5;Name=TnS000103297t08.exon5;Parent=TnS000103297t08
scaffold103297 EVM CDS 1277055 1277123 . - 0 ID=TnS000103297t08.cds5;Name=TnS000103297t08.cds5;Parent=TnS000103297t08
scaffold103297 EVM exon 1275705 1275784 . - . ID=TnS000103297t08.exon6;Name=TnS000103297t08.exon6;Parent=TnS000103297t08
scaffold103297 EVM CDS 1275705 1275784 . - 0 ID=TnS000103297t08.cds6;Name=TnS000103297t08.cds6;Parent=TnS000103297t08
scaffold103297 EVM exon 1275335 1275422 . - . ID=TnS000103297t08.exon7;Name=TnS000103297t08.exon7;Parent=TnS000103297t08
scaffold103297 EVM CDS 1275335 1275422 . - 2 ID=TnS000103297t08.cds7;Name=TnS000103297t08.cds7;Parent=TnS000103297t08
scaffold103297 EVM exon 1275182 1275235 . - . ID=TnS000103297t08.exon8;Name=TnS000103297t08.exon8;Parent=TnS000103297t08
scaffold103297 EVM CDS 1275182 1275235 . - 0 ID=TnS000103297t08.cds8;Name=TnS000103297t08.cds8;Parent=TnS000103297t08
scaffold103297 EVM exon 1274957 1275098 . - . ID=TnS000103297t08.exon9;Name=TnS000103297t08.exon9;Parent=TnS000103297t08
scaffold103297 EVM CDS 1274957 1275098 . - 0 ID=TnS000103297t08.cds9;Name=TnS000103297t08.cds9;Parent=TnS000103297t08
scaffold103297 EVM exon 1274786 1274898 . - . ID=TnS000103297t08.exon10;Name=TnS000103297t08.exon10;Parent=TnS000103297t08
scaffold103297 EVM CDS 1274786 1274898 . - 1 ID=TnS000103297t08.cds10;Name=TnS000103297t08.cds10;Parent=TnS000103297t08
scaffold103297 EVM exon 1274591 1274686 . - . ID=TnS000103297t08.exon11;Name=TnS000103297t08.exon11;Parent=TnS000103297t08
scaffold103297 EVM CDS 1274591 1274686 . - 0 ID=TnS000103297t08.cds11;Name=TnS000103297t08.cds11;Parent=TnS000103297t08
scaffold103297 . gene 1778666 1779548 . + . ID=TnS000103297g13;Name=TnS000103297g13
scaffold103297 . mRNA 1778666 1779548 . + . ID=TnS000103297t13;Name=TnS000103297t13;Parent=TnS000103297g13
scaffold103297 . five_prime_UTR 1778666 1778735 . + . ID=TnS000103297t13.utr5p1;Name=TnS000103297t13.utr5p1;Parent=TnS000103297t13
scaffold103297 . exon 1778666 1779548 . + . ID=TnS000103297t13.exon1;Name=TnS000103297t13.exon1;Parent=TnS000103297t13
scaffold103297 . CDS 1778736 1779056 . + 0 ID=TnS000103297t13.cds1;Name=TnS000103297t13.cds1;Parent=TnS000103297t13
scaffold103297 . three_prime_UTR 1779057 1779548 . + . ID=TnS000103297t13.utr3p1;Name=TnS000103297t13.utr3p1;Parent=TnS000103297t13
scaffold103297 EVM gene 1273859 1274479 . - . ID=TnS000103297g07;Name=TnS000103297g07
scaffold103297 EVM mRNA 1273859 1274479 . - . ID=TnS000103297t07;Name=TnS000103297t07;Parent=TnS000103297g07
scaffold103297 EVM exon 1273859 1274479 . - . ID=TnS000103297t07.exon1;Name=TnS000103297t07.exon1;Parent=TnS000103297t07
scaffold103297 EVM CDS 1273859 1274479 . - 0 ID=TnS000103297t07.cds1;Name=TnS000103297t07.cds1;Parent=TnS000103297t07
scaffold103297 . gene 1606570 1611303 . + . ID=TnS000103297g10;Name=TnS000103297g10
scaffold103297 . mRNA 1606570 1611303 . + . ID=TnS000103297t10;Name=TnS000103297t10;Parent=TnS000103297g10
scaffold103297 . five_prime_UTR 1606570 1606570 . + . ID=TnS000103297t10.utr5p1;Name=TnS000103297t10.utr5p1;Parent=TnS000103297t10
scaffold103297 . exon 1606570 1606685 . + . ID=TnS000103297t10.exon1;Name=TnS000103297t10.exon1;Parent=TnS000103297t10
scaffold103297 . CDS 1606571 1606685 . + 0 ID=TnS000103297t10.cds1;Name=TnS000103297t10.cds1;Parent=TnS000103297t10
scaffold103297 . exon 1607878 1609138 . + . ID=TnS000103297t10.exon2;Name=TnS000103297t10.exon2;Parent=TnS000103297t10
scaffold103297 . CDS 1607878 1609138 . + 2 ID=TnS000103297t10.cds2;Name=TnS000103297t10.cds2;Parent=TnS000103297t10
scaffold103297 . exon 1609311 1611303 . + . ID=TnS000103297t10.exon3;Name=TnS000103297t10.exon3;Parent=TnS000103297t10
scaffold103297 . CDS 1609311 1610802 . + 1 ID=TnS000103297t10.cds3;Name=TnS000103297t10.cds3;Parent=TnS000103297t10
scaffold103297 . three_prime_UTR 1610803 1611303 . + . ID=TnS000103297t10.utr3p1;Name=TnS000103297t10.utr3p1;Parent=TnS000103297t10
scaffold776413 EVM gene 898594 902268 . + . ID=TnS000776413g09;Name=TnS000776413g09
scaffold776413 EVM mRNA 898594 902268 . + . ID=TnS000776413t09;Name=TnS000776413t09;Parent=TnS000776413g09
scaffold776413 EVM exon 898594 900425 . + . ID=TnS000776413t09.exon1;Name=TnS000776413t09.exon1;Parent=TnS000776413t09
scaffold776413 EVM CDS 898594 900425 . + 0 ID=TnS000776413t09.cds1;Name=TnS000776413t09.cds1;Parent=TnS000776413t09
scaffold776413 EVM exon 901052 901175 . + . ID=TnS000776413t09.exon2;Name=TnS000776413t09.exon2;Parent=TnS000776413t09
scaffold776413 EVM CDS 901052 901175 . + 2 ID=TnS000776413t09.cds2;Name=TnS000776413t09.cds2;Parent=TnS000776413t09
scaffold776413 EVM exon 901254 901547 . + . ID=TnS000776413t09.exon3;Name=TnS000776413t09.exon3;Parent=TnS000776413t09
scaffold776413 EVM CDS 901254 901547 . + 0 ID=TnS000776413t09.cds3;Name=TnS000776413t09.cds3;Parent=TnS000776413t09
scaffold776413 EVM exon 901669 901871 . + . ID=TnS000776413t09.exon4;Name=TnS000776413t09.exon4;Parent=TnS000776413t09
scaffold776413 EVM CDS 901669 901871 . + 0 ID=TnS000776413t09.cds4;Name=TnS000776413t09.cds4;Parent=TnS000776413t09
scaffold776413 EVM exon 901971 902268 . + . ID=TnS000776413t09.exon5;Name=TnS000776413t09.exon5;Parent=TnS000776413t09
scaffold776413 EVM CDS 901971 902268 . + 2 ID=TnS000776413t09.cds5;Name=TnS000776413t09.cds5;Parent=TnS000776413t09
scaffold776413 . gene 1426395 1481029 . - . ID=TnS000776413g15;Name=TnS000776413g15
scaffold776413 . mRNA 1426395 1481029 . - . ID=TnS000776413t15;Name=TnS000776413t15;Parent=TnS000776413g15
scaffold776413 . five_prime_UTR 1480768 1481029 . - . ID=TnS000776413t15.utr5p1;Name=TnS000776413t15.utr5p1;Parent=TnS000776413t15
scaffold776413 . exon 1480627 1481029 . - . ID=TnS000776413t15.exon1;Name=TnS000776413t15.exon1;Parent=TnS000776413t15
scaffold776413 . CDS 1480627 1480767 . - 0 ID=TnS000776413t15.cds1;Name=TnS000776413t15.cds1;Parent=TnS000776413t15
scaffold776413 . exon 1479617 1479740 . - . ID=TnS000776413t15.exon2;Name=TnS000776413t15.exon2;Parent=TnS000776413t15
scaffold776413 . CDS 1479617 1479740 . - 0 ID=TnS000776413t15.cds2;Name=TnS000776413t15.cds2;Parent=TnS000776413t15
scaffold776413 . exon 1476128 1476214 . - . ID=TnS000776413t15.exon3;Name=TnS000776413t15.exon3;Parent=TnS000776413t15
scaffold776413 . CDS 1476128 1476214 . - 2 ID=TnS000776413t15.cds3;Name=TnS000776413t15.cds3;Parent=TnS000776413t15
scaffold776413 . exon 1475762 1475932 . - . ID=TnS000776413t15.exon4;Name=TnS000776413t15.exon4;Parent=TnS000776413t15
scaffold776413 . CDS 1475762 1475932 . - 2 ID=TnS000776413t15.cds4;Name=TnS000776413t15.cds4;Parent=TnS000776413t15
scaffold776413 . exon 1475378 1475484 . - . ID=TnS000776413t15.exon5;Name=TnS000776413t15.exon5;Parent=TnS000776413t15
scaffold776413 . CDS 1475378 1475484 . - 2 ID=TnS000776413t15.cds5;Name=TnS000776413t15.cds5;Parent=TnS000776413t15
scaffold776413 . exon 1473658 1473789 . - . ID=TnS000776413t15.exon6;Name=TnS000776413t15.exon6;Parent=TnS000776413t15
scaffold776413 . CDS 1473658 1473789 . - 0 ID=TnS000776413t15.cds6;Name=TnS000776413t15.cds6;Parent=TnS000776413t15
scaffold776413 . exon 1473320 1473507 . - . ID=TnS000776413t15.exon7;Name=TnS000776413t15.exon7;Parent=TnS000776413t15
scaffold776413 . CDS 1473320 1473507 . - 0 ID=TnS000776413t15.cds7;Name=TnS000776413t15.cds7;Parent=TnS000776413t15
scaffold776413 . exon 1472990 1473148 . - . ID=TnS000776413t15.exon8;Name=TnS000776413t15.exon8;Parent=TnS000776413t15
scaffold776413 . CDS 1472990 1473148 . - 1 ID=TnS000776413t15.cds8;Name=TnS000776413t15.cds8;Parent=TnS000776413t15
scaffold776413 . exon 1471196 1471287 . - . ID=TnS000776413t15.exon9;Name=TnS000776413t15.exon9;Parent=TnS000776413t15
scaffold776413 . CDS 1471196 1471287 . - 1 ID=TnS000776413t15.cds9;Name=TnS000776413t15.cds9;Parent=TnS000776413t15
scaffold776413 . exon 1465560 1465711 . - . ID=TnS000776413t15.exon10;Name=TnS000776413t15.exon10;Parent=TnS000776413t15
scaffold776413 . CDS 1465560 1465711 . - 2 ID=TnS000776413t15.cds10;Name=TnS000776413t15.cds10;Parent=TnS000776413t15
scaffold776413 . exon 1464585 1464758 . - . ID=TnS000776413t15.exon11;Name=TnS000776413t15.exon11;Parent=TnS000776413t15
scaffold776413 . CDS 1464585 1464758 . - 0 ID=TnS000776413t15.cds11;Name=TnS000776413t15.cds11;Parent=TnS000776413t15
scaffold776413 . exon 1456876 1456995 . - . ID=TnS000776413t15.exon12;Name=TnS000776413t15.exon12;Parent=TnS000776413t15
scaffold776413 . CDS 1456876 1456995 . - 0 ID=TnS000776413t15.cds12;Name=TnS000776413t15.cds12;Parent=TnS000776413t15
scaffold776413 . exon 1451491 1451658 . - . ID=TnS000776413t15.exon13;Name=TnS000776413t15.exon13;Parent=TnS000776413t15
scaffold776413 . CDS 1451491 1451658 . - 0 ID=TnS000776413t15.cds13;Name=TnS000776413t15.cds13;Parent=TnS000776413t15
scaffold776413 . exon 1450644 1450715 . - . ID=TnS000776413t15.exon14;Name=TnS000776413t15.exon14;Parent=TnS000776413t15
scaffold776413 . CDS 1450644 1450715 . - 0 ID=TnS000776413t15.cds14;Name=TnS000776413t15.cds14;Parent=TnS000776413t15
scaffold776413 . exon 1450224 1450273 . - . ID=TnS000776413t15.exon15;Name=TnS000776413t15.exon15;Parent=TnS000776413t15
scaffold776413 . CDS 1450224 1450273 . - 0 ID=TnS000776413t15.cds15;Name=TnS000776413t15.cds15;Parent=TnS000776413t15
scaffold776413 . exon 1449919 1450135 . - . ID=TnS000776413t15.exon16;Name=TnS000776413t15.exon16;Parent=TnS000776413t15
scaffold776413 . CDS 1449919 1450135 . - 1 ID=TnS000776413t15.cds16;Name=TnS000776413t15.cds16;Parent=TnS000776413t15
scaffold776413 . exon 1443163 1443354 . - . ID=TnS000776413t15.exon17;Name=TnS000776413t15.exon17;Parent=TnS000776413t15
scaffold776413 . CDS 1443163 1443354 . - 0 ID=TnS000776413t15.cds17;Name=TnS000776413t15.cds17;Parent=TnS000776413t15
scaffold776413 . exon 1442820 1443044 . - . ID=TnS000776413t15.exon18;Name=TnS000776413t15.exon18;Parent=TnS000776413t15
scaffold776413 . CDS 1442820 1443044 . - 0 ID=TnS000776413t15.cds18;Name=TnS000776413t15.cds18;Parent=TnS000776413t15
scaffold776413 . exon 1442238 1442585 . - . ID=TnS000776413t15.exon19;Name=TnS000776413t15.exon19;Parent=TnS000776413t15
scaffold776413 . CDS 1442238 1442585 . - 0 ID=TnS000776413t15.cds19;Name=TnS000776413t15.cds19;Parent=TnS000776413t15
scaffold776413 . exon 1429557 1429655 . - . ID=TnS000776413t15.exon20;Name=TnS000776413t15.exon20;Parent=TnS000776413t15
scaffold776413 . CDS 1429557 1429655 . - 0 ID=TnS000776413t15.cds20;Name=TnS000776413t15.cds20;Parent=TnS000776413t15
scaffold776413 . exon 1427756 1427896 . - . ID=TnS000776413t15.exon21;Name=TnS000776413t15.exon21;Parent=TnS000776413t15
scaffold776413 . CDS 1427756 1427896 . - 0 ID=TnS000776413t15.cds21;Name=TnS000776413t15.cds21;Parent=TnS000776413t15
scaffold776413 . exon 1427425 1427583 . - . ID=TnS000776413t15.exon22;Name=TnS000776413t15.exon22;Parent=TnS000776413t15
scaffold776413 . CDS 1427425 1427583 . - 0 ID=TnS000776413t15.cds22;Name=TnS000776413t15.cds22;Parent=TnS000776413t15
scaffold776413 . exon 1426395 1427242 . - . ID=TnS000776413t15.exon23;Name=TnS000776413t15.exon23;Parent=TnS000776413t15
scaffold776413 . CDS 1426760 1427242 . - 0 ID=TnS000776413t15.cds23;Name=TnS000776413t15.cds23;Parent=TnS000776413t15
scaffold776413 . three_prime_UTR 1426395 1426759 . - . ID=TnS000776413t15.utr3p1;Name=TnS000776413t15.utr3p1;Parent=TnS000776413t15
scaffold776413 EVM gene 885915 886624 . + . ID=TnS000776413g07;Name=TnS000776413g07
scaffold776413 EVM mRNA 885915 886624 . + . ID=TnS000776413t07;Name=TnS000776413t07;Parent=TnS000776413g07
scaffold776413 EVM exon 885915 886175 . + . ID=TnS000776413t07.exon1;Name=TnS000776413t07.exon1;Parent=TnS000776413t07
scaffold776413 EVM CDS 885915 886175 . + 0 ID=TnS000776413t07.cds1;Name=TnS000776413t07.cds1;Parent=TnS000776413t07
scaffold776413 EVM exon 886211 886624 . + . ID=TnS000776413t07.exon2;Name=TnS000776413t07.exon2;Parent=TnS000776413t07
scaffold776413 EVM CDS 886211 886624 . + 0 ID=TnS000776413t07.cds2;Name=TnS000776413t07.cds2;Parent=TnS000776413t07
scaffold776413 . gene 1575772 1586309 . + . ID=TnS000776413g16;Name=TnS000776413g16
scaffold776413 . mRNA 1575772 1586309 . + . ID=TnS000776413t16;Name=TnS000776413t16;Parent=TnS000776413g16
scaffold776413 . five_prime_UTR 1575772 1576441 . + . ID=TnS000776413t16.utr5p1;Name=TnS000776413t16.utr5p1;Parent=TnS000776413t16
scaffold776413 . exon 1575772 1576722 . + . ID=TnS000776413t16.exon1;Name=TnS000776413t16.exon1;Parent=TnS000776413t16
scaffold776413 . CDS 1576442 1576722 . + 0 ID=TnS000776413t16.cds1;Name=TnS000776413t16.cds1;Parent=TnS000776413t16
scaffold776413 . exon 1578949 1579030 . + . ID=TnS000776413t16.exon2;Name=TnS000776413t16.exon2;Parent=TnS000776413t16
scaffold776413 . CDS 1578949 1579030 . + 1 ID=TnS000776413t16.cds2;Name=TnS000776413t16.cds2;Parent=TnS000776413t16
scaffold776413 . exon 1579198 1579301 . + . ID=TnS000776413t16.exon3;Name=TnS000776413t16.exon3;Parent=TnS000776413t16
scaffold776413 . CDS 1579198 1579301 . + 0 ID=TnS000776413t16.cds3;Name=TnS000776413t16.cds3;Parent=TnS000776413t16
scaffold776413 . exon 1580743 1580869 . + . ID=TnS000776413t16.exon4;Name=TnS000776413t16.exon4;Parent=TnS000776413t16
scaffold776413 . CDS 1580743 1580869 . + 1 ID=TnS000776413t16.cds4;Name=TnS000776413t16.cds4;Parent=TnS000776413t16
scaffold776413 . exon 1580951 1581045 . + . ID=TnS000776413t16.exon5;Name=TnS000776413t16.exon5;Parent=TnS000776413t16
scaffold776413 . CDS 1580951 1581045 . + 0 ID=TnS000776413t16.cds5;Name=TnS000776413t16.cds5;Parent=TnS000776413t16
scaffold776413 . exon 1582731 1582854 . + . ID=TnS000776413t16.exon6;Name=TnS000776413t16.exon6;Parent=TnS000776413t16
scaffold776413 . CDS 1582731 1582854 . + 1 ID=TnS000776413t16.cds6;Name=TnS000776413t16.cds6;Parent=TnS000776413t16
scaffold776413 . exon 1583746 1583826 . + . ID=TnS000776413t16.exon7;Name=TnS000776413t16.exon7;Parent=TnS000776413t16
scaffold776413 . CDS 1583746 1583826 . + 0 ID=TnS000776413t16.cds7;Name=TnS000776413t16.cds7;Parent=TnS000776413t16
scaffold776413 . exon 1583954 1584052 . + . ID=TnS000776413t16.exon8;Name=TnS000776413t16.exon8;Parent=TnS000776413t16
scaffold776413 . CDS 1583954 1584052 . + 0 ID=TnS000776413t16.cds8;Name=TnS000776413t16.cds8;Parent=TnS000776413t16
scaffold776413 . exon 1584138 1584320 . + . ID=TnS000776413t16.exon9;Name=TnS000776413t16.exon9;Parent=TnS000776413t16
scaffold776413 . CDS 1584138 1584320 . + 0 ID=TnS000776413t16.cds9;Name=TnS000776413t16.cds9;Parent=TnS000776413t16
scaffold776413 . exon 1584623 1584707 . + . ID=TnS000776413t16.exon10;Name=TnS000776413t16.exon10;Parent=TnS000776413t16
scaffold776413 . CDS 1584623 1584707 . + 0 ID=TnS000776413t16.cds10;Name=TnS000776413t16.cds10;Parent=TnS000776413t16
scaffold776413 . exon 1584834 1584901 . + . ID=TnS000776413t16.exon11;Name=TnS000776413t16.exon11;Parent=TnS000776413t16
scaffold776413 . CDS 1584834 1584901 . + 2 ID=TnS000776413t16.cds11;Name=TnS000776413t16.cds11;Parent=TnS000776413t16
scaffold776413 . exon 1584987 1585061 . + . ID=TnS000776413t16.exon12;Name=TnS000776413t16.exon12;Parent=TnS000776413t16
scaffold776413 . CDS 1584987 1585061 . + 0 ID=TnS000776413t16.cds12;Name=TnS000776413t16.cds12;Parent=TnS000776413t16
scaffold776413 . exon 1585487 1586309 . + . ID=TnS000776413t16.exon13;Name=TnS000776413t16.exon13;Parent=TnS000776413t16
scaffold776413 . CDS 1585487 1585840 . + 0 ID=TnS000776413t16.cds13;Name=TnS000776413t16.cds13;Parent=TnS000776413t16
scaffold776413 . three_prime_UTR 1585841 1586309 . + . ID=TnS000776413t16.utr3p1;Name=TnS000776413t16.utr3p1;Parent=TnS000776413t16
scaffold776413 . gene 898264 1135186 . + . ID=TnS000776413g08;Name=TnS000776413g08
scaffold776413 . mRNA 898264 1135186 . + . ID=TnS000776413t08;Name=TnS000776413t08;Parent=TnS000776413g08
scaffold776413 . five_prime_UTR 898264 898530 . + . ID=TnS000776413t08.utr5p1;Name=TnS000776413t08.utr5p1;Parent=TnS000776413t08
scaffold776413 . exon 898264 898654 . + . ID=TnS000776413t08.exon1;Name=TnS000776413t08.exon1;Parent=TnS000776413t08
scaffold776413 . CDS 898531 898654 . + 0 ID=TnS000776413t08.cds1;Name=TnS000776413t08.cds1;Parent=TnS000776413t08
scaffold776413 . exon 1131157 1132945 . + . ID=TnS000776413t08.exon2;Name=TnS000776413t08.exon2;Parent=TnS000776413t08
scaffold776413 . CDS 1131157 1132945 . + 2 ID=TnS000776413t08.cds2;Name=TnS000776413t08.cds2;Parent=TnS000776413t08
scaffold776413 . exon 1133461 1133584 . + . ID=TnS000776413t08.exon3;Name=TnS000776413t08.exon3;Parent=TnS000776413t08
scaffold776413 . CDS 1133461 1133584 . + 1 ID=TnS000776413t08.cds3;Name=TnS000776413t08.cds3;Parent=TnS000776413t08
scaffold776413 . exon 1133682 1133975 . + . ID=TnS000776413t08.exon4;Name=TnS000776413t08.exon4;Parent=TnS000776413t08
scaffold776413 . CDS 1133682 1133975 . + 0 ID=TnS000776413t08.cds4;Name=TnS000776413t08.cds4;Parent=TnS000776413t08
scaffold776413 . exon 1134097 1134299 . + . ID=TnS000776413t08.exon5;Name=TnS000776413t08.exon5;Parent=TnS000776413t08
scaffold776413 . CDS 1134097 1134299 . + 0 ID=TnS000776413t08.cds5;Name=TnS000776413t08.cds5;Parent=TnS000776413t08
scaffold776413 . exon 1134399 1135186 . + . ID=TnS000776413t08.exon6;Name=TnS000776413t08.exon6;Parent=TnS000776413t08
scaffold776413 . CDS 1134399 1134696 . + 1 ID=TnS000776413t08.cds6;Name=TnS000776413t08.cds6;Parent=TnS000776413t08
scaffold776413 . three_prime_UTR 1134697 1135186 . + . ID=TnS000776413t08.utr3p1;Name=TnS000776413t08.utr3p1;Parent=TnS000776413t08
scaffold776413 . gene 1591307 1608010 . - . ID=TnS000776413g17;Name=TnS000776413g17
scaffold776413 . mRNA 1591307 1608010 . - . ID=TnS000776413t17;Name=TnS000776413t17;Parent=TnS000776413g17
scaffold776413 . five_prime_UTR 1607884 1608010 . - . ID=TnS000776413t17.utr5p1;Name=TnS000776413t17.utr5p1;Parent=TnS000776413t17
scaffold776413 . exon 1607737 1608010 . - . ID=TnS000776413t17.exon1;Name=TnS000776413t17.exon1;Parent=TnS000776413t17
scaffold776413 . CDS 1607737 1607883 . - 0 ID=TnS000776413t17.cds1;Name=TnS000776413t17.cds1;Parent=TnS000776413t17
scaffold776413 . exon 1605107 1605332 . - . ID=TnS000776413t17.exon2;Name=TnS000776413t17.exon2;Parent=TnS000776413t17
scaffold776413 . CDS 1605107 1605332 . - 0 ID=TnS000776413t17.cds2;Name=TnS000776413t17.cds2;Parent=TnS000776413t17
scaffold776413 . exon 1604730 1604972 . - . ID=TnS000776413t17.exon3;Name=TnS000776413t17.exon3;Parent=TnS000776413t17
scaffold776413 . CDS 1604730 1604972 . - 2 ID=TnS000776413t17.cds3;Name=TnS000776413t17.cds3;Parent=TnS000776413t17
scaffold776413 . exon 1599632 1599682 . - . ID=TnS000776413t17.exon4;Name=TnS000776413t17.exon4;Parent=TnS000776413t17
scaffold776413 . CDS 1599632 1599682 . - 2 ID=TnS000776413t17.cds4;Name=TnS000776413t17.cds4;Parent=TnS000776413t17
scaffold776413 . exon 1599031 1599291 . - . ID=TnS000776413t17.exon5;Name=TnS000776413t17.exon5;Parent=TnS000776413t17
scaffold776413 . CDS 1599031 1599291 . - 2 ID=TnS000776413t17.cds5;Name=TnS000776413t17.cds5;Parent=TnS000776413t17
scaffold776413 . exon 1598894 1598946 . - . ID=TnS000776413t17.exon6;Name=TnS000776413t17.exon6;Parent=TnS000776413t17
scaffold776413 . CDS 1598894 1598946 . - 2 ID=TnS000776413t17.cds6;Name=TnS000776413t17.cds6;Parent=TnS000776413t17
scaffold776413 . exon 1598697 1598811 . - . ID=TnS000776413t17.exon7;Name=TnS000776413t17.exon7;Parent=TnS000776413t17
scaffold776413 . CDS 1598697 1598811 . - 0 ID=TnS000776413t17.cds7;Name=TnS000776413t17.cds7;Parent=TnS000776413t17
scaffold776413 . exon 1598340 1598594 . - . ID=TnS000776413t17.exon8;Name=TnS000776413t17.exon8;Parent=TnS000776413t17
scaffold776413 . CDS 1598340 1598594 . - 2 ID=TnS000776413t17.cds8;Name=TnS000776413t17.cds8;Parent=TnS000776413t17
scaffold776413 . exon 1591720 1592826 . - . ID=TnS000776413t17.exon9;Name=TnS000776413t17.exon9;Parent=TnS000776413t17
scaffold776413 . CDS 1591787 1592826 . - 2 ID=TnS000776413t17.cds9;Name=TnS000776413t17.cds9;Parent=TnS000776413t17
scaffold776413 . exon 1591307 1591579 . - . ID=TnS000776413t17.exon10;Name=TnS000776413t17.exon10;Parent=TnS000776413t17
scaffold776413 . three_prime_UTR 1591720 1591786 . - . ID=TnS000776413t17.utr3p1;Name=TnS000776413t17.utr3p1;Parent=TnS000776413t17
scaffold776413 . three_prime_UTR 1591307 1591579 . - . ID=TnS000776413t17.utr3p2;Name=TnS000776413t17.utr3p2;Parent=TnS000776413t17
scaffold776413 EVM gene 1128960 1129384 . + . ID=TnS000776413g12;Name=TnS000776413g12
scaffold776413 EVM mRNA 1128960 1129384 . + . ID=TnS000776413t12;Name=TnS000776413t12;Parent=TnS000776413g12
scaffold776413 EVM exon 1128960 1129384 . + . ID=TnS000776413t12.exon1;Name=TnS000776413t12.exon1;Parent=TnS000776413t12
scaffold776413 EVM CDS 1128960 1129384 . + 0 ID=TnS000776413t12.cds1;Name=TnS000776413t12.cds1;Parent=TnS000776413t12
scaffold776413 . gene 559066 574516 . - . ID=TnS000776413g04;Name=TnS000776413g04
scaffold776413 . mRNA 559066 574516 . - . ID=TnS000776413t04;Name=TnS000776413t04;Parent=TnS000776413g04
scaffold776413 . five_prime_UTR 574288 574516 . - . ID=TnS000776413t04.utr5p1;Name=TnS000776413t04.utr5p1;Parent=TnS000776413t04
scaffold776413 . exon 574165 574516 . - . ID=TnS000776413t04.exon1;Name=TnS000776413t04.exon1;Parent=TnS000776413t04
scaffold776413 . CDS 574165 574287 . - 0 ID=TnS000776413t04.cds1;Name=TnS000776413t04.cds1;Parent=TnS000776413t04
scaffold776413 . exon 573490 573555 . - . ID=TnS000776413t04.exon2;Name=TnS000776413t04.exon2;Parent=TnS000776413t04
scaffold776413 . CDS 573490 573555 . - 0 ID=TnS000776413t04.cds2;Name=TnS000776413t04.cds2;Parent=TnS000776413t04
scaffold776413 . exon 572378 572466 . - . ID=TnS000776413t04.exon3;Name=TnS000776413t04.exon3;Parent=TnS000776413t04
scaffold776413 . CDS 572378 572466 . - 0 ID=TnS000776413t04.cds3;Name=TnS000776413t04.cds3;Parent=TnS000776413t04
scaffold776413 . exon 572087 572232 . - . ID=TnS000776413t04.exon4;Name=TnS000776413t04.exon4;Parent=TnS000776413t04
scaffold776413 . CDS 572087 572232 . - 1 ID=TnS000776413t04.cds4;Name=TnS000776413t04.cds4;Parent=TnS000776413t04
scaffold776413 . exon 571845 571969 . - . ID=TnS000776413t04.exon5;Name=TnS000776413t04.exon5;Parent=TnS000776413t04
scaffold776413 . CDS 571845 571969 . - 2 ID=TnS000776413t04.cds5;Name=TnS000776413t04.cds5;Parent=TnS000776413t04
scaffold776413 . exon 571640 571733 . - . ID=TnS000776413t04.exon6;Name=TnS000776413t04.exon6;Parent=TnS000776413t04
scaffold776413 . CDS 571640 571733 . - 0 ID=TnS000776413t04.cds6;Name=TnS000776413t04.cds6;Parent=TnS000776413t04
scaffold776413 . exon 571390 571553 . - . ID=TnS000776413t04.exon7;Name=TnS000776413t04.exon7;Parent=TnS000776413t04
scaffold776413 . CDS 571390 571553 . - 2 ID=TnS000776413t04.cds7;Name=TnS000776413t04.cds7;Parent=TnS000776413t04
scaffold776413 . exon 570044 570205 . - . ID=TnS000776413t04.exon8;Name=TnS000776413t04.exon8;Parent=TnS000776413t04
scaffold776413 . CDS 570044 570205 . - 0 ID=TnS000776413t04.cds8;Name=TnS000776413t04.cds8;Parent=TnS000776413t04
scaffold776413 . exon 569728 569854 . - . ID=TnS000776413t04.exon9;Name=TnS000776413t04.exon9;Parent=TnS000776413t04
scaffold776413 . CDS 569728 569854 . - 0 ID=TnS000776413t04.cds9;Name=TnS000776413t04.cds9;Parent=TnS000776413t04
scaffold776413 . exon 569409 569575 . - . ID=TnS000776413t04.exon10;Name=TnS000776413t04.exon10;Parent=TnS000776413t04
scaffold776413 . CDS 569409 569575 . - 2 ID=TnS000776413t04.cds10;Name=TnS000776413t04.cds10;Parent=TnS000776413t04
scaffold776413 . exon 567224 567331 . - . ID=TnS000776413t04.exon11;Name=TnS000776413t04.exon11;Parent=TnS000776413t04
scaffold776413 . CDS 567224 567331 . - 0 ID=TnS000776413t04.cds11;Name=TnS000776413t04.cds11;Parent=TnS000776413t04
scaffold776413 . exon 559066 559501 . - . ID=TnS000776413t04.exon12;Name=TnS000776413t04.exon12;Parent=TnS000776413t04
scaffold776413 . CDS 559415 559501 . - 0 ID=TnS000776413t04.cds12;Name=TnS000776413t04.cds12;Parent=TnS000776413t04
scaffold776413 . three_prime_UTR 559066 559414 . - . ID=TnS000776413t04.utr3p1;Name=TnS000776413t04.utr3p1;Parent=TnS000776413t04
scaffold776413 EVM gene 1327578 1331116 . + . ID=TnS000776413g13;Name=TnS000776413g13
scaffold776413 EVM mRNA 1327578 1331116 . + . ID=TnS000776413t13;Name=TnS000776413t13;Parent=TnS000776413g13
scaffold776413 EVM exon 1327578 1327698 . + . ID=TnS000776413t13.exon1;Name=TnS000776413t13.exon1;Parent=TnS000776413t13
scaffold776413 EVM CDS 1327578 1327698 . + 0 ID=TnS000776413t13.cds1;Name=TnS000776413t13.cds1;Parent=TnS000776413t13
scaffold776413 EVM exon 1329174 1331116 . + . ID=TnS000776413t13.exon2;Name=TnS000776413t13.exon2;Parent=TnS000776413t13
scaffold776413 EVM CDS 1329174 1331116 . + 1 ID=TnS000776413t13.cds2;Name=TnS000776413t13.cds2;Parent=TnS000776413t13
scaffold776413 EVM gene 845168 851362 . + . ID=TnS000776413g06;Name=TnS000776413g06
scaffold776413 EVM mRNA 845168 851362 . + . ID=TnS000776413t06;Name=TnS000776413t06;Parent=TnS000776413g06
scaffold776413 EVM exon 845168 845375 . + . ID=TnS000776413t06.exon1;Name=TnS000776413t06.exon1;Parent=TnS000776413t06
scaffold776413 EVM CDS 845168 845375 . + 1 ID=TnS000776413t06.cds1;Name=TnS000776413t06.cds1;Parent=TnS000776413t06
scaffold776413 EVM exon 845469 845980 . + . ID=TnS000776413t06.exon2;Name=TnS000776413t06.exon2;Parent=TnS000776413t06
scaffold776413 EVM CDS 845469 845980 . + 2 ID=TnS000776413t06.cds2;Name=TnS000776413t06.cds2;Parent=TnS000776413t06
scaffold776413 EVM exon 851124 851362 . + . ID=TnS000776413t06.exon3;Name=TnS000776413t06.exon3;Parent=TnS000776413t06
scaffold776413 EVM CDS 851124 851362 . + 1 ID=TnS000776413t06.cds3;Name=TnS000776413t06.cds3;Parent=TnS000776413t06
scaffold776413 . gene 468949 471162 . - . ID=TnS000776413g02;Name=TnS000776413g02
scaffold776413 . mRNA 468949 471162 . - . ID=TnS000776413t02;Name=TnS000776413t02;Parent=TnS000776413g02
scaffold776413 . five_prime_UTR 470810 471162 . - . ID=TnS000776413t02.utr5p1;Name=TnS000776413t02.utr5p1;Parent=TnS000776413t02
scaffold776413 . exon 470773 471162 . - . ID=TnS000776413t02.exon1;Name=TnS000776413t02.exon1;Parent=TnS000776413t02
scaffold776413 . CDS 470773 470809 . - 0 ID=TnS000776413t02.cds1;Name=TnS000776413t02.cds1;Parent=TnS000776413t02
scaffold776413 . exon 469841 469896 . - . ID=TnS000776413t02.exon2;Name=TnS000776413t02.exon2;Parent=TnS000776413t02
scaffold776413 . CDS 469841 469896 . - 2 ID=TnS000776413t02.cds2;Name=TnS000776413t02.cds2;Parent=TnS000776413t02
scaffold776413 . exon 469702 469754 . - . ID=TnS000776413t02.exon3;Name=TnS000776413t02.exon3;Parent=TnS000776413t02
scaffold776413 . CDS 469702 469754 . - 0 ID=TnS000776413t02.cds3;Name=TnS000776413t02.cds3;Parent=TnS000776413t02
scaffold776413 . exon 469495 469613 . - . ID=TnS000776413t02.exon4;Name=TnS000776413t02.exon4;Parent=TnS000776413t02