-
Notifications
You must be signed in to change notification settings - Fork 0
/
cfmg.gtf
6091 lines (6091 loc) · 641 KB
/
cfmg.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 cfmg exon 182393 182746 . + . gene_id "cfmg_chr1_plus.1"; transcript_id "cfmg_chr1_plus.1.1";
chr1 cfmg exon 183114 183240 . + . gene_id "cfmg_chr1_plus.1"; transcript_id "cfmg_chr1_plus.1.1";
chr1 cfmg exon 183922 184152 . + . gene_id "cfmg_chr1_plus.1"; transcript_id "cfmg_chr1_plus.1.1";
chr1 cfmg exon 1426130 1426385 . + . gene_id "cfmg_chr1_plus.2"; transcript_id "cfmg_chr1_plus.2.2";
chr1 cfmg exon 1427554 1427782 . + . gene_id "cfmg_chr1_plus.2"; transcript_id "cfmg_chr1_plus.2.2";
chr1 cfmg exon 1891530 1891851 . + . gene_id "cfmg_chr1_plus.3"; transcript_id "cfmg_chr1_plus.3.3";
chr1 cfmg exon 1892134 1892649 . + . gene_id "cfmg_chr1_plus.3"; transcript_id "cfmg_chr1_plus.3.3";
chr1 cfmg exon 2019355 2019498 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.5";
chr1 cfmg exon 2024949 2025054 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.5";
chr1 cfmg exon 2025334 2025401 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.5";
chr1 cfmg exon 2025518 2025739 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.5";
chr1 cfmg exon 2027578 2027661 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.5";
chr1 cfmg exon 2028157 2028292 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.5";
chr1 cfmg exon 2029111 2029268 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.5";
chr1 cfmg exon 2029553 2029762 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.5";
chr1 cfmg exon 2029983 2030750 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.5";
chr1 cfmg exon 2019355 2019498 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.4";
chr1 cfmg exon 2024949 2025054 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.4";
chr1 cfmg exon 2025334 2025401 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.4";
chr1 cfmg exon 2025518 2025741 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.4";
chr1 cfmg exon 2027580 2027659 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.4";
chr1 cfmg exon 2028155 2028292 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.4";
chr1 cfmg exon 2029111 2029268 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.4";
chr1 cfmg exon 2029553 2029762 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.4";
chr1 cfmg exon 2029983 2030750 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.4";
chr1 cfmg exon 2019460 2019491 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.6";
chr1 cfmg exon 2024942 2025054 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.6";
chr1 cfmg exon 2025334 2025401 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.6";
chr1 cfmg exon 2025518 2025738 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.6";
chr1 cfmg exon 2027577 2027659 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.6";
chr1 cfmg exon 2028155 2028292 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.6";
chr1 cfmg exon 2029111 2029266 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.6";
chr1 cfmg exon 2029551 2029762 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.6";
chr1 cfmg exon 2029983 2030750 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.6";
chr1 cfmg exon 2025364 2025401 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.7";
chr1 cfmg exon 2025518 2025738 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.7";
chr1 cfmg exon 2027577 2027659 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.7";
chr1 cfmg exon 2028155 2028294 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.7";
chr1 cfmg exon 2029113 2029266 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.7";
chr1 cfmg exon 2029551 2029762 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.7";
chr1 cfmg exon 2029983 2030750 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.7";
chr1 cfmg exon 2025384 2025403 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.8";
chr1 cfmg exon 2025520 2025738 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.8";
chr1 cfmg exon 2027577 2027659 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.8";
chr1 cfmg exon 2028155 2028292 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.8";
chr1 cfmg exon 2029111 2029268 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.8";
chr1 cfmg exon 2029553 2029762 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.8";
chr1 cfmg exon 2029983 2030750 . + . gene_id "cfmg_chr1_plus.4"; transcript_id "cfmg_chr1_plus.4.8";
chr1 cfmg exon 12527727 12527792 . + . gene_id "cfmg_chr1_plus.5"; transcript_id "cfmg_chr1_plus.5.9";
chr1 cfmg exon 12528052 12528417 . + . gene_id "cfmg_chr1_plus.5"; transcript_id "cfmg_chr1_plus.5.9";
chr1 cfmg exon 16520756 16520787 . + . gene_id "cfmg_chr1_plus.6"; transcript_id "cfmg_chr1_plus.6.10";
chr1 cfmg exon 16521564 16521769 . + . gene_id "cfmg_chr1_plus.6"; transcript_id "cfmg_chr1_plus.6.10";
chr1 cfmg exon 16645622 16645678 . + . gene_id "cfmg_chr1_plus.7"; transcript_id "cfmg_chr1_plus.7.11";
chr1 cfmg exon 16646369 16646515 . + . gene_id "cfmg_chr1_plus.7"; transcript_id "cfmg_chr1_plus.7.11";
chr1 cfmg exon 16646597 16646709 . + . gene_id "cfmg_chr1_plus.7"; transcript_id "cfmg_chr1_plus.7.11";
chr1 cfmg exon 16646787 16646901 . + . gene_id "cfmg_chr1_plus.7"; transcript_id "cfmg_chr1_plus.7.11";
chr1 cfmg exon 16646980 16647116 . + . gene_id "cfmg_chr1_plus.7"; transcript_id "cfmg_chr1_plus.7.11";
chr1 cfmg exon 16647198 16647319 . + . gene_id "cfmg_chr1_plus.7"; transcript_id "cfmg_chr1_plus.7.11";
chr1 cfmg exon 16647464 16647581 . + . gene_id "cfmg_chr1_plus.7"; transcript_id "cfmg_chr1_plus.7.11";
chr1 cfmg exon 16647784 16647952 . + . gene_id "cfmg_chr1_plus.7"; transcript_id "cfmg_chr1_plus.7.11";
chr1 cfmg exon 16645622 16645678 . + . gene_id "cfmg_chr1_plus.7"; transcript_id "cfmg_chr1_plus.7.12";
chr1 cfmg exon 16646369 16646515 . + . gene_id "cfmg_chr1_plus.7"; transcript_id "cfmg_chr1_plus.7.12";
chr1 cfmg exon 16646597 16646709 . + . gene_id "cfmg_chr1_plus.7"; transcript_id "cfmg_chr1_plus.7.12";
chr1 cfmg exon 16646787 16646901 . + . gene_id "cfmg_chr1_plus.7"; transcript_id "cfmg_chr1_plus.7.12";
chr1 cfmg exon 16646980 16647116 . + . gene_id "cfmg_chr1_plus.7"; transcript_id "cfmg_chr1_plus.7.12";
chr1 cfmg exon 16647198 16647318 . + . gene_id "cfmg_chr1_plus.7"; transcript_id "cfmg_chr1_plus.7.12";
chr1 cfmg exon 16647463 16647581 . + . gene_id "cfmg_chr1_plus.7"; transcript_id "cfmg_chr1_plus.7.12";
chr1 cfmg exon 16647784 16647952 . + . gene_id "cfmg_chr1_plus.7"; transcript_id "cfmg_chr1_plus.7.12";
chr1 cfmg exon 16648068 16648198 . + . gene_id "cfmg_chr1_plus.7"; transcript_id "cfmg_chr1_plus.7.12";
chr1 cfmg exon 16648299 16648401 . + . gene_id "cfmg_chr1_plus.7"; transcript_id "cfmg_chr1_plus.7.12";
chr1 cfmg exon 16648445 16648664 . + . gene_id "cfmg_chr1_plus.7"; transcript_id "cfmg_chr1_plus.7.12";
chr1 cfmg exon 16648756 16648792 . + . gene_id "cfmg_chr1_plus.7"; transcript_id "cfmg_chr1_plus.7.12";
chr1 cfmg exon 16648881 16649001 . + . gene_id "cfmg_chr1_plus.7"; transcript_id "cfmg_chr1_plus.7.12";
chr1 cfmg exon 16649174 16649251 . + . gene_id "cfmg_chr1_plus.7"; transcript_id "cfmg_chr1_plus.7.12";
chr1 cfmg exon 16649379 16649525 . + . gene_id "cfmg_chr1_plus.7"; transcript_id "cfmg_chr1_plus.7.12";
chr1 cfmg exon 16649607 16649713 . + . gene_id "cfmg_chr1_plus.7"; transcript_id "cfmg_chr1_plus.7.12";
chr1 cfmg exon 16649810 16649949 . + . gene_id "cfmg_chr1_plus.7"; transcript_id "cfmg_chr1_plus.7.12";
chr1 cfmg exon 16650074 16650289 . + . gene_id "cfmg_chr1_plus.7"; transcript_id "cfmg_chr1_plus.7.12";
chr1 cfmg exon 16648224 16648224 . + . gene_id "cfmg_chr1_plus.7"; transcript_id "cfmg_chr1_plus.7.13";
chr1 cfmg exon 16648325 16648401 . + . gene_id "cfmg_chr1_plus.7"; transcript_id "cfmg_chr1_plus.7.13";
chr1 cfmg exon 16648432 16648664 . + . gene_id "cfmg_chr1_plus.7"; transcript_id "cfmg_chr1_plus.7.13";
chr1 cfmg exon 16648756 16648792 . + . gene_id "cfmg_chr1_plus.7"; transcript_id "cfmg_chr1_plus.7.13";
chr1 cfmg exon 16648881 16649001 . + . gene_id "cfmg_chr1_plus.7"; transcript_id "cfmg_chr1_plus.7.13";
chr1 cfmg exon 16649174 16649251 . + . gene_id "cfmg_chr1_plus.7"; transcript_id "cfmg_chr1_plus.7.13";
chr1 cfmg exon 16649379 16649525 . + . gene_id "cfmg_chr1_plus.7"; transcript_id "cfmg_chr1_plus.7.13";
chr1 cfmg exon 16649607 16649713 . + . gene_id "cfmg_chr1_plus.7"; transcript_id "cfmg_chr1_plus.7.13";
chr1 cfmg exon 16649810 16649949 . + . gene_id "cfmg_chr1_plus.7"; transcript_id "cfmg_chr1_plus.7.13";
chr1 cfmg exon 16650074 16650289 . + . gene_id "cfmg_chr1_plus.7"; transcript_id "cfmg_chr1_plus.7.13";
chr1 cfmg exon 19665302 19666467 . + . gene_id "cfmg_chr1_plus.8"; transcript_id "cfmg_chr1_plus.8.14";
chr1 cfmg exon 19678567 19678725 . + . gene_id "cfmg_chr1_plus.8"; transcript_id "cfmg_chr1_plus.8.14";
chr1 cfmg exon 19678919 19679558 . + . gene_id "cfmg_chr1_plus.8"; transcript_id "cfmg_chr1_plus.8.14";
chr1 cfmg exon 25581520 25581772 . + . gene_id "cfmg_chr1_plus.9"; transcript_id "cfmg_chr1_plus.9.15";
chr1 cfmg exon 25590169 25590358 . + . gene_id "cfmg_chr1_plus.9"; transcript_id "cfmg_chr1_plus.9.15";
chr1 cfmg exon 27392645 27392737 . + . gene_id "cfmg_chr1_plus.10"; transcript_id "cfmg_chr1_plus.10.16";
chr1 cfmg exon 27393794 27395815 . + . gene_id "cfmg_chr1_plus.10"; transcript_id "cfmg_chr1_plus.10.16";
chr1 cfmg exon 28259527 28259937 . + . gene_id "cfmg_chr1_plus.11"; transcript_id "cfmg_chr1_plus.11.17";
chr1 cfmg exon 28269183 28269248 . + . gene_id "cfmg_chr1_plus.11"; transcript_id "cfmg_chr1_plus.11.17";
chr1 cfmg exon 28271674 28271871 . + . gene_id "cfmg_chr1_plus.11"; transcript_id "cfmg_chr1_plus.11.17";
chr1 cfmg exon 28272284 28272466 . + . gene_id "cfmg_chr1_plus.11"; transcript_id "cfmg_chr1_plus.11.17";
chr1 cfmg exon 28272581 28272793 . + . gene_id "cfmg_chr1_plus.11"; transcript_id "cfmg_chr1_plus.11.17";
chr1 cfmg exon 28273358 28273508 . + . gene_id "cfmg_chr1_plus.11"; transcript_id "cfmg_chr1_plus.11.17";
chr1 cfmg exon 28274040 28274158 . + . gene_id "cfmg_chr1_plus.11"; transcript_id "cfmg_chr1_plus.11.17";
chr1 cfmg exon 28274825 28275015 . + . gene_id "cfmg_chr1_plus.11"; transcript_id "cfmg_chr1_plus.11.17";
chr1 cfmg exon 28279097 28279241 . + . gene_id "cfmg_chr1_plus.11"; transcript_id "cfmg_chr1_plus.11.17";
chr1 cfmg exon 28280716 28282541 . + . gene_id "cfmg_chr1_plus.11"; transcript_id "cfmg_chr1_plus.11.17";
chr1 cfmg exon 32247233 32247682 . + . gene_id "cfmg_chr1_plus.12"; transcript_id "cfmg_chr1_plus.12.18";
chr1 cfmg exon 32248371 32248864 . + . gene_id "cfmg_chr1_plus.12"; transcript_id "cfmg_chr1_plus.12.18";
chr1 cfmg exon 36088876 36089115 . + . gene_id "cfmg_chr1_plus.13"; transcript_id "cfmg_chr1_plus.13.19";
chr1 cfmg exon 36091244 36091340 . + . gene_id "cfmg_chr1_plus.13"; transcript_id "cfmg_chr1_plus.13.19";
chr1 cfmg exon 36091618 36091825 . + . gene_id "cfmg_chr1_plus.13"; transcript_id "cfmg_chr1_plus.13.19";
chr1 cfmg exon 36091910 36092094 . + . gene_id "cfmg_chr1_plus.13"; transcript_id "cfmg_chr1_plus.13.19";
chr1 cfmg exon 36092422 36092522 . + . gene_id "cfmg_chr1_plus.13"; transcript_id "cfmg_chr1_plus.13.19";
chr1 cfmg exon 36093097 36093959 . + . gene_id "cfmg_chr1_plus.13"; transcript_id "cfmg_chr1_plus.13.19";
chr1 cfmg exon 42678737 42678869 . + . gene_id "cfmg_chr1_plus.14"; transcript_id "cfmg_chr1_plus.14.20";
chr1 cfmg exon 42681194 42681654 . + . gene_id "cfmg_chr1_plus.14"; transcript_id "cfmg_chr1_plus.14.20";
chr1 cfmg exon 56854806 56854978 . + . gene_id "cfmg_chr1_plus.15"; transcript_id "cfmg_chr1_plus.15.21";
chr1 cfmg exon 56867609 56867702 . + . gene_id "cfmg_chr1_plus.15"; transcript_id "cfmg_chr1_plus.15.21";
chr1 cfmg exon 56874949 56875093 . + . gene_id "cfmg_chr1_plus.15"; transcript_id "cfmg_chr1_plus.15.21";
chr1 cfmg exon 56876062 56876209 . + . gene_id "cfmg_chr1_plus.15"; transcript_id "cfmg_chr1_plus.15.21";
chr1 cfmg exon 56881445 56881634 . + . gene_id "cfmg_chr1_plus.15"; transcript_id "cfmg_chr1_plus.15.21";
chr1 cfmg exon 56883481 56883681 . + . gene_id "cfmg_chr1_plus.15"; transcript_id "cfmg_chr1_plus.15.21";
chr1 cfmg exon 56885927 56886167 . + . gene_id "cfmg_chr1_plus.15"; transcript_id "cfmg_chr1_plus.15.21";
chr1 cfmg exon 56906667 56906792 . + . gene_id "cfmg_chr1_plus.15"; transcript_id "cfmg_chr1_plus.15.21";
chr1 cfmg exon 56907956 56908113 . + . gene_id "cfmg_chr1_plus.15"; transcript_id "cfmg_chr1_plus.15.21";
chr1 cfmg exon 56912403 56912625 . + . gene_id "cfmg_chr1_plus.15"; transcript_id "cfmg_chr1_plus.15.21";
chr1 cfmg exon 56917565 56918183 . + . gene_id "cfmg_chr1_plus.15"; transcript_id "cfmg_chr1_plus.15.21";
chr1 cfmg exon 62688485 62688652 . + . gene_id "cfmg_chr1_plus.16"; transcript_id "cfmg_chr1_plus.16.22";
chr1 cfmg exon 62709638 62710694 . + . gene_id "cfmg_chr1_plus.16"; transcript_id "cfmg_chr1_plus.16.22";
chr1 cfmg exon 89364059 89364127 . + . gene_id "cfmg_chr1_plus.17"; transcript_id "cfmg_chr1_plus.17.23";
chr1 cfmg exon 89368529 89368741 . + . gene_id "cfmg_chr1_plus.17"; transcript_id "cfmg_chr1_plus.17.23";
chr1 cfmg exon 89369546 89369673 . + . gene_id "cfmg_chr1_plus.17"; transcript_id "cfmg_chr1_plus.17.23";
chr1 cfmg exon 89378103 89378212 . + . gene_id "cfmg_chr1_plus.17"; transcript_id "cfmg_chr1_plus.17.23";
chr1 cfmg exon 89378417 89378613 . + . gene_id "cfmg_chr1_plus.17"; transcript_id "cfmg_chr1_plus.17.23";
chr1 cfmg exon 89380386 89380631 . + . gene_id "cfmg_chr1_plus.17"; transcript_id "cfmg_chr1_plus.17.23";
chr1 cfmg exon 89381694 89381974 . + . gene_id "cfmg_chr1_plus.17"; transcript_id "cfmg_chr1_plus.17.23";
chr1 cfmg exon 89382664 89382876 . + . gene_id "cfmg_chr1_plus.17"; transcript_id "cfmg_chr1_plus.17.23";
chr1 cfmg exon 89383652 89383754 . + . gene_id "cfmg_chr1_plus.17"; transcript_id "cfmg_chr1_plus.17.23";
chr1 cfmg exon 89384093 89384286 . + . gene_id "cfmg_chr1_plus.17"; transcript_id "cfmg_chr1_plus.17.23";
chr1 cfmg exon 89385230 89386422 . + . gene_id "cfmg_chr1_plus.17"; transcript_id "cfmg_chr1_plus.17.23";
chr1 cfmg exon 92167053 92167140 . + . gene_id "cfmg_chr1_plus.18"; transcript_id "cfmg_chr1_plus.18.24";
chr1 cfmg exon 92167848 92167985 . + . gene_id "cfmg_chr1_plus.18"; transcript_id "cfmg_chr1_plus.18.24";
chr1 cfmg exon 92168866 92168995 . + . gene_id "cfmg_chr1_plus.18"; transcript_id "cfmg_chr1_plus.18.24";
chr1 cfmg exon 92171399 92171460 . + . gene_id "cfmg_chr1_plus.18"; transcript_id "cfmg_chr1_plus.18.24";
chr1 cfmg exon 92176829 92177546 . + . gene_id "cfmg_chr1_plus.18"; transcript_id "cfmg_chr1_plus.18.24";
chr1 cfmg exon 92177811 92177898 . + . gene_id "cfmg_chr1_plus.18"; transcript_id "cfmg_chr1_plus.18.24";
chr1 cfmg exon 92178312 92178451 . + . gene_id "cfmg_chr1_plus.18"; transcript_id "cfmg_chr1_plus.18.24";
chr1 cfmg exon 92180265 92182595 . + . gene_id "cfmg_chr1_plus.18"; transcript_id "cfmg_chr1_plus.18.24";
chr1 cfmg exon 92183864 92184725 . + . gene_id "cfmg_chr1_plus.18"; transcript_id "cfmg_chr1_plus.18.24";
chr1 cfmg exon 117606054 117606153 . + . gene_id "cfmg_chr1_plus.19"; transcript_id "cfmg_chr1_plus.19.25";
chr1 cfmg exon 117622842 117628372 . + . gene_id "cfmg_chr1_plus.19"; transcript_id "cfmg_chr1_plus.19.25";
chr1 cfmg exon 120436353 120436697 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.26";
chr1 cfmg exon 120438544 120438646 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.26";
chr1 cfmg exon 120439476 120439690 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.26";
chr1 cfmg exon 120440742 120440814 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.26";
chr1 cfmg exon 120441278 120441489 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.26";
chr1 cfmg exon 120442841 120443050 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.26";
chr1 cfmg exon 120444897 120444999 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.26";
chr1 cfmg exon 120445829 120446043 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.26";
chr1 cfmg exon 120447094 120447166 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.26";
chr1 cfmg exon 120447630 120447841 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.26";
chr1 cfmg exon 120449193 120449402 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.26";
chr1 cfmg exon 120451180 120451282 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.26";
chr1 cfmg exon 120452117 120452331 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.26";
chr1 cfmg exon 120453372 120453444 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.26";
chr1 cfmg exon 120453909 120454114 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.26";
chr1 cfmg exon 120455409 120455460 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.26";
chr1 cfmg exon 120459367 120459530 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.26";
chr1 cfmg exon 120460573 120460624 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.26";
chr1 cfmg exon 120461254 120461426 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.26";
chr1 cfmg exon 120462146 120462197 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.26";
chr1 cfmg exon 120462794 120462966 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.26";
chr1 cfmg exon 120463676 120463727 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.26";
chr1 cfmg exon 120464376 120464548 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.26";
chr1 cfmg exon 120465263 120465371 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.26";
chr1 cfmg exon 120465978 120467770 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.26";
chr1 cfmg exon 120436354 120436697 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.28";
chr1 cfmg exon 120438544 120438646 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.28";
chr1 cfmg exon 120439476 120439690 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.28";
chr1 cfmg exon 120440742 120440824 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.28";
chr1 cfmg exon 120441288 120441489 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.28";
chr1 cfmg exon 120442841 120443050 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.28";
chr1 cfmg exon 120444897 120444999 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.28";
chr1 cfmg exon 120445829 120446043 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.28";
chr1 cfmg exon 120447094 120447166 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.28";
chr1 cfmg exon 120447630 120447841 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.28";
chr1 cfmg exon 120449193 120449402 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.28";
chr1 cfmg exon 120451180 120451282 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.28";
chr1 cfmg exon 120452117 120452331 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.28";
chr1 cfmg exon 120453372 120453444 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.28";
chr1 cfmg exon 120453909 120454114 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.28";
chr1 cfmg exon 120455409 120455460 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.28";
chr1 cfmg exon 120459367 120459530 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.28";
chr1 cfmg exon 120460573 120460624 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.28";
chr1 cfmg exon 120461254 120461426 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.28";
chr1 cfmg exon 120462146 120462197 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.28";
chr1 cfmg exon 120462794 120462966 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.28";
chr1 cfmg exon 120463676 120463727 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.28";
chr1 cfmg exon 120464376 120464548 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.28";
chr1 cfmg exon 120465263 120465371 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.28";
chr1 cfmg exon 120465978 120467770 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.28";
chr1 cfmg exon 120436354 120436697 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.27";
chr1 cfmg exon 120438544 120438646 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.27";
chr1 cfmg exon 120439476 120439690 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.27";
chr1 cfmg exon 120440742 120440820 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.27";
chr1 cfmg exon 120441284 120441489 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.27";
chr1 cfmg exon 120442841 120443050 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.27";
chr1 cfmg exon 120444897 120444999 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.27";
chr1 cfmg exon 120445829 120446043 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.27";
chr1 cfmg exon 120447094 120447166 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.27";
chr1 cfmg exon 120447630 120447841 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.27";
chr1 cfmg exon 120449193 120449402 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.27";
chr1 cfmg exon 120451180 120451282 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.27";
chr1 cfmg exon 120452117 120452331 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.27";
chr1 cfmg exon 120453372 120453444 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.27";
chr1 cfmg exon 120453909 120454114 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.27";
chr1 cfmg exon 120455409 120455460 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.27";
chr1 cfmg exon 120459367 120459530 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.27";
chr1 cfmg exon 120460573 120460624 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.27";
chr1 cfmg exon 120461254 120461426 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.27";
chr1 cfmg exon 120462146 120462197 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.27";
chr1 cfmg exon 120462794 120462966 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.27";
chr1 cfmg exon 120463676 120463727 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.27";
chr1 cfmg exon 120464376 120464548 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.27";
chr1 cfmg exon 120465263 120465371 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.27";
chr1 cfmg exon 120465978 120467770 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.27";
chr1 cfmg exon 120447168 120447172 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.29";
chr1 cfmg exon 120447636 120447841 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.29";
chr1 cfmg exon 120449193 120449402 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.29";
chr1 cfmg exon 120451180 120451282 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.29";
chr1 cfmg exon 120452117 120452331 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.29";
chr1 cfmg exon 120453372 120453444 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.29";
chr1 cfmg exon 120453909 120454114 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.29";
chr1 cfmg exon 120455409 120455460 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.29";
chr1 cfmg exon 120459367 120459530 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.29";
chr1 cfmg exon 120460573 120460624 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.29";
chr1 cfmg exon 120461254 120461426 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.29";
chr1 cfmg exon 120462146 120462197 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.29";
chr1 cfmg exon 120462794 120462966 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.29";
chr1 cfmg exon 120463676 120463727 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.29";
chr1 cfmg exon 120464376 120464548 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.29";
chr1 cfmg exon 120465263 120465371 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.29";
chr1 cfmg exon 120465978 120467770 . + . gene_id "cfmg_chr1_plus.20"; transcript_id "cfmg_chr1_plus.20.29";
chr1 cfmg exon 120723923 120724250 . + . gene_id "cfmg_chr1_plus.21"; transcript_id "cfmg_chr1_plus.21.30";
chr1 cfmg exon 120763628 120763709 . + . gene_id "cfmg_chr1_plus.21"; transcript_id "cfmg_chr1_plus.21.30";
chr1 cfmg exon 120784974 120785233 . + . gene_id "cfmg_chr1_plus.21"; transcript_id "cfmg_chr1_plus.21.30";
chr1 cfmg exon 120793161 120793496 . + . gene_id "cfmg_chr1_plus.21"; transcript_id "cfmg_chr1_plus.21.30";
chr1 cfmg exon 120793747 120793901 . + . gene_id "cfmg_chr1_plus.21"; transcript_id "cfmg_chr1_plus.21.30";
chr1 cfmg exon 143975088 143975153 . + . gene_id "cfmg_chr1_plus.22"; transcript_id "cfmg_chr1_plus.22.31";
chr1 cfmg exon 144045747 144045809 . + . gene_id "cfmg_chr1_plus.22"; transcript_id "cfmg_chr1_plus.22.31";
chr1 cfmg exon 144054438 144054653 . + . gene_id "cfmg_chr1_plus.22"; transcript_id "cfmg_chr1_plus.22.31";
chr1 cfmg exon 144055293 144055421 . + . gene_id "cfmg_chr1_plus.22"; transcript_id "cfmg_chr1_plus.22.31";
chr1 cfmg exon 144063173 144063394 . + . gene_id "cfmg_chr1_plus.22"; transcript_id "cfmg_chr1_plus.22.31";
chr1 cfmg exon 144067001 144067102 . + . gene_id "cfmg_chr1_plus.22"; transcript_id "cfmg_chr1_plus.22.31";
chr1 cfmg exon 144068129 144068348 . + . gene_id "cfmg_chr1_plus.22"; transcript_id "cfmg_chr1_plus.22.31";
chr1 cfmg exon 143975090 143975153 . + . gene_id "cfmg_chr1_plus.22"; transcript_id "cfmg_chr1_plus.22.32";
chr1 cfmg exon 144045747 144045809 . + . gene_id "cfmg_chr1_plus.22"; transcript_id "cfmg_chr1_plus.22.32";
chr1 cfmg exon 144054438 144054653 . + . gene_id "cfmg_chr1_plus.22"; transcript_id "cfmg_chr1_plus.22.32";
chr1 cfmg exon 144055293 144055421 . + . gene_id "cfmg_chr1_plus.22"; transcript_id "cfmg_chr1_plus.22.32";
chr1 cfmg exon 144063173 144063394 . + . gene_id "cfmg_chr1_plus.22"; transcript_id "cfmg_chr1_plus.22.32";
chr1 cfmg exon 144067001 144067103 . + . gene_id "cfmg_chr1_plus.22"; transcript_id "cfmg_chr1_plus.22.32";
chr1 cfmg exon 144068130 144068348 . + . gene_id "cfmg_chr1_plus.22"; transcript_id "cfmg_chr1_plus.22.32";
chr1 cfmg exon 144085658 144085676 . + . gene_id "cfmg_chr1_plus.23"; transcript_id "cfmg_chr1_plus.23.33";
chr1 cfmg exon 144085801 144086095 . + . gene_id "cfmg_chr1_plus.23"; transcript_id "cfmg_chr1_plus.23.33";
chr1 cfmg exon 145096000 145096999 . + . gene_id "cfmg_chr1_plus.24"; transcript_id "cfmg_chr1_plus.24.34";
chr1 cfmg exon 145098988 145099065 . + . gene_id "cfmg_chr1_plus.24"; transcript_id "cfmg_chr1_plus.24.34";
chr1 cfmg exon 145103007 145103131 . + . gene_id "cfmg_chr1_plus.24"; transcript_id "cfmg_chr1_plus.24.34";
chr1 cfmg exon 145111503 145112703 . + . gene_id "cfmg_chr1_plus.24"; transcript_id "cfmg_chr1_plus.24.34";
chr1 cfmg exon 145507472 145507599 . + . gene_id "cfmg_chr1_plus.25"; transcript_id "cfmg_chr1_plus.25.35";
chr1 cfmg exon 145508494 145508632 . + . gene_id "cfmg_chr1_plus.25"; transcript_id "cfmg_chr1_plus.25.35";
chr1 cfmg exon 146459504 146459685 . + . gene_id "cfmg_chr1_plus.26"; transcript_id "cfmg_chr1_plus.26.36";
chr1 cfmg exon 146461646 146461679 . + . gene_id "cfmg_chr1_plus.26"; transcript_id "cfmg_chr1_plus.26.36";
chr1 cfmg exon 149048578 149048990 . + . gene_id "cfmg_chr1_plus.27"; transcript_id "cfmg_chr1_plus.27.37";
chr1 cfmg exon 149050820 149051273 . + . gene_id "cfmg_chr1_plus.27"; transcript_id "cfmg_chr1_plus.27.37";
chr1 cfmg exon 149345661 149345770 . + . gene_id "cfmg_chr1_plus.28"; transcript_id "cfmg_chr1_plus.28.38";
chr1 cfmg exon 149351251 149351411 . + . gene_id "cfmg_chr1_plus.28"; transcript_id "cfmg_chr1_plus.28.38";
chr1 cfmg exon 149354096 149354242 . + . gene_id "cfmg_chr1_plus.28"; transcript_id "cfmg_chr1_plus.28.38";
chr1 cfmg exon 149357458 149357652 . + . gene_id "cfmg_chr1_plus.28"; transcript_id "cfmg_chr1_plus.28.38";
chr1 cfmg exon 150515760 150516062 . + . gene_id "cfmg_chr1_plus.29"; transcript_id "cfmg_chr1_plus.29.39";
chr1 cfmg exon 150517773 150518025 . + . gene_id "cfmg_chr1_plus.29"; transcript_id "cfmg_chr1_plus.29.39";
chr1 cfmg exon 152908545 152908589 . + . gene_id "cfmg_chr1_plus.30"; transcript_id "cfmg_chr1_plus.30.40";
chr1 cfmg exon 152909779 152911886 . + . gene_id "cfmg_chr1_plus.30"; transcript_id "cfmg_chr1_plus.30.40";
chr1 cfmg exon 153031212 153031247 . + . gene_id "cfmg_chr1_plus.31"; transcript_id "cfmg_chr1_plus.31.41";
chr1 cfmg exon 153032327 153032901 . + . gene_id "cfmg_chr1_plus.31"; transcript_id "cfmg_chr1_plus.31.41";
chr1 cfmg exon 153031216 153031248 . + . gene_id "cfmg_chr1_plus.31"; transcript_id "cfmg_chr1_plus.31.42";
chr1 cfmg exon 153032328 153032901 . + . gene_id "cfmg_chr1_plus.31"; transcript_id "cfmg_chr1_plus.31.42";
chr1 cfmg exon 153217590 153217619 . + . gene_id "cfmg_chr1_plus.32"; transcript_id "cfmg_chr1_plus.32.43";
chr1 cfmg exon 153218125 153219308 . + . gene_id "cfmg_chr1_plus.32"; transcript_id "cfmg_chr1_plus.32.43";
chr1 cfmg exon 153217610 153217624 . + . gene_id "cfmg_chr1_plus.32"; transcript_id "cfmg_chr1_plus.32.44";
chr1 cfmg exon 153218130 153219308 . + . gene_id "cfmg_chr1_plus.32"; transcript_id "cfmg_chr1_plus.32.44";
chr1 cfmg exon 153357865 153357881 . + . gene_id "cfmg_chr1_plus.33"; transcript_id "cfmg_chr1_plus.33.45";
chr1 cfmg exon 153358269 153358433 . + . gene_id "cfmg_chr1_plus.33"; transcript_id "cfmg_chr1_plus.33.45";
chr1 cfmg exon 153360644 153361023 . + . gene_id "cfmg_chr1_plus.33"; transcript_id "cfmg_chr1_plus.33.45";
chr1 cfmg exon 154312512 154312566 . + . gene_id "cfmg_chr1_plus.34"; transcript_id "cfmg_chr1_plus.34.46";
chr1 cfmg exon 154312956 154313082 . + . gene_id "cfmg_chr1_plus.34"; transcript_id "cfmg_chr1_plus.34.46";
chr1 cfmg exon 155859509 155859795 . + . gene_id "cfmg_chr1_plus.35"; transcript_id "cfmg_chr1_plus.35.47";
chr1 cfmg exon 155867965 155868791 . + . gene_id "cfmg_chr1_plus.35"; transcript_id "cfmg_chr1_plus.35.47";
chr1 cfmg exon 155880500 155880623 . + . gene_id "cfmg_chr1_plus.35"; transcript_id "cfmg_chr1_plus.35.47";
chr1 cfmg exon 155881198 155885199 . + . gene_id "cfmg_chr1_plus.35"; transcript_id "cfmg_chr1_plus.35.47";
chr1 cfmg exon 160367067 160367337 . + . gene_id "cfmg_chr1_plus.36"; transcript_id "cfmg_chr1_plus.36.48";
chr1 cfmg exon 160370557 160372848 . + . gene_id "cfmg_chr1_plus.36"; transcript_id "cfmg_chr1_plus.36.48";
chr1 cfmg exon 161258732 161258983 . + . gene_id "cfmg_chr1_plus.37"; transcript_id "cfmg_chr1_plus.37.49";
chr1 cfmg exon 161283668 161283722 . + . gene_id "cfmg_chr1_plus.37"; transcript_id "cfmg_chr1_plus.37.49";
chr1 cfmg exon 161284339 161285450 . + . gene_id "cfmg_chr1_plus.37"; transcript_id "cfmg_chr1_plus.37.49";
chr1 cfmg exon 162445625 162445881 . + . gene_id "cfmg_chr1_plus.38"; transcript_id "cfmg_chr1_plus.38.50";
chr1 cfmg exon 162446298 162446548 . + . gene_id "cfmg_chr1_plus.38"; transcript_id "cfmg_chr1_plus.38.50";
chr1 cfmg exon 174022582 174022640 . + . gene_id "cfmg_chr1_plus.39"; transcript_id "cfmg_chr1_plus.39.51";
chr1 cfmg exon 174022783 174022984 . + . gene_id "cfmg_chr1_plus.39"; transcript_id "cfmg_chr1_plus.39.51";
chr1 cfmg exon 180558977 180559055 . + . gene_id "cfmg_chr1_plus.40"; transcript_id "cfmg_chr1_plus.40.52";
chr1 cfmg exon 180562204 180562344 . + . gene_id "cfmg_chr1_plus.40"; transcript_id "cfmg_chr1_plus.40.52";
chr1 cfmg exon 180565251 180566448 . + . gene_id "cfmg_chr1_plus.40"; transcript_id "cfmg_chr1_plus.40.52";
chr1 cfmg exon 180559029 180559055 . + . gene_id "cfmg_chr1_plus.40"; transcript_id "cfmg_chr1_plus.40.53";
chr1 cfmg exon 180562204 180562346 . + . gene_id "cfmg_chr1_plus.40"; transcript_id "cfmg_chr1_plus.40.53";
chr1 cfmg exon 180565253 180566448 . + . gene_id "cfmg_chr1_plus.40"; transcript_id "cfmg_chr1_plus.40.53";
chr1 cfmg exon 185001533 185001627 . + . gene_id "cfmg_chr1_plus.41"; transcript_id "cfmg_chr1_plus.41.54";
chr1 cfmg exon 185007694 185008674 . + . gene_id "cfmg_chr1_plus.41"; transcript_id "cfmg_chr1_plus.41.54";
chr1 cfmg exon 213492422 213492575 . + . gene_id "cfmg_chr1_plus.42"; transcript_id "cfmg_chr1_plus.42.55";
chr1 cfmg exon 213546283 213546463 . + . gene_id "cfmg_chr1_plus.42"; transcript_id "cfmg_chr1_plus.42.55";
chr1 cfmg exon 213731433 213731558 . + . gene_id "cfmg_chr1_plus.43"; transcript_id "cfmg_chr1_plus.43.56";
chr1 cfmg exon 213794384 213794465 . + . gene_id "cfmg_chr1_plus.43"; transcript_id "cfmg_chr1_plus.43.56";
chr1 cfmg exon 223144060 223144243 . + . gene_id "cfmg_chr1_plus.44"; transcript_id "cfmg_chr1_plus.44.57";
chr1 cfmg exon 223144537 223144953 . + . gene_id "cfmg_chr1_plus.44"; transcript_id "cfmg_chr1_plus.44.57";
chr1 cfmg exon 228149946 228150007 . + . gene_id "cfmg_chr1_plus.45"; transcript_id "cfmg_chr1_plus.45.58";
chr1 cfmg exon 228157740 228159826 . + . gene_id "cfmg_chr1_plus.45"; transcript_id "cfmg_chr1_plus.45.58";
chr1 cfmg exon 230874847 230875155 . + . gene_id "cfmg_chr1_plus.46"; transcript_id "cfmg_chr1_plus.46.60";
chr1 cfmg exon 230875306 230875565 . + . gene_id "cfmg_chr1_plus.46"; transcript_id "cfmg_chr1_plus.46.60";
chr1 cfmg exon 230878792 230878991 . + . gene_id "cfmg_chr1_plus.46"; transcript_id "cfmg_chr1_plus.46.60";
chr1 cfmg exon 230874847 230875155 . + . gene_id "cfmg_chr1_plus.46"; transcript_id "cfmg_chr1_plus.46.59";
chr1 cfmg exon 230875306 230875566 . + . gene_id "cfmg_chr1_plus.46"; transcript_id "cfmg_chr1_plus.46.59";
chr1 cfmg exon 230878793 230878991 . + . gene_id "cfmg_chr1_plus.46"; transcript_id "cfmg_chr1_plus.46.59";
chr1 cfmg exon 234629311 234629747 . + . gene_id "cfmg_chr1_plus.47"; transcript_id "cfmg_chr1_plus.47.61";
chr1 cfmg exon 234632948 234634780 . + . gene_id "cfmg_chr1_plus.47"; transcript_id "cfmg_chr1_plus.47.61";
chr1 cfmg exon 246690048 246690214 . + . gene_id "cfmg_chr1_plus.48"; transcript_id "cfmg_chr1_plus.48.62";
chr1 cfmg exon 246691468 246691829 . + . gene_id "cfmg_chr1_plus.48"; transcript_id "cfmg_chr1_plus.48.62";
chr1 cfmg exon 247857199 247857666 . + . gene_id "cfmg_chr1_plus.49"; transcript_id "cfmg_chr1_plus.49.63";
chr1 cfmg exon 247860617 247860712 . + . gene_id "cfmg_chr1_plus.49"; transcript_id "cfmg_chr1_plus.49.63";
chr1 cfmg exon 247864705 247864935 . + . gene_id "cfmg_chr1_plus.49"; transcript_id "cfmg_chr1_plus.49.63";
chr1 cfmg exon 247867845 247867867 . + . gene_id "cfmg_chr1_plus.49"; transcript_id "cfmg_chr1_plus.49.63";
chr1 cfmg exon 247867963 247868063 . + . gene_id "cfmg_chr1_plus.49"; transcript_id "cfmg_chr1_plus.49.63";
chr1 cfmg exon 247875900 247878211 . + . gene_id "cfmg_chr1_plus.49"; transcript_id "cfmg_chr1_plus.49.63";
chr2 cfmg exon 10878302 10878444 . + . gene_id "cfmg_chr2_plus.1"; transcript_id "cfmg_chr2_plus.1.1";
chr2 cfmg exon 10884834 10885118 . + . gene_id "cfmg_chr2_plus.1"; transcript_id "cfmg_chr2_plus.1.1";
chr2 cfmg exon 10878448 10878448 . + . gene_id "cfmg_chr2_plus.1"; transcript_id "cfmg_chr2_plus.1.2";
chr2 cfmg exon 10884838 10885118 . + . gene_id "cfmg_chr2_plus.1"; transcript_id "cfmg_chr2_plus.1.2";
chr2 cfmg exon 20052134 20052494 . + . gene_id "cfmg_chr2_plus.2"; transcript_id "cfmg_chr2_plus.2.4";
chr2 cfmg exon 20054285 20054337 . + . gene_id "cfmg_chr2_plus.2"; transcript_id "cfmg_chr2_plus.2.4";
chr2 cfmg exon 20052134 20052496 . + . gene_id "cfmg_chr2_plus.2"; transcript_id "cfmg_chr2_plus.2.3";
chr2 cfmg exon 20054287 20054337 . + . gene_id "cfmg_chr2_plus.2"; transcript_id "cfmg_chr2_plus.2.3";
chr2 cfmg exon 20451044 20451140 . + . gene_id "cfmg_chr2_plus.3"; transcript_id "cfmg_chr2_plus.3.5";
chr2 cfmg exon 20452739 20452946 . + . gene_id "cfmg_chr2_plus.3"; transcript_id "cfmg_chr2_plus.3.5";
chr2 cfmg exon 37325351 37325522 . + . gene_id "cfmg_chr2_plus.4"; transcript_id "cfmg_chr2_plus.4.6";
chr2 cfmg exon 37326477 37326781 . + . gene_id "cfmg_chr2_plus.4"; transcript_id "cfmg_chr2_plus.4.6";
chr2 cfmg exon 43838964 43839116 . + . gene_id "cfmg_chr2_plus.5"; transcript_id "cfmg_chr2_plus.5.7";
chr2 cfmg exon 43844507 43844608 . + . gene_id "cfmg_chr2_plus.5"; transcript_id "cfmg_chr2_plus.5.7";
chr2 cfmg exon 43846155 43846311 . + . gene_id "cfmg_chr2_plus.5"; transcript_id "cfmg_chr2_plus.5.7";
chr2 cfmg exon 43851584 43851822 . + . gene_id "cfmg_chr2_plus.5"; transcript_id "cfmg_chr2_plus.5.7";
chr2 cfmg exon 43852354 43852486 . + . gene_id "cfmg_chr2_plus.5"; transcript_id "cfmg_chr2_plus.5.7";
chr2 cfmg exon 43852599 43852868 . + . gene_id "cfmg_chr2_plus.5"; transcript_id "cfmg_chr2_plus.5.7";
chr2 cfmg exon 43871976 43872138 . + . gene_id "cfmg_chr2_plus.5"; transcript_id "cfmg_chr2_plus.5.7";
chr2 cfmg exon 43872223 43872306 . + . gene_id "cfmg_chr2_plus.5"; transcript_id "cfmg_chr2_plus.5.7";
chr2 cfmg exon 43873787 43873986 . + . gene_id "cfmg_chr2_plus.5"; transcript_id "cfmg_chr2_plus.5.7";
chr2 cfmg exon 43874407 43874483 . + . gene_id "cfmg_chr2_plus.5"; transcript_id "cfmg_chr2_plus.5.7";
chr2 cfmg exon 43875146 43875413 . + . gene_id "cfmg_chr2_plus.5"; transcript_id "cfmg_chr2_plus.5.7";
chr2 cfmg exon 43877561 43877688 . + . gene_id "cfmg_chr2_plus.5"; transcript_id "cfmg_chr2_plus.5.7";
chr2 cfmg exon 43877776 43878463 . + . gene_id "cfmg_chr2_plus.5"; transcript_id "cfmg_chr2_plus.5.7";
chr2 cfmg exon 44941899 44942910 . + . gene_id "cfmg_chr2_plus.6"; transcript_id "cfmg_chr2_plus.6.8";
chr2 cfmg exon 44944568 44946076 . + . gene_id "cfmg_chr2_plus.6"; transcript_id "cfmg_chr2_plus.6.8";
chr2 cfmg exon 70887872 70888118 . + . gene_id "cfmg_chr2_plus.7"; transcript_id "cfmg_chr2_plus.7.9";
chr2 cfmg exon 70900590 70900869 . + . gene_id "cfmg_chr2_plus.8"; transcript_id "cfmg_chr2_plus.8.11";
chr2 cfmg exon 70921099 70921285 . + . gene_id "cfmg_chr2_plus.8"; transcript_id "cfmg_chr2_plus.8.11";
chr2 cfmg exon 70932767 70933446 . + . gene_id "cfmg_chr2_plus.8"; transcript_id "cfmg_chr2_plus.8.11";
chr2 cfmg exon 70900590 70900868 . + . gene_id "cfmg_chr2_plus.8"; transcript_id "cfmg_chr2_plus.8.10";
chr2 cfmg exon 70921098 70921285 . + . gene_id "cfmg_chr2_plus.8"; transcript_id "cfmg_chr2_plus.8.10";
chr2 cfmg exon 70932767 70933446 . + . gene_id "cfmg_chr2_plus.8"; transcript_id "cfmg_chr2_plus.8.10";
chr2 cfmg exon 73784290 73784406 . + . gene_id "cfmg_chr2_plus.9"; transcript_id "cfmg_chr2_plus.9.12";
chr2 cfmg exon 73813477 73814226 . + . gene_id "cfmg_chr2_plus.9"; transcript_id "cfmg_chr2_plus.9.12";
chr2 cfmg exon 73815071 73817086 . + . gene_id "cfmg_chr2_plus.9"; transcript_id "cfmg_chr2_plus.9.12";
chr2 cfmg exon 73985135 73985157 . + . gene_id "cfmg_chr2_plus.10"; transcript_id "cfmg_chr2_plus.10.13";
chr2 cfmg exon 73985980 73986343 . + . gene_id "cfmg_chr2_plus.10"; transcript_id "cfmg_chr2_plus.10.13";
chr2 cfmg exon 74940258 74940739 . + . gene_id "cfmg_chr2_plus.11"; transcript_id "cfmg_chr2_plus.11.14";
chr2 cfmg exon 74941887 74942670 . + . gene_id "cfmg_chr2_plus.11"; transcript_id "cfmg_chr2_plus.11.14";
chr2 cfmg exon 74940260 74940740 . + . gene_id "cfmg_chr2_plus.11"; transcript_id "cfmg_chr2_plus.11.15";
chr2 cfmg exon 74941888 74942670 . + . gene_id "cfmg_chr2_plus.11"; transcript_id "cfmg_chr2_plus.11.15";
chr2 cfmg exon 85889281 85889803 . + . gene_id "cfmg_chr2_plus.12"; transcript_id "cfmg_chr2_plus.12.16";
chr2 cfmg exon 85890722 85890965 . + . gene_id "cfmg_chr2_plus.12"; transcript_id "cfmg_chr2_plus.12.16";
chr2 cfmg exon 87700984 87701053 . + . gene_id "cfmg_chr2_plus.13"; transcript_id "cfmg_chr2_plus.13.18";
chr2 cfmg exon 87704333 87704608 . + . gene_id "cfmg_chr2_plus.13"; transcript_id "cfmg_chr2_plus.13.18";
chr2 cfmg exon 87705888 87705970 . + . gene_id "cfmg_chr2_plus.13"; transcript_id "cfmg_chr2_plus.13.18";
chr2 cfmg exon 87707762 87707911 . + . gene_id "cfmg_chr2_plus.13"; transcript_id "cfmg_chr2_plus.13.18";
chr2 cfmg exon 87713360 87713437 . + . gene_id "cfmg_chr2_plus.13"; transcript_id "cfmg_chr2_plus.13.18";
chr2 cfmg exon 87714048 87714084 . + . gene_id "cfmg_chr2_plus.13"; transcript_id "cfmg_chr2_plus.13.18";
chr2 cfmg exon 87714179 87714249 . + . gene_id "cfmg_chr2_plus.13"; transcript_id "cfmg_chr2_plus.13.18";
chr2 cfmg exon 87716612 87716790 . + . gene_id "cfmg_chr2_plus.13"; transcript_id "cfmg_chr2_plus.13.18";
chr2 cfmg exon 87719807 87720021 . + . gene_id "cfmg_chr2_plus.13"; transcript_id "cfmg_chr2_plus.13.18";
chr2 cfmg exon 87722301 87722419 . + . gene_id "cfmg_chr2_plus.13"; transcript_id "cfmg_chr2_plus.13.18";
chr2 cfmg exon 87725937 87726208 . + . gene_id "cfmg_chr2_plus.13"; transcript_id "cfmg_chr2_plus.13.18";
chr2 cfmg exon 87732387 87732621 . + . gene_id "cfmg_chr2_plus.13"; transcript_id "cfmg_chr2_plus.13.18";
chr2 cfmg exon 87735674 87735765 . + . gene_id "cfmg_chr2_plus.13"; transcript_id "cfmg_chr2_plus.13.18";
chr2 cfmg exon 87737718 87737852 . + . gene_id "cfmg_chr2_plus.13"; transcript_id "cfmg_chr2_plus.13.18";
chr2 cfmg exon 87738023 87738143 . + . gene_id "cfmg_chr2_plus.13"; transcript_id "cfmg_chr2_plus.13.18";
chr2 cfmg exon 87700984 87701053 . + . gene_id "cfmg_chr2_plus.13"; transcript_id "cfmg_chr2_plus.13.17";
chr2 cfmg exon 87704333 87704600 . + . gene_id "cfmg_chr2_plus.13"; transcript_id "cfmg_chr2_plus.13.17";
chr2 cfmg exon 87705880 87705970 . + . gene_id "cfmg_chr2_plus.13"; transcript_id "cfmg_chr2_plus.13.17";
chr2 cfmg exon 87707762 87707910 . + . gene_id "cfmg_chr2_plus.13"; transcript_id "cfmg_chr2_plus.13.17";
chr2 cfmg exon 87713359 87713437 . + . gene_id "cfmg_chr2_plus.13"; transcript_id "cfmg_chr2_plus.13.17";
chr2 cfmg exon 87714048 87714084 . + . gene_id "cfmg_chr2_plus.13"; transcript_id "cfmg_chr2_plus.13.17";
chr2 cfmg exon 87714179 87714249 . + . gene_id "cfmg_chr2_plus.13"; transcript_id "cfmg_chr2_plus.13.17";
chr2 cfmg exon 87716612 87716790 . + . gene_id "cfmg_chr2_plus.13"; transcript_id "cfmg_chr2_plus.13.17";
chr2 cfmg exon 87719807 87720021 . + . gene_id "cfmg_chr2_plus.13"; transcript_id "cfmg_chr2_plus.13.17";
chr2 cfmg exon 87722301 87722419 . + . gene_id "cfmg_chr2_plus.13"; transcript_id "cfmg_chr2_plus.13.17";
chr2 cfmg exon 87725937 87726208 . + . gene_id "cfmg_chr2_plus.13"; transcript_id "cfmg_chr2_plus.13.17";
chr2 cfmg exon 87732387 87732621 . + . gene_id "cfmg_chr2_plus.13"; transcript_id "cfmg_chr2_plus.13.17";
chr2 cfmg exon 87735674 87735765 . + . gene_id "cfmg_chr2_plus.13"; transcript_id "cfmg_chr2_plus.13.17";
chr2 cfmg exon 87737718 87737852 . + . gene_id "cfmg_chr2_plus.13"; transcript_id "cfmg_chr2_plus.13.17";
chr2 cfmg exon 87738023 87738143 . + . gene_id "cfmg_chr2_plus.13"; transcript_id "cfmg_chr2_plus.13.17";
chr2 cfmg exon 88691646 88691983 . + . gene_id "cfmg_chr2_plus.14"; transcript_id "cfmg_chr2_plus.14.19";
chr2 cfmg exon 88698484 88698544 . + . gene_id "cfmg_chr2_plus.14"; transcript_id "cfmg_chr2_plus.14.19";
chr2 cfmg exon 88700009 88700064 . + . gene_id "cfmg_chr2_plus.14"; transcript_id "cfmg_chr2_plus.14.19";
chr2 cfmg exon 88729278 88729337 . + . gene_id "cfmg_chr2_plus.14"; transcript_id "cfmg_chr2_plus.14.19";
chr2 cfmg exon 88734552 88734616 . + . gene_id "cfmg_chr2_plus.14"; transcript_id "cfmg_chr2_plus.14.19";
chr2 cfmg exon 88735669 88735737 . + . gene_id "cfmg_chr2_plus.14"; transcript_id "cfmg_chr2_plus.14.19";
chr2 cfmg exon 88736535 88736676 . + . gene_id "cfmg_chr2_plus.14"; transcript_id "cfmg_chr2_plus.14.19";
chr2 cfmg exon 88737977 88738076 . + . gene_id "cfmg_chr2_plus.14"; transcript_id "cfmg_chr2_plus.14.19";
chr2 cfmg exon 88749981 88750964 . + . gene_id "cfmg_chr2_plus.14"; transcript_id "cfmg_chr2_plus.14.19";
chr2 cfmg exon 91776048 91776107 . + . gene_id "cfmg_chr2_plus.15"; transcript_id "cfmg_chr2_plus.15.21";
chr2 cfmg exon 91780410 91780602 . + . gene_id "cfmg_chr2_plus.15"; transcript_id "cfmg_chr2_plus.15.21";
chr2 cfmg exon 91780995 91781162 . + . gene_id "cfmg_chr2_plus.15"; transcript_id "cfmg_chr2_plus.15.21";
chr2 cfmg exon 91776048 91776107 . + . gene_id "cfmg_chr2_plus.15"; transcript_id "cfmg_chr2_plus.15.20";
chr2 cfmg exon 91780410 91780603 . + . gene_id "cfmg_chr2_plus.15"; transcript_id "cfmg_chr2_plus.15.20";
chr2 cfmg exon 91780996 91781162 . + . gene_id "cfmg_chr2_plus.15"; transcript_id "cfmg_chr2_plus.15.20";
chr2 cfmg exon 95592145 95592149 . + . gene_id "cfmg_chr2_plus.16"; transcript_id "cfmg_chr2_plus.16.22";
chr2 cfmg exon 95594020 95594434 . + . gene_id "cfmg_chr2_plus.16"; transcript_id "cfmg_chr2_plus.16.22";
chr2 cfmg exon 95595050 95595145 . + . gene_id "cfmg_chr2_plus.16"; transcript_id "cfmg_chr2_plus.16.22";
chr2 cfmg exon 95596202 95596432 . + . gene_id "cfmg_chr2_plus.16"; transcript_id "cfmg_chr2_plus.16.22";
chr2 cfmg exon 95597329 95597351 . + . gene_id "cfmg_chr2_plus.16"; transcript_id "cfmg_chr2_plus.16.22";
chr2 cfmg exon 95597880 95597977 . + . gene_id "cfmg_chr2_plus.16"; transcript_id "cfmg_chr2_plus.16.22";
chr2 cfmg exon 95599092 95599771 . + . gene_id "cfmg_chr2_plus.16"; transcript_id "cfmg_chr2_plus.16.22";
chr2 cfmg exon 95666092 95666403 . + . gene_id "cfmg_chr2_plus.17"; transcript_id "cfmg_chr2_plus.17.23";
chr2 cfmg exon 95667917 95668718 . + . gene_id "cfmg_chr2_plus.17"; transcript_id "cfmg_chr2_plus.17.23";
chr2 cfmg exon 95666094 95666405 . + . gene_id "cfmg_chr2_plus.17"; transcript_id "cfmg_chr2_plus.17.24";
chr2 cfmg exon 95667919 95668718 . + . gene_id "cfmg_chr2_plus.17"; transcript_id "cfmg_chr2_plus.17.24";
chr2 cfmg exon 95666115 95666414 . + . gene_id "cfmg_chr2_plus.17"; transcript_id "cfmg_chr2_plus.17.25";
chr2 cfmg exon 95667928 95668718 . + . gene_id "cfmg_chr2_plus.17"; transcript_id "cfmg_chr2_plus.17.25";
chr2 cfmg exon 103019556 103019830 . + . gene_id "cfmg_chr2_plus.18"; transcript_id "cfmg_chr2_plus.18.26";
chr2 cfmg exon 106369724 106369869 . + . gene_id "cfmg_chr2_plus.19"; transcript_id "cfmg_chr2_plus.19.28";
chr2 cfmg exon 106370939 106371159 . + . gene_id "cfmg_chr2_plus.19"; transcript_id "cfmg_chr2_plus.19.28";
chr2 cfmg exon 106372234 106372443 . + . gene_id "cfmg_chr2_plus.19"; transcript_id "cfmg_chr2_plus.19.28";
chr2 cfmg exon 106376451 106376545 . + . gene_id "cfmg_chr2_plus.19"; transcript_id "cfmg_chr2_plus.19.28";
chr2 cfmg exon 106377965 106378055 . + . gene_id "cfmg_chr2_plus.19"; transcript_id "cfmg_chr2_plus.19.28";
chr2 cfmg exon 106378180 106378237 . + . gene_id "cfmg_chr2_plus.19"; transcript_id "cfmg_chr2_plus.19.28";
chr2 cfmg exon 106369724 106369869 . + . gene_id "cfmg_chr2_plus.19"; transcript_id "cfmg_chr2_plus.19.27";
chr2 cfmg exon 106370939 106371159 . + . gene_id "cfmg_chr2_plus.19"; transcript_id "cfmg_chr2_plus.19.27";
chr2 cfmg exon 106372234 106372443 . + . gene_id "cfmg_chr2_plus.19"; transcript_id "cfmg_chr2_plus.19.27";
chr2 cfmg exon 106376451 106376545 . + . gene_id "cfmg_chr2_plus.19"; transcript_id "cfmg_chr2_plus.19.27";
chr2 cfmg exon 106377965 106378067 . + . gene_id "cfmg_chr2_plus.19"; transcript_id "cfmg_chr2_plus.19.27";
chr2 cfmg exon 106378192 106378237 . + . gene_id "cfmg_chr2_plus.19"; transcript_id "cfmg_chr2_plus.19.27";
chr2 cfmg exon 107904018 107904054 . + . gene_id "cfmg_chr2_plus.20"; transcript_id "cfmg_chr2_plus.20.29";
chr2 cfmg exon 107904176 107904240 . + . gene_id "cfmg_chr2_plus.20"; transcript_id "cfmg_chr2_plus.20.29";
chr2 cfmg exon 113406428 113406450 . + . gene_id "cfmg_chr2_plus.21"; transcript_id "cfmg_chr2_plus.21.30";
chr2 cfmg exon 113406575 113406869 . + . gene_id "cfmg_chr2_plus.21"; transcript_id "cfmg_chr2_plus.21.30";
chr2 cfmg exon 113424495 113424575 . + . gene_id "cfmg_chr2_plus.22"; transcript_id "cfmg_chr2_plus.22.31";
chr2 cfmg exon 113424898 113425299 . + . gene_id "cfmg_chr2_plus.22"; transcript_id "cfmg_chr2_plus.22.31";
chr2 cfmg exon 120346143 120346636 . + . gene_id "cfmg_chr2_plus.23"; transcript_id "cfmg_chr2_plus.23.32";
chr2 cfmg exon 120349099 120351830 . + . gene_id "cfmg_chr2_plus.23"; transcript_id "cfmg_chr2_plus.23.32";
chr2 cfmg exon 136077952 136077994 . + . gene_id "cfmg_chr2_plus.24"; transcript_id "cfmg_chr2_plus.24.33";
chr2 cfmg exon 136078148 136078513 . + . gene_id "cfmg_chr2_plus.24"; transcript_id "cfmg_chr2_plus.24.33";
chr2 cfmg exon 139469779 139469984 . + . gene_id "cfmg_chr2_plus.25"; transcript_id "cfmg_chr2_plus.25.34";
chr2 cfmg exon 139477492 139477742 . + . gene_id "cfmg_chr2_plus.25"; transcript_id "cfmg_chr2_plus.25.34";
chr2 cfmg exon 170783864 170783866 . + . gene_id "cfmg_chr2_plus.26"; transcript_id "cfmg_chr2_plus.26.36";
chr2 cfmg exon 170784646 170784833 . + . gene_id "cfmg_chr2_plus.26"; transcript_id "cfmg_chr2_plus.26.36";
chr2 cfmg exon 170792863 170792920 . + . gene_id "cfmg_chr2_plus.26"; transcript_id "cfmg_chr2_plus.26.36";
chr2 cfmg exon 170798041 170798112 . + . gene_id "cfmg_chr2_plus.26"; transcript_id "cfmg_chr2_plus.26.36";
chr2 cfmg exon 170798770 170798971 . + . gene_id "cfmg_chr2_plus.26"; transcript_id "cfmg_chr2_plus.26.36";
chr2 cfmg exon 170783864 170783867 . + . gene_id "cfmg_chr2_plus.26"; transcript_id "cfmg_chr2_plus.26.35";
chr2 cfmg exon 170784647 170784833 . + . gene_id "cfmg_chr2_plus.26"; transcript_id "cfmg_chr2_plus.26.35";
chr2 cfmg exon 170792863 170792920 . + . gene_id "cfmg_chr2_plus.26"; transcript_id "cfmg_chr2_plus.26.35";
chr2 cfmg exon 170798041 170798112 . + . gene_id "cfmg_chr2_plus.26"; transcript_id "cfmg_chr2_plus.26.35";
chr2 cfmg exon 170798770 170798971 . + . gene_id "cfmg_chr2_plus.26"; transcript_id "cfmg_chr2_plus.26.35";
chr2 cfmg exon 170783869 170783872 . + . gene_id "cfmg_chr2_plus.26"; transcript_id "cfmg_chr2_plus.26.37";
chr2 cfmg exon 170784652 170784833 . + . gene_id "cfmg_chr2_plus.26"; transcript_id "cfmg_chr2_plus.26.37";
chr2 cfmg exon 170792863 170792920 . + . gene_id "cfmg_chr2_plus.26"; transcript_id "cfmg_chr2_plus.26.37";
chr2 cfmg exon 170798041 170798112 . + . gene_id "cfmg_chr2_plus.26"; transcript_id "cfmg_chr2_plus.26.37";
chr2 cfmg exon 170798770 170798971 . + . gene_id "cfmg_chr2_plus.26"; transcript_id "cfmg_chr2_plus.26.37";
chr2 cfmg exon 170783871 170783874 . + . gene_id "cfmg_chr2_plus.26"; transcript_id "cfmg_chr2_plus.26.38";
chr2 cfmg exon 170784654 170784833 . + . gene_id "cfmg_chr2_plus.26"; transcript_id "cfmg_chr2_plus.26.38";
chr2 cfmg exon 170792863 170792920 . + . gene_id "cfmg_chr2_plus.26"; transcript_id "cfmg_chr2_plus.26.38";
chr2 cfmg exon 170798041 170798112 . + . gene_id "cfmg_chr2_plus.26"; transcript_id "cfmg_chr2_plus.26.38";
chr2 cfmg exon 170798770 170798971 . + . gene_id "cfmg_chr2_plus.26"; transcript_id "cfmg_chr2_plus.26.38";
chr2 cfmg exon 170783872 170783875 . + . gene_id "cfmg_chr2_plus.26"; transcript_id "cfmg_chr2_plus.26.39";
chr2 cfmg exon 170784655 170784833 . + . gene_id "cfmg_chr2_plus.26"; transcript_id "cfmg_chr2_plus.26.39";
chr2 cfmg exon 170792863 170792920 . + . gene_id "cfmg_chr2_plus.26"; transcript_id "cfmg_chr2_plus.26.39";
chr2 cfmg exon 170798041 170798112 . + . gene_id "cfmg_chr2_plus.26"; transcript_id "cfmg_chr2_plus.26.39";
chr2 cfmg exon 170798770 170798971 . + . gene_id "cfmg_chr2_plus.26"; transcript_id "cfmg_chr2_plus.26.39";
chr2 cfmg exon 170783873 170783876 . + . gene_id "cfmg_chr2_plus.26"; transcript_id "cfmg_chr2_plus.26.40";
chr2 cfmg exon 170784656 170784833 . + . gene_id "cfmg_chr2_plus.26"; transcript_id "cfmg_chr2_plus.26.40";
chr2 cfmg exon 170792863 170792920 . + . gene_id "cfmg_chr2_plus.26"; transcript_id "cfmg_chr2_plus.26.40";
chr2 cfmg exon 170798041 170798112 . + . gene_id "cfmg_chr2_plus.26"; transcript_id "cfmg_chr2_plus.26.40";
chr2 cfmg exon 170798770 170798971 . + . gene_id "cfmg_chr2_plus.26"; transcript_id "cfmg_chr2_plus.26.40";
chr2 cfmg exon 237257095 237257193 . + . gene_id "cfmg_chr2_plus.27"; transcript_id "cfmg_chr2_plus.27.41";
chr2 cfmg exon 237257430 237257572 . + . gene_id "cfmg_chr2_plus.27"; transcript_id "cfmg_chr2_plus.27.41";
chr2 cfmg exon 241690414 241690653 . + . gene_id "cfmg_chr2_plus.28"; transcript_id "cfmg_chr2_plus.28.42";
chr2 cfmg exon 241694115 241694291 . + . gene_id "cfmg_chr2_plus.28"; transcript_id "cfmg_chr2_plus.28.42";
chr2 cfmg exon 241844380 241844478 . + . gene_id "cfmg_chr2_plus.29"; transcript_id "cfmg_chr2_plus.29.43";
chr2 cfmg exon 241844565 241845036 . + . gene_id "cfmg_chr2_plus.29"; transcript_id "cfmg_chr2_plus.29.43";
chr3 cfmg exon 10115609 10115819 . + . gene_id "cfmg_chr3_plus.1"; transcript_id "cfmg_chr3_plus.1.1";
chr3 cfmg exon 10125626 10125708 . + . gene_id "cfmg_chr3_plus.1"; transcript_id "cfmg_chr3_plus.1.1";
chr3 cfmg exon 10126269 10127201 . + . gene_id "cfmg_chr3_plus.1"; transcript_id "cfmg_chr3_plus.1.1";
chr3 cfmg exon 32818018 32818932 . + . gene_id "cfmg_chr3_plus.2"; transcript_id "cfmg_chr3_plus.2.2";
chr3 cfmg exon 32873818 32873985 . + . gene_id "cfmg_chr3_plus.2"; transcript_id "cfmg_chr3_plus.2.2";
chr3 cfmg exon 32885934 32886068 . + . gene_id "cfmg_chr3_plus.2"; transcript_id "cfmg_chr3_plus.2.2";
chr3 cfmg exon 32890360 32897849 . + . gene_id "cfmg_chr3_plus.2"; transcript_id "cfmg_chr3_plus.2.2";
chr3 cfmg exon 32951577 32951690 . + . gene_id "cfmg_chr3_plus.3"; transcript_id "cfmg_chr3_plus.3.3";
chr3 cfmg exon 32953372 32956337 . + . gene_id "cfmg_chr3_plus.3"; transcript_id "cfmg_chr3_plus.3.3";
chr3 cfmg exon 44428158 44428158 . + . gene_id "cfmg_chr3_plus.4"; transcript_id "cfmg_chr3_plus.4.4";
chr3 cfmg exon 44428555 44428624 . + . gene_id "cfmg_chr3_plus.4"; transcript_id "cfmg_chr3_plus.4.4";
chr3 cfmg exon 44428847 44428941 . + . gene_id "cfmg_chr3_plus.4"; transcript_id "cfmg_chr3_plus.4.4";
chr3 cfmg exon 44429066 44429525 . + . gene_id "cfmg_chr3_plus.4"; transcript_id "cfmg_chr3_plus.4.4";
chr3 cfmg exon 48223347 48223712 . + . gene_id "cfmg_chr3_plus.5"; transcript_id "cfmg_chr3_plus.5.5";
chr3 cfmg exon 48224354 48224461 . + . gene_id "cfmg_chr3_plus.5"; transcript_id "cfmg_chr3_plus.5.5";
chr3 cfmg exon 48224603 48224674 . + . gene_id "cfmg_chr3_plus.5"; transcript_id "cfmg_chr3_plus.5.5";
chr3 cfmg exon 48225293 48225489 . + . gene_id "cfmg_chr3_plus.5"; transcript_id "cfmg_chr3_plus.5.5";
chr3 cfmg exon 48663791 48663813 . + . gene_id "cfmg_chr3_plus.6"; transcript_id "cfmg_chr3_plus.6.6";
chr3 cfmg exon 48665641 48665722 . + . gene_id "cfmg_chr3_plus.6"; transcript_id "cfmg_chr3_plus.6.6";
chr3 cfmg exon 48669099 48669170 . + . gene_id "cfmg_chr3_plus.6"; transcript_id "cfmg_chr3_plus.6.6";
chr3 cfmg exon 49803254 49803443 . + . gene_id "cfmg_chr3_plus.7"; transcript_id "cfmg_chr3_plus.7.7";
chr3 cfmg exon 49804181 49805033 . + . gene_id "cfmg_chr3_plus.7"; transcript_id "cfmg_chr3_plus.7.7";
chr3 cfmg exon 73808604 73808668 . + . gene_id "cfmg_chr3_plus.8"; transcript_id "cfmg_chr3_plus.8.8";
chr3 cfmg exon 73869776 73869961 . + . gene_id "cfmg_chr3_plus.8"; transcript_id "cfmg_chr3_plus.8.8";
chr3 cfmg exon 73878806 73878997 . + . gene_id "cfmg_chr3_plus.8"; transcript_id "cfmg_chr3_plus.8.8";
chr3 cfmg exon 73902531 73902859 . + . gene_id "cfmg_chr3_plus.8"; transcript_id "cfmg_chr3_plus.8.8";
chr3 cfmg exon 80993874 80993927 . + . gene_id "cfmg_chr3_plus.9"; transcript_id "cfmg_chr3_plus.9.9";
chr3 cfmg exon 81095112 81095646 . + . gene_id "cfmg_chr3_plus.9"; transcript_id "cfmg_chr3_plus.9.9";
chr3 cfmg exon 108125841 108125908 . + . gene_id "cfmg_chr3_plus.10"; transcript_id "cfmg_chr3_plus.10.10";
chr3 cfmg exon 108135144 108135350 . + . gene_id "cfmg_chr3_plus.10"; transcript_id "cfmg_chr3_plus.10.10";
chr3 cfmg exon 108136314 108138639 . + . gene_id "cfmg_chr3_plus.10"; transcript_id "cfmg_chr3_plus.10.10";
chr3 cfmg exon 131517842 131517909 . + . gene_id "cfmg_chr3_plus.11"; transcript_id "cfmg_chr3_plus.11.11";
chr3 cfmg exon 131520385 131520859 . + . gene_id "cfmg_chr3_plus.11"; transcript_id "cfmg_chr3_plus.11.11";
chr3 cfmg exon 168903383 168903540 . + . gene_id "cfmg_chr3_plus.12"; transcript_id "cfmg_chr3_plus.12.12";
chr3 cfmg exon 168908287 168908413 . + . gene_id "cfmg_chr3_plus.12"; transcript_id "cfmg_chr3_plus.12.12";
chr3 cfmg exon 168910672 168910814 . + . gene_id "cfmg_chr3_plus.12"; transcript_id "cfmg_chr3_plus.12.12";
chr3 cfmg exon 168921732 168921979 . + . gene_id "cfmg_chr3_plus.12"; transcript_id "cfmg_chr3_plus.12.12";
chr3 cfmg exon 170410614 170410773 . + . gene_id "cfmg_chr3_plus.13"; transcript_id "cfmg_chr3_plus.13.13";
chr3 cfmg exon 170412797 170412932 . + . gene_id "cfmg_chr3_plus.13"; transcript_id "cfmg_chr3_plus.13.13";
chr3 cfmg exon 170413153 170413239 . + . gene_id "cfmg_chr3_plus.13"; transcript_id "cfmg_chr3_plus.13.13";
chr3 cfmg exon 170418437 170418569 . + . gene_id "cfmg_chr3_plus.13"; transcript_id "cfmg_chr3_plus.13.13";
chr3 cfmg exon 170410728 170410773 . + . gene_id "cfmg_chr3_plus.13"; transcript_id "cfmg_chr3_plus.13.14";
chr3 cfmg exon 170412797 170412933 . + . gene_id "cfmg_chr3_plus.13"; transcript_id "cfmg_chr3_plus.13.14";
chr3 cfmg exon 170413154 170413239 . + . gene_id "cfmg_chr3_plus.13"; transcript_id "cfmg_chr3_plus.13.14";
chr3 cfmg exon 170418437 170418569 . + . gene_id "cfmg_chr3_plus.13"; transcript_id "cfmg_chr3_plus.13.14";
chr3 cfmg exon 170410782 170410782 . + . gene_id "cfmg_chr3_plus.13"; transcript_id "cfmg_chr3_plus.13.15";
chr3 cfmg exon 170412806 170412932 . + . gene_id "cfmg_chr3_plus.13"; transcript_id "cfmg_chr3_plus.13.15";
chr3 cfmg exon 170413153 170413239 . + . gene_id "cfmg_chr3_plus.13"; transcript_id "cfmg_chr3_plus.13.15";
chr3 cfmg exon 170418437 170418569 . + . gene_id "cfmg_chr3_plus.13"; transcript_id "cfmg_chr3_plus.13.15";
chr3 cfmg exon 171468089 171468255 . + . gene_id "cfmg_chr3_plus.14"; transcript_id "cfmg_chr3_plus.14.16";
chr3 cfmg exon 171469577 171469593 . + . gene_id "cfmg_chr3_plus.14"; transcript_id "cfmg_chr3_plus.14.16";
chr3 cfmg exon 171468101 171468257 . + . gene_id "cfmg_chr3_plus.14"; transcript_id "cfmg_chr3_plus.14.17";
chr3 cfmg exon 171469579 171469593 . + . gene_id "cfmg_chr3_plus.14"; transcript_id "cfmg_chr3_plus.14.17";
chr3 cfmg exon 184734102 184734240 . + . gene_id "cfmg_chr3_plus.15"; transcript_id "cfmg_chr3_plus.15.18";
chr3 cfmg exon 184737552 184737771 . + . gene_id "cfmg_chr3_plus.15"; transcript_id "cfmg_chr3_plus.15.18";
chr3 cfmg exon 184738635 184738949 . + . gene_id "cfmg_chr3_plus.15"; transcript_id "cfmg_chr3_plus.15.18";
chr3 cfmg exon 187368385 187368596 . + . gene_id "cfmg_chr3_plus.16"; transcript_id "cfmg_chr3_plus.16.19";
chr3 cfmg exon 187370788 187372049 . + . gene_id "cfmg_chr3_plus.16"; transcript_id "cfmg_chr3_plus.16.19";
chr3 cfmg exon 195615010 195615020 . + . gene_id "cfmg_chr3_plus.17"; transcript_id "cfmg_chr3_plus.17.20";
chr3 cfmg exon 195618628 195620244 . + . gene_id "cfmg_chr3_plus.17"; transcript_id "cfmg_chr3_plus.17.20";
chr3 cfmg exon 195615048 195615049 . + . gene_id "cfmg_chr3_plus.17"; transcript_id "cfmg_chr3_plus.17.21";
chr3 cfmg exon 195618657 195620244 . + . gene_id "cfmg_chr3_plus.17"; transcript_id "cfmg_chr3_plus.17.21";
chr3 cfmg exon 196142641 196143000 . + . gene_id "cfmg_chr3_plus.18"; transcript_id "cfmg_chr3_plus.18.22";
chr3 cfmg exon 196143906 196144377 . + . gene_id "cfmg_chr3_plus.18"; transcript_id "cfmg_chr3_plus.18.22";
chr3 cfmg exon 196159900 196160883 . + . gene_id "cfmg_chr3_plus.18"; transcript_id "cfmg_chr3_plus.18.22";
chr4 cfmg exon 8959826 8959901 . + . gene_id "cfmg_chr4_plus.1"; transcript_id "cfmg_chr4_plus.1.1";
chr4 cfmg exon 8961714 8961832 . + . gene_id "cfmg_chr4_plus.1"; transcript_id "cfmg_chr4_plus.1.1";
chr4 cfmg exon 8963670 8963940 . + . gene_id "cfmg_chr4_plus.1"; transcript_id "cfmg_chr4_plus.1.1";
chr4 cfmg exon 10685016 10685061 . + . gene_id "cfmg_chr4_plus.2"; transcript_id "cfmg_chr4_plus.2.2";
chr4 cfmg exon 10692065 10692106 . + . gene_id "cfmg_chr4_plus.2"; transcript_id "cfmg_chr4_plus.2.2";
chr4 cfmg exon 10697123 10697646 . + . gene_id "cfmg_chr4_plus.2"; transcript_id "cfmg_chr4_plus.2.2";
chr4 cfmg exon 10692121 10692123 . + . gene_id "cfmg_chr4_plus.2"; transcript_id "cfmg_chr4_plus.2.3";
chr4 cfmg exon 10697140 10697646 . + . gene_id "cfmg_chr4_plus.2"; transcript_id "cfmg_chr4_plus.2.3";
chr4 cfmg exon 40316499 40316980 . + . gene_id "cfmg_chr4_plus.3"; transcript_id "cfmg_chr4_plus.3.6";
chr4 cfmg exon 40326710 40326910 . + . gene_id "cfmg_chr4_plus.3"; transcript_id "cfmg_chr4_plus.3.6";
chr4 cfmg exon 40330160 40330419 . + . gene_id "cfmg_chr4_plus.3"; transcript_id "cfmg_chr4_plus.3.6";
chr4 cfmg exon 40316499 40316980 . + . gene_id "cfmg_chr4_plus.3"; transcript_id "cfmg_chr4_plus.3.5";
chr4 cfmg exon 40326710 40326928 . + . gene_id "cfmg_chr4_plus.3"; transcript_id "cfmg_chr4_plus.3.5";
chr4 cfmg exon 40330178 40330419 . + . gene_id "cfmg_chr4_plus.3"; transcript_id "cfmg_chr4_plus.3.5";
chr4 cfmg exon 40316499 40316980 . + . gene_id "cfmg_chr4_plus.3"; transcript_id "cfmg_chr4_plus.3.4";
chr4 cfmg exon 40326710 40326911 . + . gene_id "cfmg_chr4_plus.3"; transcript_id "cfmg_chr4_plus.3.4";
chr4 cfmg exon 40330161 40330419 . + . gene_id "cfmg_chr4_plus.3"; transcript_id "cfmg_chr4_plus.3.4";
chr4 cfmg exon 42397854 42398333 . + . gene_id "cfmg_chr4_plus.4"; transcript_id "cfmg_chr4_plus.4.7";
chr4 cfmg exon 42401012 42402487 . + . gene_id "cfmg_chr4_plus.4"; transcript_id "cfmg_chr4_plus.4.7";
chr4 cfmg exon 42398276 42398338 . + . gene_id "cfmg_chr4_plus.4"; transcript_id "cfmg_chr4_plus.4.8";
chr4 cfmg exon 42401017 42402487 . + . gene_id "cfmg_chr4_plus.4"; transcript_id "cfmg_chr4_plus.4.8";
chr4 cfmg exon 48483344 48484151 . + . gene_id "cfmg_chr4_plus.5"; transcript_id "cfmg_chr4_plus.5.9";
chr4 cfmg exon 48484932 48485142 . + . gene_id "cfmg_chr4_plus.5"; transcript_id "cfmg_chr4_plus.5.9";
chr4 cfmg exon 48488427 48489196 . + . gene_id "cfmg_chr4_plus.5"; transcript_id "cfmg_chr4_plus.5.9";
chr4 cfmg exon 52659435 52659676 . + . gene_id "cfmg_chr4_plus.6"; transcript_id "cfmg_chr4_plus.6.10";
chr4 cfmg exon 52660892 52661668 . + . gene_id "cfmg_chr4_plus.6"; transcript_id "cfmg_chr4_plus.6.10";
chr4 cfmg exon 52659677 52659677 . + . gene_id "cfmg_chr4_plus.6"; transcript_id "cfmg_chr4_plus.6.11";
chr4 cfmg exon 52660893 52661668 . + . gene_id "cfmg_chr4_plus.6"; transcript_id "cfmg_chr4_plus.6.11";
chr4 cfmg exon 55820021 55820127 . + . gene_id "cfmg_chr4_plus.7"; transcript_id "cfmg_chr4_plus.7.12";
chr4 cfmg exon 55831334 55831464 . + . gene_id "cfmg_chr4_plus.7"; transcript_id "cfmg_chr4_plus.7.12";
chr4 cfmg exon 55837085 55837381 . + . gene_id "cfmg_chr4_plus.7"; transcript_id "cfmg_chr4_plus.7.12";
chr4 cfmg exon 55820135 55820137 . + . gene_id "cfmg_chr4_plus.7"; transcript_id "cfmg_chr4_plus.7.13";
chr4 cfmg exon 55831344 55831464 . + . gene_id "cfmg_chr4_plus.7"; transcript_id "cfmg_chr4_plus.7.13";
chr4 cfmg exon 55837085 55837381 . + . gene_id "cfmg_chr4_plus.7"; transcript_id "cfmg_chr4_plus.7.13";
chr4 cfmg exon 56505345 56505509 . + . gene_id "cfmg_chr4_plus.8"; transcript_id "cfmg_chr4_plus.8.14";
chr4 cfmg exon 56511185 56511348 . + . gene_id "cfmg_chr4_plus.8"; transcript_id "cfmg_chr4_plus.8.14";
chr4 cfmg exon 56518679 56518853 . + . gene_id "cfmg_chr4_plus.8"; transcript_id "cfmg_chr4_plus.8.14";
chr4 cfmg exon 56523697 56524409 . + . gene_id "cfmg_chr4_plus.8"; transcript_id "cfmg_chr4_plus.8.14";
chr4 cfmg exon 56505422 56505509 . + . gene_id "cfmg_chr4_plus.8"; transcript_id "cfmg_chr4_plus.8.15";
chr4 cfmg exon 56511185 56511347 . + . gene_id "cfmg_chr4_plus.8"; transcript_id "cfmg_chr4_plus.8.15";
chr4 cfmg exon 56518678 56518853 . + . gene_id "cfmg_chr4_plus.8"; transcript_id "cfmg_chr4_plus.8.15";
chr4 cfmg exon 56523697 56524409 . + . gene_id "cfmg_chr4_plus.8"; transcript_id "cfmg_chr4_plus.8.15";
chr4 cfmg exon 56518876 56518876 . + . gene_id "cfmg_chr4_plus.8"; transcript_id "cfmg_chr4_plus.8.16";
chr4 cfmg exon 56523720 56524409 . + . gene_id "cfmg_chr4_plus.8"; transcript_id "cfmg_chr4_plus.8.16";
chr4 cfmg exon 65702204 65702345 . + . gene_id "cfmg_chr4_plus.9"; transcript_id "cfmg_chr4_plus.9.17";
chr4 cfmg exon 65705313 65705464 . + . gene_id "cfmg_chr4_plus.9"; transcript_id "cfmg_chr4_plus.9.17";
chr4 cfmg exon 68784632 68784749 . + . gene_id "cfmg_chr4_plus.10"; transcript_id "cfmg_chr4_plus.10.18";
chr4 cfmg exon 68786050 68786138 . + . gene_id "cfmg_chr4_plus.10"; transcript_id "cfmg_chr4_plus.10.18";
chr4 cfmg exon 68786531 68786748 . + . gene_id "cfmg_chr4_plus.10"; transcript_id "cfmg_chr4_plus.10.18";
chr4 cfmg exon 68787200 68787474 . + . gene_id "cfmg_chr4_plus.10"; transcript_id "cfmg_chr4_plus.10.18";
chr4 cfmg exon 87799581 87799633 . + . gene_id "cfmg_chr4_plus.11"; transcript_id "cfmg_chr4_plus.11.19";
chr4 cfmg exon 87802348 87802415 . + . gene_id "cfmg_chr4_plus.11"; transcript_id "cfmg_chr4_plus.11.19";
chr4 cfmg exon 87802508 87802558 . + . gene_id "cfmg_chr4_plus.11"; transcript_id "cfmg_chr4_plus.11.19";
chr4 cfmg exon 87802654 87802731 . + . gene_id "cfmg_chr4_plus.11"; transcript_id "cfmg_chr4_plus.11.19";
chr4 cfmg exon 87806122 87806184 . + . gene_id "cfmg_chr4_plus.11"; transcript_id "cfmg_chr4_plus.11.19";
chr4 cfmg exon 87810606 87810764 . + . gene_id "cfmg_chr4_plus.11"; transcript_id "cfmg_chr4_plus.11.19";
chr4 cfmg exon 87811362 87812433 . + . gene_id "cfmg_chr4_plus.11"; transcript_id "cfmg_chr4_plus.11.19";
chr4 cfmg exon 87802522 87802558 . + . gene_id "cfmg_chr4_plus.11"; transcript_id "cfmg_chr4_plus.11.20";
chr4 cfmg exon 87802654 87802731 . + . gene_id "cfmg_chr4_plus.11"; transcript_id "cfmg_chr4_plus.11.20";
chr4 cfmg exon 87806122 87806205 . + . gene_id "cfmg_chr4_plus.11"; transcript_id "cfmg_chr4_plus.11.20";
chr4 cfmg exon 87810627 87810764 . + . gene_id "cfmg_chr4_plus.11"; transcript_id "cfmg_chr4_plus.11.20";
chr4 cfmg exon 87811362 87812433 . + . gene_id "cfmg_chr4_plus.11"; transcript_id "cfmg_chr4_plus.11.20";
chr4 cfmg exon 146224557 146224608 . + . gene_id "cfmg_chr4_plus.12"; transcript_id "cfmg_chr4_plus.12.21";
chr4 cfmg exon 146228210 146228522 . + . gene_id "cfmg_chr4_plus.12"; transcript_id "cfmg_chr4_plus.12.21";
chr4 cfmg exon 146229025 146229042 . + . gene_id "cfmg_chr4_plus.12"; transcript_id "cfmg_chr4_plus.12.21";
chr4 cfmg exon 162740671 162740915 . + . gene_id "cfmg_chr4_plus.13"; transcript_id "cfmg_chr4_plus.13.22";
chr4 cfmg exon 162741669 162741953 . + . gene_id "cfmg_chr4_plus.13"; transcript_id "cfmg_chr4_plus.13.22";
chr4 cfmg exon 188160066 188160102 . + . gene_id "cfmg_chr4_plus.14"; transcript_id "cfmg_chr4_plus.14.23";
chr4 cfmg exon 188160501 188161139 . + . gene_id "cfmg_chr4_plus.14"; transcript_id "cfmg_chr4_plus.14.23";
chr5 cfmg exon 92168 92276 . + . gene_id "cfmg_chr5_plus.1"; transcript_id "cfmg_chr5_plus.1.1";
chr5 cfmg exon 113251 113448 . + . gene_id "cfmg_chr5_plus.1"; transcript_id "cfmg_chr5_plus.1.1";
chr5 cfmg exon 139483 139864 . + . gene_id "cfmg_chr5_plus.1"; transcript_id "cfmg_chr5_plus.1.1";
chr5 cfmg exon 92306 92309 . + . gene_id "cfmg_chr5_plus.1"; transcript_id "cfmg_chr5_plus.1.2";
chr5 cfmg exon 113284 113448 . + . gene_id "cfmg_chr5_plus.1"; transcript_id "cfmg_chr5_plus.1.2";
chr5 cfmg exon 139483 139864 . + . gene_id "cfmg_chr5_plus.1"; transcript_id "cfmg_chr5_plus.1.2";
chr5 cfmg exon 7290836 7290894 . + . gene_id "cfmg_chr5_plus.2"; transcript_id "cfmg_chr5_plus.2.3";
chr5 cfmg exon 7296215 7296322 . + . gene_id "cfmg_chr5_plus.2"; transcript_id "cfmg_chr5_plus.2.3";
chr5 cfmg exon 7924368 7924378 . + . gene_id "cfmg_chr5_plus.3"; transcript_id "cfmg_chr5_plus.3.4";
chr5 cfmg exon 7924954 7924997 . + . gene_id "cfmg_chr5_plus.3"; transcript_id "cfmg_chr5_plus.3.4";
chr5 cfmg exon 7925235 7925336 . + . gene_id "cfmg_chr5_plus.3"; transcript_id "cfmg_chr5_plus.3.4";
chr5 cfmg exon 66307719 66307775 . + . gene_id "cfmg_chr5_plus.4"; transcript_id "cfmg_chr5_plus.4.5";
chr5 cfmg exon 66318269 66318426 . + . gene_id "cfmg_chr5_plus.4"; transcript_id "cfmg_chr5_plus.4.5";
chr5 cfmg exon 66322833 66322924 . + . gene_id "cfmg_chr5_plus.4"; transcript_id "cfmg_chr5_plus.4.5";
chr5 cfmg exon 73451508 73452105 . + . gene_id "cfmg_chr5_plus.5"; transcript_id "cfmg_chr5_plus.5.6";
chr5 cfmg exon 73453224 73453312 . + . gene_id "cfmg_chr5_plus.5"; transcript_id "cfmg_chr5_plus.5.6";
chr5 cfmg exon 86797838 86797838 . + . gene_id "cfmg_chr5_plus.6"; transcript_id "cfmg_chr5_plus.6.7";
chr5 cfmg exon 86799953 86800106 . + . gene_id "cfmg_chr5_plus.6"; transcript_id "cfmg_chr5_plus.6.7";
chr5 cfmg exon 124919952 124920122 . + . gene_id "cfmg_chr5_plus.7"; transcript_id "cfmg_chr5_plus.7.8";
chr5 cfmg exon 124921571 124921587 . + . gene_id "cfmg_chr5_plus.7"; transcript_id "cfmg_chr5_plus.7.8";
chr5 cfmg exon 132073799 132073982 . + . gene_id "cfmg_chr5_plus.8"; transcript_id "cfmg_chr5_plus.8.9";
chr5 cfmg exon 132074081 132074122 . + . gene_id "cfmg_chr5_plus.8"; transcript_id "cfmg_chr5_plus.8.9";
chr5 cfmg exon 132074810 132074935 . + . gene_id "cfmg_chr5_plus.8"; transcript_id "cfmg_chr5_plus.8.9";
chr5 cfmg exon 132075745 132076170 . + . gene_id "cfmg_chr5_plus.8"; transcript_id "cfmg_chr5_plus.8.9";
chr5 cfmg exon 135812675 135812926 . + . gene_id "cfmg_chr5_plus.9"; transcript_id "cfmg_chr5_plus.9.10";
chr5 cfmg exon 135826466 135826467 . + . gene_id "cfmg_chr5_plus.9"; transcript_id "cfmg_chr5_plus.9.10";
chr5 cfmg exon 138465490 138466068 . + . gene_id "cfmg_chr5_plus.10"; transcript_id "cfmg_chr5_plus.10.11";
chr5 cfmg exon 138466757 138469344 . + . gene_id "cfmg_chr5_plus.10"; transcript_id "cfmg_chr5_plus.10.11";
chr5 cfmg exon 142745602 142745718 . + . gene_id "cfmg_chr5_plus.11"; transcript_id "cfmg_chr5_plus.11.12";
chr5 cfmg exon 142756734 142756830 . + . gene_id "cfmg_chr5_plus.11"; transcript_id "cfmg_chr5_plus.11.12";
chr5 cfmg exon 142757827 142757934 . + . gene_id "cfmg_chr5_plus.11"; transcript_id "cfmg_chr5_plus.11.12";
chr5 cfmg exon 142759086 142760994 . + . gene_id "cfmg_chr5_plus.11"; transcript_id "cfmg_chr5_plus.11.12";
chr5 cfmg exon 142745639 142745718 . + . gene_id "cfmg_chr5_plus.11"; transcript_id "cfmg_chr5_plus.11.14";
chr5 cfmg exon 142756734 142756830 . + . gene_id "cfmg_chr5_plus.11"; transcript_id "cfmg_chr5_plus.11.14";
chr5 cfmg exon 142757827 142757952 . + . gene_id "cfmg_chr5_plus.11"; transcript_id "cfmg_chr5_plus.11.14";
chr5 cfmg exon 142759104 142760994 . + . gene_id "cfmg_chr5_plus.11"; transcript_id "cfmg_chr5_plus.11.14";
chr5 cfmg exon 142745639 142745718 . + . gene_id "cfmg_chr5_plus.11"; transcript_id "cfmg_chr5_plus.11.13";
chr5 cfmg exon 142756734 142756830 . + . gene_id "cfmg_chr5_plus.11"; transcript_id "cfmg_chr5_plus.11.13";
chr5 cfmg exon 142757827 142757936 . + . gene_id "cfmg_chr5_plus.11"; transcript_id "cfmg_chr5_plus.11.13";
chr5 cfmg exon 142759088 142760994 . + . gene_id "cfmg_chr5_plus.11"; transcript_id "cfmg_chr5_plus.11.13";
chr5 cfmg exon 148238571 148238646 . + . gene_id "cfmg_chr5_plus.12"; transcript_id "cfmg_chr5_plus.12.15";
chr5 cfmg exon 148242446 148242594 . + . gene_id "cfmg_chr5_plus.12"; transcript_id "cfmg_chr5_plus.12.15";
chr5 cfmg exon 150777949 150778972 . + . gene_id "cfmg_chr5_plus.13"; transcript_id "cfmg_chr5_plus.13.16";
chr5 cfmg exon 150795430 150796748 . + . gene_id "cfmg_chr5_plus.13"; transcript_id "cfmg_chr5_plus.13.16";
chr5 cfmg exon 171309287 171309786 . + . gene_id "cfmg_chr5_plus.14"; transcript_id "cfmg_chr5_plus.14.17";
chr5 cfmg exon 171310150 171310393 . + . gene_id "cfmg_chr5_plus.14"; transcript_id "cfmg_chr5_plus.14.17";
chr5 cfmg exon 171311389 171311754 . + . gene_id "cfmg_chr5_plus.14"; transcript_id "cfmg_chr5_plus.14.17";
chr5 cfmg exon 171309423 171309788 . + . gene_id "cfmg_chr5_plus.14"; transcript_id "cfmg_chr5_plus.14.18";
chr5 cfmg exon 171310152 171310393 . + . gene_id "cfmg_chr5_plus.14"; transcript_id "cfmg_chr5_plus.14.18";
chr5 cfmg exon 171311389 171311754 . + . gene_id "cfmg_chr5_plus.14"; transcript_id "cfmg_chr5_plus.14.18";
chr5 cfmg exon 171311883 171312134 . + . gene_id "cfmg_chr5_plus.15"; transcript_id "cfmg_chr5_plus.15.19";
chr5 cfmg exon 173562481 173562563 . + . gene_id "cfmg_chr5_plus.16"; transcript_id "cfmg_chr5_plus.16.20";
chr5 cfmg exon 173563495 173563544 . + . gene_id "cfmg_chr5_plus.16"; transcript_id "cfmg_chr5_plus.16.20";
chr5 cfmg exon 173572881 173573193 . + . gene_id "cfmg_chr5_plus.16"; transcript_id "cfmg_chr5_plus.16.20";
chr5 cfmg exon 173642519 173642657 . + . gene_id "cfmg_chr5_plus.17"; transcript_id "cfmg_chr5_plus.17.21";
chr5 cfmg exon 173657840 173658127 . + . gene_id "cfmg_chr5_plus.17"; transcript_id "cfmg_chr5_plus.17.21";
chr5 cfmg exon 173689469 173689553 . + . gene_id "cfmg_chr5_plus.18"; transcript_id "cfmg_chr5_plus.18.22";
chr5 cfmg exon 173701529 173701686 . + . gene_id "cfmg_chr5_plus.18"; transcript_id "cfmg_chr5_plus.18.22";
chr5 cfmg exon 173705590 173705847 . + . gene_id "cfmg_chr5_plus.18"; transcript_id "cfmg_chr5_plus.18.22";
chr5 cfmg exon 178113461 178113771 . + . gene_id "cfmg_chr5_plus.19"; transcript_id "cfmg_chr5_plus.19.23";
chr5 cfmg exon 178119554 178119913 . + . gene_id "cfmg_chr5_plus.19"; transcript_id "cfmg_chr5_plus.19.23";
chr5 cfmg exon 178120178 178120699 . + . gene_id "cfmg_chr5_plus.19"; transcript_id "cfmg_chr5_plus.19.23";
chr5 cfmg exon 178121098 178121352 . + . gene_id "cfmg_chr5_plus.19"; transcript_id "cfmg_chr5_plus.19.23";
chr5 cfmg exon 178121474 178126104 . + . gene_id "cfmg_chr5_plus.19"; transcript_id "cfmg_chr5_plus.19.23";
chr6 cfmg exon 711541 711600 . + . gene_id "cfmg_chr6_plus.1"; transcript_id "cfmg_chr6_plus.1.1";
chr6 cfmg exon 713714 713888 . + . gene_id "cfmg_chr6_plus.1"; transcript_id "cfmg_chr6_plus.1.1";
chr6 cfmg exon 747943 748051 . + . gene_id "cfmg_chr6_plus.1"; transcript_id "cfmg_chr6_plus.1.1";
chr6 cfmg exon 750659 750692 . + . gene_id "cfmg_chr6_plus.1"; transcript_id "cfmg_chr6_plus.1.1";
chr6 cfmg exon 7726800 7727619 . + . gene_id "cfmg_chr6_plus.2"; transcript_id "cfmg_chr6_plus.2.2";
chr6 cfmg exon 7845140 7845332 . + . gene_id "cfmg_chr6_plus.2"; transcript_id "cfmg_chr6_plus.2.2";
chr6 cfmg exon 7861451 7861599 . + . gene_id "cfmg_chr6_plus.2"; transcript_id "cfmg_chr6_plus.2.2";
chr6 cfmg exon 7862301 7862498 . + . gene_id "cfmg_chr6_plus.2"; transcript_id "cfmg_chr6_plus.2.2";
chr6 cfmg exon 7879074 7879150 . + . gene_id "cfmg_chr6_plus.2"; transcript_id "cfmg_chr6_plus.2.2";
chr6 cfmg exon 7879991 7880101 . + . gene_id "cfmg_chr6_plus.2"; transcript_id "cfmg_chr6_plus.2.2";
chr6 cfmg exon 7880194 7881421 . + . gene_id "cfmg_chr6_plus.2"; transcript_id "cfmg_chr6_plus.2.2";
chr6 cfmg exon 8784185 8784337 . + . gene_id "cfmg_chr6_plus.3"; transcript_id "cfmg_chr6_plus.3.3";
chr6 cfmg exon 8785117 8785445 . + . gene_id "cfmg_chr6_plus.3"; transcript_id "cfmg_chr6_plus.3.3";
chr6 cfmg exon 11538279 11538374 . + . gene_id "cfmg_chr6_plus.4"; transcript_id "cfmg_chr6_plus.4.4";
chr6 cfmg exon 11565666 11565836 . + . gene_id "cfmg_chr6_plus.4"; transcript_id "cfmg_chr6_plus.4.4";
chr6 cfmg exon 11575431 11583524 . + . gene_id "cfmg_chr6_plus.4"; transcript_id "cfmg_chr6_plus.4.4";
chr6 cfmg exon 11810607 11810749 . + . gene_id "cfmg_chr6_plus.5"; transcript_id "cfmg_chr6_plus.5.5";
chr6 cfmg exon 11810843 11811230 . + . gene_id "cfmg_chr6_plus.5"; transcript_id "cfmg_chr6_plus.5.5";
chr6 cfmg exon 12290366 12290693 . + . gene_id "cfmg_chr6_plus.6"; transcript_id "cfmg_chr6_plus.6.6";
chr6 cfmg exon 12292341 12292509 . + . gene_id "cfmg_chr6_plus.6"; transcript_id "cfmg_chr6_plus.6.6";
chr6 cfmg exon 12293941 12294096 . + . gene_id "cfmg_chr6_plus.6"; transcript_id "cfmg_chr6_plus.6.6";
chr6 cfmg exon 12294261 12294404 . + . gene_id "cfmg_chr6_plus.6"; transcript_id "cfmg_chr6_plus.6.6";
chr6 cfmg exon 12295962 12297194 . + . gene_id "cfmg_chr6_plus.6"; transcript_id "cfmg_chr6_plus.6.6";
chr6 cfmg exon 14004980 14004980 . + . gene_id "cfmg_chr6_plus.7"; transcript_id "cfmg_chr6_plus.7.7";
chr6 cfmg exon 14006577 14006886 . + . gene_id "cfmg_chr6_plus.7"; transcript_id "cfmg_chr6_plus.7.7";
chr6 cfmg exon 17600355 17601121 . + . gene_id "cfmg_chr6_plus.8"; transcript_id "cfmg_chr6_plus.8.8";
chr6 cfmg exon 17602590 17602710 . + . gene_id "cfmg_chr6_plus.8"; transcript_id "cfmg_chr6_plus.8.8";
chr6 cfmg exon 17604906 17605029 . + . gene_id "cfmg_chr6_plus.8"; transcript_id "cfmg_chr6_plus.8.8";
chr6 cfmg exon 17605874 17606013 . + . gene_id "cfmg_chr6_plus.8"; transcript_id "cfmg_chr6_plus.8.8";
chr6 cfmg exon 17608195 17611752 . + . gene_id "cfmg_chr6_plus.8"; transcript_id "cfmg_chr6_plus.8.8";
chr6 cfmg exon 26596952 26597223 . + . gene_id "cfmg_chr6_plus.9"; transcript_id "cfmg_chr6_plus.9.9";
chr6 cfmg exon 26597914 26598110 . + . gene_id "cfmg_chr6_plus.9"; transcript_id "cfmg_chr6_plus.9.9";
chr6 cfmg exon 26598265 26600745 . + . gene_id "cfmg_chr6_plus.9"; transcript_id "cfmg_chr6_plus.9.9";
chr6 cfmg exon 28896538 28896730 . + . gene_id "cfmg_chr6_plus.10"; transcript_id "cfmg_chr6_plus.10.10";
chr6 cfmg exon 28897111 28897336 . + . gene_id "cfmg_chr6_plus.10"; transcript_id "cfmg_chr6_plus.10.10";
chr6 cfmg exon 28943878 28944026 . + . gene_id "cfmg_chr6_plus.11"; transcript_id "cfmg_chr6_plus.11.11";
chr6 cfmg exon 28944222 28944537 . + . gene_id "cfmg_chr6_plus.11"; transcript_id "cfmg_chr6_plus.11.11";
chr6 cfmg exon 31575567 31575927 . + . gene_id "cfmg_chr6_plus.12"; transcript_id "cfmg_chr6_plus.12.12";
chr6 cfmg exon 31576534 31576579 . + . gene_id "cfmg_chr6_plus.12"; transcript_id "cfmg_chr6_plus.12.12";
chr6 cfmg exon 31576767 31576814 . + . gene_id "cfmg_chr6_plus.12"; transcript_id "cfmg_chr6_plus.12.12";
chr6 cfmg exon 31577116 31578337 . + . gene_id "cfmg_chr6_plus.12"; transcript_id "cfmg_chr6_plus.12.12";
chr6 cfmg exon 32013270 32013286 . + . gene_id "cfmg_chr6_plus.13"; transcript_id "cfmg_chr6_plus.13.13";
chr6 cfmg exon 32013392 32013539 . + . gene_id "cfmg_chr6_plus.13"; transcript_id "cfmg_chr6_plus.13.13";
chr6 cfmg exon 32013742 32013783 . + . gene_id "cfmg_chr6_plus.13"; transcript_id "cfmg_chr6_plus.13.13";
chr6 cfmg exon 35452361 35452793 . + . gene_id "cfmg_chr6_plus.14"; transcript_id "cfmg_chr6_plus.14.14";
chr6 cfmg exon 35455747 35456353 . + . gene_id "cfmg_chr6_plus.14"; transcript_id "cfmg_chr6_plus.14.14";
chr6 cfmg exon 35457556 35457600 . + . gene_id "cfmg_chr6_plus.14"; transcript_id "cfmg_chr6_plus.14.14";
chr6 cfmg exon 35457916 35457984 . + . gene_id "cfmg_chr6_plus.14"; transcript_id "cfmg_chr6_plus.14.14";
chr6 cfmg exon 35458297 35458440 . + . gene_id "cfmg_chr6_plus.14"; transcript_id "cfmg_chr6_plus.14.14";
chr6 cfmg exon 35459331 35459454 . + . gene_id "cfmg_chr6_plus.14"; transcript_id "cfmg_chr6_plus.14.14";
chr6 cfmg exon 35459682 35459760 . + . gene_id "cfmg_chr6_plus.14"; transcript_id "cfmg_chr6_plus.14.14";
chr6 cfmg exon 35460552 35460618 . + . gene_id "cfmg_chr6_plus.14"; transcript_id "cfmg_chr6_plus.14.14";
chr6 cfmg exon 35462789 35462914 . + . gene_id "cfmg_chr6_plus.14"; transcript_id "cfmg_chr6_plus.14.14";
chr6 cfmg exon 35466244 35467126 . + . gene_id "cfmg_chr6_plus.14"; transcript_id "cfmg_chr6_plus.14.14";
chr6 cfmg exon 43171299 43172169 . + . gene_id "cfmg_chr6_plus.15"; transcript_id "cfmg_chr6_plus.15.15";
chr6 cfmg exon 43173847 43174113 . + . gene_id "cfmg_chr6_plus.15"; transcript_id "cfmg_chr6_plus.15.15";
chr6 cfmg exon 43175706 43175967 . + . gene_id "cfmg_chr6_plus.15"; transcript_id "cfmg_chr6_plus.15.15";
chr6 cfmg exon 43176548 43176667 . + . gene_id "cfmg_chr6_plus.15"; transcript_id "cfmg_chr6_plus.15.15";
chr6 cfmg exon 43178294 43178485 . + . gene_id "cfmg_chr6_plus.15"; transcript_id "cfmg_chr6_plus.15.15";
chr6 cfmg exon 43178806 43178882 . + . gene_id "cfmg_chr6_plus.15"; transcript_id "cfmg_chr6_plus.15.15";
chr6 cfmg exon 43179095 43181552 . + . gene_id "cfmg_chr6_plus.15"; transcript_id "cfmg_chr6_plus.15.15";
chr6 cfmg exon 46130000 46130189 . + . gene_id "cfmg_chr6_plus.16"; transcript_id "cfmg_chr6_plus.16.16";
chr6 cfmg exon 46139551 46140409 . + . gene_id "cfmg_chr6_plus.16"; transcript_id "cfmg_chr6_plus.16.16";
chr6 cfmg exon 46141052 46141222 . + . gene_id "cfmg_chr6_plus.16"; transcript_id "cfmg_chr6_plus.16.16";
chr6 cfmg exon 46143276 46146680 . + . gene_id "cfmg_chr6_plus.16"; transcript_id "cfmg_chr6_plus.16.16";
chr6 cfmg exon 49463378 49463453 . + . gene_id "cfmg_chr6_plus.17"; transcript_id "cfmg_chr6_plus.17.17";
chr6 cfmg exon 49470159 49470278 . + . gene_id "cfmg_chr6_plus.17"; transcript_id "cfmg_chr6_plus.17.17";
chr6 cfmg exon 49470974 49471028 . + . gene_id "cfmg_chr6_plus.17"; transcript_id "cfmg_chr6_plus.17.17";
chr6 cfmg exon 49472063 49472183 . + . gene_id "cfmg_chr6_plus.17"; transcript_id "cfmg_chr6_plus.17.17";
chr6 cfmg exon 49472790 49472858 . + . gene_id "cfmg_chr6_plus.17"; transcript_id "cfmg_chr6_plus.17.17";
chr6 cfmg exon 49480951 49481080 . + . gene_id "cfmg_chr6_plus.17"; transcript_id "cfmg_chr6_plus.17.17";
chr6 cfmg exon 49488352 49488471 . + . gene_id "cfmg_chr6_plus.17"; transcript_id "cfmg_chr6_plus.17.17";
chr6 cfmg exon 49488607 49488684 . + . gene_id "cfmg_chr6_plus.17"; transcript_id "cfmg_chr6_plus.17.17";
chr6 cfmg exon 49492144 49493008 . + . gene_id "cfmg_chr6_plus.17"; transcript_id "cfmg_chr6_plus.17.17";
chr6 cfmg exon 50093717 50093831 . + . gene_id "cfmg_chr6_plus.18"; transcript_id "cfmg_chr6_plus.18.18";
chr6 cfmg exon 50098712 50099247 . + . gene_id "cfmg_chr6_plus.18"; transcript_id "cfmg_chr6_plus.18.18";
chr6 cfmg exon 52671109 52671245 . + . gene_id "cfmg_chr6_plus.19"; transcript_id "cfmg_chr6_plus.19.19";
chr6 cfmg exon 52677087 52677172 . + . gene_id "cfmg_chr6_plus.19"; transcript_id "cfmg_chr6_plus.19.19";
chr6 cfmg exon 52681813 52681914 . + . gene_id "cfmg_chr6_plus.19"; transcript_id "cfmg_chr6_plus.19.19";
chr6 cfmg exon 52684078 52684165 . + . gene_id "cfmg_chr6_plus.19"; transcript_id "cfmg_chr6_plus.19.19";
chr6 cfmg exon 52686010 52686620 . + . gene_id "cfmg_chr6_plus.19"; transcript_id "cfmg_chr6_plus.19.19";
chr6 cfmg exon 53628393 53628446 . + . gene_id "cfmg_chr6_plus.20"; transcript_id "cfmg_chr6_plus.20.20";
chr6 cfmg exon 53628575 53628691 . + . gene_id "cfmg_chr6_plus.20"; transcript_id "cfmg_chr6_plus.20.20";
chr6 cfmg exon 53631013 53631376 . + . gene_id "cfmg_chr6_plus.20"; transcript_id "cfmg_chr6_plus.20.20";
chr6 cfmg exon 53628449 53628449 . + . gene_id "cfmg_chr6_plus.20"; transcript_id "cfmg_chr6_plus.20.21";
chr6 cfmg exon 53628578 53628691 . + . gene_id "cfmg_chr6_plus.20"; transcript_id "cfmg_chr6_plus.20.21";
chr6 cfmg exon 53631013 53631376 . + . gene_id "cfmg_chr6_plus.20"; transcript_id "cfmg_chr6_plus.20.21";
chr6 cfmg exon 53628451 53628453 . + . gene_id "cfmg_chr6_plus.20"; transcript_id "cfmg_chr6_plus.20.22";
chr6 cfmg exon 53628582 53628691 . + . gene_id "cfmg_chr6_plus.20"; transcript_id "cfmg_chr6_plus.20.22";
chr6 cfmg exon 53631013 53631376 . + . gene_id "cfmg_chr6_plus.20"; transcript_id "cfmg_chr6_plus.20.22";
chr6 cfmg exon 53628455 53628456 . + . gene_id "cfmg_chr6_plus.20"; transcript_id "cfmg_chr6_plus.20.23";
chr6 cfmg exon 53628585 53628691 . + . gene_id "cfmg_chr6_plus.20"; transcript_id "cfmg_chr6_plus.20.23";
chr6 cfmg exon 53631013 53631376 . + . gene_id "cfmg_chr6_plus.20"; transcript_id "cfmg_chr6_plus.20.23";
chr6 cfmg exon 54846771 54846826 . + . gene_id "cfmg_chr6_plus.21"; transcript_id "cfmg_chr6_plus.21.24";
chr6 cfmg exon 54870187 54870690 . + . gene_id "cfmg_chr6_plus.21"; transcript_id "cfmg_chr6_plus.21.24";
chr6 cfmg exon 54926371 54926535 . + . gene_id "cfmg_chr6_plus.21"; transcript_id "cfmg_chr6_plus.21.24";
chr6 cfmg exon 54927508 54927632 . + . gene_id "cfmg_chr6_plus.21"; transcript_id "cfmg_chr6_plus.21.24";
chr6 cfmg exon 54939706 54942022 . + . gene_id "cfmg_chr6_plus.21"; transcript_id "cfmg_chr6_plus.21.24";
chr6 cfmg exon 68055417 68055435 . + . gene_id "cfmg_chr6_plus.22"; transcript_id "cfmg_chr6_plus.22.25";
chr6 cfmg exon 68060096 68060445 . + . gene_id "cfmg_chr6_plus.22"; transcript_id "cfmg_chr6_plus.22.25";
chr6 cfmg exon 70394887 70395043 . + . gene_id "cfmg_chr6_plus.23"; transcript_id "cfmg_chr6_plus.23.26";
chr6 cfmg exon 70395230 70395266 . + . gene_id "cfmg_chr6_plus.23"; transcript_id "cfmg_chr6_plus.23.26";
chr6 cfmg exon 70399215 70399421 . + . gene_id "cfmg_chr6_plus.23"; transcript_id "cfmg_chr6_plus.23.26";
chr6 cfmg exon 79420583 79420637 . + . gene_id "cfmg_chr6_plus.24"; transcript_id "cfmg_chr6_plus.24.27";
chr6 cfmg exon 79421038 79421302 . + . gene_id "cfmg_chr6_plus.24"; transcript_id "cfmg_chr6_plus.24.27";
chr6 cfmg exon 79631283 79631506 . + . gene_id "cfmg_chr6_plus.25"; transcript_id "cfmg_chr6_plus.25.28";
chr6 cfmg exon 79673614 79673799 . + . gene_id "cfmg_chr6_plus.25"; transcript_id "cfmg_chr6_plus.25.28";
chr6 cfmg exon 79696485 79696565 . + . gene_id "cfmg_chr6_plus.25"; transcript_id "cfmg_chr6_plus.25.28";
chr6 cfmg exon 79699498 79703660 . + . gene_id "cfmg_chr6_plus.25"; transcript_id "cfmg_chr6_plus.25.28";
chr6 cfmg exon 83512543 83512694 . + . gene_id "cfmg_chr6_plus.26"; transcript_id "cfmg_chr6_plus.26.29";
chr6 cfmg exon 83523422 83525698 . + . gene_id "cfmg_chr6_plus.26"; transcript_id "cfmg_chr6_plus.26.29";
chr6 cfmg exon 83512698 83512700 . + . gene_id "cfmg_chr6_plus.26"; transcript_id "cfmg_chr6_plus.26.30";
chr6 cfmg exon 83523428 83525698 . + . gene_id "cfmg_chr6_plus.26"; transcript_id "cfmg_chr6_plus.26.30";
chr6 cfmg exon 84033756 84033883 . + . gene_id "cfmg_chr6_plus.27"; transcript_id "cfmg_chr6_plus.27.31";
chr6 cfmg exon 84055312 84055445 . + . gene_id "cfmg_chr6_plus.27"; transcript_id "cfmg_chr6_plus.27.31";
chr6 cfmg exon 84062893 84062992 . + . gene_id "cfmg_chr6_plus.27"; transcript_id "cfmg_chr6_plus.27.31";
chr6 cfmg exon 84089091 84090893 . + . gene_id "cfmg_chr6_plus.27"; transcript_id "cfmg_chr6_plus.27.31";
chr6 cfmg exon 89146051 89146609 . + . gene_id "cfmg_chr6_plus.28"; transcript_id "cfmg_chr6_plus.28.32";
chr6 cfmg exon 89149265 89149413 . + . gene_id "cfmg_chr6_plus.28"; transcript_id "cfmg_chr6_plus.28.32";
chr6 cfmg exon 89153043 89153185 . + . gene_id "cfmg_chr6_plus.28"; transcript_id "cfmg_chr6_plus.28.32";
chr6 cfmg exon 89154748 89154902 . + . gene_id "cfmg_chr6_plus.28"; transcript_id "cfmg_chr6_plus.28.32";
chr6 cfmg exon 89158325 89158460 . + . gene_id "cfmg_chr6_plus.28"; transcript_id "cfmg_chr6_plus.28.32";
chr6 cfmg exon 89161783 89161890 . + . gene_id "cfmg_chr6_plus.28"; transcript_id "cfmg_chr6_plus.28.32";
chr6 cfmg exon 89162109 89165576 . + . gene_id "cfmg_chr6_plus.28"; transcript_id "cfmg_chr6_plus.28.32";
chr6 cfmg exon 109826535 109826696 . + . gene_id "cfmg_chr6_plus.29"; transcript_id "cfmg_chr6_plus.29.33";
chr6 cfmg exon 109828496 109828756 . + . gene_id "cfmg_chr6_plus.29"; transcript_id "cfmg_chr6_plus.29.33";
chr6 cfmg exon 111259348 111259727 . + . gene_id "cfmg_chr6_plus.30"; transcript_id "cfmg_chr6_plus.30.34";
chr6 cfmg exon 111262257 111262425 . + . gene_id "cfmg_chr6_plus.30"; transcript_id "cfmg_chr6_plus.30.34";
chr6 cfmg exon 111263830 111263946 . + . gene_id "cfmg_chr6_plus.30"; transcript_id "cfmg_chr6_plus.30.34";
chr6 cfmg exon 111265876 111271195 . + . gene_id "cfmg_chr6_plus.30"; transcript_id "cfmg_chr6_plus.30.34";
chr6 cfmg exon 113904146 113904744 . + . gene_id "cfmg_chr6_plus.31"; transcript_id "cfmg_chr6_plus.31.36";
chr6 cfmg exon 113916943 113917052 . + . gene_id "cfmg_chr6_plus.31"; transcript_id "cfmg_chr6_plus.31.36";
chr6 cfmg exon 113919107 113919457 . + . gene_id "cfmg_chr6_plus.31"; transcript_id "cfmg_chr6_plus.31.36";
chr6 cfmg exon 113920456 113921639 . + . gene_id "cfmg_chr6_plus.31"; transcript_id "cfmg_chr6_plus.31.36";
chr6 cfmg exon 113904146 113904744 . + . gene_id "cfmg_chr6_plus.31"; transcript_id "cfmg_chr6_plus.31.35";
chr6 cfmg exon 113916943 113917052 . + . gene_id "cfmg_chr6_plus.31"; transcript_id "cfmg_chr6_plus.31.35";
chr6 cfmg exon 113919107 113919458 . + . gene_id "cfmg_chr6_plus.31"; transcript_id "cfmg_chr6_plus.31.35";
chr6 cfmg exon 113920457 113921639 . + . gene_id "cfmg_chr6_plus.31"; transcript_id "cfmg_chr6_plus.31.35";
chr6 cfmg exon 117675503 117676085 . + . gene_id "cfmg_chr6_plus.32"; transcript_id "cfmg_chr6_plus.32.37";
chr6 cfmg exon 117693042 117693167 . + . gene_id "cfmg_chr6_plus.32"; transcript_id "cfmg_chr6_plus.32.37";
chr6 cfmg exon 117694031 117694180 . + . gene_id "cfmg_chr6_plus.32"; transcript_id "cfmg_chr6_plus.32.37";
chr6 cfmg exon 117703605 117703704 . + . gene_id "cfmg_chr6_plus.32"; transcript_id "cfmg_chr6_plus.32.37";
chr6 cfmg exon 117706925 117710640 . + . gene_id "cfmg_chr6_plus.32"; transcript_id "cfmg_chr6_plus.32.37";
chr6 cfmg exon 121435692 121435832 . + . gene_id "cfmg_chr6_plus.33"; transcript_id "cfmg_chr6_plus.33.38";
chr6 cfmg exon 121446832 121449760 . + . gene_id "cfmg_chr6_plus.33"; transcript_id "cfmg_chr6_plus.33.38";
chr6 cfmg exon 130827407 130827651 . + . gene_id "cfmg_chr6_plus.34"; transcript_id "cfmg_chr6_plus.34.39";
chr6 cfmg exon 130834870 130837135 . + . gene_id "cfmg_chr6_plus.34"; transcript_id "cfmg_chr6_plus.34.39";
chr6 cfmg exon 144150526 144150703 . + . gene_id "cfmg_chr6_plus.35"; transcript_id "cfmg_chr6_plus.35.40";
chr6 cfmg exon 144186623 144188368 . + . gene_id "cfmg_chr6_plus.35"; transcript_id "cfmg_chr6_plus.35.40";
chr6 cfmg exon 146543694 146544121 . + . gene_id "cfmg_chr6_plus.36"; transcript_id "cfmg_chr6_plus.36.41";
chr6 cfmg exon 146549464 146549741 . + . gene_id "cfmg_chr6_plus.36"; transcript_id "cfmg_chr6_plus.36.41";
chr6 cfmg exon 146554456 146554975 . + . gene_id "cfmg_chr6_plus.36"; transcript_id "cfmg_chr6_plus.36.41";
chr6 cfmg exon 149942000 149942157 . + . gene_id "cfmg_chr6_plus.37"; transcript_id "cfmg_chr6_plus.37.42";
chr6 cfmg exon 149945309 149945572 . + . gene_id "cfmg_chr6_plus.37"; transcript_id "cfmg_chr6_plus.37.42";
chr6 cfmg exon 149946372 149946653 . + . gene_id "cfmg_chr6_plus.37"; transcript_id "cfmg_chr6_plus.37.42";
chr6 cfmg exon 149947320 149947451 . + . gene_id "cfmg_chr6_plus.37"; transcript_id "cfmg_chr6_plus.37.42";
chr6 cfmg exon 149948723 149949234 . + . gene_id "cfmg_chr6_plus.37"; transcript_id "cfmg_chr6_plus.37.42";
chr6 cfmg exon 158168352 158168395 . + . gene_id "cfmg_chr6_plus.38"; transcript_id "cfmg_chr6_plus.38.43";
chr6 cfmg exon 158170470 158170538 . + . gene_id "cfmg_chr6_plus.38"; transcript_id "cfmg_chr6_plus.38.43";
chr6 cfmg exon 158191977 158199344 . + . gene_id "cfmg_chr6_plus.38"; transcript_id "cfmg_chr6_plus.38.43";
chr6 cfmg exon 159107808 159108153 . + . gene_id "cfmg_chr6_plus.39"; transcript_id "cfmg_chr6_plus.39.44";
chr6 cfmg exon 159109315 159109439 . + . gene_id "cfmg_chr6_plus.39"; transcript_id "cfmg_chr6_plus.39.44";
chr6 cfmg exon 159115432 159115508 . + . gene_id "cfmg_chr6_plus.39"; transcript_id "cfmg_chr6_plus.39.44";
chr6 cfmg exon 159115774 159116052 . + . gene_id "cfmg_chr6_plus.39"; transcript_id "cfmg_chr6_plus.39.44";
chr6 cfmg exon 160348280 160348848 . + . gene_id "cfmg_chr6_plus.40"; transcript_id "cfmg_chr6_plus.40.45";
chr6 cfmg exon 160397979 160398082 . + . gene_id "cfmg_chr6_plus.40"; transcript_id "cfmg_chr6_plus.40.45";
chr6 cfmg exon 160407041 160407195 . + . gene_id "cfmg_chr6_plus.40"; transcript_id "cfmg_chr6_plus.40.45";
chr6 cfmg exon 160408753 160408921 . + . gene_id "cfmg_chr6_plus.40"; transcript_id "cfmg_chr6_plus.40.45";
chr6 cfmg exon 160410729 160410846 . + . gene_id "cfmg_chr6_plus.40"; transcript_id "cfmg_chr6_plus.40.45";
chr6 cfmg exon 160436780 160436877 . + . gene_id "cfmg_chr6_plus.40"; transcript_id "cfmg_chr6_plus.40.45";
chr6 cfmg exon 160436997 160437211 . + . gene_id "cfmg_chr6_plus.40"; transcript_id "cfmg_chr6_plus.40.45";
chr6 cfmg exon 160442761 160442869 . + . gene_id "cfmg_chr6_plus.40"; transcript_id "cfmg_chr6_plus.40.45";
chr6 cfmg exon 160443630 160443742 . + . gene_id "cfmg_chr6_plus.40"; transcript_id "cfmg_chr6_plus.40.45";
chr6 cfmg exon 160447719 160447818 . + . gene_id "cfmg_chr6_plus.40"; transcript_id "cfmg_chr6_plus.40.45";
chr6 cfmg exon 160450996 160452581 . + . gene_id "cfmg_chr6_plus.40"; transcript_id "cfmg_chr6_plus.40.45";
chr6 cfmg exon 160348338 160348853 . + . gene_id "cfmg_chr6_plus.40"; transcript_id "cfmg_chr6_plus.40.46";
chr6 cfmg exon 160397984 160398082 . + . gene_id "cfmg_chr6_plus.40"; transcript_id "cfmg_chr6_plus.40.46";
chr6 cfmg exon 160407041 160407195 . + . gene_id "cfmg_chr6_plus.40"; transcript_id "cfmg_chr6_plus.40.46";
chr6 cfmg exon 160408753 160408921 . + . gene_id "cfmg_chr6_plus.40"; transcript_id "cfmg_chr6_plus.40.46";
chr6 cfmg exon 160410729 160410846 . + . gene_id "cfmg_chr6_plus.40"; transcript_id "cfmg_chr6_plus.40.46";
chr6 cfmg exon 160436780 160436877 . + . gene_id "cfmg_chr6_plus.40"; transcript_id "cfmg_chr6_plus.40.46";
chr6 cfmg exon 160436997 160437211 . + . gene_id "cfmg_chr6_plus.40"; transcript_id "cfmg_chr6_plus.40.46";
chr6 cfmg exon 160442761 160442869 . + . gene_id "cfmg_chr6_plus.40"; transcript_id "cfmg_chr6_plus.40.46";
chr6 cfmg exon 160443630 160443742 . + . gene_id "cfmg_chr6_plus.40"; transcript_id "cfmg_chr6_plus.40.46";
chr6 cfmg exon 160447719 160447818 . + . gene_id "cfmg_chr6_plus.40"; transcript_id "cfmg_chr6_plus.40.46";
chr6 cfmg exon 160450996 160452581 . + . gene_id "cfmg_chr6_plus.40"; transcript_id "cfmg_chr6_plus.40.46";
chr6 cfmg exon 167241891 167241965 . + . gene_id "cfmg_chr6_plus.41"; transcript_id "cfmg_chr6_plus.41.47";
chr6 cfmg exon 167245787 167245916 . + . gene_id "cfmg_chr6_plus.41"; transcript_id "cfmg_chr6_plus.41.47";
chr7 cfmg exon 520394 523316 . + . gene_id "cfmg_chr7_plus.1"; transcript_id "cfmg_chr7_plus.1.1";
chr7 cfmg exon 524080 524280 . + . gene_id "cfmg_chr7_plus.1"; transcript_id "cfmg_chr7_plus.1.1";
chr7 cfmg exon 524854 525232 . + . gene_id "cfmg_chr7_plus.1"; transcript_id "cfmg_chr7_plus.1.1";
chr7 cfmg exon 1459938 1460267 . + . gene_id "cfmg_chr7_plus.2"; transcript_id "cfmg_chr7_plus.2.2";
chr7 cfmg exon 1463842 1464007 . + . gene_id "cfmg_chr7_plus.2"; transcript_id "cfmg_chr7_plus.2.2";
chr7 cfmg exon 6615714 6616186 . + . gene_id "cfmg_chr7_plus.3"; transcript_id "cfmg_chr7_plus.3.3";
chr7 cfmg exon 6617190 6617307 . + . gene_id "cfmg_chr7_plus.3"; transcript_id "cfmg_chr7_plus.3.3";
chr7 cfmg exon 6621122 6624326 . + . gene_id "cfmg_chr7_plus.3"; transcript_id "cfmg_chr7_plus.3.3";
chr7 cfmg exon 45969745 45969809 . + . gene_id "cfmg_chr7_plus.4"; transcript_id "cfmg_chr7_plus.4.4";
chr7 cfmg exon 45978350 45978468 . + . gene_id "cfmg_chr7_plus.4"; transcript_id "cfmg_chr7_plus.4.4";
chr7 cfmg exon 45979909 45980163 . + . gene_id "cfmg_chr7_plus.4"; transcript_id "cfmg_chr7_plus.4.4";
chr7 cfmg exon 45978353 45978469 . + . gene_id "cfmg_chr7_plus.4"; transcript_id "cfmg_chr7_plus.4.5";
chr7 cfmg exon 45979910 45980163 . + . gene_id "cfmg_chr7_plus.4"; transcript_id "cfmg_chr7_plus.4.5";
chr7 cfmg exon 55573194 55573317 . + . gene_id "cfmg_chr7_plus.5"; transcript_id "cfmg_chr7_plus.5.6";
chr7 cfmg exon 55587771 55587934 . + . gene_id "cfmg_chr7_plus.5"; transcript_id "cfmg_chr7_plus.5.6";
chr7 cfmg exon 55588096 55588321 . + . gene_id "cfmg_chr7_plus.5"; transcript_id "cfmg_chr7_plus.5.6";
chr7 cfmg exon 65075101 65075101 . + . gene_id "cfmg_chr7_plus.6"; transcript_id "cfmg_chr7_plus.6.7";
chr7 cfmg exon 65078628 65078780 . + . gene_id "cfmg_chr7_plus.6"; transcript_id "cfmg_chr7_plus.6.7";
chr7 cfmg exon 67335976 67336112 . + . gene_id "cfmg_chr7_plus.7"; transcript_id "cfmg_chr7_plus.7.8";
chr7 cfmg exon 67339450 67339573 . + . gene_id "cfmg_chr7_plus.7"; transcript_id "cfmg_chr7_plus.7.8";
chr7 cfmg exon 67339797 67340022 . + . gene_id "cfmg_chr7_plus.7"; transcript_id "cfmg_chr7_plus.7.8";
chr7 cfmg exon 73735040 73735090 . + . gene_id "cfmg_chr7_plus.8"; transcript_id "cfmg_chr7_plus.8.9";
chr7 cfmg exon 73735241 73735499 . + . gene_id "cfmg_chr7_plus.8"; transcript_id "cfmg_chr7_plus.8.9";
chr7 cfmg exon 73735728 73735848 . + . gene_id "cfmg_chr7_plus.8"; transcript_id "cfmg_chr7_plus.8.9";
chr7 cfmg exon 73735930 73736037 . + . gene_id "cfmg_chr7_plus.8"; transcript_id "cfmg_chr7_plus.8.9";
chr7 cfmg exon 73735051 73735090 . + . gene_id "cfmg_chr7_plus.8"; transcript_id "cfmg_chr7_plus.8.10";
chr7 cfmg exon 73735241 73735499 . + . gene_id "cfmg_chr7_plus.8"; transcript_id "cfmg_chr7_plus.8.10";
chr7 cfmg exon 73735728 73735849 . + . gene_id "cfmg_chr7_plus.8"; transcript_id "cfmg_chr7_plus.8.10";
chr7 cfmg exon 73735931 73736037 . + . gene_id "cfmg_chr7_plus.8"; transcript_id "cfmg_chr7_plus.8.10";
chr7 cfmg exon 73735094 73735095 . + . gene_id "cfmg_chr7_plus.8"; transcript_id "cfmg_chr7_plus.8.11";
chr7 cfmg exon 73735246 73735499 . + . gene_id "cfmg_chr7_plus.8"; transcript_id "cfmg_chr7_plus.8.11";
chr7 cfmg exon 73735728 73735848 . + . gene_id "cfmg_chr7_plus.8"; transcript_id "cfmg_chr7_plus.8.11";
chr7 cfmg exon 73735930 73736037 . + . gene_id "cfmg_chr7_plus.8"; transcript_id "cfmg_chr7_plus.8.11";
chr7 cfmg exon 93921699 93922233 . + . gene_id "cfmg_chr7_plus.9"; transcript_id "cfmg_chr7_plus.9.12";
chr7 cfmg exon 93926091 93926512 . + . gene_id "cfmg_chr7_plus.9"; transcript_id "cfmg_chr7_plus.9.12";
chr7 cfmg exon 93927530 93928601 . + . gene_id "cfmg_chr7_plus.10"; transcript_id "cfmg_chr7_plus.10.13";
chr7 cfmg exon 95471857 95472062 . + . gene_id "cfmg_chr7_plus.11"; transcript_id "cfmg_chr7_plus.11.14";
chr7 cfmg exon 95473693 95473997 . + . gene_id "cfmg_chr7_plus.11"; transcript_id "cfmg_chr7_plus.11.14";
chr7 cfmg exon 100720800 100720993 . + . gene_id "cfmg_chr7_plus.12"; transcript_id "cfmg_chr7_plus.12.15";
chr7 cfmg exon 100721558 100721703 . + . gene_id "cfmg_chr7_plus.12"; transcript_id "cfmg_chr7_plus.12.15";
chr7 cfmg exon 100721962 100722048 . + . gene_id "cfmg_chr7_plus.12"; transcript_id "cfmg_chr7_plus.12.15";
chr7 cfmg exon 100722664 100722843 . + . gene_id "cfmg_chr7_plus.12"; transcript_id "cfmg_chr7_plus.12.15";
chr7 cfmg exon 100722978 100723710 . + . gene_id "cfmg_chr7_plus.12"; transcript_id "cfmg_chr7_plus.12.15";
chr7 cfmg exon 100721002 100721002 . + . gene_id "cfmg_chr7_plus.12"; transcript_id "cfmg_chr7_plus.12.16";
chr7 cfmg exon 100721567 100721703 . + . gene_id "cfmg_chr7_plus.12"; transcript_id "cfmg_chr7_plus.12.16";
chr7 cfmg exon 100721962 100722048 . + . gene_id "cfmg_chr7_plus.12"; transcript_id "cfmg_chr7_plus.12.16";
chr7 cfmg exon 100722664 100722843 . + . gene_id "cfmg_chr7_plus.12"; transcript_id "cfmg_chr7_plus.12.16";
chr7 cfmg exon 100722978 100723710 . + . gene_id "cfmg_chr7_plus.12"; transcript_id "cfmg_chr7_plus.12.16";
chr7 cfmg exon 101127089 101127244 . + . gene_id "cfmg_chr7_plus.13"; transcript_id "cfmg_chr7_plus.13.17";
chr7 cfmg exon 101128393 101128664 . + . gene_id "cfmg_chr7_plus.13"; transcript_id "cfmg_chr7_plus.13.17";
chr7 cfmg exon 101130421 101130654 . + . gene_id "cfmg_chr7_plus.13"; transcript_id "cfmg_chr7_plus.13.17";
chr7 cfmg exon 101131875 101132069 . + . gene_id "cfmg_chr7_plus.13"; transcript_id "cfmg_chr7_plus.13.17";
chr7 cfmg exon 101133695 101133893 . + . gene_id "cfmg_chr7_plus.13"; transcript_id "cfmg_chr7_plus.13.17";
chr7 cfmg exon 101135494 101135594 . + . gene_id "cfmg_chr7_plus.13"; transcript_id "cfmg_chr7_plus.13.17";
chr7 cfmg exon 101135715 101135801 . + . gene_id "cfmg_chr7_plus.13"; transcript_id "cfmg_chr7_plus.13.17";
chr7 cfmg exon 101137001 101137084 . + . gene_id "cfmg_chr7_plus.13"; transcript_id "cfmg_chr7_plus.13.17";
chr7 cfmg exon 101137405 101139263 . + . gene_id "cfmg_chr7_plus.13"; transcript_id "cfmg_chr7_plus.13.17";
chr7 cfmg exon 102337320 102337402 . + . gene_id "cfmg_chr7_plus.14"; transcript_id "cfmg_chr7_plus.14.18";
chr7 cfmg exon 102337580 102337682 . + . gene_id "cfmg_chr7_plus.14"; transcript_id "cfmg_chr7_plus.14.18";
chr7 cfmg exon 102338932 102339115 . + . gene_id "cfmg_chr7_plus.14"; transcript_id "cfmg_chr7_plus.14.18";
chr7 cfmg exon 102337322 102337402 . + . gene_id "cfmg_chr7_plus.14"; transcript_id "cfmg_chr7_plus.14.19";
chr7 cfmg exon 102337580 102337683 . + . gene_id "cfmg_chr7_plus.14"; transcript_id "cfmg_chr7_plus.14.19";
chr7 cfmg exon 102338933 102339115 . + . gene_id "cfmg_chr7_plus.14"; transcript_id "cfmg_chr7_plus.14.19";
chr7 cfmg exon 142563748 142563847 . + . gene_id "cfmg_chr7_plus.15"; transcript_id "cfmg_chr7_plus.15.20";
chr7 cfmg exon 142563948 142564238 . + . gene_id "cfmg_chr7_plus.15"; transcript_id "cfmg_chr7_plus.15.20";
chr7 cfmg exon 142626655 142626757 . + . gene_id "cfmg_chr7_plus.16"; transcript_id "cfmg_chr7_plus.16.22";
chr7 cfmg exon 142627096 142627364 . + . gene_id "cfmg_chr7_plus.16"; transcript_id "cfmg_chr7_plus.16.22";
chr7 cfmg exon 142626655 142626759 . + . gene_id "cfmg_chr7_plus.16"; transcript_id "cfmg_chr7_plus.16.21";
chr7 cfmg exon 142627098 142627364 . + . gene_id "cfmg_chr7_plus.16"; transcript_id "cfmg_chr7_plus.16.21";
chr7 cfmg exon 142715438 142715439 . + . gene_id "cfmg_chr7_plus.17"; transcript_id "cfmg_chr7_plus.17.23";
chr7 cfmg exon 142715569 142715851 . + . gene_id "cfmg_chr7_plus.17"; transcript_id "cfmg_chr7_plus.17.23";
chr7 cfmg exon 142801041 142801427 . + . gene_id "cfmg_chr7_plus.18"; transcript_id "cfmg_chr7_plus.18.24";
chr7 cfmg exon 142801944 142801961 . + . gene_id "cfmg_chr7_plus.18"; transcript_id "cfmg_chr7_plus.18.24";
chr7 cfmg exon 142802105 142802211 . + . gene_id "cfmg_chr7_plus.18"; transcript_id "cfmg_chr7_plus.18.24";
chr7 cfmg exon 142802503 142802748 . + . gene_id "cfmg_chr7_plus.18"; transcript_id "cfmg_chr7_plus.18.24";
chr7 cfmg exon 143132095 143132211 . + . gene_id "cfmg_chr7_plus.19"; transcript_id "cfmg_chr7_plus.19.25";
chr7 cfmg exon 143135194 143135299 . + . gene_id "cfmg_chr7_plus.19"; transcript_id "cfmg_chr7_plus.19.25";
chr7 cfmg exon 143139075 143139189 . + . gene_id "cfmg_chr7_plus.19"; transcript_id "cfmg_chr7_plus.19.25";
chr7 cfmg exon 143139518 143139745 . + . gene_id "cfmg_chr7_plus.19"; transcript_id "cfmg_chr7_plus.19.25";
chr7 cfmg exon 150450631 150451175 . + . gene_id "cfmg_chr7_plus.20"; transcript_id "cfmg_chr7_plus.20.26";
chr7 cfmg exon 150466671 150467334 . + . gene_id "cfmg_chr7_plus.20"; transcript_id "cfmg_chr7_plus.20.26";
chr7 cfmg exon 150470829 150470874 . + . gene_id "cfmg_chr7_plus.20"; transcript_id "cfmg_chr7_plus.20.26";
chr7 cfmg exon 150474012 150474638 . + . gene_id "cfmg_chr7_plus.20"; transcript_id "cfmg_chr7_plus.20.26";
chr7 cfmg exon 150477092 150479392 . + . gene_id "cfmg_chr7_plus.20"; transcript_id "cfmg_chr7_plus.20.26";
chr7 cfmg exon 150450656 150451183 . + . gene_id "cfmg_chr7_plus.20"; transcript_id "cfmg_chr7_plus.20.27";
chr7 cfmg exon 150466679 150467334 . + . gene_id "cfmg_chr7_plus.20"; transcript_id "cfmg_chr7_plus.20.27";
chr7 cfmg exon 150470829 150470874 . + . gene_id "cfmg_chr7_plus.20"; transcript_id "cfmg_chr7_plus.20.27";
chr7 cfmg exon 150474012 150474638 . + . gene_id "cfmg_chr7_plus.20"; transcript_id "cfmg_chr7_plus.20.27";
chr7 cfmg exon 150477092 150479392 . + . gene_id "cfmg_chr7_plus.20"; transcript_id "cfmg_chr7_plus.20.27";
chr7 cfmg exon 150450757 150451176 . + . gene_id "cfmg_chr7_plus.20"; transcript_id "cfmg_chr7_plus.20.28";
chr7 cfmg exon 150466672 150467334 . + . gene_id "cfmg_chr7_plus.20"; transcript_id "cfmg_chr7_plus.20.28";
chr7 cfmg exon 150470829 150470874 . + . gene_id "cfmg_chr7_plus.20"; transcript_id "cfmg_chr7_plus.20.28";
chr7 cfmg exon 150474012 150474638 . + . gene_id "cfmg_chr7_plus.20"; transcript_id "cfmg_chr7_plus.20.28";
chr7 cfmg exon 150477092 150479392 . + . gene_id "cfmg_chr7_plus.20"; transcript_id "cfmg_chr7_plus.20.28";
chr7 cfmg exon 150451184 150451185 . + . gene_id "cfmg_chr7_plus.20"; transcript_id "cfmg_chr7_plus.20.30";
chr7 cfmg exon 150466681 150467334 . + . gene_id "cfmg_chr7_plus.20"; transcript_id "cfmg_chr7_plus.20.30";
chr7 cfmg exon 150470829 150470874 . + . gene_id "cfmg_chr7_plus.20"; transcript_id "cfmg_chr7_plus.20.30";
chr7 cfmg exon 150474012 150474638 . + . gene_id "cfmg_chr7_plus.20"; transcript_id "cfmg_chr7_plus.20.30";
chr7 cfmg exon 150477092 150479392 . + . gene_id "cfmg_chr7_plus.20"; transcript_id "cfmg_chr7_plus.20.30";
chr7 cfmg exon 150451184 150451184 . + . gene_id "cfmg_chr7_plus.20"; transcript_id "cfmg_chr7_plus.20.29";
chr7 cfmg exon 150466680 150467334 . + . gene_id "cfmg_chr7_plus.20"; transcript_id "cfmg_chr7_plus.20.29";
chr7 cfmg exon 150470829 150470874 . + . gene_id "cfmg_chr7_plus.20"; transcript_id "cfmg_chr7_plus.20.29";
chr7 cfmg exon 150474012 150474638 . + . gene_id "cfmg_chr7_plus.20"; transcript_id "cfmg_chr7_plus.20.29";
chr7 cfmg exon 150477092 150479392 . + . gene_id "cfmg_chr7_plus.20"; transcript_id "cfmg_chr7_plus.20.29";
chr7 cfmg exon 150514834 150514945 . + . gene_id "cfmg_chr7_plus.21"; transcript_id "cfmg_chr7_plus.21.31";
chr7 cfmg exon 150519934 150520987 . + . gene_id "cfmg_chr7_plus.21"; transcript_id "cfmg_chr7_plus.21.31";
chr7 cfmg exon 155458148 155459062 . + . gene_id "cfmg_chr7_plus.22"; transcript_id "cfmg_chr7_plus.22.32";
chr7 cfmg exon 155462371 155464830 . + . gene_id "cfmg_chr7_plus.22"; transcript_id "cfmg_chr7_plus.22.32";
chr7 cfmg exon 155962645 155963279 . + . gene_id "cfmg_chr7_plus.23"; transcript_id "cfmg_chr7_plus.23.35";
chr7 cfmg exon 155964456 155966343 . + . gene_id "cfmg_chr7_plus.23"; transcript_id "cfmg_chr7_plus.23.35";
chr7 cfmg exon 155962645 155963282 . + . gene_id "cfmg_chr7_plus.23"; transcript_id "cfmg_chr7_plus.23.37";