-
Notifications
You must be signed in to change notification settings - Fork 0
/
stmg.gtf
3928 lines (3928 loc) · 411 KB
/
stmg.gtf
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
chr1 stmg exon 182424 182713 . + . gene_id "stmg_chr1_plus.1"; transcript_id "stmg_chr1_plus.1.1";
chr1 stmg exon 183923 184152 . + . gene_id "stmg_chr1_plus.2"; transcript_id "stmg_chr1_plus.2.1";
chr1 stmg exon 1426128 1426385 . + . gene_id "stmg_chr1_plus.3"; transcript_id "stmg_chr1_plus.3.1";
chr1 stmg exon 1427554 1427781 . + . gene_id "stmg_chr1_plus.3"; transcript_id "stmg_chr1_plus.3.1";
chr1 stmg exon 1891530 1891851 . + . gene_id "stmg_chr1_plus.4"; transcript_id "stmg_chr1_plus.4.1";
chr1 stmg exon 1892134 1892643 . + . gene_id "stmg_chr1_plus.4"; transcript_id "stmg_chr1_plus.4.1";
chr1 stmg exon 2019355 2019491 . + . gene_id "stmg_chr1_plus.5"; transcript_id "stmg_chr1_plus.5.1";
chr1 stmg exon 2024942 2025054 . + . gene_id "stmg_chr1_plus.5"; transcript_id "stmg_chr1_plus.5.1";
chr1 stmg exon 2025334 2025401 . + . gene_id "stmg_chr1_plus.5"; transcript_id "stmg_chr1_plus.5.1";
chr1 stmg exon 2025518 2025738 . + . gene_id "stmg_chr1_plus.5"; transcript_id "stmg_chr1_plus.5.1";
chr1 stmg exon 2027577 2027659 . + . gene_id "stmg_chr1_plus.5"; transcript_id "stmg_chr1_plus.5.1";
chr1 stmg exon 2028155 2028292 . + . gene_id "stmg_chr1_plus.5"; transcript_id "stmg_chr1_plus.5.1";
chr1 stmg exon 2029111 2029266 . + . gene_id "stmg_chr1_plus.5"; transcript_id "stmg_chr1_plus.5.1";
chr1 stmg exon 2029551 2029762 . + . gene_id "stmg_chr1_plus.5"; transcript_id "stmg_chr1_plus.5.1";
chr1 stmg exon 2029983 2030750 . + . gene_id "stmg_chr1_plus.5"; transcript_id "stmg_chr1_plus.5.1";
chr1 stmg exon 2581560 2581650 . + . gene_id "stmg_chr1_plus.6"; transcript_id "stmg_chr1_plus.6.1";
chr1 stmg exon 2583370 2583495 . + . gene_id "stmg_chr1_plus.6"; transcript_id "stmg_chr1_plus.6.1";
chr1 stmg exon 2584125 2584533 . + . gene_id "stmg_chr1_plus.6"; transcript_id "stmg_chr1_plus.6.1";
chr1 stmg exon 11609532 11610113 . + . gene_id "stmg_chr1_plus.7"; transcript_id "stmg_chr1_plus.7.1";
chr1 stmg exon 11611843 11611978 . + . gene_id "stmg_chr1_plus.7"; transcript_id "stmg_chr1_plus.7.1";
chr1 stmg exon 11612790 11613331 . + . gene_id "stmg_chr1_plus.7"; transcript_id "stmg_chr1_plus.7.1";
chr1 stmg exon 12528075 12528417 . + . gene_id "stmg_chr1_plus.8"; transcript_id "stmg_chr1_plus.8.1";
chr1 stmg exon 16159359 16159426 . + . gene_id "stmg_chr1_plus.9"; transcript_id "stmg_chr1_plus.9.1";
chr1 stmg exon 16161501 16161874 . + . gene_id "stmg_chr1_plus.9"; transcript_id "stmg_chr1_plus.9.1";
chr1 stmg exon 16520756 16520787 . + . gene_id "stmg_chr1_plus.10"; transcript_id "stmg_chr1_plus.10.1";
chr1 stmg exon 16521564 16521756 . + . gene_id "stmg_chr1_plus.10"; transcript_id "stmg_chr1_plus.10.1";
chr1 stmg exon 16645622 16645678 . + . gene_id "stmg_chr1_plus.11"; transcript_id "stmg_chr1_plus.11.1";
chr1 stmg exon 16646369 16646515 . + . gene_id "stmg_chr1_plus.11"; transcript_id "stmg_chr1_plus.11.1";
chr1 stmg exon 16646597 16646709 . + . gene_id "stmg_chr1_plus.11"; transcript_id "stmg_chr1_plus.11.1";
chr1 stmg exon 16646787 16646901 . + . gene_id "stmg_chr1_plus.11"; transcript_id "stmg_chr1_plus.11.1";
chr1 stmg exon 16646980 16647116 . + . gene_id "stmg_chr1_plus.11"; transcript_id "stmg_chr1_plus.11.1";
chr1 stmg exon 16647198 16647318 . + . gene_id "stmg_chr1_plus.11"; transcript_id "stmg_chr1_plus.11.1";
chr1 stmg exon 16647463 16647581 . + . gene_id "stmg_chr1_plus.11"; transcript_id "stmg_chr1_plus.11.1";
chr1 stmg exon 16647784 16647952 . + . gene_id "stmg_chr1_plus.11"; transcript_id "stmg_chr1_plus.11.1";
chr1 stmg exon 16648068 16648198 . + . gene_id "stmg_chr1_plus.11"; transcript_id "stmg_chr1_plus.11.1";
chr1 stmg exon 16648299 16648664 . + . gene_id "stmg_chr1_plus.11"; transcript_id "stmg_chr1_plus.11.1";
chr1 stmg exon 16648756 16648792 . + . gene_id "stmg_chr1_plus.11"; transcript_id "stmg_chr1_plus.11.1";
chr1 stmg exon 16648881 16649001 . + . gene_id "stmg_chr1_plus.11"; transcript_id "stmg_chr1_plus.11.1";
chr1 stmg exon 16649174 16649251 . + . gene_id "stmg_chr1_plus.11"; transcript_id "stmg_chr1_plus.11.1";
chr1 stmg exon 16649379 16649525 . + . gene_id "stmg_chr1_plus.11"; transcript_id "stmg_chr1_plus.11.1";
chr1 stmg exon 16649607 16649713 . + . gene_id "stmg_chr1_plus.11"; transcript_id "stmg_chr1_plus.11.1";
chr1 stmg exon 16649810 16649949 . + . gene_id "stmg_chr1_plus.11"; transcript_id "stmg_chr1_plus.11.1";
chr1 stmg exon 16650074 16650289 . + . gene_id "stmg_chr1_plus.11"; transcript_id "stmg_chr1_plus.11.1";
chr1 stmg exon 19665302 19666467 . + . gene_id "stmg_chr1_plus.12"; transcript_id "stmg_chr1_plus.12.1";
chr1 stmg exon 19678567 19678725 . + . gene_id "stmg_chr1_plus.12"; transcript_id "stmg_chr1_plus.12.1";
chr1 stmg exon 19678919 19679558 . + . gene_id "stmg_chr1_plus.12"; transcript_id "stmg_chr1_plus.12.1";
chr1 stmg exon 25581520 25581772 . + . gene_id "stmg_chr1_plus.13"; transcript_id "stmg_chr1_plus.13.1";
chr1 stmg exon 25590169 25590355 . + . gene_id "stmg_chr1_plus.13"; transcript_id "stmg_chr1_plus.13.1";
chr1 stmg exon 27392646 27392737 . + . gene_id "stmg_chr1_plus.14"; transcript_id "stmg_chr1_plus.14.1";
chr1 stmg exon 27393794 27395814 . + . gene_id "stmg_chr1_plus.14"; transcript_id "stmg_chr1_plus.14.1";
chr1 stmg exon 27530361 27530561 . + . gene_id "stmg_chr1_plus.15"; transcript_id "stmg_chr1_plus.15.1";
chr1 stmg exon 28259527 28259937 . + . gene_id "stmg_chr1_plus.16"; transcript_id "stmg_chr1_plus.16.1";
chr1 stmg exon 28269183 28269248 . + . gene_id "stmg_chr1_plus.16"; transcript_id "stmg_chr1_plus.16.1";
chr1 stmg exon 28271674 28271871 . + . gene_id "stmg_chr1_plus.16"; transcript_id "stmg_chr1_plus.16.1";
chr1 stmg exon 28272284 28272466 . + . gene_id "stmg_chr1_plus.16"; transcript_id "stmg_chr1_plus.16.1";
chr1 stmg exon 28272581 28272793 . + . gene_id "stmg_chr1_plus.16"; transcript_id "stmg_chr1_plus.16.1";
chr1 stmg exon 28273358 28273508 . + . gene_id "stmg_chr1_plus.16"; transcript_id "stmg_chr1_plus.16.1";
chr1 stmg exon 28274040 28274158 . + . gene_id "stmg_chr1_plus.16"; transcript_id "stmg_chr1_plus.16.1";
chr1 stmg exon 28274825 28275015 . + . gene_id "stmg_chr1_plus.16"; transcript_id "stmg_chr1_plus.16.1";
chr1 stmg exon 28279097 28279241 . + . gene_id "stmg_chr1_plus.16"; transcript_id "stmg_chr1_plus.16.1";
chr1 stmg exon 28280716 28282491 . + . gene_id "stmg_chr1_plus.16"; transcript_id "stmg_chr1_plus.16.1";
chr1 stmg exon 32247233 32247682 . + . gene_id "stmg_chr1_plus.17"; transcript_id "stmg_chr1_plus.17.1";
chr1 stmg exon 32248371 32248856 . + . gene_id "stmg_chr1_plus.17"; transcript_id "stmg_chr1_plus.17.1";
chr1 stmg exon 36088876 36089115 . + . gene_id "stmg_chr1_plus.18"; transcript_id "stmg_chr1_plus.18.1";
chr1 stmg exon 36091244 36091340 . + . gene_id "stmg_chr1_plus.18"; transcript_id "stmg_chr1_plus.18.1";
chr1 stmg exon 36091618 36091825 . + . gene_id "stmg_chr1_plus.18"; transcript_id "stmg_chr1_plus.18.1";
chr1 stmg exon 36091910 36092094 . + . gene_id "stmg_chr1_plus.18"; transcript_id "stmg_chr1_plus.18.1";
chr1 stmg exon 36092422 36092522 . + . gene_id "stmg_chr1_plus.18"; transcript_id "stmg_chr1_plus.18.1";
chr1 stmg exon 36093097 36093932 . + . gene_id "stmg_chr1_plus.18"; transcript_id "stmg_chr1_plus.18.1";
chr1 stmg exon 42678737 42678869 . + . gene_id "stmg_chr1_plus.19"; transcript_id "stmg_chr1_plus.19.1";
chr1 stmg exon 42681194 42681654 . + . gene_id "stmg_chr1_plus.19"; transcript_id "stmg_chr1_plus.19.1";
chr1 stmg exon 53328235 53328375 . + . gene_id "stmg_chr1_plus.20"; transcript_id "stmg_chr1_plus.20.1";
chr1 stmg exon 53331168 53331251 . + . gene_id "stmg_chr1_plus.20"; transcript_id "stmg_chr1_plus.20.1";
chr1 stmg exon 53336170 53336508 . + . gene_id "stmg_chr1_plus.20"; transcript_id "stmg_chr1_plus.20.1";
chr1 stmg exon 56854806 56854978 . + . gene_id "stmg_chr1_plus.21"; transcript_id "stmg_chr1_plus.21.1";
chr1 stmg exon 56867609 56867702 . + . gene_id "stmg_chr1_plus.21"; transcript_id "stmg_chr1_plus.21.1";
chr1 stmg exon 56874949 56875093 . + . gene_id "stmg_chr1_plus.21"; transcript_id "stmg_chr1_plus.21.1";
chr1 stmg exon 56876062 56876209 . + . gene_id "stmg_chr1_plus.21"; transcript_id "stmg_chr1_plus.21.1";
chr1 stmg exon 56881445 56881634 . + . gene_id "stmg_chr1_plus.21"; transcript_id "stmg_chr1_plus.21.1";
chr1 stmg exon 56883481 56883681 . + . gene_id "stmg_chr1_plus.21"; transcript_id "stmg_chr1_plus.21.1";
chr1 stmg exon 56885927 56886167 . + . gene_id "stmg_chr1_plus.21"; transcript_id "stmg_chr1_plus.21.1";
chr1 stmg exon 56906667 56906792 . + . gene_id "stmg_chr1_plus.21"; transcript_id "stmg_chr1_plus.21.1";
chr1 stmg exon 56907956 56908113 . + . gene_id "stmg_chr1_plus.21"; transcript_id "stmg_chr1_plus.21.1";
chr1 stmg exon 56912403 56912625 . + . gene_id "stmg_chr1_plus.21"; transcript_id "stmg_chr1_plus.21.1";
chr1 stmg exon 56917565 56918188 . + . gene_id "stmg_chr1_plus.21"; transcript_id "stmg_chr1_plus.21.1";
chr1 stmg exon 62688485 62688652 . + . gene_id "stmg_chr1_plus.22"; transcript_id "stmg_chr1_plus.22.1";
chr1 stmg exon 62709638 62710694 . + . gene_id "stmg_chr1_plus.22"; transcript_id "stmg_chr1_plus.22.1";
chr1 stmg exon 62901295 62901607 . + . gene_id "stmg_chr1_plus.23"; transcript_id "stmg_chr1_plus.23.1";
chr1 stmg exon 69433256 69433305 . + . gene_id "stmg_chr1_plus.24"; transcript_id "stmg_chr1_plus.24.1";
chr1 stmg exon 69435003 69435408 . + . gene_id "stmg_chr1_plus.24"; transcript_id "stmg_chr1_plus.24.1";
chr1 stmg exon 89364059 89364127 . + . gene_id "stmg_chr1_plus.25"; transcript_id "stmg_chr1_plus.25.1";
chr1 stmg exon 89368529 89368741 . + . gene_id "stmg_chr1_plus.25"; transcript_id "stmg_chr1_plus.25.1";
chr1 stmg exon 89369546 89369673 . + . gene_id "stmg_chr1_plus.25"; transcript_id "stmg_chr1_plus.25.1";
chr1 stmg exon 89378103 89378212 . + . gene_id "stmg_chr1_plus.25"; transcript_id "stmg_chr1_plus.25.1";
chr1 stmg exon 89378417 89378613 . + . gene_id "stmg_chr1_plus.25"; transcript_id "stmg_chr1_plus.25.1";
chr1 stmg exon 89380386 89380631 . + . gene_id "stmg_chr1_plus.25"; transcript_id "stmg_chr1_plus.25.1";
chr1 stmg exon 89381694 89381974 . + . gene_id "stmg_chr1_plus.25"; transcript_id "stmg_chr1_plus.25.1";
chr1 stmg exon 89382664 89382876 . + . gene_id "stmg_chr1_plus.25"; transcript_id "stmg_chr1_plus.25.1";
chr1 stmg exon 89383652 89383754 . + . gene_id "stmg_chr1_plus.25"; transcript_id "stmg_chr1_plus.25.1";
chr1 stmg exon 89384093 89384286 . + . gene_id "stmg_chr1_plus.25"; transcript_id "stmg_chr1_plus.25.1";
chr1 stmg exon 89385230 89386422 . + . gene_id "stmg_chr1_plus.25"; transcript_id "stmg_chr1_plus.25.1";
chr1 stmg exon 92167053 92167140 . + . gene_id "stmg_chr1_plus.26"; transcript_id "stmg_chr1_plus.26.1";
chr1 stmg exon 92167848 92167985 . + . gene_id "stmg_chr1_plus.26"; transcript_id "stmg_chr1_plus.26.1";
chr1 stmg exon 92168866 92168995 . + . gene_id "stmg_chr1_plus.26"; transcript_id "stmg_chr1_plus.26.1";
chr1 stmg exon 92171399 92171460 . + . gene_id "stmg_chr1_plus.26"; transcript_id "stmg_chr1_plus.26.1";
chr1 stmg exon 92176829 92177546 . + . gene_id "stmg_chr1_plus.26"; transcript_id "stmg_chr1_plus.26.1";
chr1 stmg exon 92177811 92177898 . + . gene_id "stmg_chr1_plus.26"; transcript_id "stmg_chr1_plus.26.1";
chr1 stmg exon 92178312 92178451 . + . gene_id "stmg_chr1_plus.26"; transcript_id "stmg_chr1_plus.26.1";
chr1 stmg exon 92180265 92182595 . + . gene_id "stmg_chr1_plus.26"; transcript_id "stmg_chr1_plus.26.1";
chr1 stmg exon 92183864 92184723 . + . gene_id "stmg_chr1_plus.26"; transcript_id "stmg_chr1_plus.26.1";
chr1 stmg exon 117606054 117606153 . + . gene_id "stmg_chr1_plus.27"; transcript_id "stmg_chr1_plus.27.1";
chr1 stmg exon 117622842 117628372 . + . gene_id "stmg_chr1_plus.27"; transcript_id "stmg_chr1_plus.27.1";
chr1 stmg exon 120436353 120436697 . + . gene_id "stmg_chr1_plus.28"; transcript_id "stmg_chr1_plus.28.1";
chr1 stmg exon 120438544 120438646 . + . gene_id "stmg_chr1_plus.28"; transcript_id "stmg_chr1_plus.28.1";
chr1 stmg exon 120439476 120439690 . + . gene_id "stmg_chr1_plus.28"; transcript_id "stmg_chr1_plus.28.1";
chr1 stmg exon 120440742 120440814 . + . gene_id "stmg_chr1_plus.28"; transcript_id "stmg_chr1_plus.28.1";
chr1 stmg exon 120441278 120441489 . + . gene_id "stmg_chr1_plus.28"; transcript_id "stmg_chr1_plus.28.1";
chr1 stmg exon 120442841 120443050 . + . gene_id "stmg_chr1_plus.28"; transcript_id "stmg_chr1_plus.28.1";
chr1 stmg exon 120444897 120444999 . + . gene_id "stmg_chr1_plus.28"; transcript_id "stmg_chr1_plus.28.1";
chr1 stmg exon 120445829 120446043 . + . gene_id "stmg_chr1_plus.28"; transcript_id "stmg_chr1_plus.28.1";
chr1 stmg exon 120447094 120447166 . + . gene_id "stmg_chr1_plus.28"; transcript_id "stmg_chr1_plus.28.1";
chr1 stmg exon 120447630 120447841 . + . gene_id "stmg_chr1_plus.28"; transcript_id "stmg_chr1_plus.28.1";
chr1 stmg exon 120449193 120449402 . + . gene_id "stmg_chr1_plus.28"; transcript_id "stmg_chr1_plus.28.1";
chr1 stmg exon 120451180 120451282 . + . gene_id "stmg_chr1_plus.28"; transcript_id "stmg_chr1_plus.28.1";
chr1 stmg exon 120452117 120452331 . + . gene_id "stmg_chr1_plus.28"; transcript_id "stmg_chr1_plus.28.1";
chr1 stmg exon 120453372 120453444 . + . gene_id "stmg_chr1_plus.28"; transcript_id "stmg_chr1_plus.28.1";
chr1 stmg exon 120453909 120454114 . + . gene_id "stmg_chr1_plus.28"; transcript_id "stmg_chr1_plus.28.1";
chr1 stmg exon 120455409 120455460 . + . gene_id "stmg_chr1_plus.28"; transcript_id "stmg_chr1_plus.28.1";
chr1 stmg exon 120459367 120459530 . + . gene_id "stmg_chr1_plus.28"; transcript_id "stmg_chr1_plus.28.1";
chr1 stmg exon 120460573 120460624 . + . gene_id "stmg_chr1_plus.28"; transcript_id "stmg_chr1_plus.28.1";
chr1 stmg exon 120461254 120461426 . + . gene_id "stmg_chr1_plus.28"; transcript_id "stmg_chr1_plus.28.1";
chr1 stmg exon 120462146 120462197 . + . gene_id "stmg_chr1_plus.28"; transcript_id "stmg_chr1_plus.28.1";
chr1 stmg exon 120462794 120462966 . + . gene_id "stmg_chr1_plus.28"; transcript_id "stmg_chr1_plus.28.1";
chr1 stmg exon 120463676 120463727 . + . gene_id "stmg_chr1_plus.28"; transcript_id "stmg_chr1_plus.28.1";
chr1 stmg exon 120464376 120464548 . + . gene_id "stmg_chr1_plus.28"; transcript_id "stmg_chr1_plus.28.1";
chr1 stmg exon 120465263 120465371 . + . gene_id "stmg_chr1_plus.28"; transcript_id "stmg_chr1_plus.28.1";
chr1 stmg exon 120465978 120467739 . + . gene_id "stmg_chr1_plus.28"; transcript_id "stmg_chr1_plus.28.1";
chr1 stmg exon 120723923 120724250 . + . gene_id "stmg_chr1_plus.29"; transcript_id "stmg_chr1_plus.29.1";
chr1 stmg exon 120763628 120763709 . + . gene_id "stmg_chr1_plus.29"; transcript_id "stmg_chr1_plus.29.1";
chr1 stmg exon 120784974 120785233 . + . gene_id "stmg_chr1_plus.29"; transcript_id "stmg_chr1_plus.29.1";
chr1 stmg exon 120793161 120793496 . + . gene_id "stmg_chr1_plus.29"; transcript_id "stmg_chr1_plus.29.1";
chr1 stmg exon 120793747 120793877 . + . gene_id "stmg_chr1_plus.29"; transcript_id "stmg_chr1_plus.29.1";
chr1 stmg exon 143975087 143975153 . + . gene_id "stmg_chr1_plus.30"; transcript_id "stmg_chr1_plus.30.1";
chr1 stmg exon 144045747 144045809 . + . gene_id "stmg_chr1_plus.30"; transcript_id "stmg_chr1_plus.30.1";
chr1 stmg exon 144054438 144054653 . + . gene_id "stmg_chr1_plus.30"; transcript_id "stmg_chr1_plus.30.1";
chr1 stmg exon 144055293 144055421 . + . gene_id "stmg_chr1_plus.30"; transcript_id "stmg_chr1_plus.30.1";
chr1 stmg exon 144063173 144063394 . + . gene_id "stmg_chr1_plus.30"; transcript_id "stmg_chr1_plus.30.1";
chr1 stmg exon 144067001 144067102 . + . gene_id "stmg_chr1_plus.30"; transcript_id "stmg_chr1_plus.30.1";
chr1 stmg exon 144068129 144068350 . + . gene_id "stmg_chr1_plus.30"; transcript_id "stmg_chr1_plus.30.1";
chr1 stmg exon 145096000 145096999 . + . gene_id "stmg_chr1_plus.31"; transcript_id "stmg_chr1_plus.31.1";
chr1 stmg exon 145098988 145099065 . + . gene_id "stmg_chr1_plus.31"; transcript_id "stmg_chr1_plus.31.1";
chr1 stmg exon 145103007 145103131 . + . gene_id "stmg_chr1_plus.31"; transcript_id "stmg_chr1_plus.31.1";
chr1 stmg exon 145111503 145112696 . + . gene_id "stmg_chr1_plus.31"; transcript_id "stmg_chr1_plus.31.1";
chr1 stmg exon 145507472 145507599 . + . gene_id "stmg_chr1_plus.32"; transcript_id "stmg_chr1_plus.32.1";
chr1 stmg exon 145508494 145508607 . + . gene_id "stmg_chr1_plus.32"; transcript_id "stmg_chr1_plus.32.1";
chr1 stmg exon 149048578 149048990 . + . gene_id "stmg_chr1_plus.33"; transcript_id "stmg_chr1_plus.33.1";
chr1 stmg exon 149050820 149051273 . + . gene_id "stmg_chr1_plus.33"; transcript_id "stmg_chr1_plus.33.1";
chr1 stmg exon 149345661 149345770 . + . gene_id "stmg_chr1_plus.34"; transcript_id "stmg_chr1_plus.34.1";
chr1 stmg exon 149351251 149351411 . + . gene_id "stmg_chr1_plus.34"; transcript_id "stmg_chr1_plus.34.1";
chr1 stmg exon 149354096 149354242 . + . gene_id "stmg_chr1_plus.34"; transcript_id "stmg_chr1_plus.34.1";
chr1 stmg exon 149357458 149357612 . + . gene_id "stmg_chr1_plus.34"; transcript_id "stmg_chr1_plus.34.1";
chr1 stmg exon 150515760 150516062 . + . gene_id "stmg_chr1_plus.35"; transcript_id "stmg_chr1_plus.35.1";
chr1 stmg exon 150517773 150518025 . + . gene_id "stmg_chr1_plus.35"; transcript_id "stmg_chr1_plus.35.1";
chr1 stmg exon 152908545 152908589 . + . gene_id "stmg_chr1_plus.36"; transcript_id "stmg_chr1_plus.36.1";
chr1 stmg exon 152909779 152911886 . + . gene_id "stmg_chr1_plus.36"; transcript_id "stmg_chr1_plus.36.1";
chr1 stmg exon 153031212 153031247 . + . gene_id "stmg_chr1_plus.37"; transcript_id "stmg_chr1_plus.37.1";
chr1 stmg exon 153032327 153032900 . + . gene_id "stmg_chr1_plus.37"; transcript_id "stmg_chr1_plus.37.1";
chr1 stmg exon 153217590 153217619 . + . gene_id "stmg_chr1_plus.38"; transcript_id "stmg_chr1_plus.38.1";
chr1 stmg exon 153218125 153219270 . + . gene_id "stmg_chr1_plus.38"; transcript_id "stmg_chr1_plus.38.1";
chr1 stmg exon 153357865 153357881 . + . gene_id "stmg_chr1_plus.39"; transcript_id "stmg_chr1_plus.39.1";
chr1 stmg exon 153358269 153358433 . + . gene_id "stmg_chr1_plus.39"; transcript_id "stmg_chr1_plus.39.1";
chr1 stmg exon 153360644 153361024 . + . gene_id "stmg_chr1_plus.39"; transcript_id "stmg_chr1_plus.39.1";
chr1 stmg exon 155859509 155859795 . + . gene_id "stmg_chr1_plus.40"; transcript_id "stmg_chr1_plus.40.1";
chr1 stmg exon 155867965 155868791 . + . gene_id "stmg_chr1_plus.40"; transcript_id "stmg_chr1_plus.40.1";
chr1 stmg exon 155880500 155880623 . + . gene_id "stmg_chr1_plus.40"; transcript_id "stmg_chr1_plus.40.1";
chr1 stmg exon 155881198 155885199 . + . gene_id "stmg_chr1_plus.40"; transcript_id "stmg_chr1_plus.40.1";
chr1 stmg exon 157280717 157280853 . + . gene_id "stmg_chr1_plus.41"; transcript_id "stmg_chr1_plus.41.1";
chr1 stmg exon 157282578 157283066 . + . gene_id "stmg_chr1_plus.41"; transcript_id "stmg_chr1_plus.41.1";
chr1 stmg exon 160367067 160367337 . + . gene_id "stmg_chr1_plus.42"; transcript_id "stmg_chr1_plus.42.1";
chr1 stmg exon 160370557 160372848 . + . gene_id "stmg_chr1_plus.42"; transcript_id "stmg_chr1_plus.42.1";
chr1 stmg exon 161258727 161258983 . + . gene_id "stmg_chr1_plus.43"; transcript_id "stmg_chr1_plus.43.1";
chr1 stmg exon 161283668 161283722 . + . gene_id "stmg_chr1_plus.43"; transcript_id "stmg_chr1_plus.43.1";
chr1 stmg exon 161284339 161285450 . + . gene_id "stmg_chr1_plus.43"; transcript_id "stmg_chr1_plus.43.1";
chr1 stmg exon 162445833 162445881 . + . gene_id "stmg_chr1_plus.44"; transcript_id "stmg_chr1_plus.44.1";
chr1 stmg exon 162446298 162446531 . + . gene_id "stmg_chr1_plus.44"; transcript_id "stmg_chr1_plus.44.1";
chr1 stmg exon 180558977 180559055 . + . gene_id "stmg_chr1_plus.45"; transcript_id "stmg_chr1_plus.45.1";
chr1 stmg exon 180562204 180562344 . + . gene_id "stmg_chr1_plus.45"; transcript_id "stmg_chr1_plus.45.1";
chr1 stmg exon 180565251 180566387 . + . gene_id "stmg_chr1_plus.45"; transcript_id "stmg_chr1_plus.45.1";
chr1 stmg exon 185001533 185001627 . + . gene_id "stmg_chr1_plus.46"; transcript_id "stmg_chr1_plus.46.1";
chr1 stmg exon 185007694 185008683 . + . gene_id "stmg_chr1_plus.46"; transcript_id "stmg_chr1_plus.46.1";
chr1 stmg exon 187359913 187360187 . + . gene_id "stmg_chr1_plus.47"; transcript_id "stmg_chr1_plus.47.1";
chr1 stmg exon 213492422 213492575 . + . gene_id "stmg_chr1_plus.48"; transcript_id "stmg_chr1_plus.48.1";
chr1 stmg exon 213546283 213546360 . + . gene_id "stmg_chr1_plus.48"; transcript_id "stmg_chr1_plus.48.1";
chr1 stmg exon 223144167 223144243 . + . gene_id "stmg_chr1_plus.49"; transcript_id "stmg_chr1_plus.49.1";
chr1 stmg exon 223144537 223144953 . + . gene_id "stmg_chr1_plus.49"; transcript_id "stmg_chr1_plus.49.1";
chr1 stmg exon 228149958 228150007 . + . gene_id "stmg_chr1_plus.50"; transcript_id "stmg_chr1_plus.50.1";
chr1 stmg exon 228157740 228159826 . + . gene_id "stmg_chr1_plus.50"; transcript_id "stmg_chr1_plus.50.1";
chr1 stmg exon 229514015 229514262 . + . gene_id "stmg_chr1_plus.51"; transcript_id "stmg_chr1_plus.51.1";
chr1 stmg exon 230874847 230875155 . + . gene_id "stmg_chr1_plus.52"; transcript_id "stmg_chr1_plus.52.1";
chr1 stmg exon 230875306 230875565 . + . gene_id "stmg_chr1_plus.52"; transcript_id "stmg_chr1_plus.52.1";
chr1 stmg exon 230878792 230878972 . + . gene_id "stmg_chr1_plus.52"; transcript_id "stmg_chr1_plus.52.1";
chr1 stmg exon 234629311 234629747 . + . gene_id "stmg_chr1_plus.53"; transcript_id "stmg_chr1_plus.53.1";
chr1 stmg exon 234632948 234634780 . + . gene_id "stmg_chr1_plus.53"; transcript_id "stmg_chr1_plus.53.1";
chr1 stmg exon 246690048 246690214 . + . gene_id "stmg_chr1_plus.54"; transcript_id "stmg_chr1_plus.54.1";
chr1 stmg exon 246691468 246691801 . + . gene_id "stmg_chr1_plus.54"; transcript_id "stmg_chr1_plus.54.1";
chr1 stmg exon 247857199 247857666 . + . gene_id "stmg_chr1_plus.55"; transcript_id "stmg_chr1_plus.55.1";
chr1 stmg exon 247860617 247860712 . + . gene_id "stmg_chr1_plus.55"; transcript_id "stmg_chr1_plus.55.1";
chr1 stmg exon 247864705 247864935 . + . gene_id "stmg_chr1_plus.55"; transcript_id "stmg_chr1_plus.55.1";
chr1 stmg exon 247867845 247867867 . + . gene_id "stmg_chr1_plus.55"; transcript_id "stmg_chr1_plus.55.1";
chr1 stmg exon 247867963 247868063 . + . gene_id "stmg_chr1_plus.55"; transcript_id "stmg_chr1_plus.55.1";
chr1 stmg exon 247875900 247878205 . + . gene_id "stmg_chr1_plus.55"; transcript_id "stmg_chr1_plus.55.1";
chr2 stmg exon 7725801 7725853 . + . gene_id "stmg_chr2_plus.1"; transcript_id "stmg_chr2_plus.1.1";
chr2 stmg exon 7730516 7730705 . + . gene_id "stmg_chr2_plus.1"; transcript_id "stmg_chr2_plus.1.1";
chr2 stmg exon 10878271 10878444 . + . gene_id "stmg_chr2_plus.2"; transcript_id "stmg_chr2_plus.2.1";
chr2 stmg exon 10884834 10885118 . + . gene_id "stmg_chr2_plus.2"; transcript_id "stmg_chr2_plus.2.1";
chr2 stmg exon 20052134 20052494 . + . gene_id "stmg_chr2_plus.3"; transcript_id "stmg_chr2_plus.3.1";
chr2 stmg exon 20054285 20054337 . + . gene_id "stmg_chr2_plus.3"; transcript_id "stmg_chr2_plus.3.1";
chr2 stmg exon 20451044 20451140 . + . gene_id "stmg_chr2_plus.4"; transcript_id "stmg_chr2_plus.4.1";
chr2 stmg exon 20452739 20452947 . + . gene_id "stmg_chr2_plus.4"; transcript_id "stmg_chr2_plus.4.1";
chr2 stmg exon 37326529 37326781 . + . gene_id "stmg_chr2_plus.5"; transcript_id "stmg_chr2_plus.5.1";
chr2 stmg exon 43838964 43839116 . + . gene_id "stmg_chr2_plus.6"; transcript_id "stmg_chr2_plus.6.1";
chr2 stmg exon 43844507 43844608 . + . gene_id "stmg_chr2_plus.6"; transcript_id "stmg_chr2_plus.6.1";
chr2 stmg exon 43846155 43846311 . + . gene_id "stmg_chr2_plus.6"; transcript_id "stmg_chr2_plus.6.1";
chr2 stmg exon 43851584 43851822 . + . gene_id "stmg_chr2_plus.6"; transcript_id "stmg_chr2_plus.6.1";
chr2 stmg exon 43852354 43852486 . + . gene_id "stmg_chr2_plus.6"; transcript_id "stmg_chr2_plus.6.1";
chr2 stmg exon 43852599 43852868 . + . gene_id "stmg_chr2_plus.6"; transcript_id "stmg_chr2_plus.6.1";
chr2 stmg exon 43871976 43872138 . + . gene_id "stmg_chr2_plus.6"; transcript_id "stmg_chr2_plus.6.1";
chr2 stmg exon 43872223 43872306 . + . gene_id "stmg_chr2_plus.6"; transcript_id "stmg_chr2_plus.6.1";
chr2 stmg exon 43873787 43873986 . + . gene_id "stmg_chr2_plus.6"; transcript_id "stmg_chr2_plus.6.1";
chr2 stmg exon 43874407 43874483 . + . gene_id "stmg_chr2_plus.6"; transcript_id "stmg_chr2_plus.6.1";
chr2 stmg exon 43875146 43875413 . + . gene_id "stmg_chr2_plus.6"; transcript_id "stmg_chr2_plus.6.1";
chr2 stmg exon 43877561 43877688 . + . gene_id "stmg_chr2_plus.6"; transcript_id "stmg_chr2_plus.6.1";
chr2 stmg exon 43877776 43878463 . + . gene_id "stmg_chr2_plus.6"; transcript_id "stmg_chr2_plus.6.1";
chr2 stmg exon 44941899 44942910 . + . gene_id "stmg_chr2_plus.7"; transcript_id "stmg_chr2_plus.7.1";
chr2 stmg exon 44944568 44946076 . + . gene_id "stmg_chr2_plus.7"; transcript_id "stmg_chr2_plus.7.1";
chr2 stmg exon 62463133 62463318 . + . gene_id "stmg_chr2_plus.8"; transcript_id "stmg_chr2_plus.8.1";
chr2 stmg exon 62463839 62464067 . + . gene_id "stmg_chr2_plus.8"; transcript_id "stmg_chr2_plus.8.1";
chr2 stmg exon 70888290 70888348 . + . gene_id "stmg_chr2_plus.9"; transcript_id "stmg_chr2_plus.9.1";
chr2 stmg exon 70889476 70889588 . + . gene_id "stmg_chr2_plus.9"; transcript_id "stmg_chr2_plus.9.1";
chr2 stmg exon 70889821 70889874 . + . gene_id "stmg_chr2_plus.9"; transcript_id "stmg_chr2_plus.9.1";
chr2 stmg exon 70900590 70900868 . + . gene_id "stmg_chr2_plus.10"; transcript_id "stmg_chr2_plus.10.1";
chr2 stmg exon 70921098 70921285 . + . gene_id "stmg_chr2_plus.10"; transcript_id "stmg_chr2_plus.10.1";
chr2 stmg exon 70932767 70933446 . + . gene_id "stmg_chr2_plus.10"; transcript_id "stmg_chr2_plus.10.1";
chr2 stmg exon 73784375 73784406 . + . gene_id "stmg_chr2_plus.11"; transcript_id "stmg_chr2_plus.11.1";
chr2 stmg exon 73813477 73814226 . + . gene_id "stmg_chr2_plus.11"; transcript_id "stmg_chr2_plus.11.1";
chr2 stmg exon 73815071 73817028 . + . gene_id "stmg_chr2_plus.11"; transcript_id "stmg_chr2_plus.11.1";
chr2 stmg exon 73985132 73985157 . + . gene_id "stmg_chr2_plus.12"; transcript_id "stmg_chr2_plus.12.1";
chr2 stmg exon 73985980 73986343 . + . gene_id "stmg_chr2_plus.12"; transcript_id "stmg_chr2_plus.12.1";
chr2 stmg exon 74940258 74940739 . + . gene_id "stmg_chr2_plus.13"; transcript_id "stmg_chr2_plus.13.1";
chr2 stmg exon 74941887 74942670 . + . gene_id "stmg_chr2_plus.13"; transcript_id "stmg_chr2_plus.13.1";
chr2 stmg exon 85889281 85889803 . + . gene_id "stmg_chr2_plus.14"; transcript_id "stmg_chr2_plus.14.1";
chr2 stmg exon 85890722 85890965 . + . gene_id "stmg_chr2_plus.14"; transcript_id "stmg_chr2_plus.14.1";
chr2 stmg exon 87700984 87701053 . + . gene_id "stmg_chr2_plus.15"; transcript_id "stmg_chr2_plus.15.1";
chr2 stmg exon 87704333 87704600 . + . gene_id "stmg_chr2_plus.15"; transcript_id "stmg_chr2_plus.15.1";
chr2 stmg exon 87705880 87705970 . + . gene_id "stmg_chr2_plus.15"; transcript_id "stmg_chr2_plus.15.1";
chr2 stmg exon 87707762 87707910 . + . gene_id "stmg_chr2_plus.15"; transcript_id "stmg_chr2_plus.15.1";
chr2 stmg exon 87713359 87713437 . + . gene_id "stmg_chr2_plus.15"; transcript_id "stmg_chr2_plus.15.1";
chr2 stmg exon 87714048 87714084 . + . gene_id "stmg_chr2_plus.15"; transcript_id "stmg_chr2_plus.15.1";
chr2 stmg exon 87714179 87714249 . + . gene_id "stmg_chr2_plus.15"; transcript_id "stmg_chr2_plus.15.1";
chr2 stmg exon 87716612 87716790 . + . gene_id "stmg_chr2_plus.15"; transcript_id "stmg_chr2_plus.15.1";
chr2 stmg exon 87719807 87720021 . + . gene_id "stmg_chr2_plus.15"; transcript_id "stmg_chr2_plus.15.1";
chr2 stmg exon 87722301 87722419 . + . gene_id "stmg_chr2_plus.15"; transcript_id "stmg_chr2_plus.15.1";
chr2 stmg exon 87725937 87726208 . + . gene_id "stmg_chr2_plus.15"; transcript_id "stmg_chr2_plus.15.1";
chr2 stmg exon 87732387 87732621 . + . gene_id "stmg_chr2_plus.15"; transcript_id "stmg_chr2_plus.15.1";
chr2 stmg exon 87735674 87735765 . + . gene_id "stmg_chr2_plus.15"; transcript_id "stmg_chr2_plus.15.1";
chr2 stmg exon 87737718 87737852 . + . gene_id "stmg_chr2_plus.15"; transcript_id "stmg_chr2_plus.15.1";
chr2 stmg exon 87738023 87738105 . + . gene_id "stmg_chr2_plus.15"; transcript_id "stmg_chr2_plus.15.1";
chr2 stmg exon 88691646 88691983 . + . gene_id "stmg_chr2_plus.16"; transcript_id "stmg_chr2_plus.16.1";
chr2 stmg exon 88698484 88698544 . + . gene_id "stmg_chr2_plus.16"; transcript_id "stmg_chr2_plus.16.1";
chr2 stmg exon 88700009 88700064 . + . gene_id "stmg_chr2_plus.16"; transcript_id "stmg_chr2_plus.16.1";
chr2 stmg exon 88729278 88729337 . + . gene_id "stmg_chr2_plus.16"; transcript_id "stmg_chr2_plus.16.1";
chr2 stmg exon 88734552 88734616 . + . gene_id "stmg_chr2_plus.16"; transcript_id "stmg_chr2_plus.16.1";
chr2 stmg exon 88735669 88735737 . + . gene_id "stmg_chr2_plus.16"; transcript_id "stmg_chr2_plus.16.1";
chr2 stmg exon 88736535 88736676 . + . gene_id "stmg_chr2_plus.16"; transcript_id "stmg_chr2_plus.16.1";
chr2 stmg exon 88737977 88738076 . + . gene_id "stmg_chr2_plus.16"; transcript_id "stmg_chr2_plus.16.1";
chr2 stmg exon 88749981 88750935 . + . gene_id "stmg_chr2_plus.16"; transcript_id "stmg_chr2_plus.16.1";
chr2 stmg exon 91776048 91776107 . + . gene_id "stmg_chr2_plus.17"; transcript_id "stmg_chr2_plus.17.1";
chr2 stmg exon 91780410 91780587 . + . gene_id "stmg_chr2_plus.17"; transcript_id "stmg_chr2_plus.17.1";
chr2 stmg exon 95594054 95594425 . + . gene_id "stmg_chr2_plus.18"; transcript_id "stmg_chr2_plus.18.1";
chr2 stmg exon 95595050 95595145 . + . gene_id "stmg_chr2_plus.19"; transcript_id "stmg_chr2_plus.19.1";
chr2 stmg exon 95596202 95596432 . + . gene_id "stmg_chr2_plus.19"; transcript_id "stmg_chr2_plus.19.1";
chr2 stmg exon 95597329 95597351 . + . gene_id "stmg_chr2_plus.19"; transcript_id "stmg_chr2_plus.19.1";
chr2 stmg exon 95597880 95597977 . + . gene_id "stmg_chr2_plus.19"; transcript_id "stmg_chr2_plus.19.1";
chr2 stmg exon 95599092 95599778 . + . gene_id "stmg_chr2_plus.19"; transcript_id "stmg_chr2_plus.19.1";
chr2 stmg exon 95666092 95666403 . + . gene_id "stmg_chr2_plus.20"; transcript_id "stmg_chr2_plus.20.1";
chr2 stmg exon 95667917 95668704 . + . gene_id "stmg_chr2_plus.20"; transcript_id "stmg_chr2_plus.20.1";
chr2 stmg exon 106369724 106369869 . + . gene_id "stmg_chr2_plus.21"; transcript_id "stmg_chr2_plus.21.1";
chr2 stmg exon 106370939 106371159 . + . gene_id "stmg_chr2_plus.21"; transcript_id "stmg_chr2_plus.21.1";
chr2 stmg exon 106372234 106372443 . + . gene_id "stmg_chr2_plus.21"; transcript_id "stmg_chr2_plus.21.1";
chr2 stmg exon 106376451 106376545 . + . gene_id "stmg_chr2_plus.21"; transcript_id "stmg_chr2_plus.21.1";
chr2 stmg exon 106377965 106378032 . + . gene_id "stmg_chr2_plus.21"; transcript_id "stmg_chr2_plus.21.1";
chr2 stmg exon 113406428 113406450 . + . gene_id "stmg_chr2_plus.22"; transcript_id "stmg_chr2_plus.22.1";
chr2 stmg exon 113406575 113406869 . + . gene_id "stmg_chr2_plus.22"; transcript_id "stmg_chr2_plus.22.1";
chr2 stmg exon 113424495 113424575 . + . gene_id "stmg_chr2_plus.23"; transcript_id "stmg_chr2_plus.23.1";
chr2 stmg exon 113424898 113425320 . + . gene_id "stmg_chr2_plus.23"; transcript_id "stmg_chr2_plus.23.1";
chr2 stmg exon 113514985 113515278 . + . gene_id "stmg_chr2_plus.24"; transcript_id "stmg_chr2_plus.24.1";
chr2 stmg exon 120346143 120346636 . + . gene_id "stmg_chr2_plus.25"; transcript_id "stmg_chr2_plus.25.1";
chr2 stmg exon 120349099 120351808 . + . gene_id "stmg_chr2_plus.25"; transcript_id "stmg_chr2_plus.25.1";
chr2 stmg exon 127389132 127389185 . + . gene_id "stmg_chr2_plus.26"; transcript_id "stmg_chr2_plus.26.1";
chr2 stmg exon 127397947 127400563 . + . gene_id "stmg_chr2_plus.26"; transcript_id "stmg_chr2_plus.26.1";
chr2 stmg exon 136077952 136077994 . + . gene_id "stmg_chr2_plus.27"; transcript_id "stmg_chr2_plus.27.1";
chr2 stmg exon 136078148 136078513 . + . gene_id "stmg_chr2_plus.27"; transcript_id "stmg_chr2_plus.27.1";
chr2 stmg exon 139477492 139477742 . + . gene_id "stmg_chr2_plus.28"; transcript_id "stmg_chr2_plus.28.1";
chr2 stmg exon 170784646 170784833 . + . gene_id "stmg_chr2_plus.29"; transcript_id "stmg_chr2_plus.29.1";
chr2 stmg exon 170792863 170792920 . + . gene_id "stmg_chr2_plus.29"; transcript_id "stmg_chr2_plus.29.1";
chr2 stmg exon 170798041 170798112 . + . gene_id "stmg_chr2_plus.29"; transcript_id "stmg_chr2_plus.29.1";
chr2 stmg exon 170798770 170798971 . + . gene_id "stmg_chr2_plus.29"; transcript_id "stmg_chr2_plus.29.1";
chr2 stmg exon 195533037 195533243 . + . gene_id "stmg_chr2_plus.30"; transcript_id "stmg_chr2_plus.30.1";
chr2 stmg exon 195538041 195538681 . + . gene_id "stmg_chr2_plus.30"; transcript_id "stmg_chr2_plus.30.1";
chr2 stmg exon 207662375 207662522 . + . gene_id "stmg_chr2_plus.31"; transcript_id "stmg_chr2_plus.31.1";
chr2 stmg exon 207666681 207667024 . + . gene_id "stmg_chr2_plus.31"; transcript_id "stmg_chr2_plus.31.1";
chr2 stmg exon 234682668 234682768 . + . gene_id "stmg_chr2_plus.32"; transcript_id "stmg_chr2_plus.32.1";
chr2 stmg exon 234695649 234695748 . + . gene_id "stmg_chr2_plus.32"; transcript_id "stmg_chr2_plus.32.1";
chr2 stmg exon 234717635 234717764 . + . gene_id "stmg_chr2_plus.32"; transcript_id "stmg_chr2_plus.32.1";
chr2 stmg exon 241690414 241690653 . + . gene_id "stmg_chr2_plus.33"; transcript_id "stmg_chr2_plus.33.1";
chr2 stmg exon 241694115 241694289 . + . gene_id "stmg_chr2_plus.33"; transcript_id "stmg_chr2_plus.33.1";
chr2 stmg exon 241844380 241844478 . + . gene_id "stmg_chr2_plus.34"; transcript_id "stmg_chr2_plus.34.1";
chr2 stmg exon 241844565 241845036 . + . gene_id "stmg_chr2_plus.34"; transcript_id "stmg_chr2_plus.34.1";
chr3 stmg exon 10115621 10115819 . + . gene_id "stmg_chr3_plus.1"; transcript_id "stmg_chr3_plus.1.1";
chr3 stmg exon 10125626 10125708 . + . gene_id "stmg_chr3_plus.1"; transcript_id "stmg_chr3_plus.1.1";
chr3 stmg exon 10126269 10127190 . + . gene_id "stmg_chr3_plus.1"; transcript_id "stmg_chr3_plus.1.1";
chr3 stmg exon 32818018 32818932 . + . gene_id "stmg_chr3_plus.2"; transcript_id "stmg_chr3_plus.2.1";
chr3 stmg exon 32873818 32873985 . + . gene_id "stmg_chr3_plus.2"; transcript_id "stmg_chr3_plus.2.1";
chr3 stmg exon 32885934 32886068 . + . gene_id "stmg_chr3_plus.2"; transcript_id "stmg_chr3_plus.2.1";
chr3 stmg exon 32890360 32897826 . + . gene_id "stmg_chr3_plus.2"; transcript_id "stmg_chr3_plus.2.1";
chr3 stmg exon 32951577 32951690 . + . gene_id "stmg_chr3_plus.3"; transcript_id "stmg_chr3_plus.3.1";
chr3 stmg exon 32953372 32956337 . + . gene_id "stmg_chr3_plus.3"; transcript_id "stmg_chr3_plus.3.1";
chr3 stmg exon 44428882 44428941 . + . gene_id "stmg_chr3_plus.4"; transcript_id "stmg_chr3_plus.4.1";
chr3 stmg exon 44429066 44429472 . + . gene_id "stmg_chr3_plus.4"; transcript_id "stmg_chr3_plus.4.1";
chr3 stmg exon 48223347 48223712 . + . gene_id "stmg_chr3_plus.5"; transcript_id "stmg_chr3_plus.5.1";
chr3 stmg exon 48224354 48224461 . + . gene_id "stmg_chr3_plus.5"; transcript_id "stmg_chr3_plus.5.1";
chr3 stmg exon 48224603 48224674 . + . gene_id "stmg_chr3_plus.5"; transcript_id "stmg_chr3_plus.5.1";
chr3 stmg exon 48225293 48225489 . + . gene_id "stmg_chr3_plus.5"; transcript_id "stmg_chr3_plus.5.1";
chr3 stmg exon 49803254 49803443 . + . gene_id "stmg_chr3_plus.6"; transcript_id "stmg_chr3_plus.6.1";
chr3 stmg exon 49804181 49805030 . + . gene_id "stmg_chr3_plus.6"; transcript_id "stmg_chr3_plus.6.1";
chr3 stmg exon 73808604 73808668 . + . gene_id "stmg_chr3_plus.7"; transcript_id "stmg_chr3_plus.7.1";
chr3 stmg exon 73869776 73869961 . + . gene_id "stmg_chr3_plus.7"; transcript_id "stmg_chr3_plus.7.1";
chr3 stmg exon 73878806 73878997 . + . gene_id "stmg_chr3_plus.7"; transcript_id "stmg_chr3_plus.7.1";
chr3 stmg exon 73902531 73902839 . + . gene_id "stmg_chr3_plus.7"; transcript_id "stmg_chr3_plus.7.1";
chr3 stmg exon 80993874 80993927 . + . gene_id "stmg_chr3_plus.8"; transcript_id "stmg_chr3_plus.8.1";
chr3 stmg exon 81095112 81095646 . + . gene_id "stmg_chr3_plus.8"; transcript_id "stmg_chr3_plus.8.1";
chr3 stmg exon 108125841 108125908 . + . gene_id "stmg_chr3_plus.9"; transcript_id "stmg_chr3_plus.9.1";
chr3 stmg exon 108135144 108135350 . + . gene_id "stmg_chr3_plus.9"; transcript_id "stmg_chr3_plus.9.1";
chr3 stmg exon 108136314 108138610 . + . gene_id "stmg_chr3_plus.9"; transcript_id "stmg_chr3_plus.9.1";
chr3 stmg exon 131517834 131517909 . + . gene_id "stmg_chr3_plus.10"; transcript_id "stmg_chr3_plus.10.1";
chr3 stmg exon 131520385 131520859 . + . gene_id "stmg_chr3_plus.10"; transcript_id "stmg_chr3_plus.10.1";
chr3 stmg exon 168903383 168903540 . + . gene_id "stmg_chr3_plus.11"; transcript_id "stmg_chr3_plus.11.1";
chr3 stmg exon 168908287 168908413 . + . gene_id "stmg_chr3_plus.11"; transcript_id "stmg_chr3_plus.11.1";
chr3 stmg exon 168910672 168910814 . + . gene_id "stmg_chr3_plus.11"; transcript_id "stmg_chr3_plus.11.1";
chr3 stmg exon 168921732 168921979 . + . gene_id "stmg_chr3_plus.11"; transcript_id "stmg_chr3_plus.11.1";
chr3 stmg exon 170410614 170410773 . + . gene_id "stmg_chr3_plus.12"; transcript_id "stmg_chr3_plus.12.1";
chr3 stmg exon 170412797 170412932 . + . gene_id "stmg_chr3_plus.12"; transcript_id "stmg_chr3_plus.12.1";
chr3 stmg exon 170413153 170413239 . + . gene_id "stmg_chr3_plus.12"; transcript_id "stmg_chr3_plus.12.1";
chr3 stmg exon 170418437 170418548 . + . gene_id "stmg_chr3_plus.12"; transcript_id "stmg_chr3_plus.12.1";
chr3 stmg exon 184734102 184734240 . + . gene_id "stmg_chr3_plus.13"; transcript_id "stmg_chr3_plus.13.1";
chr3 stmg exon 184737552 184737771 . + . gene_id "stmg_chr3_plus.13"; transcript_id "stmg_chr3_plus.13.1";
chr3 stmg exon 184738635 184738949 . + . gene_id "stmg_chr3_plus.13"; transcript_id "stmg_chr3_plus.13.1";
chr3 stmg exon 187368385 187368596 . + . gene_id "stmg_chr3_plus.14"; transcript_id "stmg_chr3_plus.14.1";
chr3 stmg exon 187370788 187372076 . + . gene_id "stmg_chr3_plus.14"; transcript_id "stmg_chr3_plus.14.1";
chr3 stmg exon 187448845 187448890 . + . gene_id "stmg_chr3_plus.15"; transcript_id "stmg_chr3_plus.15.1";
chr3 stmg exon 187449251 187449439 . + . gene_id "stmg_chr3_plus.15"; transcript_id "stmg_chr3_plus.15.1";
chr3 stmg exon 195618629 195620231 . + . gene_id "stmg_chr3_plus.16"; transcript_id "stmg_chr3_plus.16.1";
chr3 stmg exon 196142641 196143000 . + . gene_id "stmg_chr3_plus.17"; transcript_id "stmg_chr3_plus.17.1";
chr3 stmg exon 196143906 196144377 . + . gene_id "stmg_chr3_plus.17"; transcript_id "stmg_chr3_plus.17.1";
chr3 stmg exon 196159900 196160883 . + . gene_id "stmg_chr3_plus.17"; transcript_id "stmg_chr3_plus.17.1";
chr4 stmg exon 8959846 8959901 . + . gene_id "stmg_chr4_plus.1"; transcript_id "stmg_chr4_plus.1.1";
chr4 stmg exon 8961714 8961832 . + . gene_id "stmg_chr4_plus.1"; transcript_id "stmg_chr4_plus.1.1";
chr4 stmg exon 8963670 8963797 . + . gene_id "stmg_chr4_plus.1"; transcript_id "stmg_chr4_plus.1.1";
chr4 stmg exon 10685015 10685061 . + . gene_id "stmg_chr4_plus.2"; transcript_id "stmg_chr4_plus.2.1";
chr4 stmg exon 10692065 10692106 . + . gene_id "stmg_chr4_plus.2"; transcript_id "stmg_chr4_plus.2.1";
chr4 stmg exon 10697123 10697646 . + . gene_id "stmg_chr4_plus.2"; transcript_id "stmg_chr4_plus.2.1";
chr4 stmg exon 23105504 23105616 . + . gene_id "stmg_chr4_plus.3"; transcript_id "stmg_chr4_plus.3.1";
chr4 stmg exon 23120320 23120416 . + . gene_id "stmg_chr4_plus.3"; transcript_id "stmg_chr4_plus.3.1";
chr4 stmg exon 23121396 23121561 . + . gene_id "stmg_chr4_plus.3"; transcript_id "stmg_chr4_plus.3.1";
chr4 stmg exon 23122375 23122436 . + . gene_id "stmg_chr4_plus.3"; transcript_id "stmg_chr4_plus.3.1";
chr4 stmg exon 23123382 23123487 . + . gene_id "stmg_chr4_plus.3"; transcript_id "stmg_chr4_plus.3.1";
chr4 stmg exon 31350284 31350351 . + . gene_id "stmg_chr4_plus.4"; transcript_id "stmg_chr4_plus.4.1";
chr4 stmg exon 31351192 31351725 . + . gene_id "stmg_chr4_plus.4"; transcript_id "stmg_chr4_plus.4.1";
chr4 stmg exon 31997397 31997822 . + . gene_id "stmg_chr4_plus.5"; transcript_id "stmg_chr4_plus.5.1";
chr4 stmg exon 32146053 32146267 . + . gene_id "stmg_chr4_plus.5"; transcript_id "stmg_chr4_plus.5.1";
chr4 stmg exon 32155314 32155406 . + . gene_id "stmg_chr4_plus.5"; transcript_id "stmg_chr4_plus.5.1";
chr4 stmg exon 39133918 39134045 . + . gene_id "stmg_chr4_plus.6"; transcript_id "stmg_chr4_plus.6.1";
chr4 stmg exon 39135287 39135605 . + . gene_id "stmg_chr4_plus.6"; transcript_id "stmg_chr4_plus.6.1";
chr4 stmg exon 40316499 40316980 . + . gene_id "stmg_chr4_plus.7"; transcript_id "stmg_chr4_plus.7.1";
chr4 stmg exon 40326710 40326910 . + . gene_id "stmg_chr4_plus.7"; transcript_id "stmg_chr4_plus.7.1";
chr4 stmg exon 40330160 40330419 . + . gene_id "stmg_chr4_plus.7"; transcript_id "stmg_chr4_plus.7.1";
chr4 stmg exon 42397854 42398333 . + . gene_id "stmg_chr4_plus.8"; transcript_id "stmg_chr4_plus.8.1";
chr4 stmg exon 42401012 42402487 . + . gene_id "stmg_chr4_plus.8"; transcript_id "stmg_chr4_plus.8.1";
chr4 stmg exon 48483344 48484151 . + . gene_id "stmg_chr4_plus.9"; transcript_id "stmg_chr4_plus.9.1";
chr4 stmg exon 48484932 48485142 . + . gene_id "stmg_chr4_plus.9"; transcript_id "stmg_chr4_plus.9.1";
chr4 stmg exon 48488427 48489196 . + . gene_id "stmg_chr4_plus.9"; transcript_id "stmg_chr4_plus.9.1";
chr4 stmg exon 52659407 52659676 . + . gene_id "stmg_chr4_plus.10"; transcript_id "stmg_chr4_plus.10.1";
chr4 stmg exon 52660892 52661668 . + . gene_id "stmg_chr4_plus.10"; transcript_id "stmg_chr4_plus.10.1";
chr4 stmg exon 55831368 55831464 . + . gene_id "stmg_chr4_plus.11"; transcript_id "stmg_chr4_plus.11.1";
chr4 stmg exon 55837085 55837381 . + . gene_id "stmg_chr4_plus.11"; transcript_id "stmg_chr4_plus.11.1";
chr4 stmg exon 56511194 56511347 . + . gene_id "stmg_chr4_plus.12"; transcript_id "stmg_chr4_plus.12.1";
chr4 stmg exon 56518678 56518853 . + . gene_id "stmg_chr4_plus.12"; transcript_id "stmg_chr4_plus.12.1";
chr4 stmg exon 56523697 56524409 . + . gene_id "stmg_chr4_plus.12"; transcript_id "stmg_chr4_plus.12.1";
chr4 stmg exon 65702204 65702345 . + . gene_id "stmg_chr4_plus.13"; transcript_id "stmg_chr4_plus.13.1";
chr4 stmg exon 65705313 65705464 . + . gene_id "stmg_chr4_plus.13"; transcript_id "stmg_chr4_plus.13.1";
chr4 stmg exon 68784632 68784749 . + . gene_id "stmg_chr4_plus.14"; transcript_id "stmg_chr4_plus.14.1";
chr4 stmg exon 68786050 68786138 . + . gene_id "stmg_chr4_plus.14"; transcript_id "stmg_chr4_plus.14.1";
chr4 stmg exon 68786531 68786748 . + . gene_id "stmg_chr4_plus.14"; transcript_id "stmg_chr4_plus.14.1";
chr4 stmg exon 68787200 68787474 . + . gene_id "stmg_chr4_plus.14"; transcript_id "stmg_chr4_plus.14.1";
chr4 stmg exon 87799581 87799633 . + . gene_id "stmg_chr4_plus.15"; transcript_id "stmg_chr4_plus.15.1";
chr4 stmg exon 87802348 87802415 . + . gene_id "stmg_chr4_plus.15"; transcript_id "stmg_chr4_plus.15.1";
chr4 stmg exon 87802508 87802558 . + . gene_id "stmg_chr4_plus.15"; transcript_id "stmg_chr4_plus.15.1";
chr4 stmg exon 87802654 87802731 . + . gene_id "stmg_chr4_plus.15"; transcript_id "stmg_chr4_plus.15.1";
chr4 stmg exon 87806122 87806184 . + . gene_id "stmg_chr4_plus.15"; transcript_id "stmg_chr4_plus.15.1";
chr4 stmg exon 87810606 87810764 . + . gene_id "stmg_chr4_plus.15"; transcript_id "stmg_chr4_plus.15.1";
chr4 stmg exon 87811362 87812403 . + . gene_id "stmg_chr4_plus.15"; transcript_id "stmg_chr4_plus.15.1";
chr4 stmg exon 146224557 146224608 . + . gene_id "stmg_chr4_plus.16"; transcript_id "stmg_chr4_plus.16.1";
chr4 stmg exon 146228210 146228522 . + . gene_id "stmg_chr4_plus.16"; transcript_id "stmg_chr4_plus.16.1";
chr4 stmg exon 146229025 146229037 . + . gene_id "stmg_chr4_plus.16"; transcript_id "stmg_chr4_plus.16.1";
chr4 stmg exon 151799511 151799617 . + . gene_id "stmg_chr4_plus.17"; transcript_id "stmg_chr4_plus.17.1";
chr4 stmg exon 151799902 151800024 . + . gene_id "stmg_chr4_plus.17"; transcript_id "stmg_chr4_plus.17.1";
chr4 stmg exon 151800826 151801303 . + . gene_id "stmg_chr4_plus.17"; transcript_id "stmg_chr4_plus.17.1";
chr4 stmg exon 162740671 162740915 . + . gene_id "stmg_chr4_plus.18"; transcript_id "stmg_chr4_plus.18.1";
chr4 stmg exon 162741669 162741953 . + . gene_id "stmg_chr4_plus.18"; transcript_id "stmg_chr4_plus.18.1";
chr4 stmg exon 186890970 186891368 . + . gene_id "stmg_chr4_plus.19"; transcript_id "stmg_chr4_plus.19.1";
chr4 stmg exon 186892271 186892364 . + . gene_id "stmg_chr4_plus.19"; transcript_id "stmg_chr4_plus.19.1";
chr4 stmg exon 188160066 188160102 . + . gene_id "stmg_chr4_plus.20"; transcript_id "stmg_chr4_plus.20.1";
chr4 stmg exon 188160501 188161139 . + . gene_id "stmg_chr4_plus.20"; transcript_id "stmg_chr4_plus.20.1";
chr5 stmg exon 92168 92276 . + . gene_id "stmg_chr5_plus.1"; transcript_id "stmg_chr5_plus.1.1";
chr5 stmg exon 113251 113448 . + . gene_id "stmg_chr5_plus.1"; transcript_id "stmg_chr5_plus.1.1";
chr5 stmg exon 139483 139862 . + . gene_id "stmg_chr5_plus.1"; transcript_id "stmg_chr5_plus.1.1";
chr5 stmg exon 10479396 10479417 . + . gene_id "stmg_chr5_plus.2"; transcript_id "stmg_chr5_plus.2.1";
chr5 stmg exon 10481874 10482307 . + . gene_id "stmg_chr5_plus.2"; transcript_id "stmg_chr5_plus.2.1";
chr5 stmg exon 56059051 56059096 . + . gene_id "stmg_chr5_plus.3"; transcript_id "stmg_chr5_plus.3.1";
chr5 stmg exon 56067036 56067372 . + . gene_id "stmg_chr5_plus.3"; transcript_id "stmg_chr5_plus.3.1";
chr5 stmg exon 73451508 73452105 . + . gene_id "stmg_chr5_plus.4"; transcript_id "stmg_chr5_plus.4.1";
chr5 stmg exon 73453224 73453312 . + . gene_id "stmg_chr5_plus.4"; transcript_id "stmg_chr5_plus.4.1";
chr5 stmg exon 132073799 132073982 . + . gene_id "stmg_chr5_plus.5"; transcript_id "stmg_chr5_plus.5.1";
chr5 stmg exon 132074081 132074122 . + . gene_id "stmg_chr5_plus.5"; transcript_id "stmg_chr5_plus.5.1";
chr5 stmg exon 132074810 132074935 . + . gene_id "stmg_chr5_plus.5"; transcript_id "stmg_chr5_plus.5.1";
chr5 stmg exon 132075745 132076170 . + . gene_id "stmg_chr5_plus.5"; transcript_id "stmg_chr5_plus.5.1";
chr5 stmg exon 134506558 134506834 . + . gene_id "stmg_chr5_plus.6"; transcript_id "stmg_chr5_plus.6.1";
chr5 stmg exon 134508406 134509228 . + . gene_id "stmg_chr5_plus.6"; transcript_id "stmg_chr5_plus.6.1";
chr5 stmg exon 135812675 135812911 . + . gene_id "stmg_chr5_plus.7"; transcript_id "stmg_chr5_plus.7.1";
chr5 stmg exon 138465490 138466068 . + . gene_id "stmg_chr5_plus.8"; transcript_id "stmg_chr5_plus.8.1";
chr5 stmg exon 138466757 138469315 . + . gene_id "stmg_chr5_plus.8"; transcript_id "stmg_chr5_plus.8.1";
chr5 stmg exon 142745602 142745718 . + . gene_id "stmg_chr5_plus.9"; transcript_id "stmg_chr5_plus.9.1";
chr5 stmg exon 142756734 142756830 . + . gene_id "stmg_chr5_plus.9"; transcript_id "stmg_chr5_plus.9.1";
chr5 stmg exon 142757827 142757934 . + . gene_id "stmg_chr5_plus.9"; transcript_id "stmg_chr5_plus.9.1";
chr5 stmg exon 142759086 142760994 . + . gene_id "stmg_chr5_plus.9"; transcript_id "stmg_chr5_plus.9.1";
chr5 stmg exon 148238571 148238646 . + . gene_id "stmg_chr5_plus.10"; transcript_id "stmg_chr5_plus.10.1";
chr5 stmg exon 148242446 148242594 . + . gene_id "stmg_chr5_plus.10"; transcript_id "stmg_chr5_plus.10.1";
chr5 stmg exon 150777949 150778972 . + . gene_id "stmg_chr5_plus.11"; transcript_id "stmg_chr5_plus.11.1";
chr5 stmg exon 150795430 150796734 . + . gene_id "stmg_chr5_plus.11"; transcript_id "stmg_chr5_plus.11.1";
chr5 stmg exon 171309287 171309786 . + . gene_id "stmg_chr5_plus.12"; transcript_id "stmg_chr5_plus.12.1";
chr5 stmg exon 171310150 171310393 . + . gene_id "stmg_chr5_plus.12"; transcript_id "stmg_chr5_plus.12.1";
chr5 stmg exon 171311389 171312134 . + . gene_id "stmg_chr5_plus.12"; transcript_id "stmg_chr5_plus.12.1";
chr5 stmg exon 173562481 173562563 . + . gene_id "stmg_chr5_plus.13"; transcript_id "stmg_chr5_plus.13.1";
chr5 stmg exon 173563495 173563544 . + . gene_id "stmg_chr5_plus.13"; transcript_id "stmg_chr5_plus.13.1";
chr5 stmg exon 173572881 173573193 . + . gene_id "stmg_chr5_plus.13"; transcript_id "stmg_chr5_plus.13.1";
chr5 stmg exon 173642519 173642657 . + . gene_id "stmg_chr5_plus.14"; transcript_id "stmg_chr5_plus.14.1";
chr5 stmg exon 173657840 173658127 . + . gene_id "stmg_chr5_plus.14"; transcript_id "stmg_chr5_plus.14.1";
chr5 stmg exon 173689469 173689553 . + . gene_id "stmg_chr5_plus.15"; transcript_id "stmg_chr5_plus.15.1";
chr5 stmg exon 173701529 173701686 . + . gene_id "stmg_chr5_plus.15"; transcript_id "stmg_chr5_plus.15.1";
chr5 stmg exon 173705590 173705847 . + . gene_id "stmg_chr5_plus.15"; transcript_id "stmg_chr5_plus.15.1";
chr5 stmg exon 178113461 178113771 . + . gene_id "stmg_chr5_plus.16"; transcript_id "stmg_chr5_plus.16.1";
chr5 stmg exon 178119554 178119913 . + . gene_id "stmg_chr5_plus.16"; transcript_id "stmg_chr5_plus.16.1";
chr5 stmg exon 178120178 178120699 . + . gene_id "stmg_chr5_plus.16"; transcript_id "stmg_chr5_plus.16.1";
chr5 stmg exon 178121098 178121352 . + . gene_id "stmg_chr5_plus.16"; transcript_id "stmg_chr5_plus.16.1";
chr5 stmg exon 178121474 178126085 . + . gene_id "stmg_chr5_plus.16"; transcript_id "stmg_chr5_plus.16.1";
chr5 stmg exon 180293246 180293418 . + . gene_id "stmg_chr5_plus.17"; transcript_id "stmg_chr5_plus.17.1";
chr5 stmg exon 180295035 180295253 . + . gene_id "stmg_chr5_plus.17"; transcript_id "stmg_chr5_plus.17.1";
chr5 stmg exon 180441644 180441855 . + . gene_id "stmg_chr5_plus.18"; transcript_id "stmg_chr5_plus.18.1";
chr5 stmg exon 180442730 180443238 . + . gene_id "stmg_chr5_plus.18"; transcript_id "stmg_chr5_plus.18.1";
chr5 stmg exon 181281375 181281612 . + . gene_id "stmg_chr5_plus.19"; transcript_id "stmg_chr5_plus.19.1";
chr5 stmg exon 181283342 181283652 . + . gene_id "stmg_chr5_plus.19"; transcript_id "stmg_chr5_plus.19.1";
chr6 stmg exon 711541 711600 . + . gene_id "stmg_chr6_plus.1"; transcript_id "stmg_chr6_plus.1.1";
chr6 stmg exon 713714 713885 . + . gene_id "stmg_chr6_plus.1"; transcript_id "stmg_chr6_plus.1.1";
chr6 stmg exon 7726800 7727619 . + . gene_id "stmg_chr6_plus.2"; transcript_id "stmg_chr6_plus.2.1";
chr6 stmg exon 7845140 7845332 . + . gene_id "stmg_chr6_plus.2"; transcript_id "stmg_chr6_plus.2.1";
chr6 stmg exon 7861451 7861599 . + . gene_id "stmg_chr6_plus.2"; transcript_id "stmg_chr6_plus.2.1";
chr6 stmg exon 7862301 7862498 . + . gene_id "stmg_chr6_plus.2"; transcript_id "stmg_chr6_plus.2.1";
chr6 stmg exon 7879074 7879150 . + . gene_id "stmg_chr6_plus.2"; transcript_id "stmg_chr6_plus.2.1";
chr6 stmg exon 7879991 7880101 . + . gene_id "stmg_chr6_plus.2"; transcript_id "stmg_chr6_plus.2.1";
chr6 stmg exon 7880194 7881422 . + . gene_id "stmg_chr6_plus.2"; transcript_id "stmg_chr6_plus.2.1";
chr6 stmg exon 8784179 8784337 . + . gene_id "stmg_chr6_plus.3"; transcript_id "stmg_chr6_plus.3.1";
chr6 stmg exon 8785117 8785445 . + . gene_id "stmg_chr6_plus.3"; transcript_id "stmg_chr6_plus.3.1";
chr6 stmg exon 11538279 11538374 . + . gene_id "stmg_chr6_plus.4"; transcript_id "stmg_chr6_plus.4.1";
chr6 stmg exon 11565666 11565836 . + . gene_id "stmg_chr6_plus.4"; transcript_id "stmg_chr6_plus.4.1";
chr6 stmg exon 11575431 11583524 . + . gene_id "stmg_chr6_plus.4"; transcript_id "stmg_chr6_plus.4.1";
chr6 stmg exon 11810607 11810749 . + . gene_id "stmg_chr6_plus.5"; transcript_id "stmg_chr6_plus.5.1";
chr6 stmg exon 11810843 11811230 . + . gene_id "stmg_chr6_plus.5"; transcript_id "stmg_chr6_plus.5.1";
chr6 stmg exon 12290366 12290693 . + . gene_id "stmg_chr6_plus.6"; transcript_id "stmg_chr6_plus.6.1";
chr6 stmg exon 12292341 12292509 . + . gene_id "stmg_chr6_plus.6"; transcript_id "stmg_chr6_plus.6.1";
chr6 stmg exon 12293941 12294096 . + . gene_id "stmg_chr6_plus.6"; transcript_id "stmg_chr6_plus.6.1";
chr6 stmg exon 12294261 12294404 . + . gene_id "stmg_chr6_plus.6"; transcript_id "stmg_chr6_plus.6.1";
chr6 stmg exon 12295962 12297194 . + . gene_id "stmg_chr6_plus.6"; transcript_id "stmg_chr6_plus.6.1";
chr6 stmg exon 14006590 14006886 . + . gene_id "stmg_chr6_plus.7"; transcript_id "stmg_chr6_plus.7.1";
chr6 stmg exon 17600355 17601121 . + . gene_id "stmg_chr6_plus.8"; transcript_id "stmg_chr6_plus.8.1";
chr6 stmg exon 17602590 17602710 . + . gene_id "stmg_chr6_plus.8"; transcript_id "stmg_chr6_plus.8.1";
chr6 stmg exon 17604906 17605029 . + . gene_id "stmg_chr6_plus.8"; transcript_id "stmg_chr6_plus.8.1";
chr6 stmg exon 17605874 17606013 . + . gene_id "stmg_chr6_plus.8"; transcript_id "stmg_chr6_plus.8.1";
chr6 stmg exon 17608195 17611719 . + . gene_id "stmg_chr6_plus.8"; transcript_id "stmg_chr6_plus.8.1";
chr6 stmg exon 26596952 26597223 . + . gene_id "stmg_chr6_plus.9"; transcript_id "stmg_chr6_plus.9.1";
chr6 stmg exon 26597914 26598110 . + . gene_id "stmg_chr6_plus.9"; transcript_id "stmg_chr6_plus.9.1";
chr6 stmg exon 26598265 26600744 . + . gene_id "stmg_chr6_plus.9"; transcript_id "stmg_chr6_plus.9.1";
chr6 stmg exon 28896538 28896730 . + . gene_id "stmg_chr6_plus.10"; transcript_id "stmg_chr6_plus.10.1";
chr6 stmg exon 28897111 28897322 . + . gene_id "stmg_chr6_plus.10"; transcript_id "stmg_chr6_plus.10.1";
chr6 stmg exon 28943878 28944026 . + . gene_id "stmg_chr6_plus.11"; transcript_id "stmg_chr6_plus.11.1";
chr6 stmg exon 28944222 28944537 . + . gene_id "stmg_chr6_plus.11"; transcript_id "stmg_chr6_plus.11.1";
chr6 stmg exon 30516267 30516611 . + . gene_id "stmg_chr6_plus.12"; transcript_id "stmg_chr6_plus.12.1";
chr6 stmg exon 30518713 30519208 . + . gene_id "stmg_chr6_plus.12"; transcript_id "stmg_chr6_plus.12.1";
chr6 stmg exon 31575567 31575927 . + . gene_id "stmg_chr6_plus.13"; transcript_id "stmg_chr6_plus.13.1";
chr6 stmg exon 31576534 31576579 . + . gene_id "stmg_chr6_plus.13"; transcript_id "stmg_chr6_plus.13.1";
chr6 stmg exon 31576767 31576814 . + . gene_id "stmg_chr6_plus.13"; transcript_id "stmg_chr6_plus.13.1";
chr6 stmg exon 31577116 31578336 . + . gene_id "stmg_chr6_plus.13"; transcript_id "stmg_chr6_plus.13.1";
chr6 stmg exon 32013270 32013286 . + . gene_id "stmg_chr6_plus.14"; transcript_id "stmg_chr6_plus.14.1";
chr6 stmg exon 32013392 32013539 . + . gene_id "stmg_chr6_plus.14"; transcript_id "stmg_chr6_plus.14.1";
chr6 stmg exon 32013742 32013783 . + . gene_id "stmg_chr6_plus.14"; transcript_id "stmg_chr6_plus.14.1";
chr6 stmg exon 35452361 35452793 . + . gene_id "stmg_chr6_plus.15"; transcript_id "stmg_chr6_plus.15.1";
chr6 stmg exon 35455747 35456353 . + . gene_id "stmg_chr6_plus.15"; transcript_id "stmg_chr6_plus.15.1";
chr6 stmg exon 35457556 35457600 . + . gene_id "stmg_chr6_plus.15"; transcript_id "stmg_chr6_plus.15.1";
chr6 stmg exon 35457916 35457984 . + . gene_id "stmg_chr6_plus.15"; transcript_id "stmg_chr6_plus.15.1";
chr6 stmg exon 35458297 35458440 . + . gene_id "stmg_chr6_plus.15"; transcript_id "stmg_chr6_plus.15.1";
chr6 stmg exon 35459331 35459454 . + . gene_id "stmg_chr6_plus.15"; transcript_id "stmg_chr6_plus.15.1";
chr6 stmg exon 35459682 35459760 . + . gene_id "stmg_chr6_plus.15"; transcript_id "stmg_chr6_plus.15.1";
chr6 stmg exon 35460552 35460618 . + . gene_id "stmg_chr6_plus.15"; transcript_id "stmg_chr6_plus.15.1";
chr6 stmg exon 35462789 35462914 . + . gene_id "stmg_chr6_plus.15"; transcript_id "stmg_chr6_plus.15.1";
chr6 stmg exon 35466244 35467103 . + . gene_id "stmg_chr6_plus.15"; transcript_id "stmg_chr6_plus.15.1";
chr6 stmg exon 43171299 43172169 . + . gene_id "stmg_chr6_plus.16"; transcript_id "stmg_chr6_plus.16.1";
chr6 stmg exon 43173847 43174113 . + . gene_id "stmg_chr6_plus.16"; transcript_id "stmg_chr6_plus.16.1";
chr6 stmg exon 43175706 43175967 . + . gene_id "stmg_chr6_plus.16"; transcript_id "stmg_chr6_plus.16.1";
chr6 stmg exon 43176548 43176667 . + . gene_id "stmg_chr6_plus.16"; transcript_id "stmg_chr6_plus.16.1";
chr6 stmg exon 43178294 43178485 . + . gene_id "stmg_chr6_plus.16"; transcript_id "stmg_chr6_plus.16.1";
chr6 stmg exon 43178806 43178882 . + . gene_id "stmg_chr6_plus.16"; transcript_id "stmg_chr6_plus.16.1";
chr6 stmg exon 43179095 43181507 . + . gene_id "stmg_chr6_plus.16"; transcript_id "stmg_chr6_plus.16.1";
chr6 stmg exon 46129996 46130189 . + . gene_id "stmg_chr6_plus.17"; transcript_id "stmg_chr6_plus.17.1";
chr6 stmg exon 46139551 46140409 . + . gene_id "stmg_chr6_plus.17"; transcript_id "stmg_chr6_plus.17.1";
chr6 stmg exon 46141052 46141222 . + . gene_id "stmg_chr6_plus.17"; transcript_id "stmg_chr6_plus.17.1";
chr6 stmg exon 46143276 46146699 . + . gene_id "stmg_chr6_plus.17"; transcript_id "stmg_chr6_plus.17.1";
chr6 stmg exon 49463378 49463453 . + . gene_id "stmg_chr6_plus.18"; transcript_id "stmg_chr6_plus.18.1";
chr6 stmg exon 49470159 49470278 . + . gene_id "stmg_chr6_plus.18"; transcript_id "stmg_chr6_plus.18.1";
chr6 stmg exon 49470974 49471028 . + . gene_id "stmg_chr6_plus.18"; transcript_id "stmg_chr6_plus.18.1";
chr6 stmg exon 49472063 49472183 . + . gene_id "stmg_chr6_plus.18"; transcript_id "stmg_chr6_plus.18.1";
chr6 stmg exon 49472790 49472858 . + . gene_id "stmg_chr6_plus.18"; transcript_id "stmg_chr6_plus.18.1";
chr6 stmg exon 49480951 49481080 . + . gene_id "stmg_chr6_plus.18"; transcript_id "stmg_chr6_plus.18.1";
chr6 stmg exon 49488352 49488471 . + . gene_id "stmg_chr6_plus.18"; transcript_id "stmg_chr6_plus.18.1";
chr6 stmg exon 49488607 49488684 . + . gene_id "stmg_chr6_plus.18"; transcript_id "stmg_chr6_plus.18.1";
chr6 stmg exon 49492144 49493107 . + . gene_id "stmg_chr6_plus.18"; transcript_id "stmg_chr6_plus.18.1";
chr6 stmg exon 50093715 50093831 . + . gene_id "stmg_chr6_plus.19"; transcript_id "stmg_chr6_plus.19.1";
chr6 stmg exon 50098712 50099276 . + . gene_id "stmg_chr6_plus.19"; transcript_id "stmg_chr6_plus.19.1";
chr6 stmg exon 52671109 52671245 . + . gene_id "stmg_chr6_plus.20"; transcript_id "stmg_chr6_plus.20.1";
chr6 stmg exon 52677087 52677172 . + . gene_id "stmg_chr6_plus.20"; transcript_id "stmg_chr6_plus.20.1";
chr6 stmg exon 52681813 52681914 . + . gene_id "stmg_chr6_plus.20"; transcript_id "stmg_chr6_plus.20.1";
chr6 stmg exon 52684078 52684165 . + . gene_id "stmg_chr6_plus.20"; transcript_id "stmg_chr6_plus.20.1";
chr6 stmg exon 52686010 52686588 . + . gene_id "stmg_chr6_plus.20"; transcript_id "stmg_chr6_plus.20.1";
chr6 stmg exon 53628393 53628446 . + . gene_id "stmg_chr6_plus.21"; transcript_id "stmg_chr6_plus.21.1";
chr6 stmg exon 53628575 53628691 . + . gene_id "stmg_chr6_plus.21"; transcript_id "stmg_chr6_plus.21.1";
chr6 stmg exon 53631013 53631394 . + . gene_id "stmg_chr6_plus.21"; transcript_id "stmg_chr6_plus.21.1";
chr6 stmg exon 54846771 54846826 . + . gene_id "stmg_chr6_plus.22"; transcript_id "stmg_chr6_plus.22.1";
chr6 stmg exon 54870187 54870690 . + . gene_id "stmg_chr6_plus.22"; transcript_id "stmg_chr6_plus.22.1";
chr6 stmg exon 54926371 54926535 . + . gene_id "stmg_chr6_plus.22"; transcript_id "stmg_chr6_plus.22.1";
chr6 stmg exon 54927508 54927632 . + . gene_id "stmg_chr6_plus.22"; transcript_id "stmg_chr6_plus.22.1";
chr6 stmg exon 54939706 54942022 . + . gene_id "stmg_chr6_plus.22"; transcript_id "stmg_chr6_plus.22.1";
chr6 stmg exon 68055417 68055435 . + . gene_id "stmg_chr6_plus.23"; transcript_id "stmg_chr6_plus.23.1";
chr6 stmg exon 68060096 68060406 . + . gene_id "stmg_chr6_plus.23"; transcript_id "stmg_chr6_plus.23.1";
chr6 stmg exon 70394887 70395043 . + . gene_id "stmg_chr6_plus.24"; transcript_id "stmg_chr6_plus.24.1";
chr6 stmg exon 70395230 70395266 . + . gene_id "stmg_chr6_plus.24"; transcript_id "stmg_chr6_plus.24.1";
chr6 stmg exon 70399215 70399417 . + . gene_id "stmg_chr6_plus.24"; transcript_id "stmg_chr6_plus.24.1";
chr6 stmg exon 79420583 79420637 . + . gene_id "stmg_chr6_plus.25"; transcript_id "stmg_chr6_plus.25.1";
chr6 stmg exon 79421038 79421302 . + . gene_id "stmg_chr6_plus.25"; transcript_id "stmg_chr6_plus.25.1";
chr6 stmg exon 79631283 79631506 . + . gene_id "stmg_chr6_plus.26"; transcript_id "stmg_chr6_plus.26.1";
chr6 stmg exon 79673614 79673799 . + . gene_id "stmg_chr6_plus.26"; transcript_id "stmg_chr6_plus.26.1";
chr6 stmg exon 79696485 79696565 . + . gene_id "stmg_chr6_plus.26"; transcript_id "stmg_chr6_plus.26.1";
chr6 stmg exon 79699498 79703659 . + . gene_id "stmg_chr6_plus.26"; transcript_id "stmg_chr6_plus.26.1";
chr6 stmg exon 83512543 83512694 . + . gene_id "stmg_chr6_plus.27"; transcript_id "stmg_chr6_plus.27.1";
chr6 stmg exon 83523422 83525698 . + . gene_id "stmg_chr6_plus.27"; transcript_id "stmg_chr6_plus.27.1";
chr6 stmg exon 84033756 84033883 . + . gene_id "stmg_chr6_plus.28"; transcript_id "stmg_chr6_plus.28.1";
chr6 stmg exon 84055312 84055445 . + . gene_id "stmg_chr6_plus.28"; transcript_id "stmg_chr6_plus.28.1";
chr6 stmg exon 84062893 84062992 . + . gene_id "stmg_chr6_plus.28"; transcript_id "stmg_chr6_plus.28.1";
chr6 stmg exon 84089091 84090881 . + . gene_id "stmg_chr6_plus.28"; transcript_id "stmg_chr6_plus.28.1";
chr6 stmg exon 89146051 89146609 . + . gene_id "stmg_chr6_plus.29"; transcript_id "stmg_chr6_plus.29.1";
chr6 stmg exon 89149265 89149413 . + . gene_id "stmg_chr6_plus.29"; transcript_id "stmg_chr6_plus.29.1";
chr6 stmg exon 89153043 89153185 . + . gene_id "stmg_chr6_plus.29"; transcript_id "stmg_chr6_plus.29.1";
chr6 stmg exon 89154748 89154902 . + . gene_id "stmg_chr6_plus.29"; transcript_id "stmg_chr6_plus.29.1";
chr6 stmg exon 89158325 89158460 . + . gene_id "stmg_chr6_plus.29"; transcript_id "stmg_chr6_plus.29.1";
chr6 stmg exon 89161783 89161890 . + . gene_id "stmg_chr6_plus.29"; transcript_id "stmg_chr6_plus.29.1";
chr6 stmg exon 89162109 89165565 . + . gene_id "stmg_chr6_plus.29"; transcript_id "stmg_chr6_plus.29.1";
chr6 stmg exon 109826535 109826696 . + . gene_id "stmg_chr6_plus.30"; transcript_id "stmg_chr6_plus.30.1";
chr6 stmg exon 109828496 109828756 . + . gene_id "stmg_chr6_plus.30"; transcript_id "stmg_chr6_plus.30.1";
chr6 stmg exon 111259348 111259727 . + . gene_id "stmg_chr6_plus.31"; transcript_id "stmg_chr6_plus.31.1";
chr6 stmg exon 111262257 111262425 . + . gene_id "stmg_chr6_plus.31"; transcript_id "stmg_chr6_plus.31.1";
chr6 stmg exon 111263830 111263946 . + . gene_id "stmg_chr6_plus.31"; transcript_id "stmg_chr6_plus.31.1";
chr6 stmg exon 111265876 111271167 . + . gene_id "stmg_chr6_plus.31"; transcript_id "stmg_chr6_plus.31.1";
chr6 stmg exon 111277932 111278158 . + . gene_id "stmg_chr6_plus.32"; transcript_id "stmg_chr6_plus.32.1";
chr6 stmg exon 111278413 111278742 . + . gene_id "stmg_chr6_plus.32"; transcript_id "stmg_chr6_plus.32.1";
chr6 stmg exon 113531120 113531258 . + . gene_id "stmg_chr6_plus.33"; transcript_id "stmg_chr6_plus.33.1";
chr6 stmg exon 113541837 113541901 . + . gene_id "stmg_chr6_plus.33"; transcript_id "stmg_chr6_plus.33.1";
chr6 stmg exon 113543403 113543789 . + . gene_id "stmg_chr6_plus.33"; transcript_id "stmg_chr6_plus.33.1";
chr6 stmg exon 113904220 113904744 . + . gene_id "stmg_chr6_plus.34"; transcript_id "stmg_chr6_plus.34.1";
chr6 stmg exon 113916943 113917052 . + . gene_id "stmg_chr6_plus.34"; transcript_id "stmg_chr6_plus.34.1";
chr6 stmg exon 113919107 113919457 . + . gene_id "stmg_chr6_plus.34"; transcript_id "stmg_chr6_plus.34.1";
chr6 stmg exon 113920456 113921639 . + . gene_id "stmg_chr6_plus.34"; transcript_id "stmg_chr6_plus.34.1";
chr6 stmg exon 117675503 117676085 . + . gene_id "stmg_chr6_plus.35"; transcript_id "stmg_chr6_plus.35.1";
chr6 stmg exon 117693042 117693167 . + . gene_id "stmg_chr6_plus.35"; transcript_id "stmg_chr6_plus.35.1";
chr6 stmg exon 117694031 117694180 . + . gene_id "stmg_chr6_plus.35"; transcript_id "stmg_chr6_plus.35.1";
chr6 stmg exon 117703605 117703704 . + . gene_id "stmg_chr6_plus.35"; transcript_id "stmg_chr6_plus.35.1";
chr6 stmg exon 117706925 117710640 . + . gene_id "stmg_chr6_plus.35"; transcript_id "stmg_chr6_plus.35.1";
chr6 stmg exon 121435692 121435832 . + . gene_id "stmg_chr6_plus.36"; transcript_id "stmg_chr6_plus.36.1";
chr6 stmg exon 121446832 121449727 . + . gene_id "stmg_chr6_plus.36"; transcript_id "stmg_chr6_plus.36.1";
chr6 stmg exon 130827407 130827651 . + . gene_id "stmg_chr6_plus.37"; transcript_id "stmg_chr6_plus.37.1";
chr6 stmg exon 130834870 130837135 . + . gene_id "stmg_chr6_plus.37"; transcript_id "stmg_chr6_plus.37.1";
chr6 stmg exon 144150526 144150703 . + . gene_id "stmg_chr6_plus.38"; transcript_id "stmg_chr6_plus.38.1";
chr6 stmg exon 144186623 144188370 . + . gene_id "stmg_chr6_plus.38"; transcript_id "stmg_chr6_plus.38.1";
chr6 stmg exon 146543694 146544121 . + . gene_id "stmg_chr6_plus.39"; transcript_id "stmg_chr6_plus.39.1";
chr6 stmg exon 146549464 146549741 . + . gene_id "stmg_chr6_plus.39"; transcript_id "stmg_chr6_plus.39.1";
chr6 stmg exon 146554456 146554965 . + . gene_id "stmg_chr6_plus.39"; transcript_id "stmg_chr6_plus.39.1";
chr6 stmg exon 149942000 149942157 . + . gene_id "stmg_chr6_plus.40"; transcript_id "stmg_chr6_plus.40.1";
chr6 stmg exon 149945309 149945572 . + . gene_id "stmg_chr6_plus.40"; transcript_id "stmg_chr6_plus.40.1";
chr6 stmg exon 149946372 149946653 . + . gene_id "stmg_chr6_plus.40"; transcript_id "stmg_chr6_plus.40.1";
chr6 stmg exon 149947320 149947451 . + . gene_id "stmg_chr6_plus.40"; transcript_id "stmg_chr6_plus.40.1";
chr6 stmg exon 149948723 149949235 . + . gene_id "stmg_chr6_plus.40"; transcript_id "stmg_chr6_plus.40.1";
chr6 stmg exon 149964007 149964134 . + . gene_id "stmg_chr6_plus.41"; transcript_id "stmg_chr6_plus.41.1";
chr6 stmg exon 149968607 149968870 . + . gene_id "stmg_chr6_plus.41"; transcript_id "stmg_chr6_plus.41.1";
chr6 stmg exon 149969085 149969360 . + . gene_id "stmg_chr6_plus.41"; transcript_id "stmg_chr6_plus.41.1";
chr6 stmg exon 149970016 149970147 . + . gene_id "stmg_chr6_plus.41"; transcript_id "stmg_chr6_plus.41.1";
chr6 stmg exon 149971369 149973710 . + . gene_id "stmg_chr6_plus.41"; transcript_id "stmg_chr6_plus.41.1";
chr6 stmg exon 158168352 158168395 . + . gene_id "stmg_chr6_plus.42"; transcript_id "stmg_chr6_plus.42.1";
chr6 stmg exon 158170470 158170538 . + . gene_id "stmg_chr6_plus.42"; transcript_id "stmg_chr6_plus.42.1";
chr6 stmg exon 158191977 158199344 . + . gene_id "stmg_chr6_plus.42"; transcript_id "stmg_chr6_plus.42.1";
chr6 stmg exon 159107808 159108153 . + . gene_id "stmg_chr6_plus.43"; transcript_id "stmg_chr6_plus.43.1";
chr6 stmg exon 159109315 159109439 . + . gene_id "stmg_chr6_plus.43"; transcript_id "stmg_chr6_plus.43.1";
chr6 stmg exon 159115432 159115508 . + . gene_id "stmg_chr6_plus.43"; transcript_id "stmg_chr6_plus.43.1";
chr6 stmg exon 159115774 159116052 . + . gene_id "stmg_chr6_plus.43"; transcript_id "stmg_chr6_plus.43.1";
chr6 stmg exon 160348280 160348848 . + . gene_id "stmg_chr6_plus.44"; transcript_id "stmg_chr6_plus.44.1";
chr6 stmg exon 160397979 160398082 . + . gene_id "stmg_chr6_plus.44"; transcript_id "stmg_chr6_plus.44.1";
chr6 stmg exon 160407041 160407195 . + . gene_id "stmg_chr6_plus.44"; transcript_id "stmg_chr6_plus.44.1";
chr6 stmg exon 160408753 160408921 . + . gene_id "stmg_chr6_plus.44"; transcript_id "stmg_chr6_plus.44.1";
chr6 stmg exon 160410729 160410846 . + . gene_id "stmg_chr6_plus.44"; transcript_id "stmg_chr6_plus.44.1";
chr6 stmg exon 160436780 160436877 . + . gene_id "stmg_chr6_plus.44"; transcript_id "stmg_chr6_plus.44.1";
chr6 stmg exon 160436997 160437211 . + . gene_id "stmg_chr6_plus.44"; transcript_id "stmg_chr6_plus.44.1";
chr6 stmg exon 160442761 160442869 . + . gene_id "stmg_chr6_plus.44"; transcript_id "stmg_chr6_plus.44.1";
chr6 stmg exon 160443630 160443742 . + . gene_id "stmg_chr6_plus.44"; transcript_id "stmg_chr6_plus.44.1";
chr6 stmg exon 160447719 160447818 . + . gene_id "stmg_chr6_plus.44"; transcript_id "stmg_chr6_plus.44.1";
chr6 stmg exon 160450996 160452581 . + . gene_id "stmg_chr6_plus.44"; transcript_id "stmg_chr6_plus.44.1";
chr6 stmg exon 167241891 167241965 . + . gene_id "stmg_chr6_plus.45"; transcript_id "stmg_chr6_plus.45.1";
chr6 stmg exon 167245787 167245916 . + . gene_id "stmg_chr6_plus.45"; transcript_id "stmg_chr6_plus.45.1";
chr6 stmg exon 170725199 170725396 . + . gene_id "stmg_chr6_plus.46"; transcript_id "stmg_chr6_plus.46.1";
chr6 stmg exon 170727931 170728487 . + . gene_id "stmg_chr6_plus.46"; transcript_id "stmg_chr6_plus.46.1";
chr7 stmg exon 520404 523316 . + . gene_id "stmg_chr7_plus.1"; transcript_id "stmg_chr7_plus.1.1";
chr7 stmg exon 524080 524280 . + . gene_id "stmg_chr7_plus.1"; transcript_id "stmg_chr7_plus.1.1";
chr7 stmg exon 524854 525231 . + . gene_id "stmg_chr7_plus.1"; transcript_id "stmg_chr7_plus.1.1";
chr7 stmg exon 1459938 1460267 . + . gene_id "stmg_chr7_plus.2"; transcript_id "stmg_chr7_plus.2.1";
chr7 stmg exon 1463842 1464007 . + . gene_id "stmg_chr7_plus.2"; transcript_id "stmg_chr7_plus.2.1";
chr7 stmg exon 6615714 6616186 . + . gene_id "stmg_chr7_plus.3"; transcript_id "stmg_chr7_plus.3.1";
chr7 stmg exon 6617190 6617307 . + . gene_id "stmg_chr7_plus.3"; transcript_id "stmg_chr7_plus.3.1";
chr7 stmg exon 6621122 6624290 . + . gene_id "stmg_chr7_plus.3"; transcript_id "stmg_chr7_plus.3.1";
chr7 stmg exon 34255927 34256339 . + . gene_id "stmg_chr7_plus.4"; transcript_id "stmg_chr7_plus.4.1";
chr7 stmg exon 45978350 45978468 . + . gene_id "stmg_chr7_plus.5"; transcript_id "stmg_chr7_plus.5.1";
chr7 stmg exon 45979909 45980160 . + . gene_id "stmg_chr7_plus.5"; transcript_id "stmg_chr7_plus.5.1";
chr7 stmg exon 55573194 55573317 . + . gene_id "stmg_chr7_plus.6"; transcript_id "stmg_chr7_plus.6.1";
chr7 stmg exon 55587771 55587934 . + . gene_id "stmg_chr7_plus.6"; transcript_id "stmg_chr7_plus.6.1";
chr7 stmg exon 55588096 55588288 . + . gene_id "stmg_chr7_plus.6"; transcript_id "stmg_chr7_plus.6.1";
chr7 stmg exon 67335976 67336112 . + . gene_id "stmg_chr7_plus.7"; transcript_id "stmg_chr7_plus.7.1";
chr7 stmg exon 67339450 67339573 . + . gene_id "stmg_chr7_plus.7"; transcript_id "stmg_chr7_plus.7.1";
chr7 stmg exon 67339797 67340022 . + . gene_id "stmg_chr7_plus.7"; transcript_id "stmg_chr7_plus.7.1";
chr7 stmg exon 73735039 73735090 . + . gene_id "stmg_chr7_plus.8"; transcript_id "stmg_chr7_plus.8.1";
chr7 stmg exon 73735241 73735499 . + . gene_id "stmg_chr7_plus.8"; transcript_id "stmg_chr7_plus.8.1";
chr7 stmg exon 73735728 73735848 . + . gene_id "stmg_chr7_plus.8"; transcript_id "stmg_chr7_plus.8.1";
chr7 stmg exon 73735930 73736054 . + . gene_id "stmg_chr7_plus.8"; transcript_id "stmg_chr7_plus.8.1";
chr7 stmg exon 93921699 93922233 . + . gene_id "stmg_chr7_plus.9"; transcript_id "stmg_chr7_plus.9.1";
chr7 stmg exon 93926091 93926517 . + . gene_id "stmg_chr7_plus.9"; transcript_id "stmg_chr7_plus.9.1";
chr7 stmg exon 93927530 93928469 . + . gene_id "stmg_chr7_plus.10"; transcript_id "stmg_chr7_plus.10.1";
chr7 stmg exon 95471854 95472062 . + . gene_id "stmg_chr7_plus.11"; transcript_id "stmg_chr7_plus.11.1";
chr7 stmg exon 95473693 95473997 . + . gene_id "stmg_chr7_plus.11"; transcript_id "stmg_chr7_plus.11.1";
chr7 stmg exon 100720800 100720993 . + . gene_id "stmg_chr7_plus.12"; transcript_id "stmg_chr7_plus.12.1";
chr7 stmg exon 100721558 100721703 . + . gene_id "stmg_chr7_plus.12"; transcript_id "stmg_chr7_plus.12.1";
chr7 stmg exon 100721962 100722048 . + . gene_id "stmg_chr7_plus.12"; transcript_id "stmg_chr7_plus.12.1";
chr7 stmg exon 100722664 100722843 . + . gene_id "stmg_chr7_plus.12"; transcript_id "stmg_chr7_plus.12.1";
chr7 stmg exon 100722978 100723700 . + . gene_id "stmg_chr7_plus.12"; transcript_id "stmg_chr7_plus.12.1";
chr7 stmg exon 101127089 101127244 . + . gene_id "stmg_chr7_plus.13"; transcript_id "stmg_chr7_plus.13.1";
chr7 stmg exon 101128393 101128664 . + . gene_id "stmg_chr7_plus.13"; transcript_id "stmg_chr7_plus.13.1";
chr7 stmg exon 101130421 101130654 . + . gene_id "stmg_chr7_plus.13"; transcript_id "stmg_chr7_plus.13.1";
chr7 stmg exon 101131875 101132069 . + . gene_id "stmg_chr7_plus.13"; transcript_id "stmg_chr7_plus.13.1";
chr7 stmg exon 101133695 101133893 . + . gene_id "stmg_chr7_plus.13"; transcript_id "stmg_chr7_plus.13.1";
chr7 stmg exon 101135494 101135594 . + . gene_id "stmg_chr7_plus.13"; transcript_id "stmg_chr7_plus.13.1";
chr7 stmg exon 101135715 101135801 . + . gene_id "stmg_chr7_plus.13"; transcript_id "stmg_chr7_plus.13.1";
chr7 stmg exon 101137001 101137084 . + . gene_id "stmg_chr7_plus.13"; transcript_id "stmg_chr7_plus.13.1";
chr7 stmg exon 101137405 101139265 . + . gene_id "stmg_chr7_plus.13"; transcript_id "stmg_chr7_plus.13.1";
chr7 stmg exon 101308347 101308548 . + . gene_id "stmg_chr7_plus.14"; transcript_id "stmg_chr7_plus.14.1";
chr7 stmg exon 101310484 101310985 . + . gene_id "stmg_chr7_plus.14"; transcript_id "stmg_chr7_plus.14.1";
chr7 stmg exon 102337320 102337402 . + . gene_id "stmg_chr7_plus.15"; transcript_id "stmg_chr7_plus.15.1";
chr7 stmg exon 102337580 102337682 . + . gene_id "stmg_chr7_plus.15"; transcript_id "stmg_chr7_plus.15.1";
chr7 stmg exon 102338932 102339115 . + . gene_id "stmg_chr7_plus.15"; transcript_id "stmg_chr7_plus.15.1";
chr7 stmg exon 138163456 138163502 . + . gene_id "stmg_chr7_plus.16"; transcript_id "stmg_chr7_plus.16.1";
chr7 stmg exon 138164244 138164554 . + . gene_id "stmg_chr7_plus.16"; transcript_id "stmg_chr7_plus.16.1";
chr7 stmg exon 142563748 142563847 . + . gene_id "stmg_chr7_plus.17"; transcript_id "stmg_chr7_plus.17.1";
chr7 stmg exon 142563948 142564238 . + . gene_id "stmg_chr7_plus.17"; transcript_id "stmg_chr7_plus.17.1";
chr7 stmg exon 142627098 142627364 . + . gene_id "stmg_chr7_plus.18"; transcript_id "stmg_chr7_plus.18.1";
chr7 stmg exon 142715571 142715821 . + . gene_id "stmg_chr7_plus.19"; transcript_id "stmg_chr7_plus.19.1";
chr7 stmg exon 142801041 142801427 . + . gene_id "stmg_chr7_plus.20"; transcript_id "stmg_chr7_plus.20.1";
chr7 stmg exon 142801944 142801961 . + . gene_id "stmg_chr7_plus.20"; transcript_id "stmg_chr7_plus.20.1";
chr7 stmg exon 142802105 142802211 . + . gene_id "stmg_chr7_plus.20"; transcript_id "stmg_chr7_plus.20.1";
chr7 stmg exon 142802503 142802748 . + . gene_id "stmg_chr7_plus.20"; transcript_id "stmg_chr7_plus.20.1";
chr7 stmg exon 143132173 143132211 . + . gene_id "stmg_chr7_plus.21"; transcript_id "stmg_chr7_plus.21.1";
chr7 stmg exon 143135194 143135299 . + . gene_id "stmg_chr7_plus.21"; transcript_id "stmg_chr7_plus.21.1";
chr7 stmg exon 143139075 143139189 . + . gene_id "stmg_chr7_plus.21"; transcript_id "stmg_chr7_plus.21.1";
chr7 stmg exon 143139518 143139696 . + . gene_id "stmg_chr7_plus.21"; transcript_id "stmg_chr7_plus.21.1";
chr7 stmg exon 150450631 150451175 . + . gene_id "stmg_chr7_plus.22"; transcript_id "stmg_chr7_plus.22.1";
chr7 stmg exon 150466671 150467334 . + . gene_id "stmg_chr7_plus.22"; transcript_id "stmg_chr7_plus.22.1";
chr7 stmg exon 150470829 150470874 . + . gene_id "stmg_chr7_plus.22"; transcript_id "stmg_chr7_plus.22.1";
chr7 stmg exon 150474012 150474638 . + . gene_id "stmg_chr7_plus.22"; transcript_id "stmg_chr7_plus.22.1";
chr7 stmg exon 150477092 150479392 . + . gene_id "stmg_chr7_plus.22"; transcript_id "stmg_chr7_plus.22.1";
chr7 stmg exon 150514834 150514945 . + . gene_id "stmg_chr7_plus.23"; transcript_id "stmg_chr7_plus.23.1";
chr7 stmg exon 150519934 150521073 . + . gene_id "stmg_chr7_plus.23"; transcript_id "stmg_chr7_plus.23.1";
chr7 stmg exon 155458148 155459062 . + . gene_id "stmg_chr7_plus.24"; transcript_id "stmg_chr7_plus.24.1";
chr7 stmg exon 155462371 155464830 . + . gene_id "stmg_chr7_plus.24"; transcript_id "stmg_chr7_plus.24.1";
chr7 stmg exon 155962643 155963275 . + . gene_id "stmg_chr7_plus.25"; transcript_id "stmg_chr7_plus.25.1";
chr7 stmg exon 155964452 155966343 . + . gene_id "stmg_chr7_plus.25"; transcript_id "stmg_chr7_plus.25.1";
chr7 stmg exon 157010807 157011307 . + . gene_id "stmg_chr7_plus.26"; transcript_id "stmg_chr7_plus.26.1";
chr7 stmg exon 157015889 157016426 . + . gene_id "stmg_chr7_plus.26"; transcript_id "stmg_chr7_plus.26.1";
chr8 stmg exon 10841703 10841734 . + . gene_id "stmg_chr8_plus.1"; transcript_id "stmg_chr8_plus.1.1";
chr8 stmg exon 10846218 10846451 . + . gene_id "stmg_chr8_plus.1"; transcript_id "stmg_chr8_plus.1.1";
chr8 stmg exon 29527313 29527420 . + . gene_id "stmg_chr8_plus.2"; transcript_id "stmg_chr8_plus.2.1";
chr8 stmg exon 29529791 29530321 . + . gene_id "stmg_chr8_plus.2"; transcript_id "stmg_chr8_plus.2.1";
chr8 stmg exon 37695846 37696222 . + . gene_id "stmg_chr8_plus.3"; transcript_id "stmg_chr8_plus.3.1";
chr8 stmg exon 37697145 37700021 . + . gene_id "stmg_chr8_plus.3"; transcript_id "stmg_chr8_plus.3.1";
chr8 stmg exon 39556149 39556449 . + . gene_id "stmg_chr8_plus.4"; transcript_id "stmg_chr8_plus.4.1";
chr8 stmg exon 39557992 39558179 . + . gene_id "stmg_chr8_plus.4"; transcript_id "stmg_chr8_plus.4.1";
chr8 stmg exon 39558346 39558529 . + . gene_id "stmg_chr8_plus.4"; transcript_id "stmg_chr8_plus.4.1";
chr8 stmg exon 56074630 56074880 . + . gene_id "stmg_chr8_plus.5"; transcript_id "stmg_chr8_plus.5.1";
chr8 stmg exon 56075007 56075255 . + . gene_id "stmg_chr8_plus.5"; transcript_id "stmg_chr8_plus.5.1";
chr8 stmg exon 57978418 57978484 . + . gene_id "stmg_chr8_plus.6"; transcript_id "stmg_chr8_plus.6.1";
chr8 stmg exon 57980894 57981014 . + . gene_id "stmg_chr8_plus.6"; transcript_id "stmg_chr8_plus.6.1";
chr8 stmg exon 57982266 57984126 . + . gene_id "stmg_chr8_plus.6"; transcript_id "stmg_chr8_plus.6.1";
chr8 stmg exon 72196347 72196633 . + . gene_id "stmg_chr8_plus.7"; transcript_id "stmg_chr8_plus.7.1";
chr8 stmg exon 72201772 72202267 . + . gene_id "stmg_chr8_plus.7"; transcript_id "stmg_chr8_plus.7.1";
chr8 stmg exon 73052178 73055603 . + . gene_id "stmg_chr8_plus.8"; transcript_id "stmg_chr8_plus.8.1";
chr8 stmg exon 73062939 73063019 . + . gene_id "stmg_chr8_plus.8"; transcript_id "stmg_chr8_plus.8.1";
chr8 stmg exon 83403758 83404069 . + . gene_id "stmg_chr8_plus.9"; transcript_id "stmg_chr8_plus.9.1";
chr8 stmg exon 83407692 83408889 . + . gene_id "stmg_chr8_plus.9"; transcript_id "stmg_chr8_plus.9.1";
chr8 stmg exon 93741193 93741459 . + . gene_id "stmg_chr8_plus.10"; transcript_id "stmg_chr8_plus.10.1";
chr8 stmg exon 93744272 93744510 . + . gene_id "stmg_chr8_plus.10"; transcript_id "stmg_chr8_plus.10.1";
chr8 stmg exon 101139869 101139980 . + . gene_id "stmg_chr8_plus.11"; transcript_id "stmg_chr8_plus.11.1";
chr8 stmg exon 101140660 101140802 . + . gene_id "stmg_chr8_plus.11"; transcript_id "stmg_chr8_plus.11.1";
chr8 stmg exon 102978801 102978955 . + . gene_id "stmg_chr8_plus.12"; transcript_id "stmg_chr8_plus.12.1";
chr8 stmg exon 102992250 102992407 . + . gene_id "stmg_chr8_plus.12"; transcript_id "stmg_chr8_plus.12.1";
chr8 stmg exon 102995625 102995682 . + . gene_id "stmg_chr8_plus.12"; transcript_id "stmg_chr8_plus.12.1";
chr8 stmg exon 103000009 103000113 . + . gene_id "stmg_chr8_plus.12"; transcript_id "stmg_chr8_plus.12.1";
chr8 stmg exon 124271684 124271810 . + . gene_id "stmg_chr8_plus.13"; transcript_id "stmg_chr8_plus.13.1";
chr8 stmg exon 124276114 124276236 . + . gene_id "stmg_chr8_plus.13"; transcript_id "stmg_chr8_plus.13.1";
chr8 stmg exon 124277283 124277583 . + . gene_id "stmg_chr8_plus.13"; transcript_id "stmg_chr8_plus.13.1";
chr8 stmg exon 124973303 124973416 . + . gene_id "stmg_chr8_plus.14"; transcript_id "stmg_chr8_plus.14.1";
chr8 stmg exon 124975606 124975719 . + . gene_id "stmg_chr8_plus.14"; transcript_id "stmg_chr8_plus.14.1";
chr8 stmg exon 124976348 124979389 . + . gene_id "stmg_chr8_plus.14"; transcript_id "stmg_chr8_plus.14.1";
chr8 stmg exon 126325496 126325557 . + . gene_id "stmg_chr8_plus.15"; transcript_id "stmg_chr8_plus.15.1";
chr8 stmg exon 126327256 126327386 . + . gene_id "stmg_chr8_plus.15"; transcript_id "stmg_chr8_plus.15.1";
chr8 stmg exon 126328308 126329535 . + . gene_id "stmg_chr8_plus.15"; transcript_id "stmg_chr8_plus.15.1";
chr8 stmg exon 134838139 134838309 . + . gene_id "stmg_chr8_plus.16"; transcript_id "stmg_chr8_plus.16.1";
chr8 stmg exon 134842225 134842318 . + . gene_id "stmg_chr8_plus.16"; transcript_id "stmg_chr8_plus.16.1";
chr8 stmg exon 134842454 134842630 . + . gene_id "stmg_chr8_plus.16"; transcript_id "stmg_chr8_plus.16.1";
chr8 stmg exon 136489485 136489502 . + . gene_id "stmg_chr8_plus.17"; transcript_id "stmg_chr8_plus.17.1";
chr8 stmg exon 136515966 136516300 . + . gene_id "stmg_chr8_plus.17"; transcript_id "stmg_chr8_plus.17.1";
chr8 stmg exon 136519148 136519239 . + . gene_id "stmg_chr8_plus.17"; transcript_id "stmg_chr8_plus.17.1";
chr8 stmg exon 136529795 136529864 . + . gene_id "stmg_chr8_plus.17"; transcript_id "stmg_chr8_plus.17.1";
chr8 stmg exon 143412750 143412856 . + . gene_id "stmg_chr8_plus.18"; transcript_id "stmg_chr8_plus.18.1";
chr8 stmg exon 143413192 143413482 . + . gene_id "stmg_chr8_plus.18"; transcript_id "stmg_chr8_plus.18.1";
chr8 stmg exon 143416910 143417051 . + . gene_id "stmg_chr8_plus.18"; transcript_id "stmg_chr8_plus.18.1";
chr8 stmg exon 143417682 143417919 . + . gene_id "stmg_chr8_plus.19"; transcript_id "stmg_chr8_plus.19.1";
chr8 stmg exon 143418975 143419150 . + . gene_id "stmg_chr8_plus.19"; transcript_id "stmg_chr8_plus.19.1";
chr9 stmg exon 5231420 5231719 . + . gene_id "stmg_chr9_plus.1"; transcript_id "stmg_chr9_plus.1.1";
chr9 stmg exon 5233654 5235298 . + . gene_id "stmg_chr9_plus.1"; transcript_id "stmg_chr9_plus.1.1";
chr9 stmg exon 5510575 5510803 . + . gene_id "stmg_chr9_plus.2"; transcript_id "stmg_chr9_plus.2.1";
chr9 stmg exon 5522533 5522601 . + . gene_id "stmg_chr9_plus.2"; transcript_id "stmg_chr9_plus.2.1";
chr9 stmg exon 5534745 5535050 . + . gene_id "stmg_chr9_plus.2"; transcript_id "stmg_chr9_plus.2.1";
chr9 stmg exon 5549335 5549604 . + . gene_id "stmg_chr9_plus.2"; transcript_id "stmg_chr9_plus.2.1";
chr9 stmg exon 5557618 5557752 . + . gene_id "stmg_chr9_plus.2"; transcript_id "stmg_chr9_plus.2.1";
chr9 stmg exon 5563162 5563211 . + . gene_id "stmg_chr9_plus.2"; transcript_id "stmg_chr9_plus.2.1";
chr9 stmg exon 5569954 5571254 . + . gene_id "stmg_chr9_plus.2"; transcript_id "stmg_chr9_plus.2.1";
chr9 stmg exon 6704634 6704653 . + . gene_id "stmg_chr9_plus.3"; transcript_id "stmg_chr9_plus.3.1";
chr9 stmg exon 6707542 6707774 . + . gene_id "stmg_chr9_plus.3"; transcript_id "stmg_chr9_plus.3.1";
chr9 stmg exon 19409060 19409192 . + . gene_id "stmg_chr9_plus.4"; transcript_id "stmg_chr9_plus.4.1";
chr9 stmg exon 19423862 19423976 . + . gene_id "stmg_chr9_plus.4"; transcript_id "stmg_chr9_plus.4.1";
chr9 stmg exon 19424700 19424841 . + . gene_id "stmg_chr9_plus.4"; transcript_id "stmg_chr9_plus.4.1";
chr9 stmg exon 19434947 19435084 . + . gene_id "stmg_chr9_plus.4"; transcript_id "stmg_chr9_plus.4.1";
chr9 stmg exon 19446281 19446418 . + . gene_id "stmg_chr9_plus.4"; transcript_id "stmg_chr9_plus.4.1";
chr9 stmg exon 19450450 19452020 . + . gene_id "stmg_chr9_plus.4"; transcript_id "stmg_chr9_plus.4.1";
chr9 stmg exon 22446843 22447732 . + . gene_id "stmg_chr9_plus.5"; transcript_id "stmg_chr9_plus.5.1";
chr9 stmg exon 22451064 22455740 . + . gene_id "stmg_chr9_plus.5"; transcript_id "stmg_chr9_plus.5.1";
chr9 stmg exon 27102756 27103058 . + . gene_id "stmg_chr9_plus.6"; transcript_id "stmg_chr9_plus.6.1";
chr9 stmg exon 33617769 33617875 . + . gene_id "stmg_chr9_plus.7"; transcript_id "stmg_chr9_plus.7.1";
chr9 stmg exon 33618205 33618460 . + . gene_id "stmg_chr9_plus.7"; transcript_id "stmg_chr9_plus.7.1";
chr9 stmg exon 37509150 37509380 . + . gene_id "stmg_chr9_plus.8"; transcript_id "stmg_chr9_plus.8.1";
chr9 stmg exon 42625436 42625533 . + . gene_id "stmg_chr9_plus.9"; transcript_id "stmg_chr9_plus.9.1";
chr9 stmg exon 42626621 42626805 . + . gene_id "stmg_chr9_plus.9"; transcript_id "stmg_chr9_plus.9.1";
chr9 stmg exon 61854162 61854376 . + . gene_id "stmg_chr9_plus.10"; transcript_id "stmg_chr9_plus.10.1";
chr9 stmg exon 61854931 61855331 . + . gene_id "stmg_chr9_plus.10"; transcript_id "stmg_chr9_plus.10.1";
chr9 stmg exon 68228651 68228731 . + . gene_id "stmg_chr9_plus.11"; transcript_id "stmg_chr9_plus.11.1";
chr9 stmg exon 68229054 68229311 . + . gene_id "stmg_chr9_plus.11"; transcript_id "stmg_chr9_plus.11.1";
chr9 stmg exon 72257350 72257405 . + . gene_id "stmg_chr9_plus.12"; transcript_id "stmg_chr9_plus.12.1";
chr9 stmg exon 72257493 72257777 . + . gene_id "stmg_chr9_plus.12"; transcript_id "stmg_chr9_plus.12.1";
chr9 stmg exon 75088543 75088726 . + . gene_id "stmg_chr9_plus.13"; transcript_id "stmg_chr9_plus.13.1";
chr9 stmg exon 75117504 75117550 . + . gene_id "stmg_chr9_plus.13"; transcript_id "stmg_chr9_plus.13.1";
chr9 stmg exon 75127569 75127619 . + . gene_id "stmg_chr9_plus.13"; transcript_id "stmg_chr9_plus.13.1";
chr9 stmg exon 75130578 75130641 . + . gene_id "stmg_chr9_plus.13"; transcript_id "stmg_chr9_plus.13.1";
chr9 stmg exon 75131770 75131823 . + . gene_id "stmg_chr9_plus.13"; transcript_id "stmg_chr9_plus.13.1";
chr9 stmg exon 75133294 75133401 . + . gene_id "stmg_chr9_plus.13"; transcript_id "stmg_chr9_plus.13.1";
chr9 stmg exon 75134346 75134395 . + . gene_id "stmg_chr9_plus.13"; transcript_id "stmg_chr9_plus.13.1";
chr9 stmg exon 75137538 75137616 . + . gene_id "stmg_chr9_plus.13"; transcript_id "stmg_chr9_plus.13.1";
chr9 stmg exon 75140834 75140932 . + . gene_id "stmg_chr9_plus.13"; transcript_id "stmg_chr9_plus.13.1";
chr9 stmg exon 75146683 75147259 . + . gene_id "stmg_chr9_plus.13"; transcript_id "stmg_chr9_plus.13.1";
chr9 stmg exon 86948699 86948993 . + . gene_id "stmg_chr9_plus.14"; transcript_id "stmg_chr9_plus.14.1";
chr9 stmg exon 86950867 86950999 . + . gene_id "stmg_chr9_plus.14"; transcript_id "stmg_chr9_plus.14.1";
chr9 stmg exon 86981770 86981925 . + . gene_id "stmg_chr9_plus.14"; transcript_id "stmg_chr9_plus.14.1";
chr9 stmg exon 86987448 86987615 . + . gene_id "stmg_chr9_plus.14"; transcript_id "stmg_chr9_plus.14.1";
chr9 stmg exon 86988802 86988906 . + . gene_id "stmg_chr9_plus.14"; transcript_id "stmg_chr9_plus.14.1";
chr9 stmg exon 86997314 86997403 . + . gene_id "stmg_chr9_plus.14"; transcript_id "stmg_chr9_plus.14.1";
chr9 stmg exon 86998594 87002029 . + . gene_id "stmg_chr9_plus.14"; transcript_id "stmg_chr9_plus.14.1";
chr9 stmg exon 87865903 87866288 . + . gene_id "stmg_chr9_plus.15"; transcript_id "stmg_chr9_plus.15.1";
chr9 stmg exon 91426243 91426396 . + . gene_id "stmg_chr9_plus.16"; transcript_id "stmg_chr9_plus.16.1";
chr9 stmg exon 91426830 91427131 . + . gene_id "stmg_chr9_plus.16"; transcript_id "stmg_chr9_plus.16.1";
chr9 stmg exon 96687061 96687324 . + . gene_id "stmg_chr9_plus.17"; transcript_id "stmg_chr9_plus.17.1";
chr9 stmg exon 96720966 96721115 . + . gene_id "stmg_chr9_plus.17"; transcript_id "stmg_chr9_plus.17.1";
chr9 stmg exon 113650960 113651164 . + . gene_id "stmg_chr9_plus.18"; transcript_id "stmg_chr9_plus.18.1";
chr9 stmg exon 113652017 113652080 . + . gene_id "stmg_chr9_plus.18"; transcript_id "stmg_chr9_plus.18.1";
chr9 stmg exon 113681906 113682847 . + . gene_id "stmg_chr9_plus.18"; transcript_id "stmg_chr9_plus.18.1";
chr9 stmg exon 114329869 114330018 . + . gene_id "stmg_chr9_plus.19"; transcript_id "stmg_chr9_plus.19.1";
chr9 stmg exon 114330434 114330576 . + . gene_id "stmg_chr9_plus.19"; transcript_id "stmg_chr9_plus.19.1";
chr9 stmg exon 114330792 114330862 . + . gene_id "stmg_chr9_plus.19"; transcript_id "stmg_chr9_plus.19.1";
chr9 stmg exon 114331567 114331674 . + . gene_id "stmg_chr9_plus.19"; transcript_id "stmg_chr9_plus.19.1";
chr9 stmg exon 114331826 114331929 . + . gene_id "stmg_chr9_plus.19"; transcript_id "stmg_chr9_plus.19.1";
chr9 stmg exon 114333069 114333252 . + . gene_id "stmg_chr9_plus.19"; transcript_id "stmg_chr9_plus.19.1";
chr9 stmg exon 116012365 116012530 . + . gene_id "stmg_chr9_plus.20"; transcript_id "stmg_chr9_plus.20.1";
chr9 stmg exon 116012627 116012958 . + . gene_id "stmg_chr9_plus.20"; transcript_id "stmg_chr9_plus.20.1";
chr9 stmg exon 125241667 125242063 . + . gene_id "stmg_chr9_plus.21"; transcript_id "stmg_chr9_plus.21.1";
chr9 stmg exon 125254578 125254604 . + . gene_id "stmg_chr9_plus.21"; transcript_id "stmg_chr9_plus.21.1";
chr9 stmg exon 129321027 129321046 . + . gene_id "stmg_chr9_plus.22"; transcript_id "stmg_chr9_plus.22.1";
chr9 stmg exon 129321792 129324904 . + . gene_id "stmg_chr9_plus.22"; transcript_id "stmg_chr9_plus.22.1";
chr9 stmg exon 129575423 129575598 . + . gene_id "stmg_chr9_plus.23"; transcript_id "stmg_chr9_plus.23.1";
chr9 stmg exon 129580051 129580319 . + . gene_id "stmg_chr9_plus.23"; transcript_id "stmg_chr9_plus.23.1";
chr9 stmg exon 129580479 129580558 . + . gene_id "stmg_chr9_plus.23"; transcript_id "stmg_chr9_plus.23.1";
chr9 stmg exon 129582647 129584556 . + . gene_id "stmg_chr9_plus.23"; transcript_id "stmg_chr9_plus.23.1";
chr9 stmg exon 135907833 135907875 . + . gene_id "stmg_chr9_plus.24"; transcript_id "stmg_chr9_plus.24.1";
chr9 stmg exon 135908652 135908788 . + . gene_id "stmg_chr9_plus.24"; transcript_id "stmg_chr9_plus.24.1";
chr9 stmg exon 135913404 135913468 . + . gene_id "stmg_chr9_plus.24"; transcript_id "stmg_chr9_plus.24.1";
chr9 stmg exon 137224640 137225233 . + . gene_id "stmg_chr9_plus.25"; transcript_id "stmg_chr9_plus.25.1";
chr9 stmg exon 137225614 137226311 . + . gene_id "stmg_chr9_plus.25"; transcript_id "stmg_chr9_plus.25.1";
chr9 stmg exon 137277749 137277907 . + . gene_id "stmg_chr9_plus.26"; transcript_id "stmg_chr9_plus.26.1";
chr9 stmg exon 137278653 137282641 . + . gene_id "stmg_chr9_plus.26"; transcript_id "stmg_chr9_plus.26.1";
chr9 stmg exon 137551792 137551978 . + . gene_id "stmg_chr9_plus.27"; transcript_id "stmg_chr9_plus.27.1";
chr9 stmg exon 137552074 137552555 . + . gene_id "stmg_chr9_plus.27"; transcript_id "stmg_chr9_plus.27.1";
chr10 stmg exon 5234358 5234593 . + . gene_id "stmg_chr10_plus.1"; transcript_id "stmg_chr10_plus.1.1";
chr10 stmg exon 5262965 5263402 . + . gene_id "stmg_chr10_plus.1"; transcript_id "stmg_chr10_plus.1.1";
chr10 stmg exon 6737388 6737628 . + . gene_id "stmg_chr10_plus.2"; transcript_id "stmg_chr10_plus.2.1";
chr10 stmg exon 6738357 6739023 . + . gene_id "stmg_chr10_plus.2"; transcript_id "stmg_chr10_plus.2.1";
chr10 stmg exon 6779598 6779887 . + . gene_id "stmg_chr10_plus.3"; transcript_id "stmg_chr10_plus.3.1";
chr10 stmg exon 6781304 6781486 . + . gene_id "stmg_chr10_plus.3"; transcript_id "stmg_chr10_plus.3.1";
chr10 stmg exon 6833643 6833688 . + . gene_id "stmg_chr10_plus.3"; transcript_id "stmg_chr10_plus.3.1";
chr10 stmg exon 6837974 6838008 . + . gene_id "stmg_chr10_plus.3"; transcript_id "stmg_chr10_plus.3.1";
chr10 stmg exon 6840391 6842906 . + . gene_id "stmg_chr10_plus.3"; transcript_id "stmg_chr10_plus.3.1";
chr10 stmg exon 8970135 8970272 . + . gene_id "stmg_chr10_plus.4"; transcript_id "stmg_chr10_plus.4.1";
chr10 stmg exon 8972940 8973467 . + . gene_id "stmg_chr10_plus.4"; transcript_id "stmg_chr10_plus.4.1";
chr10 stmg exon 13415205 13415256 . + . gene_id "stmg_chr10_plus.5"; transcript_id "stmg_chr10_plus.5.1";
chr10 stmg exon 13422735 13423123 . + . gene_id "stmg_chr10_plus.5"; transcript_id "stmg_chr10_plus.5.1";
chr10 stmg exon 18659405 18659683 . + . gene_id "stmg_chr10_plus.6"; transcript_id "stmg_chr10_plus.6.1";
chr10 stmg exon 18666575 18666635 . + . gene_id "stmg_chr10_plus.6"; transcript_id "stmg_chr10_plus.6.1";
chr10 stmg exon 18668530 18668677 . + . gene_id "stmg_chr10_plus.6"; transcript_id "stmg_chr10_plus.6.1";
chr10 stmg exon 18672622 18672705 . + . gene_id "stmg_chr10_plus.6"; transcript_id "stmg_chr10_plus.6.1";
chr10 stmg exon 18673984 18674135 . + . gene_id "stmg_chr10_plus.6"; transcript_id "stmg_chr10_plus.6.1";
chr10 stmg exon 18675168 18681639 . + . gene_id "stmg_chr10_plus.6"; transcript_id "stmg_chr10_plus.6.1";
chr10 stmg exon 34816123 34816386 . + . gene_id "stmg_chr10_plus.7"; transcript_id "stmg_chr10_plus.7.1";
chr10 stmg exon 37883611 37883739 . + . gene_id "stmg_chr10_plus.8"; transcript_id "stmg_chr10_plus.8.1";
chr10 stmg exon 37884015 37884109 . + . gene_id "stmg_chr10_plus.8"; transcript_id "stmg_chr10_plus.8.1";
chr10 stmg exon 43138486 43138567 . + . gene_id "stmg_chr10_plus.9"; transcript_id "stmg_chr10_plus.9.1";
chr10 stmg exon 43154897 43155810 . + . gene_id "stmg_chr10_plus.9"; transcript_id "stmg_chr10_plus.9.1";
chr10 stmg exon 43158715 43158931 . + . gene_id "stmg_chr10_plus.9"; transcript_id "stmg_chr10_plus.9.1";
chr10 stmg exon 43160494 43160595 . + . gene_id "stmg_chr10_plus.9"; transcript_id "stmg_chr10_plus.9.1";
chr10 stmg exon 43163866 43164044 . + . gene_id "stmg_chr10_plus.9"; transcript_id "stmg_chr10_plus.9.1";
chr10 stmg exon 43167004 43167098 . + . gene_id "stmg_chr10_plus.9"; transcript_id "stmg_chr10_plus.9.1";
chr10 stmg exon 43175951 43176032 . + . gene_id "stmg_chr10_plus.9"; transcript_id "stmg_chr10_plus.9.1";
chr10 stmg exon 43183250 43185308 . + . gene_id "stmg_chr10_plus.9"; transcript_id "stmg_chr10_plus.9.1";
chr10 stmg exon 43420745 43421066 . + . gene_id "stmg_chr10_plus.10"; transcript_id "stmg_chr10_plus.10.1";
chr10 stmg exon 43421670 43422100 . + . gene_id "stmg_chr10_plus.10"; transcript_id "stmg_chr10_plus.10.1";
chr10 stmg exon 45678743 45679040 . + . gene_id "stmg_chr10_plus.11"; transcript_id "stmg_chr10_plus.11.1";
chr10 stmg exon 45681772 45681840 . + . gene_id "stmg_chr10_plus.11"; transcript_id "stmg_chr10_plus.11.1";
chr10 stmg exon 45684486 45684520 . + . gene_id "stmg_chr10_plus.11"; transcript_id "stmg_chr10_plus.11.1";
chr10 stmg exon 45692059 45692158 . + . gene_id "stmg_chr10_plus.11"; transcript_id "stmg_chr10_plus.11.1";
chr10 stmg exon 45694748 45694783 . + . gene_id "stmg_chr10_plus.11"; transcript_id "stmg_chr10_plus.11.1";
chr10 stmg exon 45698065 45698116 . + . gene_id "stmg_chr10_plus.11"; transcript_id "stmg_chr10_plus.11.1";
chr10 stmg exon 45698756 45700529 . + . gene_id "stmg_chr10_plus.11"; transcript_id "stmg_chr10_plus.11.1";
chr10 stmg exon 46109621 46109843 . + . gene_id "stmg_chr10_plus.12"; transcript_id "stmg_chr10_plus.12.1";
chr10 stmg exon 46110213 46110282 . + . gene_id "stmg_chr10_plus.12"; transcript_id "stmg_chr10_plus.12.1";
chr10 stmg exon 46112580 46112648 . + . gene_id "stmg_chr10_plus.12"; transcript_id "stmg_chr10_plus.12.1";
chr10 stmg exon 46115295 46115329 . + . gene_id "stmg_chr10_plus.12"; transcript_id "stmg_chr10_plus.12.1";
chr10 stmg exon 46123170 46123270 . + . gene_id "stmg_chr10_plus.12"; transcript_id "stmg_chr10_plus.12.1";
chr10 stmg exon 46125864 46125899 . + . gene_id "stmg_chr10_plus.12"; transcript_id "stmg_chr10_plus.12.1";
chr10 stmg exon 46129195 46129246 . + . gene_id "stmg_chr10_plus.12"; transcript_id "stmg_chr10_plus.12.1";
chr10 stmg exon 46129883 46131358 . + . gene_id "stmg_chr10_plus.12"; transcript_id "stmg_chr10_plus.12.1";
chr10 stmg exon 46816516 46816738 . + . gene_id "stmg_chr10_plus.13"; transcript_id "stmg_chr10_plus.13.1";
chr10 stmg exon 46819468 46819536 . + . gene_id "stmg_chr10_plus.13"; transcript_id "stmg_chr10_plus.13.1";
chr10 stmg exon 46822178 46822212 . + . gene_id "stmg_chr10_plus.13"; transcript_id "stmg_chr10_plus.13.1";
chr10 stmg exon 46832441 46832465 . + . gene_id "stmg_chr10_plus.13"; transcript_id "stmg_chr10_plus.13.1";
chr10 stmg exon 46870859 46871064 . + . gene_id "stmg_chr10_plus.14"; transcript_id "stmg_chr10_plus.14.1";
chr10 stmg exon 46873716 46873820 . + . gene_id "stmg_chr10_plus.14"; transcript_id "stmg_chr10_plus.14.1";
chr10 stmg exon 46875932 46876025 . + . gene_id "stmg_chr10_plus.14"; transcript_id "stmg_chr10_plus.14.1";
chr10 stmg exon 46876916 46877001 . + . gene_id "stmg_chr10_plus.14"; transcript_id "stmg_chr10_plus.14.1";
chr10 stmg exon 46878779 46878926 . + . gene_id "stmg_chr10_plus.14"; transcript_id "stmg_chr10_plus.14.1";
chr10 stmg exon 46880664 46880878 . + . gene_id "stmg_chr10_plus.14"; transcript_id "stmg_chr10_plus.14.1";
chr10 stmg exon 46883184 46883282 . + . gene_id "stmg_chr10_plus.14"; transcript_id "stmg_chr10_plus.14.1";
chr10 stmg exon 46888215 46888558 . + . gene_id "stmg_chr10_plus.14"; transcript_id "stmg_chr10_plus.14.1";
chr10 stmg exon 46894514 46894558 . + . gene_id "stmg_chr10_plus.14"; transcript_id "stmg_chr10_plus.14.1";
chr10 stmg exon 47322756 47323014 . + . gene_id "stmg_chr10_plus.15"; transcript_id "stmg_chr10_plus.15.1";
chr10 stmg exon 47324841 47326233 . + . gene_id "stmg_chr10_plus.15"; transcript_id "stmg_chr10_plus.15.1";
chr10 stmg exon 60734348 60734428 . + . gene_id "stmg_chr10_plus.16"; transcript_id "stmg_chr10_plus.16.1";
chr10 stmg exon 60741482 60741826 . + . gene_id "stmg_chr10_plus.16"; transcript_id "stmg_chr10_plus.16.1";
chr10 stmg exon 70404379 70404546 . + . gene_id "stmg_chr10_plus.17"; transcript_id "stmg_chr10_plus.17.1";
chr10 stmg exon 70419914 70420099 . + . gene_id "stmg_chr10_plus.17"; transcript_id "stmg_chr10_plus.17.1";
chr10 stmg exon 70421716 70428618 . + . gene_id "stmg_chr10_plus.17"; transcript_id "stmg_chr10_plus.17.1";
chr10 stmg exon 71878358 71878485 . + . gene_id "stmg_chr10_plus.18"; transcript_id "stmg_chr10_plus.18.1";
chr10 stmg exon 71878713 71879107 . + . gene_id "stmg_chr10_plus.18"; transcript_id "stmg_chr10_plus.18.1";
chr10 stmg exon 71964367 71964694 . + . gene_id "stmg_chr10_plus.19"; transcript_id "stmg_chr10_plus.19.1";
chr10 stmg exon 72005736 72005982 . + . gene_id "stmg_chr10_plus.19"; transcript_id "stmg_chr10_plus.19.1";
chr10 stmg exon 72007172 72013564 . + . gene_id "stmg_chr10_plus.19"; transcript_id "stmg_chr10_plus.19.1";
chr10 stmg exon 86521945 86522409 . + . gene_id "stmg_chr10_plus.20"; transcript_id "stmg_chr10_plus.20.1";
chr10 stmg exon 86522509 86525101 . + . gene_id "stmg_chr10_plus.20"; transcript_id "stmg_chr10_plus.20.1";
chr10 stmg exon 89414586 89414803 . + . gene_id "stmg_chr10_plus.21"; transcript_id "stmg_chr10_plus.21.1";
chr10 stmg exon 89417205 89421001 . + . gene_id "stmg_chr10_plus.21"; transcript_id "stmg_chr10_plus.21.1";
chr10 stmg exon 97498869 97499273 . + . gene_id "stmg_chr10_plus.22"; transcript_id "stmg_chr10_plus.22.1";
chr10 stmg exon 97567914 97568141 . + . gene_id "stmg_chr10_plus.22"; transcript_id "stmg_chr10_plus.22.1";
chr10 stmg exon 97570138 97571209 . + . gene_id "stmg_chr10_plus.22"; transcript_id "stmg_chr10_plus.22.1";
chr10 stmg exon 99431197 99431265 . + . gene_id "stmg_chr10_plus.23"; transcript_id "stmg_chr10_plus.23.1";
chr10 stmg exon 99433546 99433940 . + . gene_id "stmg_chr10_plus.23"; transcript_id "stmg_chr10_plus.23.1";
chr10 stmg exon 99435505 99435553 . + . gene_id "stmg_chr10_plus.23"; transcript_id "stmg_chr10_plus.23.1";
chr10 stmg exon 100347124 100347531 . + . gene_id "stmg_chr10_plus.24"; transcript_id "stmg_chr10_plus.24.1";
chr10 stmg exon 100348064 100348346 . + . gene_id "stmg_chr10_plus.24"; transcript_id "stmg_chr10_plus.24.1";
chr10 stmg exon 100352366 100352496 . + . gene_id "stmg_chr10_plus.24"; transcript_id "stmg_chr10_plus.24.1";
chr10 stmg exon 100354427 100354632 . + . gene_id "stmg_chr10_plus.24"; transcript_id "stmg_chr10_plus.24.1";
chr10 stmg exon 100356532 100356764 . + . gene_id "stmg_chr10_plus.24"; transcript_id "stmg_chr10_plus.24.1";
chr10 stmg exon 100360734 100364833 . + . gene_id "stmg_chr10_plus.24"; transcript_id "stmg_chr10_plus.24.1";
chr10 stmg exon 100373615 100374012 . + . gene_id "stmg_chr10_plus.25"; transcript_id "stmg_chr10_plus.25.1";
chr10 stmg exon 100381216 100383368 . + . gene_id "stmg_chr10_plus.25"; transcript_id "stmg_chr10_plus.25.1";
chr10 stmg exon 102226330 102226649 . + . gene_id "stmg_chr10_plus.26"; transcript_id "stmg_chr10_plus.26.1";
chr10 stmg exon 102227626 102227757 . + . gene_id "stmg_chr10_plus.26"; transcript_id "stmg_chr10_plus.26.1";
chr10 stmg exon 102228417 102228568 . + . gene_id "stmg_chr10_plus.26"; transcript_id "stmg_chr10_plus.26.1";
chr10 stmg exon 102228825 102229589 . + . gene_id "stmg_chr10_plus.26"; transcript_id "stmg_chr10_plus.26.1";
chr10 stmg exon 112888742 112888807 . + . gene_id "stmg_chr10_plus.27"; transcript_id "stmg_chr10_plus.27.1";
chr10 stmg exon 112890966 112891072 . + . gene_id "stmg_chr10_plus.27"; transcript_id "stmg_chr10_plus.27.1";
chr10 stmg exon 112905977 112906020 . + . gene_id "stmg_chr10_plus.27"; transcript_id "stmg_chr10_plus.27.1";
chr10 stmg exon 123135966 123136450 . + . gene_id "stmg_chr10_plus.28"; transcript_id "stmg_chr10_plus.28.1";
chr10 stmg exon 123137058 123137741 . + . gene_id "stmg_chr10_plus.28"; transcript_id "stmg_chr10_plus.28.1";
chr10 stmg exon 123148145 123148646 . + . gene_id "stmg_chr10_plus.29"; transcript_id "stmg_chr10_plus.29.1";
chr10 stmg exon 123149570 123150672 . + . gene_id "stmg_chr10_plus.29"; transcript_id "stmg_chr10_plus.29.1";
chr10 stmg exon 129769196 129769422 . + . gene_id "stmg_chr10_plus.30"; transcript_id "stmg_chr10_plus.30.1";
chr10 stmg exon 131891834 131892989 . + . gene_id "stmg_chr10_plus.31"; transcript_id "stmg_chr10_plus.31.1";
chr10 stmg exon 131895113 131895296 . + . gene_id "stmg_chr10_plus.31"; transcript_id "stmg_chr10_plus.31.1";
chr10 stmg exon 133237409 133238155 . + . gene_id "stmg_chr10_plus.32"; transcript_id "stmg_chr10_plus.32.1";
chr10 stmg exon 133239676 133239836 . + . gene_id "stmg_chr10_plus.32"; transcript_id "stmg_chr10_plus.32.1";
chr10 stmg exon 133239932 133241924 . + . gene_id "stmg_chr10_plus.32"; transcript_id "stmg_chr10_plus.32.1";
chr11 stmg exon 529161 529650 . + . gene_id "stmg_chr11_plus.1"; transcript_id "stmg_chr11_plus.1.1";
chr11 stmg exon 1157963 1158072 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1160612 1160689 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1161527 1161586 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1161907 1162168 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1162532 1162646 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1162955 1163045 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1163882 1163991 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1164106 1164319 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1164407 1164532 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1165302 1165419 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1165622 1165760 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1167877 1167987 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1168483 1168552 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1168642 1168779 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1168862 1169026 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1172429 1172523 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1174496 1174622 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1174882 1175137 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1175218 1175270 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1176151 1176251 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1176514 1176665 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1176928 1177066 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1177231 1177344 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1177454 1177633 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1178444 1178683 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1179092 1179248 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1180022 1180150 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1180354 1180516 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1181139 1181182 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1181271 1181459 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1182155 1192525 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1192783 1192982 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1193485 1193659 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1194110 1194360 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1194487 1194670 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1195012 1195279 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1195876 1196054 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1196388 1196475 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1196617 1196720 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1196877 1196908 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1197468 1197639 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1197903 1198004 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1198268 1198305 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1198874 1198996 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1199087 1199185 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";
chr11 stmg exon 1199371 1199490 . + . gene_id "stmg_chr11_plus.2"; transcript_id "stmg_chr11_plus.2.1";