-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathFORKseq_TM-CNN_read_coord.inits
4965 lines (4965 loc) · 918 KB
/
FORKseq_TM-CNN_read_coord.inits
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
chrom initiation fork1_start fork1_end fork2_start fork2_end read_name read_start read_end strand fasta
chr12 230337 213392 218052 242622 246806 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4629_ch_150_strand.fast5_template_deepnano 207853 256324 - BC_CNV_tombo-MyOv_32.fa
chr11 15801 9639 14531 17071 25865 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5408_ch_52_strand.fast5_template_deepnano 3 25871 - BC_CNV_tombo-MyOv_32.fa
chr13 689306 683867 687004 691608 702635 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7111_ch_249_strand.fast5_template_deepnano 682422 715757 + BC_CNV_tombo-MyOv_32.fa
chr12 947893 941269 945934 949852 965116 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4881_ch_245_strand.fast5_template_deepnano 941200 965147 - BC_CNV_tombo-MyOv_32.fa
chr4 1461212 1455532 1457307 1465117 1466916 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_16633_ch_372_strand.fast5_template_deepnano 1455462 1478940 - BC_CNV_tombo-MyOv_32.fa
chr7 318405 310196 314117 322694 328150 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4048_ch_289_strand.fast5_template_deepnano 302636 328270 + BC_CNV_tombo-MyOv_32.fa
chr15 227803 223326 227154 228452 230625 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5325_ch_102_strand.fast5_template_deepnano 223305 249900 - BC_CNV_tombo-MyOv_32.fa
chr4 462516 454192 459200 465833 470969 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10783_ch_360_strand.fast5_template_deepnano 447176 482105 - BC_CNV_tombo-MyOv_32.fa
chr4 1485128 1479015 1481695 1488561 1491455 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4252_ch_252_strand.fast5_template_deepnano 1463822 1504313 - BC_CNV_tombo-MyOv_32.fa
chr7 1000199 995590 997707 1002692 1004623 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4443_ch_366_strand.fast5_template_deepnano 991099 1004715 - BC_CNV_tombo-MyOv_32.fa
chr12 687814 681087 685752 689876 691683 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7148_ch_249_strand.fast5_template_deepnano 681073 704071 + BC_CNV_tombo-MyOv_32.fa
chr4 464315 457776 461299 467331 472446 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_20374_ch_275_strand.fast5_template_deepnano 457753 492024 - BC_CNV_tombo-MyOv_32.fa
chr7 766979 760455 764284 769674 774096 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4582_ch_373_strand.fast5_template_deepnano 755144 791857 - BC_CNV_tombo-MyOv_32.fa
chr7 778469 774096 775754 781185 785039 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4582_ch_373_strand.fast5_template_deepnano 755144 791857 - BC_CNV_tombo-MyOv_32.fa
chr13 433014 424892 428092 437936 447862 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_14557_ch_468_strand.fast5_template_deepnano 400168 447903 + BC_CNV_tombo-MyOv_32.fa
chr12 139748 132019 138426 141070 144169 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7151_ch_282_strand.fast5_template_deepnano 119895 161208 - BC_CNV_tombo-MyOv_32.fa
chr14 636960 627705 629831 644090 647762 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4953_ch_148_strand.fast5_template_deepnano 623894 647797 - BC_CNV_tombo-MyOv_32.fa
chr12 745315 731465 735011 755620 760783 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7168_ch_282_strand.fast5_template_deepnano 723876 760796 - BC_CNV_tombo-MyOv_32.fa
chr2 326224 319544 322783 329666 331723 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3706_ch_492_strand.fast5_template_deepnano 308966 352050 + BC_CNV_tombo-MyOv_32.fa
chr15 976879 964893 968874 984884 994872 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4746_ch_331_strand.fast5_template_deepnano 955446 994929 - BC_CNV_tombo-MyOv_32.fa
chr5 59090 42786 48129 70051 78895 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5128_ch_274_strand.fast5_template_deepnano 42774 83282 + BC_CNV_tombo-MyOv_32.fa
chr2 612138 605126 610795 613482 617869 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12583_ch_247_strand.fast5_template_deepnano 593973 643273 + BC_CNV_tombo-MyOv_32.fa
chr2 633031 624539 630412 635650 643202 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12583_ch_247_strand.fast5_template_deepnano 593973 643273 + BC_CNV_tombo-MyOv_32.fa
chr8 246016 231039 234274 257759 266533 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4489_ch_336_strand.fast5_template_deepnano 224412 266654 + BC_CNV_tombo-MyOv_32.fa
chr4 1163218 1128700 1140507 1185929 1189654 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3813_ch_418_strand.fast5_template_deepnano 1117723 1191812 + BC_CNV_tombo-MyOv_32.fa
chr15 226332 214676 220574 232091 236089 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_39252_ch_32_strand.fast5_template_deepnano 205404 245939 - BC_CNV_tombo-MyOv_56.fa
chr2 198746 176808 185637 211855 221013 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_24092_ch_425_strand.fast5_template_deepnano 168746 221018 - BC_CNV_tombo-MyOv_56.fa
chr15 1013625 1006953 1011981 1015270 1020476 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_11793_ch_483_strand.fast5_template_deepnano 1003783 1043833 + BC_CNV_tombo-MyOv_56.fa
chr15 1024140 1015268 1020399 1027881 1036085 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_11793_ch_483_strand.fast5_template_deepnano 1003783 1043833 + BC_CNV_tombo-MyOv_56.fa
chr15 566942 561616 565216 568669 574911 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_40183_ch_436_strand.fast5_template_deepnano 551522 575003 + BC_CNV_tombo-MyOv_56.fa
chr8 535877 531406 534481 537274 539810 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_44136_ch_316_strand.fast5_template_deepnano 505031 545227 + BC_CNV_tombo-MyOv_56.fa
chr12 744955 735633 737719 752192 754233 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_38544_ch_7_strand.fast5_template_deepnano 727470 754285 + BC_CNV_tombo-MyOv_56.fa
chr2 325672 320374 322993 328352 330274 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_22867_ch_225_strand.fast5_template_deepnano 287169 341568 + BC_CNV_tombo-MyOv_56.fa
chr16 289127 273046 276172 302083 304953 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_53032_ch_369_strand.fast5_template_deepnano 267959 314408 - BC_CNV_tombo-MyOv_56.fa
chr12 907007 901944 904192 909822 912795 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_37203_ch_180_strand.fast5_template_deepnano 890236 933668 + BC_CNV_tombo-MyOv_56.fa
chr5 498264 485622 489371 507158 511496 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_42164_ch_363_strand.fast5_template_deepnano 485532 511512 - BC_CNV_tombo-MyOv_56.fa
chr4 1276049 1271698 1274565 1277533 1279173 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_23921_ch_30_strand.fast5_template_deepnano 1267937 1301680 - BC_CNV_tombo-MyOv_56.fa
chr12 541383 528653 533884 548882 552559 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_46587_ch_287_strand.fast5_template_deepnano 528630 563901 - BC_CNV_tombo-MyOv_56.fa
chr9 30619 21788 27840 33398 36576 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_29272_ch_281_strand.fast5_template_deepnano 142 66311 + BC_CNV_tombo-MyOv_56.fa
chr6 33188 27426 30304 36072 38587 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_41477_ch_482_strand.fast5_template_deepnano 27333 41589 - BC_CNV_tombo-MyOv_56.fa
chr10 229104 217496 220893 237315 240357 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_16766_ch_246_strand.fast5_template_deepnano 204643 246751 + BC_CNV_tombo-MyOv_56.fa
chr10 375396 361144 366318 384475 386506 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_24325_ch_30_strand.fast5_template_deepnano 355017 393994 - BC_CNV_tombo-MyOv_56.fa
chr1 29320 22760 25201 33440 38890 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_541_ch_42_strand.fast5_template_deepnano 13088 38955 - BC_CNV_tombo-MyOv_7.fa
chr13 610986 605851 610157 611815 614287 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_538_ch_298_strand.fast5_template_deepnano 599002 614294 - BC_CNV_tombo-MyOv_7.fa
chr7 941977 933005 935293 948662 952400 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_542_ch_326_strand.fast5_template_deepnano 912724 975379 - BC_CNV_tombo-MyOv_7.fa
chr7 887641 866525 872037 903245 908810 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_480_ch_13_strand.fast5_template_deepnano 866335 937943 - BC_CNV_tombo-MyOv_7.fa
chr15 84425 60024 64330 104521 108993 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_502_ch_307_strand.fast5_template_deepnano 53909 119177 + BC_CNV_tombo-MyOv_7.fa
chr16 90551 81083 87739 93364 97802 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_553_ch_338_strand.fast5_template_deepnano 55442 112652 - BC_CNV_tombo-MyOv_7.fa
chr16 73298 62087 70766 75831 79356 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_39874_ch_398_strand.fast5_template_deepnano 43053 87415 + BC_CNV_tombo-MyOv_57.fa
chr4 1240338 1229374 1239056 1241620 1249587 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_41787_ch_482_strand.fast5_template_deepnano 1212628 1249594 - BC_CNV_tombo-MyOv_57.fa
chr4 1057795 1042166 1056206 1059385 1069974 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_35598_ch_71_strand.fast5_template_deepnano 1042155 1070072 + BC_CNV_tombo-MyOv_57.fa
chr11 98807 78649 94759 102856 105609 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_34778_ch_48_strand.fast5_template_deepnano 60080 105625 - BC_CNV_tombo-MyOv_57.fa
chr15 874294 868893 873334 875255 878339 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_110058_ch_464_strand.fast5_template_deepnano 858789 878341 - BC_CNV_tombo-MyOv_57.fa
chr15 980067 970862 975786 984349 989540 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_42765_ch_363_strand.fast5_template_deepnano 966134 989576 - BC_CNV_tombo-MyOv_57.fa
chr2 198366 184877 192322 204411 210470 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_47153_ch_287_strand.fast5_template_deepnano 169433 210565 + BC_CNV_tombo-MyOv_57.fa
chr9 74123 67707 70828 77418 79437 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_21446_ch_209_strand.fast5_template_deepnano 67700 79439 - BC_CNV_tombo-MyOv_57.fa
chr8 297083 286522 291425 302742 306111 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_29042_ch_502_strand.fast5_template_deepnano 266185 306112 - BC_CNV_tombo-MyOv_57.fa
chr16 162702 141606 161737 163668 170713 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_11886_ch_440_strand.fast5_template_deepnano 139567 171192 + BC_CNV_tombo-MyOv_57.fa
chr8 447659 444357 446175 449144 453861 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_47253_ch_287_strand.fast5_template_deepnano 431586 461607 - BC_CNV_tombo-MyOv_57.fa
chr8 361052 347478 353692 368412 370738 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_36638_ch_144_strand.fast5_template_deepnano 336381 374084 - BC_CNV_tombo-MyOv_57.fa
chr16 72897 60027 63477 82317 86704 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_29258_ch_502_strand.fast5_template_deepnano 60013 103599 + BC_CNV_tombo-MyOv_57.fa
chr4 943571 937551 943016 944126 945807 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_29262_ch_502_strand.fast5_template_deepnano 921404 952584 + BC_CNV_tombo-MyOv_57.fa
chr7 421467 413033 417141 425793 431327 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_291227_ch_69_strand.fast5_template_deepnano 412965 440931 - BC_CNV_tombo-MyOv_57.fa
chr2 335386 332692 334426 336347 343189 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_42857_ch_214_strand.fast5_template_deepnano 316560 357429 - BC_CNV_tombo-MyOv_57.fa
chr15 516588 503608 510915 522262 533417 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_54268_ch_84_strand.fast5_template_deepnano 503580 566753 - BC_CNV_tombo-MyOv_57.fa
chr15 337318 325807 328131 346506 350027 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_45377_ch_107_strand.fast5_template_deepnano 325685 359377 - BC_CNV_tombo-MyOv_57.fa
chr4 1303122 1292403 1297692 1308552 1311821 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_30094_ch_431_strand.fast5_template_deepnano 1273116 1318128 + BC_CNV_tombo-MyOv_57.fa
chr12 740466 713655 723895 757038 759991 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_41767_ch_153_strand.fast5_template_deepnano 713652 798526 + BC_CNV_tombo-MyOv_57.fa
chr12 411834 392210 403746 419923 423707 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_110653_ch_464_strand.fast5_template_deepnano 392153 441058 - BC_CNV_tombo-MyOv_57.fa
chr16 552210 547980 550920 553500 558286 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_26007_ch_307_strand.fast5_template_deepnano 544891 599754 + BC_CNV_tombo-MyOv_57.fa
chr12 947870 945238 946727 949014 952639 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5591_ch_105_strand.fast5_template_deepnano 918468 952652 - BC_CNV_tombo-MyOv_24.fa
chr5 315202 298266 302144 328260 334636 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3270_ch_155_strand.fast5_template_deepnano 291448 334646 - BC_CNV_tombo-MyOv_24.fa
chr4 47444 43652 46508 48380 50920 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2089_ch_492_strand.fast5_template_deepnano 31635 79818 + BC_CNV_tombo-MyOv_24.fa
chr14 692702 684277 687202 698203 701572 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2771_ch_453_strand.fast5_template_deepnano 684259 709245 + BC_CNV_tombo-MyOv_24.fa
chr13 432743 418853 427159 438328 450216 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3340_ch_3_strand.fast5_template_deepnano 408609 457891 - BC_CNV_tombo-MyOv_24.fa
chr4 505350 498938 504147 506553 508881 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8513_ch_442_strand.fast5_template_deepnano 475879 526116 + BC_CNV_tombo-MyOv_24.fa
chr2 586556 576661 579473 593639 599113 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9108_ch_208_strand.fast5_template_deepnano 576638 607798 + BC_CNV_tombo-MyOv_24.fa
chr16 511852 502400 506124 517581 522554 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2275_ch_236_strand.fast5_template_deepnano 498017 536979 + BC_CNV_tombo-MyOv_24.fa
chr14 497779 488811 492784 502775 508887 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2551_ch_234_strand.fast5_template_deepnano 464305 508892 - BC_CNV_tombo-MyOv_24.fa
chr14 359704 353932 358334 361075 362999 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6495_ch_285_strand.fast5_template_deepnano 315832 370540 + BC_CNV_tombo-MyOv_24.fa
chr5 259652 251510 257400 261904 263559 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2667_ch_195_strand.fast5_template_deepnano 251499 283940 + BC_CNV_tombo-MyOv_24.fa
chr4 1352766 1332210 1341479 1364054 1369890 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2780_ch_150_strand.fast5_template_deepnano 1332139 1369893 - BC_CNV_tombo-MyOv_24.fa
chr15 980984 969059 972472 989496 994027 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6486_ch_375_strand.fast5_template_deepnano 953471 997460 - BC_CNV_tombo-MyOv_24.fa
chr7 778230 765087 771396 785065 790569 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2812_ch_150_strand.fast5_template_deepnano 745089 790610 + BC_CNV_tombo-MyOv_24.fa
chr13 95203 89946 93918 96488 99680 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4837_ch_27_strand.fast5_template_deepnano 80986 99724 + BC_CNV_tombo-MyOv_24.fa
chr16 685282 670070 672742 697822 706575 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2536_ch_388_strand.fast5_template_deepnano 670063 727565 + BC_CNV_tombo-MyOv_24.fa
chr5 499081 488022 496401 501762 504014 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2562_ch_338_strand.fast5_template_deepnano 460600 504014 - BC_CNV_tombo-MyOv_24.fa
chr5 221128 206976 208897 233360 234987 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2637_ch_252_strand.fast5_template_deepnano 175479 239282 - BC_CNV_tombo-MyOv_24.fa
chr15 765542 754186 758774 772310 777169 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3000_ch_439_strand.fast5_template_deepnano 754089 790453 - BC_CNV_tombo-MyOv_24.fa
chr6 256266 242330 251757 260776 262638 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3459_ch_302_strand.fast5_template_deepnano 224051 269942 - BC_CNV_tombo-MyOv_24.fa
chr13 649701 641528 644934 654468 658073 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3922_ch_508_strand.fast5_template_deepnano 641468 658106 - BC_CNV_tombo-MyOv_24.fa
chr14 250195 240982 248455 251936 258771 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7165_ch_421_strand.fast5_template_deepnano 240956 281201 + BC_CNV_tombo-MyOv_24.fa
chr14 691628 685788 689066 694191 698481 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2965_ch_494_strand.fast5_template_deepnano 664795 717382 - BC_CNV_tombo-MyOv_24.fa
chr15 85042 79206 81251 88833 92816 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3076_ch_149_strand.fast5_template_deepnano 62067 92825 - BC_CNV_tombo-MyOv_24.fa
chr4 846310 825249 844469 848151 855834 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2645_ch_300_strand.fast5_template_deepnano 804346 855927 + BC_CNV_tombo-MyOv_24.fa
chr15 663611 658438 662949 664274 667581 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_436_ch_254_strand.fast5_template_deepnano 638308 674561 - BC_CNV_tombo-MyOv_5.fa
chr16 117417 111646 115605 119229 121490 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_439_ch_125_strand.fast5_template_deepnano 82200 127892 - BC_CNV_tombo-MyOv_5.fa
chr13 138138 124228 128890 147386 150772 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1343_ch_392_strand.fast5_template_deepnano 115936 178314 + BC_CNV_tombo-MyOv_5.fa
chr3 225103 209806 215899 234307 236935 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_478_ch_107_strand.fast5_template_deepnano 200853 236986 - BC_CNV_tombo-MyOv_5.fa
chr7 305582 290471 296885 314279 327699 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_351_ch_302_strand.fast5_template_deepnano 290437 327700 - BC_CNV_tombo-MyOv_5.fa
chr9 411595 378651 390089 433102 436212 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_397_ch_22_strand.fast5_template_deepnano 372919 439403 - BC_CNV_tombo-MyOv_5.fa
chr14 169193 160969 164602 173785 179969 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_398_ch_435_strand.fast5_template_deepnano 160853 194837 - BC_CNV_tombo-MyOv_5.fa
chr14 169475 149850 164662 174289 187586 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_275_ch_266_strand.fast5_template_deepnano 149744 205590 - BC_CNV_tombo-MyOv_5.fa
chr12 125330 113097 120571 130090 136429 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_363_ch_331_strand.fast5_template_deepnano 113044 155089 + BC_CNV_tombo-MyOv_5.fa
chr15 114565 101071 103041 126090 131033 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_449_ch_171_strand.fast5_template_deepnano 76800 165975 - BC_CNV_tombo-MyOv_5.fa
chr15 489671 484141 488525 490817 497774 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_328_ch_188_strand.fast5_template_deepnano 484119 497941 + BC_CNV_tombo-MyOv_5.fa
chr14 250594 241213 250030 251158 260026 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_373_ch_155_strand.fast5_template_deepnano 218118 262355 + BC_CNV_tombo-MyOv_5.fa
chr11 213758 202914 210491 217026 225495 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_396_ch_302_strand.fast5_template_deepnano 202910 238510 + BC_CNV_tombo-MyOv_5.fa
chr14 322046 304715 312560 331533 338171 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_352_ch_453_strand.fast5_template_deepnano 304706 338276 + BC_CNV_tombo-MyOv_5.fa
chr15 489894 485007 487884 491904 493344 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_455_ch_499_strand.fast5_template_deepnano 481385 512140 + BC_CNV_tombo-MyOv_5.fa
chr15 930789 923911 926347 935232 940781 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_100_ch_398_strand.fast5_template_deepnano 921132 954426 - BC_CNV_tombo-MyOv_1.fa
chr14 497504 477474 483906 511102 515326 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_103_ch_446_strand.fast5_template_deepnano 460514 515354 - BC_CNV_tombo-MyOv_1.fa
chr4 859395 849901 857669 861121 863100 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_118_ch_367_strand.fast5_template_deepnano 830982 863145 - BC_CNV_tombo-MyOv_1.fa
chr10 98995 90927 97191 100799 107267 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_118_ch_380_strand.fast5_template_deepnano 90788 136288 - BC_CNV_tombo-MyOv_1.fa
chr13 433199 424294 430654 435745 441361 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_129_ch_443_strand.fast5_template_deepnano 413570 441508 + BC_CNV_tombo-MyOv_1.fa
chr16 330521 323398 326723 334320 340174 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_133_ch_274_strand.fast5_template_deepnano 299118 340217 - BC_CNV_tombo-MyOv_1.fa
chr12 459423 455079 458584 460262 465671 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_138_ch_168_strand.fast5_template_deepnano 455017 468929 + BC_CNV_tombo-MyOv_1.fa
chr9 133092 124125 127398 138786 145616 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_42_ch_65_strand.fast5_template_deepnano 96498 145623 + BC_CNV_tombo-MyOv_1.fa
chr12 513576 499364 503185 523967 527489 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_45_ch_150_strand.fast5_template_deepnano 485765 537433 + BC_CNV_tombo-MyOv_1.fa
chr13 649247 643720 647335 651159 657014 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_46_ch_137_strand.fast5_template_deepnano 619378 669194 - BC_CNV_tombo-MyOv_1.fa
chr7 203678 191242 195373 211984 216865 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_47_ch_470_strand.fast5_template_deepnano 180915 222407 - BC_CNV_tombo-MyOv_1.fa
chr15 338557 316466 321996 355118 358100 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_58_ch_410_strand.fast5_template_deepnano 310931 381886 + BC_CNV_tombo-MyOv_1.fa
chr16 72770 67563 70975 74565 76343 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_62_ch_214_strand.fast5_template_deepnano 67543 104528 + BC_CNV_tombo-MyOv_1.fa
chr16 96421 90799 95240 97602 99735 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_62_ch_214_strand.fast5_template_deepnano 67543 104528 + BC_CNV_tombo-MyOv_1.fa
chr15 982051 968827 975211 988892 995672 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_79_ch_186_strand.fast5_template_deepnano 944991 1003339 - BC_CNV_tombo-MyOv_1.fa
chr5 353745 347239 349739 357751 364301 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_85_ch_431_strand.fast5_template_deepnano 344712 369075 + BC_CNV_tombo-MyOv_1.fa
chr12 457402 451500 455718 459087 461671 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5976_ch_142_strand.fast5_template_deepnano 451416 468944 - BC_CNV_tombo-MyOv_30.fa
chr10 229262 222832 227646 230878 235692 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4466_ch_66_strand.fast5_template_deepnano 193900 241487 + BC_CNV_tombo-MyOv_30.fa
chr2 144938 127513 136194 153682 155977 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5764_ch_56_strand.fast5_template_deepnano 127496 161783 + BC_CNV_tombo-MyOv_30.fa
chr14 170431 156553 159922 180940 192277 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4111_ch_43_strand.fast5_template_deepnano 154085 192362 + BC_CNV_tombo-MyOv_30.fa
chr11 98086 86262 89737 106436 124439 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4758_ch_192_strand.fast5_template_deepnano 86259 124540 + BC_CNV_tombo-MyOv_30.fa
chr15 772266 737988 755304 789229 807411 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4249_ch_379_strand.fast5_template_deepnano 737918 807428 - BC_CNV_tombo-MyOv_30.fa
chr16 90258 85232 89274 91242 95066 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4519_ch_66_strand.fast5_template_deepnano 78022 100322 - BC_CNV_tombo-MyOv_30.fa
chr11 234800 228642 232943 236657 241408 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7605_ch_239_strand.fast5_template_deepnano 216725 253704 + BC_CNV_tombo-MyOv_30.fa
chr5 498198 487272 491517 504880 506522 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12444_ch_444_strand.fast5_template_deepnano 465516 526520 - BC_CNV_tombo-MyOv_30.fa
chr15 520556 505939 512491 528621 531865 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4264_ch_102_strand.fast5_template_deepnano 500506 556207 - BC_CNV_tombo-MyOv_30.fa
chr4 351753 347669 350096 353410 357028 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5695_ch_462_strand.fast5_template_deepnano 325682 368763 - BC_CNV_tombo-MyOv_30.fa
chr10 540922 526929 532029 549816 553964 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6799_ch_203_strand.fast5_template_deepnano 516354 554061 + BC_CNV_tombo-MyOv_30.fa
chr11 258563 253721 257640 259486 262128 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3816_ch_459_strand.fast5_template_deepnano 246076 285240 + BC_CNV_tombo-MyOv_30.fa
chr12 973399 956996 966047 980752 985881 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4247_ch_316_strand.fast5_template_deepnano 924638 990441 + BC_CNV_tombo-MyOv_30.fa
chr13 633763 628176 631409 636117 642047 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10911_ch_46_strand.fast5_template_deepnano 628024 691275 - BC_CNV_tombo-MyOv_30.fa
chr13 649493 642047 647881 651106 655562 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10911_ch_46_strand.fast5_template_deepnano 628024 691275 - BC_CNV_tombo-MyOv_30.fa
chr13 137403 121684 124047 150759 153921 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12539_ch_444_strand.fast5_template_deepnano 107726 157179 + BC_CNV_tombo-MyOv_30.fa
chr8 245980 237679 242182 249779 258442 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4480_ch_245_strand.fast5_template_deepnano 229545 258459 - BC_CNV_tombo-MyOv_30.fa
chr4 329226 319947 323187 335266 338126 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17233_ch_295_strand.fast5_template_deepnano 307278 347593 + BC_CNV_tombo-MyOv_30.fa
chr4 1017044 1008173 1013118 1020970 1029439 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_833_ch_13_strand.fast5_template_deepnano 1008141 1055956 + BC_CNV_tombo-MyOv_11.fa
chr10 99415 90869 95587 103243 106873 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_873_ch_379_strand.fast5_template_deepnano 86448 115719 - BC_CNV_tombo-MyOv_11.fa
chr13 432708 415558 427678 437738 440765 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1074_ch_245_strand.fast5_template_deepnano 408695 484864 - BC_CNV_tombo-MyOv_11.fa
chr8 358417 351454 357609 359226 365245 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_783_ch_355_strand.fast5_template_deepnano 347621 373366 - BC_CNV_tombo-MyOv_11.fa
chr13 32018 16599 23000 41037 48219 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_805_ch_135_strand.fast5_template_deepnano 11609 62775 - BC_CNV_tombo-MyOv_11.fa
chr2 143924 126677 138333 149515 152427 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_799_ch_307_strand.fast5_template_deepnano 126648 175206 + BC_CNV_tombo-MyOv_11.fa
chr12 156367 148174 151192 161543 164784 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1461_ch_468_strand.fast5_template_deepnano 143946 167098 - BC_CNV_tombo-MyOv_11.fa
chr4 232742 224426 226883 238601 241320 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2172_ch_427_strand.fast5_template_deepnano 224372 274808 + BC_CNV_tombo-MyOv_11.fa
chr4 253656 246529 249229 258083 274741 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2172_ch_427_strand.fast5_template_deepnano 224372 274808 + BC_CNV_tombo-MyOv_11.fa
chr2 485243 464059 473862 496625 503354 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_849_ch_2_strand.fast5_template_deepnano 450165 519498 + BC_CNV_tombo-MyOv_11.fa
chr15 800573 785652 793197 807949 815416 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_854_ch_4_strand.fast5_template_deepnano 785574 815480 - BC_CNV_tombo-MyOv_11.fa
chr8 64024 55521 61925 66124 73675 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1056_ch_381_strand.fast5_template_deepnano 4 76480 - BC_CNV_tombo-MyOv_11.fa
chr15 336892 325142 330665 343119 347655 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1116_ch_431_strand.fast5_template_deepnano 295145 351657 + BC_CNV_tombo-MyOv_11.fa
chr2 675047 662308 667717 682377 686888 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_976_ch_104_strand.fast5_template_deepnano 648553 704728 + BC_CNV_tombo-MyOv_11.fa
chr4 461817 455048 458313 465321 468927 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1159_ch_113_strand.fast5_template_deepnano 440696 491055 + BC_CNV_tombo-MyOv_11.fa
chr7 388246 374204 376328 400165 404364 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_868_ch_2_strand.fast5_template_deepnano 349638 411863 - BC_CNV_tombo-MyOv_11.fa
chr14 399360 384863 391082 407638 410165 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_806_ch_29_strand.fast5_template_deepnano 356620 410208 + BC_CNV_tombo-MyOv_11.fa
chr4 47077 39603 44118 50037 52257 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2621_ch_94_strand.fast5_template_deepnano 39583 97619 + BC_CNV_tombo-MyOv_20.fa
chr12 156840 150979 155071 158609 162985 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2902_ch_307_strand.fast5_template_deepnano 142188 168670 + BC_CNV_tombo-MyOv_20.fa
chr12 412728 408920 410750 414706 417046 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4139_ch_503_strand.fast5_template_deepnano 369044 459584 - BC_CNV_tombo-MyOv_20.fa
chr9 134927 127477 131428 138426 142501 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1876_ch_137_strand.fast5_template_deepnano 117366 176117 - BC_CNV_tombo-MyOv_20.fa
chr5 173406 158061 161836 184977 187869 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2041_ch_35_strand.fast5_template_deepnano 158031 214840 + BC_CNV_tombo-MyOv_20.fa
chr3 39391 25577 29751 49031 52557 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2100_ch_7_strand.fast5_template_deepnano 19642 65904 - BC_CNV_tombo-MyOv_20.fa
chr8 413920 401181 410704 417137 421026 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1517_ch_50_strand.fast5_template_deepnano 372239 449114 + BC_CNV_tombo-MyOv_20.fa
chr16 43230 31385 37675 48785 51363 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1973_ch_150_strand.fast5_template_deepnano 31337 58726 - BC_CNV_tombo-MyOv_20.fa
chr4 1462549 1458144 1461740 1463359 1465821 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2091_ch_251_strand.fast5_template_deepnano 1454876 1480966 + BC_CNV_tombo-MyOv_20.fa
chr9 414175 392747 406146 422204 427980 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1717_ch_404_strand.fast5_template_deepnano 391583 439885 + BC_CNV_tombo-MyOv_20.fa
chr12 744686 739925 741415 747957 754998 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1945_ch_82_strand.fast5_template_deepnano 708087 755079 - BC_CNV_tombo-MyOv_20.fa
chr12 730842 720899 727658 734027 737404 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1945_ch_82_strand.fast5_template_deepnano 708087 755079 - BC_CNV_tombo-MyOv_20.fa
chr9 413511 394001 398972 428050 433085 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2279_ch_316_strand.fast5_template_deepnano 360441 433195 + BC_CNV_tombo-MyOv_20.fa
chr12 793657 785927 788376 798938 806069 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2581_ch_400_strand.fast5_template_deepnano 785900 817397 - BC_CNV_tombo-MyOv_20.fa
chr4 1447798 1443962 1446638 1448959 1451491 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2930_ch_194_strand.fast5_template_deepnano 1419626 1451492 - BC_CNV_tombo-MyOv_20.fa
chr10 68085 59846 62337 73834 76287 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1745_ch_466_strand.fast5_template_deepnano 48404 88842 + BC_CNV_tombo-MyOv_20.fa
chr7 777509 767875 771980 783038 785559 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2659_ch_39_strand.fast5_template_deepnano 760832 788091 - BC_CNV_tombo-MyOv_20.fa
chr4 1462093 1458248 1461318 1462869 1470102 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1926_ch_452_strand.fast5_template_deepnano 1458237 1470176 + BC_CNV_tombo-MyOv_20.fa
chr8 474151 462949 468478 479825 484030 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5984_ch_364_strand.fast5_template_deepnano 458131 500550 - BC_CNV_tombo-MyOv_51.fa
chr4 720094 713190 718115 722074 726245 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_24815_ch_115_strand.fast5_template_deepnano 708497 744928 - BC_CNV_tombo-MyOv_51.fa
chr13 158702 151266 156222 161182 165620 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_42365_ch_130_strand.fast5_template_deepnano 137628 188153 + BC_CNV_tombo-MyOv_51.fa
chr4 714521 695125 699140 729903 733000 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_24625_ch_297_strand.fast5_template_deepnano 695077 733026 - BC_CNV_tombo-MyOv_51.fa
chr7 888273 867712 871971 904576 909986 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_18644_ch_49_strand.fast5_template_deepnano 867696 910039 + BC_CNV_tombo-MyOv_51.fa
chr7 353888 346338 351927 355850 359684 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_15567_ch_188_strand.fast5_template_deepnano 336207 367073 + BC_CNV_tombo-MyOv_51.fa
chr15 567566 558110 561640 573493 577952 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_39987_ch_242_strand.fast5_template_deepnano 554591 578027 - BC_CNV_tombo-MyOv_51.fa
chr13 502952 497811 501303 504602 512079 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_16966_ch_426_strand.fast5_template_deepnano 497794 512187 + BC_CNV_tombo-MyOv_51.fa
chr12 458745 451419 457464 460027 468821 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_31810_ch_324_strand.fast5_template_deepnano 451417 468928 + BC_CNV_tombo-MyOv_51.fa
chr3 225501 220602 224908 226095 232965 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_36799_ch_264_strand.fast5_template_deepnano 220598 249772 + BC_CNV_tombo-MyOv_51.fa
chr2 579680 571952 577115 582246 584666 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_35931_ch_424_strand.fast5_template_deepnano 571847 597643 - BC_CNV_tombo-MyOv_51.fa
chr10 374344 362792 365221 383468 388406 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_13288_ch_494_strand.fast5_template_deepnano 362782 394960 - BC_CNV_tombo-MyOv_51.fa
chr1 124896 118032 119574 130218 132403 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_61992_ch_419_strand.fast5_template_deepnano 118029 177955 + BC_CNV_tombo-MyOv_51.fa
chr9 73786 59262 69636 77936 83103 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_42056_ch_107_strand.fast5_template_deepnano 59167 83114 - BC_CNV_tombo-MyOv_51.fa
chr15 521410 508223 510520 532301 542162 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_28021_ch_10_strand.fast5_template_deepnano 508195 542231 + BC_CNV_tombo-MyOv_51.fa
chr16 510953 506792 508746 513161 517400 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_34236_ch_112_strand.fast5_template_deepnano 500447 524003 - BC_CNV_tombo-MyOv_51.fa
chr14 611014 602603 605900 616129 619503 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_64170_ch_226_strand.fast5_template_deepnano 592082 619592 + BC_CNV_tombo-MyOv_51.fa
chr12 197589 184561 188449 206730 212938 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12291_ch_135_strand.fast5_template_deepnano 168677 232475 - BC_CNV_tombo-MyOv_42.fa
chr7 388302 378488 383265 393339 397162 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_16779_ch_297_strand.fast5_template_deepnano 378373 414662 - BC_CNV_tombo-MyOv_42.fa
chr11 330315 317383 323052 337579 340742 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1880_ch_162_strand.fast5_template_deepnano 309678 340813 + BC_CNV_tombo-MyOv_42.fa
chr8 358762 339423 352522 365003 367498 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9646_ch_157_strand.fast5_template_deepnano 339391 371660 + BC_CNV_tombo-MyOv_42.fa
chr15 155585 149129 152961 158210 160947 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_16406_ch_341_strand.fast5_template_deepnano 130639 160987 + BC_CNV_tombo-MyOv_42.fa
chr9 358943 337928 346264 371623 380366 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_21835_ch_48_strand.fast5_template_deepnano 337800 393846 - BC_CNV_tombo-MyOv_42.fa
chr14 280603 269296 274300 286906 292001 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6762_ch_493_strand.fast5_template_deepnano 240432 303675 + BC_CNV_tombo-MyOv_42.fa
chr14 250138 243946 248455 251821 259068 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6762_ch_493_strand.fast5_template_deepnano 240432 303675 + BC_CNV_tombo-MyOv_42.fa
chr10 139538 130351 136562 142515 145660 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10514_ch_502_strand.fast5_template_deepnano 130328 163921 + BC_CNV_tombo-MyOv_42.fa
chr16 333881 321220 324833 342929 344451 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10147_ch_66_strand.fast5_template_deepnano 317894 349894 + BC_CNV_tombo-MyOv_42.fa
chr4 483772 479142 482772 484773 488503 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_13113_ch_124_strand.fast5_template_deepnano 471732 488584 + BC_CNV_tombo-MyOv_42.fa
chr4 1402649 1392672 1395037 1410262 1412639 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_23420_ch_511_strand.fast5_template_deepnano 1392580 1416555 - BC_CNV_tombo-MyOv_42.fa
chr13 32264 22982 28165 36363 38762 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_203212_ch_501_strand.fast5_template_deepnano 22941 38856 + BC_CNV_tombo-MyOv_42.fa
chr13 815715 800251 804843 826588 830413 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_13691_ch_258_strand.fast5_template_deepnano 796468 853061 - BC_CNV_tombo-MyOv_42.fa
chr7 977782 943546 970450 985115 990569 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8243_ch_227_strand.fast5_template_deepnano 943441 1000032 - BC_CNV_tombo-MyOv_42.fa
chr4 979772 966750 971741 987803 992423 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_20179_ch_428_strand.fast5_template_deepnano 935917 1004955 - BC_CNV_tombo-MyOv_42.fa
chr10 228472 223075 226012 230933 234884 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_26650_ch_464_strand.fast5_template_deepnano 214783 239873 + BC_CNV_tombo-MyOv_42.fa
chr15 765610 754312 756610 774610 779576 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8252_ch_459_strand.fast5_template_deepnano 754275 810413 - BC_CNV_tombo-MyOv_42.fa
chr14 610289 592471 595765 624814 632753 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_16932_ch_248_strand.fast5_template_deepnano 581391 632775 + BC_CNV_tombo-MyOv_42.fa
chr9 411898 397162 401380 422417 428629 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_13471_ch_286_strand.fast5_template_deepnano 396988 439037 - BC_CNV_tombo-MyOv_42.fa
chr7 304403 290661 298116 310690 313510 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10315_ch_66_strand.fast5_template_deepnano 284390 327510 - BC_CNV_tombo-MyOv_42.fa
chr7 319011 313510 315953 322069 324315 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10315_ch_66_strand.fast5_template_deepnano 284390 327510 - BC_CNV_tombo-MyOv_42.fa
chr4 212433 208299 211359 213508 216871 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_18659_ch_103_strand.fast5_template_deepnano 202956 223741 - BC_CNV_tombo-MyOv_42.fa
chr14 449393 426836 440513 458273 476916 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17877_ch_186_strand.fast5_template_deepnano 422017 502485 - BC_CNV_tombo-MyOv_42.fa
chr11 516607 505778 513215 520000 529459 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_23685_ch_436_strand.fast5_template_deepnano 496419 543783 + BC_CNV_tombo-MyOv_42.fa
chr11 530751 521243 528526 532977 539522 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12941_ch_282_strand.fast5_template_deepnano 521099 539522 - BC_CNV_tombo-MyOv_42.fa
chr8 57439 49082 54676 60202 63605 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_46795_ch_339_strand.fast5_template_deepnano 41487 70774 + BC_CNV_tombo-MyOv_42.fa
chr1 29934 16159 19912 39957 42430 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8412_ch_188_strand.fast5_template_deepnano 16098 48288 - BC_CNV_tombo-MyOv_42.fa
chr4 555409 543339 546346 564472 570402 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10716_ch_472_strand.fast5_template_deepnano 537179 577667 - BC_CNV_tombo-MyOv_42.fa
chr2 611397 604805 606112 616682 625628 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_20766_ch_489_strand.fast5_template_deepnano 604705 636933 - BC_CNV_tombo-MyOv_42.fa
chr11 417112 412834 416200 418024 420316 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3987_ch_81_strand.fast5_template_deepnano 404206 428342 - BC_CNV_tombo-MyOv_42.fa
chr15 520621 507178 515014 526228 529276 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7486_ch_486_strand.fast5_template_deepnano 507147 534996 - BC_CNV_tombo-MyOv_42.fa
chr12 794206 784580 787151 801262 804812 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_108_ch_391_strand.fast5_template_deepnano 750503 804822 - BC_CNV_tombo-MyOv_2.fa
chr13 688063 680857 682861 693266 696721 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_120_ch_148_strand.fast5_template_deepnano 673386 698681 + BC_CNV_tombo-MyOv_2.fa
chr15 338238 325147 327747 348729 355671 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_124_ch_172_strand.fast5_template_deepnano 308844 355683 + BC_CNV_tombo-MyOv_2.fa
chr8 46958 42416 44495 49421 50917 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_128_ch_212_strand.fast5_template_deepnano 22667 55202 - BC_CNV_tombo-MyOv_2.fa
chr7 977014 959845 974798 979230 991529 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_139_ch_506_strand.fast5_template_deepnano 959746 1003982 - BC_CNV_tombo-MyOv_2.fa
chr2 62440 42909 45215 79665 83817 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_145_ch_463_strand.fast5_template_deepnano 38906 83904 + BC_CNV_tombo-MyOv_2.fa
chr14 412233 407241 410798 413669 417846 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_150_ch_23_strand.fast5_template_deepnano 380626 465072 - BC_CNV_tombo-MyOv_2.fa
chr14 450070 440219 447883 452258 454764 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_150_ch_23_strand.fast5_template_deepnano 380626 465072 - BC_CNV_tombo-MyOv_2.fa
chr2 408915 384128 396874 420956 425328 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1502_ch_90_strand.fast5_template_deepnano 371339 434406 - BC_CNV_tombo-MyOv_2.fa
chr13 535527 529180 532381 538673 545088 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_151_ch_371_strand.fast5_template_deepnano 529043 575799 - BC_CNV_tombo-MyOv_2.fa
chr13 554912 545088 550169 559655 561906 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_151_ch_371_strand.fast5_template_deepnano 529043 575799 - BC_CNV_tombo-MyOv_2.fa
chr12 287802 275665 281719 293886 298364 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_156_ch_477_strand.fast5_template_deepnano 275505 309268 - BC_CNV_tombo-MyOv_2.fa
chr13 31971 21619 27994 35948 39301 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_157_ch_191_strand.fast5_template_deepnano 11322 63791 - BC_CNV_tombo-MyOv_2.fa
chr1 70283 56521 62099 78468 82641 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_164_ch_160_strand.fast5_template_deepnano 37589 107912 - BC_CNV_tombo-MyOv_2.fa
chr7 318980 303961 313510 324450 331955 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_169_ch_320_strand.fast5_template_deepnano 283118 379990 - BC_CNV_tombo-MyOv_2.fa
chr14 609685 597991 600525 618845 623071 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_173_ch_190_strand.fast5_template_deepnano 597986 636726 + BC_CNV_tombo-MyOv_2.fa
chr4 124743 105514 108601 140886 148475 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_175_ch_249_strand.fast5_template_deepnano 91667 148545 + BC_CNV_tombo-MyOv_2.fa
chr4 137854 130002 133418 142290 156933 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_195_ch_216_strand.fast5_template_deepnano 128547 157020 + BC_CNV_tombo-MyOv_2.fa
chr16 249530 238863 248049 251011 252284 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_196_ch_336_strand.fast5_template_deepnano 215437 252378 + BC_CNV_tombo-MyOv_2.fa
chr3 223685 206618 211694 235677 240870 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_212_ch_431_strand.fast5_template_deepnano 206511 240899 - BC_CNV_tombo-MyOv_2.fa
chr11 257736 237673 244038 271435 278277 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_245_ch_439_strand.fast5_template_deepnano 223769 287132 - BC_CNV_tombo-MyOv_2.fa
chr4 1303134 1292065 1300564 1305704 1316506 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_675_ch_401_strand.fast5_template_deepnano 1281574 1362790 + BC_CNV_tombo-MyOv_2.fa
chr7 318446 302788 313019 323874 326221 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1478_ch_387_strand.fast5_template_deepnano 302672 370738 - BC_CNV_tombo-MyOv_18.fa
chr2 400294 392902 399779 400810 402560 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1825_ch_35_strand.fast5_template_deepnano 377542 421905 + BC_CNV_tombo-MyOv_18.fa
chr2 408842 400444 402580 415104 421790 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1825_ch_35_strand.fast5_template_deepnano 377542 421905 + BC_CNV_tombo-MyOv_18.fa
chr7 1000248 996816 999654 1000843 1006325 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2519_ch_262_strand.fast5_template_deepnano 968257 1015128 - BC_CNV_tombo-MyOv_18.fa
chr2 703215 691601 698417 708014 715207 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1388_ch_452_strand.fast5_template_deepnano 681146 749857 + BC_CNV_tombo-MyOv_18.fa
chr9 30122 16532 25989 34255 41279 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1499_ch_205_strand.fast5_template_deepnano 3 56560 - BC_CNV_tombo-MyOv_18.fa
chr10 613491 597766 598932 628051 632383 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3013_ch_10_strand.fast5_template_deepnano 597752 632403 - BC_CNV_tombo-MyOv_18.fa
chr11 258749 247690 250310 267188 270512 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2380_ch_44_strand.fast5_template_deepnano 245754 285817 + BC_CNV_tombo-MyOv_18.fa
chr9 214025 202029 208829 219222 225695 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3516_ch_458_strand.fast5_template_deepnano 178957 243336 + BC_CNV_tombo-MyOv_18.fa
chr8 168414 157187 160566 176262 181133 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1638_ch_283_strand.fast5_template_deepnano 147562 191651 - BC_CNV_tombo-MyOv_18.fa
chr5 549975 537854 548567 551384 560120 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1963_ch_498_strand.fast5_template_deepnano 537788 576695 - BC_CNV_tombo-MyOv_18.fa
chr16 72546 61942 67457 77636 84506 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2354_ch_5_strand.fast5_template_deepnano 32435 98842 - BC_CNV_tombo-MyOv_18.fa
chr14 251198 241540 248513 253884 259199 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2551_ch_261_strand.fast5_template_deepnano 227656 262718 + BC_CNV_tombo-MyOv_18.fa
chr5 297999 293577 297264 298734 302837 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3281_ch_97_strand.fast5_template_deepnano 260355 305029 - BC_CNV_tombo-MyOv_18.fa
chr7 659954 648242 652930 666978 668646 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2015_ch_175_strand.fast5_template_deepnano 607832 668659 - BC_CNV_tombo-MyOv_18.fa
chr4 329551 322854 324348 334755 337594 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1977_ch_367_strand.fast5_template_deepnano 320901 337596 - BC_CNV_tombo-MyOv_18.fa
chr14 498090 486258 495105 501076 512526 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_11481_ch_244_strand.fast5_template_deepnano 486115 516697 - BC_CNV_tombo-MyOv_63.fa
chr13 30998 14864 22011 39986 48453 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_132834_ch_315_strand.fast5_template_deepnano 3 48456 - BC_CNV_tombo-MyOv_63.fa
chr7 266384 261511 264754 268015 269973 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_23873_ch_241_strand.fast5_template_deepnano 217652 272533 + BC_CNV_tombo-MyOv_63.fa
chr3 132028 119382 123238 140818 143789 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8004_ch_274_strand.fast5_template_deepnano 110977 148618 - BC_CNV_tombo-MyOv_63.fa
chr16 418819 414476 417144 420495 423586 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_80901_ch_351_strand.fast5_template_deepnano 414474 445065 + BC_CNV_tombo-MyOv_63.fa
chr16 72428 62979 70635 74221 76591 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_33869_ch_15_strand.fast5_template_deepnano 62509 76606 - BC_CNV_tombo-MyOv_63.fa
chr12 286175 276992 284645 287705 290455 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_54581_ch_444_strand.fast5_template_deepnano 275198 312835 + BC_CNV_tombo-MyOv_63.fa
chr12 293369 287705 290455 296284 299849 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_54581_ch_444_strand.fast5_template_deepnano 275198 312835 + BC_CNV_tombo-MyOv_63.fa
chr13 46303 40965 44858 47749 52211 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_76419_ch_95_strand.fast5_template_deepnano 32926 57902 + BC_CNV_tombo-MyOv_63.fa
chr12 458031 453917 456484 459579 463250 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_15732_ch_161_strand.fast5_template_deepnano 451417 468929 - BC_CNV_tombo-MyOv_63.fa
chr8 447450 439060 441259 453641 463796 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_64747_ch_423_strand.fast5_template_deepnano 439042 483099 + BC_CNV_tombo-MyOv_55.fa
chr13 31027 19865 29968 32086 34109 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_40564_ch_214_strand.fast5_template_deepnano 5641 40368 - BC_CNV_tombo-MyOv_55.fa
chr4 123169 113564 118640 127698 138222 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_20806_ch_255_strand.fast5_template_deepnano 113497 152977 - BC_CNV_tombo-MyOv_55.fa
chr4 484174 474765 480998 487351 496413 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_46617_ch_455_strand.fast5_template_deepnano 448607 496417 - BC_CNV_tombo-MyOv_55.fa
chr7 977611 970300 973272 981950 983790 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_41393_ch_363_strand.fast5_template_deepnano 963680 986792 + BC_CNV_tombo-MyOv_55.fa
chr13 865331 854315 863410 867253 874127 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_64962_ch_423_strand.fast5_template_deepnano 832212 874196 - BC_CNV_tombo-MyOv_55.fa
chr7 162708 156634 162022 163394 167151 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_38570_ch_32_strand.fast5_template_deepnano 156539 202409 - BC_CNV_tombo-MyOv_55.fa
chr14 249480 241754 243178 255782 263573 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_18548_ch_234_strand.fast5_template_deepnano 241745 301455 - BC_CNV_tombo-MyOv_55.fa
chr10 711853 701077 709593 714113 719855 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_289182_ch_69_strand.fast5_template_deepnano 700399 745220 - BC_CNV_tombo-MyOv_55.fa
chr15 874131 863542 867789 880473 886164 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_39542_ch_436_strand.fast5_template_deepnano 861606 903558 + BC_CNV_tombo-MyOv_55.fa
chr14 279250 275596 277144 281356 283597 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_27619_ch_115_strand.fast5_template_deepnano 275434 306252 - BC_CNV_tombo-MyOv_55.fa
chr10 99180 83188 85848 112513 118828 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_31808_ch_300_strand.fast5_template_deepnano 45472 118844 - BC_CNV_tombo-MyOv_55.fa
chr7 660155 655036 657501 662809 666807 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_29939_ch_155_strand.fast5_template_deepnano 652426 666926 + BC_CNV_tombo-MyOv_55.fa
chr6 117844 110019 112806 122883 131388 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_11440_ch_483_strand.fast5_template_deepnano 110013 131507 + BC_CNV_tombo-MyOv_55.fa
chr4 719959 711440 719096 720822 722984 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_42288_ch_351_strand.fast5_template_deepnano 698482 767420 - BC_CNV_tombo-MyOv_55.fa
chr13 137252 123067 124058 150447 154394 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_49125_ch_491_strand.fast5_template_deepnano 123067 156076 + BC_CNV_tombo-MyOv_55.fa
chr15 113834 97848 107694 119975 128802 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_44455_ch_338_strand.fast5_template_deepnano 83819 145472 - BC_CNV_tombo-MyOv_55.fa
chr12 324844 319340 322472 327217 331402 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_65280_ch_423_strand.fast5_template_deepnano 308464 346012 - BC_CNV_tombo-MyOv_55.fa
chr14 128598 112646 117252 139944 142813 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_27884_ch_502_strand.fast5_template_deepnano 102776 147678 - BC_CNV_tombo-MyOv_55.fa
chr10 612963 598389 603406 622520 625729 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12706_ch_126_strand.fast5_template_deepnano 564918 639511 - BC_CNV_tombo-MyOv_28.fa
chr9 246680 235201 241322 252039 257157 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_129759_ch_160_strand.fast5_template_deepnano 224944 260513 + BC_CNV_tombo-MyOv_28.fa
chr2 379242 374191 377647 380837 384040 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3457_ch_300_strand.fast5_template_deepnano 371527 386369 + BC_CNV_tombo-MyOv_28.fa
chr16 634083 620374 624938 643228 647303 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3259_ch_485_strand.fast5_template_deepnano 613542 656585 + BC_CNV_tombo-MyOv_28.fa
chr16 777262 765604 769795 784729 795683 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4049_ch_94_strand.fast5_template_deepnano 716717 795771 + BC_CNV_tombo-MyOv_28.fa
chr16 583725 581747 582976 584474 587104 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4022_ch_302_strand.fast5_template_deepnano 566428 599618 - BC_CNV_tombo-MyOv_28.fa
chr13 688956 681837 686537 691376 695381 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3673_ch_396_strand.fast5_template_deepnano 677102 705866 - BC_CNV_tombo-MyOv_28.fa
chr5 439533 435510 438973 440093 443577 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7476_ch_286_strand.fast5_template_deepnano 387223 447868 - BC_CNV_tombo-MyOv_28.fa
chr2 486491 480341 485695 487288 492598 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10157_ch_154_strand.fast5_template_deepnano 480252 495934 - BC_CNV_tombo-MyOv_28.fa
chr11 517710 507137 516164 519256 526641 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3378_ch_410_strand.fast5_template_deepnano 478980 526700 - BC_CNV_tombo-MyOv_28.fa
chr13 865325 851797 863660 866991 870376 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3437_ch_336_strand.fast5_template_deepnano 832054 885855 + BC_CNV_tombo-MyOv_28.fa
chr15 372562 365245 368282 376842 384587 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4397_ch_189_strand.fast5_template_deepnano 365141 404434 - BC_CNV_tombo-MyOv_28.fa
chr15 907206 891592 895016 919397 923169 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4352_ch_251_strand.fast5_template_deepnano 884282 926238 - BC_CNV_tombo-MyOv_28.fa
chr4 237175 227391 230178 244172 246644 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_129862_ch_160_strand.fast5_template_deepnano 221769 276570 - BC_CNV_tombo-MyOv_28.fa
chr4 231936 226849 229896 233976 236080 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_11754_ch_37_strand.fast5_template_deepnano 218143 238126 - BC_CNV_tombo-MyOv_28.fa
chr13 634522 621533 631048 637997 640691 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4038_ch_148_strand.fast5_template_deepnano 594849 640752 + BC_CNV_tombo-MyOv_28.fa
chr3 284328 276443 282580 286076 297315 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3880_ch_316_strand.fast5_template_deepnano 249330 316603 + BC_CNV_tombo-MyOv_28.fa
chr13 520053 515371 518655 521451 523467 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_247100_ch_288_strand.fast5_template_deepnano 513217 534022 - BC_CNV_tombo-MyOv_48.fa
chr16 117646 104284 110448 124844 127968 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_25329_ch_293_strand.fast5_template_deepnano 104149 142885 + BC_CNV_tombo-MyOv_48.fa
chr10 267870 253019 256686 279054 285530 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_28407_ch_226_strand.fast5_template_deepnano 252911 285545 - BC_CNV_tombo-MyOv_48.fa
chr8 474447 463263 470317 478578 484030 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_247102_ch_288_strand.fast5_template_deepnano 463234 491279 - BC_CNV_tombo-MyOv_48.fa
chr4 1240960 1231779 1235045 1246876 1252039 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_132065_ch_496_strand.fast5_template_deepnano 1216482 1256691 - BC_CNV_tombo-MyOv_48.fa
chr4 137156 134247 136170 138143 139819 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_19913_ch_308_strand.fast5_template_deepnano 117761 165309 - BC_CNV_tombo-MyOv_48.fa
chr4 123722 117805 120819 126625 134247 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_19913_ch_308_strand.fast5_template_deepnano 117761 165309 - BC_CNV_tombo-MyOv_48.fa
chr8 447583 444018 446007 449159 451834 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_25398_ch_293_strand.fast5_template_deepnano 440620 474898 - BC_CNV_tombo-MyOv_48.fa
chr4 505430 496053 499481 511380 515580 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_14118_ch_285_strand.fast5_template_deepnano 488724 531446 + BC_CNV_tombo-MyOv_48.fa
chr4 174833 164210 168497 181169 187421 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10263_ch_234_strand.fast5_template_deepnano 147169 211216 - BC_CNV_tombo-MyOv_48.fa
chr11 196054 188725 192377 199731 202494 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_11996_ch_479_strand.fast5_template_deepnano 157114 209557 + BC_CNV_tombo-MyOv_48.fa
chr13 540409 508775 511332 569487 574665 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_173821_ch_311_strand.fast5_template_deepnano 508768 582993 + BC_CNV_tombo-MyOv_48.fa
chr13 482977 476074 479017 486938 493135 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_35168_ch_264_strand.fast5_template_deepnano 465570 501950 + BC_CNV_tombo-MyOv_48.fa
chr7 976473 959217 968041 984905 992340 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_21071_ch_347_strand.fast5_template_deepnano 959210 1009239 + BC_CNV_tombo-MyOv_48.fa
chr9 411439 396745 398609 424269 428070 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_31457_ch_213_strand.fast5_template_deepnano 342434 439885 + BC_CNV_tombo-MyOv_48.fa
chr9 380074 371151 376317 383832 387518 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_31457_ch_213_strand.fast5_template_deepnano 342434 439885 + BC_CNV_tombo-MyOv_48.fa
chr6 61653 54430 58136 65170 70292 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17430_ch_49_strand.fast5_template_deepnano 54400 108268 - BC_CNV_tombo-MyOv_48.fa
chr11 152541 140625 148089 156993 164880 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9490_ch_43_strand.fast5_template_deepnano 117619 197212 - BC_CNV_tombo-MyOv_48.fa
chr7 660967 648972 653873 668062 673689 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_15148_ch_135_strand.fast5_template_deepnano 642206 690220 - BC_CNV_tombo-MyOv_48.fa
chr9 296273 277073 288657 303890 312649 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_14913_ch_146_strand.fast5_template_deepnano 273659 312653 - BC_CNV_tombo-MyOv_48.fa
chr15 113610 92926 95967 131253 140541 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_38717_ch_242_strand.fast5_template_deepnano 87625 140560 - BC_CNV_tombo-MyOv_48.fa
chr13 898050 890078 893676 902425 906150 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_21996_ch_17_strand.fast5_template_deepnano 860837 917151 + BC_CNV_tombo-MyOv_48.fa
chr3 263861 250518 255500 272223 274982 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_31683_ch_213_strand.fast5_template_deepnano 215792 275086 + BC_CNV_tombo-MyOv_48.fa
chr14 691855 687072 689158 694553 696947 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_19082_ch_446_strand.fast5_template_deepnano 683694 710864 - BC_CNV_tombo-MyOv_48.fa
chr16 552834 536975 539186 566483 572263 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_22226_ch_62_strand.fast5_template_deepnano 536961 572372 + BC_CNV_tombo-MyOv_48.fa
chr4 124390 117686 123397 125384 127060 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_22658_ch_372_strand.fast5_template_deepnano 106198 129048 - BC_CNV_tombo-MyOv_50.fa
chr4 555825 543418 546080 565570 568075 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_33311_ch_495_strand.fast5_template_deepnano 540439 588732 - BC_CNV_tombo-MyOv_50.fa
chr15 593928 588150 591139 596717 601146 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_13598_ch_190_strand.fast5_template_deepnano 573797 608811 + BC_CNV_tombo-MyOv_50.fa
chr4 329463 320658 325132 333795 335537 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_29428_ch_164_strand.fast5_template_deepnano 292785 335556 + BC_CNV_tombo-MyOv_50.fa
chr13 227383 216793 218434 236332 243218 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_25632_ch_60_strand.fast5_template_deepnano 216715 262263 - BC_CNV_tombo-MyOv_50.fa
chr13 226930 208453 215537 238323 245122 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_31843_ch_422_strand.fast5_template_deepnano 201373 245156 - BC_CNV_tombo-MyOv_50.fa
chr13 159172 156574 158500 159845 165330 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_15062_ch_285_strand.fast5_template_deepnano 156512 172978 + BC_CNV_tombo-MyOv_50.fa
chr15 512679 498760 502926 522433 525601 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_27148_ch_48_strand.fast5_template_deepnano 485606 526835 - BC_CNV_tombo-MyOv_50.fa
chr16 384431 376704 379747 389115 394141 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_49256_ch_369_strand.fast5_template_deepnano 374970 419820 - BC_CNV_tombo-MyOv_50.fa
chr15 665722 646044 649308 682136 685772 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10461_ch_43_strand.fast5_template_deepnano 646030 688301 + BC_CNV_tombo-MyOv_50.fa
chr1 71595 58931 68903 74287 93214 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_13287_ch_479_strand.fast5_template_deepnano 58873 109139 + BC_CNV_tombo-MyOv_50.fa
chr5 256148 251075 253197 259099 261574 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_26896_ch_58_strand.fast5_template_deepnano 227038 261598 + BC_CNV_tombo-MyOv_50.fa
chr10 98074 88655 92852 103297 106149 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_11967_ch_52_strand.fast5_template_deepnano 84737 136892 - BC_CNV_tombo-MyOv_50.fa
chr10 121492 116511 119607 123377 136881 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_11967_ch_52_strand.fast5_template_deepnano 84737 136892 - BC_CNV_tombo-MyOv_50.fa
chr7 970983 964870 969193 972773 974738 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_41952_ch_130_strand.fast5_template_deepnano 939303 974746 + BC_CNV_tombo-MyOv_50.fa
chr10 612853 601968 606506 619201 621439 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_21551_ch_425_strand.fast5_template_deepnano 583932 626699 + BC_CNV_tombo-MyOv_50.fa
chr7 204168 185474 191775 216562 222729 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12119_ch_395_strand.fast5_template_deepnano 175254 224031 + BC_CNV_tombo-MyOv_50.fa
chr16 418672 413467 417374 419970 425303 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_14205_ch_472_strand.fast5_template_deepnano 407319 438833 + BC_CNV_tombo-MyOv_50.fa
chr4 748630 741975 745359 751901 755547 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_23107_ch_372_strand.fast5_template_deepnano 720471 762937 - BC_CNV_tombo-MyOv_50.fa
chr2 408375 390423 394795 421956 423721 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_33895_ch_495_strand.fast5_template_deepnano 358290 423854 + BC_CNV_tombo-MyOv_50.fa
chr1 30587 23675 29433 31741 37638 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10707_ch_43_strand.fast5_template_deepnano 13088 52513 - BC_CNV_tombo-MyOv_50.fa
chr5 59110 51159 53731 64490 67610 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8733_ch_24_strand.fast5_template_deepnano 5672 92075 - BC_CNV_tombo-MyOv_50.fa
chr11 213639 210220 212669 214609 220727 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_14015_ch_479_strand.fast5_template_deepnano 196333 227572 - BC_CNV_tombo-MyOv_50.fa
chr6 69114 60325 66930 71298 73531 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_33946_ch_495_strand.fast5_template_deepnano 60312 76462 + BC_CNV_tombo-MyOv_50.fa
chr4 85761 78951 83502 88021 92386 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_14288_ch_472_strand.fast5_template_deepnano 73918 99231 - BC_CNV_tombo-MyOv_50.fa
chr13 137388 123146 130644 144133 150926 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_16823_ch_82_strand.fast5_template_deepnano 118610 186823 - BC_CNV_tombo-MyOv_50.fa
chr5 315813 311318 314206 317421 324364 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_22049_ch_17_strand.fast5_template_deepnano 303944 331057 - BC_CNV_tombo-MyOv_49.fa
chr5 93321 76363 83210 103432 108630 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_22257_ch_372_strand.fast5_template_deepnano 69193 108745 + BC_CNV_tombo-MyOv_49.fa
chr8 501900 497072 500618 503182 505424 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_19364_ch_427_strand.fast5_template_deepnano 481067 514480 + BC_CNV_tombo-MyOv_49.fa
chr15 436135 425877 429188 443082 451417 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4462_ch_169_strand.fast5_template_deepnano 355475 451444 + BC_CNV_tombo-MyOv_49.fa
chr6 167628 158269 161016 174241 177120 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_11922_ch_38_strand.fast5_template_deepnano 144550 184857 - BC_CNV_tombo-MyOv_49.fa
chr12 916180 909430 914733 917627 921471 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_21633_ch_307_strand.fast5_template_deepnano 906451 947174 + BC_CNV_tombo-MyOv_49.fa
chr9 106719 89016 97769 115670 124701 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9900_ch_148_strand.fast5_template_deepnano 72888 124711 + BC_CNV_tombo-MyOv_49.fa
chr13 30998 18107 22011 39986 46608 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_22578_ch_372_strand.fast5_template_deepnano 8095 60020 - BC_CNV_tombo-MyOv_49.fa
chr14 714686 703479 707621 721751 724104 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_16342_ch_203_strand.fast5_template_deepnano 703455 765398 + BC_CNV_tombo-MyOv_49.fa
chr7 389117 377342 384500 393735 399089 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8379_ch_483_strand.fast5_template_deepnano 377337 399182 + BC_CNV_tombo-MyOv_49.fa
chr12 288000 270977 276119 299882 303084 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10997_ch_97_strand.fast5_template_deepnano 266277 309933 - BC_CNV_tombo-MyOv_49.fa
chr6 158421 148250 151318 165524 168162 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4924_ch_364_strand.fast5_template_deepnano 143084 181794 - BC_CNV_tombo-MyOv_49.fa
chr13 850129 841415 846598 853661 861485 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_27111_ch_109_strand.fast5_template_deepnano 838551 871314 - BC_CNV_tombo-MyOv_49.fa
chr16 418819 412371 416002 421637 424235 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_26651_ch_58_strand.fast5_template_deepnano 412370 468160 + BC_CNV_tombo-MyOv_49.fa
chr2 486227 482072 484711 487743 496748 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_15114_ch_249_strand.fast5_template_deepnano 481965 520449 - BC_CNV_tombo-MyOv_49.fa
chr15 766126 759601 761875 770377 774348 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_41503_ch_130_strand.fast5_template_deepnano 757018 810403 + BC_CNV_tombo-MyOv_49.fa
chr16 209278 193946 195589 222968 233617 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_29101_ch_307_strand.fast5_template_deepnano 193929 233752 + BC_CNV_tombo-MyOv_60.fa
chr4 1303425 1288880 1293631 1313220 1317119 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_35575_ch_62_strand.fast5_template_deepnano 1273234 1317247 + BC_CNV_tombo-MyOv_60.fa
chr10 113641 108406 111960 115322 117735 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_16094_ch_188_strand.fast5_template_deepnano 98212 117755 + BC_CNV_tombo-MyOv_60.fa
chr16 178735 164446 169935 187536 198975 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_36790_ch_282_strand.fast5_template_deepnano 152978 211088 - BC_CNV_tombo-MyOv_60.fa
chr14 126240 118104 123356 129125 132698 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5685_ch_252_strand.fast5_template_deepnano 114182 132701 - BC_CNV_tombo-MyOv_60.fa
chr9 105807 93130 96039 115575 120021 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_38177_ch_105_strand.fast5_template_deepnano 77943 134204 - BC_CNV_tombo-MyOv_60.fa
chr6 12799 4787 11341 14257 20740 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9953_ch_326_strand.fast5_template_deepnano 3 25206 - BC_CNV_tombo-MyOv_60.fa
chr14 692365 682495 688459 696272 702315 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_134875_ch_404_strand.fast5_template_deepnano 682380 702327 - BC_CNV_tombo-MyOv_60.fa
chr6 118641 101604 112140 125143 131368 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_38627_ch_442_strand.fast5_template_deepnano 98871 131538 - BC_CNV_tombo-MyOv_60.fa
chr8 12380 5101 9378 15383 23763 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9981_ch_76_strand.fast5_template_deepnano 5 23764 - BC_CNV_tombo-MyOv_60.fa
chr16 511212 504745 508004 514420 517418 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_14457_ch_68_strand.fast5_template_deepnano 504733 557790 - BC_CNV_tombo-MyOv_60.fa
chr13 159205 155769 158554 159857 164716 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_31668_ch_372_strand.fast5_template_deepnano 155754 171756 + BC_CNV_tombo-MyOv_60.fa
chr10 375996 355738 357621 394371 396268 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_51690_ch_243_strand.fast5_template_deepnano 355726 426895 - BC_CNV_tombo-MyOv_60.fa
chr13 31869 23348 25545 38194 41590 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_53422_ch_490_strand.fast5_template_deepnano 3 64120 - BC_CNV_tombo-MyOv_60.fa
chr13 468709 466896 468105 469314 471477 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_39587_ch_122_strand.fast5_template_deepnano 466890 476580 - BC_CNV_tombo-MyOv_60.fa
chr15 488970 483160 487974 489966 495374 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_38776_ch_442_strand.fast5_template_deepnano 470052 495375 - BC_CNV_tombo-MyOv_60.fa
chr12 426807 416661 423550 430065 436011 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1352_ch_177_strand.fast5_template_deepnano 386902 464479 - BC_CNV_tombo-MyOv_17.fa
chr12 794435 784235 788591 800279 804674 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3162_ch_458_strand.fast5_template_deepnano 781497 811334 - BC_CNV_tombo-MyOv_17.fa
chr9 74191 57954 72387 75995 78578 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1409_ch_82_strand.fast5_template_deepnano 37732 78687 + BC_CNV_tombo-MyOv_17.fa
chr5 173656 163384 168668 178644 184868 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2003_ch_14_strand.fast5_template_deepnano 148527 185004 + BC_CNV_tombo-MyOv_17.fa
chr8 447368 439605 444357 450380 452546 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1738_ch_391_strand.fast5_template_deepnano 439504 452546 - BC_CNV_tombo-MyOv_17.fa
chr11 258150 245953 254465 261836 270878 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1481_ch_168_strand.fast5_template_deepnano 221276 285339 + BC_CNV_tombo-MyOv_17.fa
chr1 66640 50230 52990 80290 84281 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1643_ch_56_strand.fast5_template_deepnano 39009 84346 - BC_CNV_tombo-MyOv_17.fa
chr11 152640 143106 145628 159652 165119 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4564_ch_85_strand.fast5_template_deepnano 143070 199536 + BC_CNV_tombo-MyOv_17.fa
chr11 98410 94448 97349 99472 107604 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1425_ch_338_strand.fast5_template_deepnano 82092 107705 + BC_CNV_tombo-MyOv_17.fa
chr4 805372 792813 797171 813574 823122 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1763_ch_500_strand.fast5_template_deepnano 792805 823240 + BC_CNV_tombo-MyOv_17.fa
chr6 70607 57377 66660 74554 77381 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1838_ch_396_strand.fast5_template_deepnano 57340 82008 - BC_CNV_tombo-MyOv_17.fa
chr4 1482986 1466292 1472354 1493618 1501949 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2137_ch_240_strand.fast5_template_deepnano 1458679 1506997 + BC_CNV_tombo-MyOv_17.fa
chr15 899792 888210 897076 902508 903557 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2606_ch_356_strand.fast5_template_deepnano 873670 916253 + BC_CNV_tombo-MyOv_17.fa
chr10 685080 666093 667856 702305 704619 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3701_ch_157_strand.fast5_template_deepnano 664110 710064 + BC_CNV_tombo-MyOv_17.fa
chr16 552291 535672 541847 562736 566624 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1982_ch_244_strand.fast5_template_deepnano 492795 566647 - BC_CNV_tombo-MyOv_17.fa
chr10 101506 80871 84202 118810 121760 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2401_ch_372_strand.fast5_template_deepnano 76189 121858 + BC_CNV_tombo-MyOv_17.fa
chr13 226486 219457 224133 228840 231133 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1629_ch_485_strand.fast5_template_deepnano 184165 231165 - BC_CNV_tombo-MyOv_17.fa
chr13 227834 223186 225591 230078 240033 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3057_ch_468_strand.fast5_template_deepnano 218575 240130 + BC_CNV_tombo-MyOv_17.fa
chr4 872709 868069 870036 875382 878922 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1825_ch_486_strand.fast5_template_deepnano 862291 905315 - BC_CNV_tombo-MyOv_17.fa
chr8 64363 51546 57322 71405 78156 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6972_ch_28_strand.fast5_template_deepnano 51541 81802 + BC_CNV_tombo-MyOv_17.fa
chr12 411715 398014 404122 419309 427242 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1638_ch_300_strand.fast5_template_deepnano 386468 427358 + BC_CNV_tombo-MyOv_17.fa
chr8 168668 162640 165909 171427 178060 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_87717_ch_10_strand.fast5_template_deepnano 157254 178127 + BC_CNV_tombo-MyOv_68.fa
chr15 491251 471830 476221 506281 512838 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_81893_ch_504_strand.fast5_template_deepnano 471823 526735 + BC_CNV_tombo-MyOv_68.fa
chr4 1304627 1279030 1284957 1324297 1326217 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_88968_ch_10_strand.fast5_template_deepnano 1276384 1339310 + BC_CNV_tombo-MyOv_68.fa
chr5 551151 536862 546723 555579 570040 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_82245_ch_229_strand.fast5_template_deepnano 536858 576870 + BC_CNV_tombo-MyOv_68.fa
chr15 36115 22161 32183 40047 48655 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_84845_ch_166_strand.fast5_template_deepnano 1089 59871 - BC_CNV_tombo-MyOv_68.fa
chr15 227472 210864 220187 234758 236410 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_73657_ch_499_strand.fast5_template_deepnano 201338 244248 - BC_CNV_tombo-MyOv_68.fa
chr12 373629 361264 368924 378334 392713 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_31996_ch_495_strand.fast5_template_deepnano 361199 392735 - BC_CNV_tombo-MyOv_47.fa
chr6 135984 131964 134155 137813 141741 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_13708_ch_285_strand.fast5_template_deepnano 131869 169982 + BC_CNV_tombo-MyOv_47.fa
chr11 260139 253388 257543 262735 272339 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17400_ch_37_strand.fast5_template_deepnano 239708 282566 - BC_CNV_tombo-MyOv_47.fa
chr7 999677 991803 998595 1000760 1008565 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_21659_ch_297_strand.fast5_template_deepnano 976061 1033862 - BC_CNV_tombo-MyOv_47.fa
chr5 353703 344976 349400 358006 367207 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_15701_ch_93_strand.fast5_template_deepnano 341566 367221 - BC_CNV_tombo-MyOv_47.fa
chr4 220764 195893 199677 241852 245402 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10859_ch_486_strand.fast5_template_deepnano 195772 261900 - BC_CNV_tombo-MyOv_47.fa
chr10 203803 185818 196959 210647 212893 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_25342_ch_58_strand.fast5_template_deepnano 184933 229525 - BC_CNV_tombo-MyOv_47.fa
chr7 162749 125039 151321 174178 177417 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_21489_ch_372_strand.fast5_template_deepnano 125010 182808 - BC_CNV_tombo-MyOv_47.fa
chr15 35283 18590 23134 47433 55661 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_14687_ch_426_strand.fast5_template_deepnano 4 55671 - BC_CNV_tombo-MyOv_47.fa
chr4 552171 527552 531611 572731 575462 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_16162_ch_508_strand.fast5_template_deepnano 527470 581849 - BC_CNV_tombo-MyOv_47.fa
chr10 97471 85852 88702 106240 107949 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_11352_ch_117_strand.fast5_template_deepnano 75134 125605 - BC_CNV_tombo-MyOv_47.fa
chr12 688547 679617 683559 693536 700520 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_25507_ch_58_strand.fast5_template_deepnano 679563 715677 - BC_CNV_tombo-MyOv_47.fa
chr5 174078 161314 164440 183716 187011 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17127_ch_258_strand.fast5_template_deepnano 161200 201797 - BC_CNV_tombo-MyOv_47.fa
chr5 192115 183716 187011 197220 201762 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17127_ch_258_strand.fast5_template_deepnano 161200 201797 - BC_CNV_tombo-MyOv_47.fa
chr16 633422 615333 623512 643332 649967 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_22941_ch_125_strand.fast5_template_deepnano 615245 669551 - BC_CNV_tombo-MyOv_47.fa
chr14 449435 439814 445358 453512 459252 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_28181_ch_164_strand.fast5_template_deepnano 423224 463612 + BC_CNV_tombo-MyOv_47.fa
chr15 309361 298944 302063 316660 323459 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_33224_ch_424_strand.fast5_template_deepnano 298920 329763 + BC_CNV_tombo-MyOv_47.fa
chr7 484222 474552 477395 491049 494534 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_25394_ch_430_strand.fast5_template_deepnano 459120 499659 - BC_CNV_tombo-MyOv_47.fa
chr12 31900 20248 25355 38446 46511 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9952_ch_182_strand.fast5_template_deepnano 3 59821 - BC_CNV_tombo-MyOv_47.fa
chr15 766439 757727 759708 773170 775969 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_14326_ch_35_strand.fast5_template_deepnano 736622 782947 + BC_CNV_tombo-MyOv_47.fa
chr4 752399 742461 747563 757235 759339 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10518_ch_494_strand.fast5_template_deepnano 722128 773651 - BC_CNV_tombo-MyOv_47.fa
chr5 549692 543185 545318 554067 556331 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_34898_ch_264_strand.fast5_template_deepnano 543099 576869 + BC_CNV_tombo-MyOv_47.fa
chr8 501011 495991 497709 504313 506866 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_15244_ch_82_strand.fast5_template_deepnano 495892 510369 - BC_CNV_tombo-MyOv_47.fa
chr2 198577 175079 183027 214128 218070 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_29041_ch_320_strand.fast5_template_deepnano 174955 221893 + BC_CNV_tombo-MyOv_47.fa
chr5 499114 489885 496265 501963 508289 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_14480_ch_122_strand.fast5_template_deepnano 489736 523265 - BC_CNV_tombo-MyOv_47.fa
chr16 73605 64881 68840 78371 84951 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_139_ch_424_strand.fast5_template_deepnano 64867 98751 + BC_CNV_tombo-MyOv_3.fa
chr13 94374 79078 83423 105326 108719 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_209_ch_174_strand.fast5_template_deepnano 61461 118636 - BC_CNV_tombo-MyOv_3.fa
chr12 458072 453401 456218 459926 461690 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_229_ch_205_strand.fast5_template_deepnano 451422 461700 - BC_CNV_tombo-MyOv_3.fa
chr9 134774 122402 127548 142000 147399 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_250_ch_479_strand.fast5_template_deepnano 116417 147480 + BC_CNV_tombo-MyOv_3.fa
chr5 285026 277930 281985 288068 293867 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_255_ch_74_strand.fast5_template_deepnano 246715 297857 - BC_CNV_tombo-MyOv_3.fa
chr12 458273 453350 456620 459926 463877 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_261_ch_422_strand.fast5_template_deepnano 451446 468943 - BC_CNV_tombo-MyOv_3.fa
chr7 389352 382417 384738 393966 398400 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_266_ch_483_strand.fast5_template_deepnano 379719 416247 - BC_CNV_tombo-MyOv_3.fa
chr16 289576 280875 287777 291375 298214 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_278_ch_420_strand.fast5_template_deepnano 280875 298300 + BC_CNV_tombo-MyOv_3.fa
chr16 72513 57341 64656 80370 87408 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_292_ch_35_strand.fast5_template_deepnano 57333 96968 + BC_CNV_tombo-MyOv_3.fa
chr10 234115 230161 232269 235962 239378 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_323_ch_3_strand.fast5_template_deepnano 227299 270719 + BC_CNV_tombo-MyOv_3.fa
chr10 299027 286160 292898 305157 309069 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_328_ch_105_strand.fast5_template_deepnano 286105 309071 - BC_CNV_tombo-MyOv_3.fa
chr5 212004 200954 206055 217954 223004 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_387_ch_14_strand.fast5_template_deepnano 184739 234687 - BC_CNV_tombo-MyOv_3.fa
chr4 700714 691257 694390 707038 710412 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_417_ch_57_strand.fast5_template_deepnano 688207 721332 - BC_CNV_tombo-MyOv_3.fa
chr15 371532 359804 362953 380111 382640 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_426_ch_107_strand.fast5_template_deepnano 341959 385623 - BC_CNV_tombo-MyOv_3.fa
chr15 873775 860369 867892 879659 891158 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_506_ch_310_strand.fast5_template_deepnano 860351 900606 + BC_CNV_tombo-MyOv_3.fa
chr6 255353 246003 249309 261397 265160 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_513_ch_240_strand.fast5_template_deepnano 238149 269944 - BC_CNV_tombo-MyOv_3.fa
chr16 418341 409614 414272 422410 425594 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2163_ch_268_strand.fast5_template_deepnano 394198 425601 - BC_CNV_tombo-MyOv_23.fa
chr11 236729 230226 233021 240438 242586 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2532_ch_367_strand.fast5_template_deepnano 228499 264502 + BC_CNV_tombo-MyOv_23.fa
chr5 59203 51356 55272 63135 67732 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2814_ch_113_strand.fast5_template_deepnano 51351 67820 + BC_CNV_tombo-MyOv_23.fa
chr16 384589 370784 381876 387302 388951 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3383_ch_115_strand.fast5_template_deepnano 370710 404074 - BC_CNV_tombo-MyOv_23.fa
chr2 756989 745468 749996 763983 767041 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2513_ch_32_strand.fast5_template_deepnano 727513 777170 + BC_CNV_tombo-MyOv_23.fa
chr10 683901 670288 676614 691188 693412 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2923_ch_477_strand.fast5_template_deepnano 649605 731194 - BC_CNV_tombo-MyOv_23.fa
chr16 73696 71621 73063 74329 79966 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3910_ch_433_strand.fast5_template_deepnano 69026 97171 + BC_CNV_tombo-MyOv_23.fa
chr9 246466 233509 235966 256966 260952 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6753_ch_124_strand.fast5_template_deepnano 233386 264877 - BC_CNV_tombo-MyOv_23.fa
chr16 509670 492630 496600 522741 528439 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4936_ch_219_strand.fast5_template_deepnano 490256 528494 + BC_CNV_tombo-MyOv_23.fa
chr7 319241 310859 313314 325168 328737 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2302_ch_99_strand.fast5_template_deepnano 299464 332424 + BC_CNV_tombo-MyOv_23.fa
chr9 411420 399107 406698 416142 422056 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2588_ch_367_strand.fast5_template_deepnano 380782 439789 + BC_CNV_tombo-MyOv_23.fa
chr12 1007287 1002410 1006296 1008279 1015557 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2939_ch_477_strand.fast5_template_deepnano 1002328 1045086 - BC_CNV_tombo-MyOv_23.fa
chr12 1024045 1015557 1023246 1024845 1035091 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2939_ch_477_strand.fast5_template_deepnano 1002328 1045086 - BC_CNV_tombo-MyOv_23.fa
chr7 630585 624055 628366 632805 635313 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1847_ch_50_strand.fast5_template_deepnano 619287 646117 - BC_CNV_tombo-MyOv_23.fa
chr2 169527 166385 167538 171516 173675 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2641_ch_32_strand.fast5_template_deepnano 165212 178786 - BC_CNV_tombo-MyOv_23.fa
chr15 981066 952582 959771 1002361 1004270 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2744_ch_391_strand.fast5_template_deepnano 921612 1007393 + BC_CNV_tombo-MyOv_23.fa
chr13 466595 447757 457051 476139 481769 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3353_ch_380_strand.fast5_template_deepnano 447610 481780 - BC_CNV_tombo-MyOv_23.fa
chr7 661774 644848 648319 675229 679908 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_31805_ch_8_strand.fast5_template_deepnano 636363 686347 + BC_CNV_tombo-MyOv_34.fa
chr13 136976 124062 129632 144321 154166 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5281_ch_487_strand.fast5_template_deepnano 102545 154195 - BC_CNV_tombo-MyOv_34.fa
chr12 32031 24318 30547 33515 35813 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8482_ch_285_strand.fast5_template_deepnano 18949 47140 - BC_CNV_tombo-MyOv_34.fa
chr9 72825 64376 69334 76317 79398 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5812_ch_43_strand.fast5_template_deepnano 56506 103180 - BC_CNV_tombo-MyOv_34.fa
chr7 163091 158764 161840 164343 171197 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7141_ch_463_strand.fast5_template_deepnano 158719 174584 - BC_CNV_tombo-MyOv_34.fa
chr16 384875 370601 382028 387723 391800 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12830_ch_161_strand.fast5_template_deepnano 370570 391812 + BC_CNV_tombo-MyOv_34.fa
chr15 1014466 1005555 1009493 1019439 1022414 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8401_ch_59_strand.fast5_template_deepnano 998850 1024938 + BC_CNV_tombo-MyOv_34.fa
chr6 69419 63291 66512 72327 74365 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5609_ch_298_strand.fast5_template_deepnano 53899 76886 + BC_CNV_tombo-MyOv_34.fa
chr2 623106 615013 620138 626074 630831 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5873_ch_494_strand.fast5_template_deepnano 584052 634001 + BC_CNV_tombo-MyOv_34.fa
chr4 1302678 1291688 1298430 1306926 1313951 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8156_ch_83_strand.fast5_template_deepnano 1291680 1327288 + BC_CNV_tombo-MyOv_34.fa
chr5 212565 204429 208794 216337 218301 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5488_ch_331_strand.fast5_template_deepnano 185184 228263 - BC_CNV_tombo-MyOv_34.fa
chr10 67833 56390 60368 75299 77241 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_14720_ch_341_strand.fast5_template_deepnano 42205 108030 + BC_CNV_tombo-MyOv_34.fa
chr10 87945 77241 84345 91545 96355 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_14720_ch_341_strand.fast5_template_deepnano 42205 108030 + BC_CNV_tombo-MyOv_34.fa
chr13 445866 439714 445014 446718 449568 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_605_ch_440_strand.fast5_template_deepnano 426094 455686 + BC_CNV_tombo-MyOv_34.fa
chr3 224884 213192 221456 228312 231727 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8768_ch_502_strand.fast5_template_deepnano 213078 240478 - BC_CNV_tombo-MyOv_34.fa
chr9 214912 204713 206387 223438 225548 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9850_ch_491_strand.fast5_template_deepnano 174250 225560 - BC_CNV_tombo-MyOv_34.fa
chr10 613538 590447 598417 628659 632262 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_15907_ch_454_strand.fast5_template_deepnano 571026 632263 - BC_CNV_tombo-MyOv_34.fa
chr7 778977 769538 774137 783818 785454 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5063_ch_404_strand.fast5_template_deepnano 763730 803374 - BC_CNV_tombo-MyOv_34.fa
chr1 72713 64078 66773 78653 86817 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6410_ch_153_strand.fast5_template_deepnano 49104 110555 + BC_CNV_tombo-MyOv_26.fa
chr1 95040 88722 89888 100193 106157 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6410_ch_153_strand.fast5_template_deepnano 49104 110555 + BC_CNV_tombo-MyOv_26.fa
chr10 338312 320352 326857 349767 354739 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3338_ch_113_strand.fast5_template_deepnano 301093 354843 + BC_CNV_tombo-MyOv_26.fa
chr12 412111 396223 399909 424314 428867 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9548_ch_174_strand.fast5_template_deepnano 391913 435858 - BC_CNV_tombo-MyOv_26.fa
chr14 279778 274146 276904 282652 284500 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2918_ch_298_strand.fast5_template_deepnano 273945 286020 - BC_CNV_tombo-MyOv_26.fa
chr13 467931 463668 465308 470554 474880 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4348_ch_420_strand.fast5_template_deepnano 459033 474889 - BC_CNV_tombo-MyOv_26.fa
chr12 458491 451419 456757 460225 465023 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2877_ch_227_strand.fast5_template_deepnano 451417 465071 + BC_CNV_tombo-MyOv_26.fa
chr9 74793 57682 67555 82032 87399 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4018_ch_21_strand.fast5_template_deepnano 57633 91449 - BC_CNV_tombo-MyOv_26.fa
chr7 313659 302245 309769 317549 333118 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5058_ch_56_strand.fast5_template_deepnano 290344 333119 - BC_CNV_tombo-MyOv_26.fa
chr2 486437 481662 485686 487189 493059 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5607_ch_503_strand.fast5_template_deepnano 481640 503546 - BC_CNV_tombo-MyOv_26.fa
chr16 634206 621745 627487 640925 643809 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4478_ch_10_strand.fast5_template_deepnano 602747 660614 - BC_CNV_tombo-MyOv_26.fa
chr16 417983 399725 407822 428145 436393 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3086_ch_255_strand.fast5_template_deepnano 393246 454470 - BC_CNV_tombo-MyOv_26.fa
chr11 302241 292470 298570 305913 310116 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3333_ch_494_strand.fast5_template_deepnano 285257 313297 - BC_CNV_tombo-MyOv_26.fa
chr7 64486 52971 60983 67990 70028 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3348_ch_35_strand.fast5_template_deepnano 52924 86155 - BC_CNV_tombo-MyOv_26.fa
chr5 255155 241833 248466 261845 266968 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3559_ch_148_strand.fast5_template_deepnano 241799 302573 - BC_CNV_tombo-MyOv_26.fa
chr5 285202 269277 274121 296284 300363 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3559_ch_148_strand.fast5_template_deepnano 241799 302573 - BC_CNV_tombo-MyOv_26.fa
chr7 388176 381969 387419 388933 392213 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3090_ch_255_strand.fast5_template_deepnano 369281 427579 - BC_CNV_tombo-MyOv_26.fa
chr10 206307 178945 186623 225992 233848 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4378_ch_502_strand.fast5_template_deepnano 178937 248696 + BC_CNV_tombo-MyOv_26.fa
chr11 612696 602511 610213 615180 617742 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3382_ch_73_strand.fast5_template_deepnano 586504 617746 - BC_CNV_tombo-MyOv_26.fa
chr10 161797 146828 157300 166294 173393 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_129574_ch_160_strand.fast5_template_deepnano 128690 173510 + BC_CNV_tombo-MyOv_26.fa
chr4 1266507 1256422 1260357 1272657 1284559 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3123_ch_326_strand.fast5_template_deepnano 1244397 1297025 + BC_CNV_tombo-MyOv_26.fa
chr16 512266 503346 508002 516530 520262 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_11959_ch_180_strand.fast5_template_deepnano 497838 545496 - BC_CNV_tombo-MyOv_26.fa
chr7 834500 823521 826219 842781 846326 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3103_ch_466_strand.fast5_template_deepnano 823397 868800 - BC_CNV_tombo-MyOv_26.fa
chr10 99906 89651 93040 106773 110923 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6673_ch_153_strand.fast5_template_deepnano 80287 122951 + BC_CNV_tombo-MyOv_26.fa
chr16 634105 623498 625681 642529 647908 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3735_ch_155_strand.fast5_template_deepnano 599968 653103 - BC_CNV_tombo-MyOv_26.fa
chr15 490130 479789 485225 495036 499305 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4812_ch_230_strand.fast5_template_deepnano 468902 499358 - BC_CNV_tombo-MyOv_26.fa
chr16 241434 231912 237303 245565 250653 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6744_ch_372_strand.fast5_template_deepnano 231819 256467 - BC_CNV_tombo-MyOv_26.fa
chr15 85897 67446 76430 95364 99621 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_31325_ch_483_strand.fast5_template_deepnano 67438 115686 - BC_CNV_tombo-MyOv_64.fa
chr7 655558 638405 644940 666176 670630 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_34896_ch_15_strand.fast5_template_deepnano 622816 675746 + BC_CNV_tombo-MyOv_64.fa
chr15 767767 746587 755576 779959 790599 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_54627_ch_243_strand.fast5_template_deepnano 741533 811363 - BC_CNV_tombo-MyOv_64.fa
chr7 777595 772414 776603 778587 785204 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_54408_ch_468_strand.fast5_template_deepnano 749488 794556 - BC_CNV_tombo-MyOv_64.fa
chr10 160123 150952 153900 166346 169493 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_32345_ch_341_strand.fast5_template_deepnano 150851 173972 - BC_CNV_tombo-MyOv_64.fa
chr10 738758 733389 736646 740871 745740 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_119811_ch_464_strand.fast5_template_deepnano 733349 745748 + BC_CNV_tombo-MyOv_64.fa
chr7 318764 309211 315185 322343 325317 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_42849_ch_122_strand.fast5_template_deepnano 301913 341091 - BC_CNV_tombo-MyOv_64.fa
chr5 287942 278868 281391 294494 297875 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_19912_ch_68_strand.fast5_template_deepnano 276965 302418 + BC_CNV_tombo-MyOv_64.fa
chr5 499663 481322 484288 515039 517852 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2969_ch_99_strand.fast5_template_deepnano 456686 523400 + BC_CNV_tombo-MyOv_27.fa
chr14 162763 140985 143945 181582 184524 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5286_ch_458_strand.fast5_template_deepnano 118202 184544 - BC_CNV_tombo-MyOv_27.fa
chr16 777584 766116 768157 787011 795811 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3126_ch_366_strand.fast5_template_deepnano 766058 809055 + BC_CNV_tombo-MyOv_27.fa
chr5 407175 401917 406614 407737 411553 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6753_ch_239_strand.fast5_template_deepnano 388611 418135 + BC_CNV_tombo-MyOv_27.fa
chr8 447745 440171 445311 450180 452704 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3136_ch_373_strand.fast5_template_deepnano 430169 452817 + BC_CNV_tombo-MyOv_27.fa
chr15 214073 201019 205616 222530 235556 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3215_ch_466_strand.fast5_template_deepnano 201018 245915 + BC_CNV_tombo-MyOv_27.fa
chr15 167861 142002 150361 185362 192922 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9695_ch_17_strand.fast5_template_deepnano 141844 206903 - BC_CNV_tombo-MyOv_27.fa
chr15 670027 659685 667587 672468 681054 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3301_ch_255_strand.fast5_template_deepnano 656846 681085 - BC_CNV_tombo-MyOv_27.fa
chr14 737772 726345 728341 747204 754501 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3890_ch_155_strand.fast5_template_deepnano 698402 765392 + BC_CNV_tombo-MyOv_27.fa
chr4 581161 575474 580480 581843 584900 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3271_ch_373_strand.fast5_template_deepnano 569670 584982 + BC_CNV_tombo-MyOv_27.fa
chr14 126065 117124 121565 130565 132788 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3708_ch_316_strand.fast5_template_deepnano 107785 146514 + BC_CNV_tombo-MyOv_27.fa
chr4 1166657 1151746 1156751 1176564 1183642 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3321_ch_466_strand.fast5_template_deepnano 1151737 1183658 + BC_CNV_tombo-MyOv_27.fa
chr15 664386 652425 660490 668282 670956 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3721_ch_316_strand.fast5_template_deepnano 652368 671070 + BC_CNV_tombo-MyOv_27.fa
chr12 622993 610261 618785 627202 629210 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5824_ch_503_strand.fast5_template_deepnano 605177 648951 + BC_CNV_tombo-MyOv_27.fa
chr12 1006581 1002580 1005083 1008079 1012200 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17947_ch_275_strand.fast5_template_deepnano 1002472 1029886 - BC_CNV_tombo-MyOv_27.fa
chr12 1006597 994134 996711 1016483 1019202 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3232_ch_252_strand.fast5_template_deepnano 994121 1025977 - BC_CNV_tombo-MyOv_27.fa
chr5 95219 81263 86220 104218 108743 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_37293_ch_91_strand.fast5_template_deepnano 53042 112716 + BC_CNV_tombo-MyOv_53.fa
chr5 145130 127659 132669 157592 160264 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_24236_ch_372_strand.fast5_template_deepnano 115975 160265 - BC_CNV_tombo-MyOv_53.fa
chr4 461893 454181 457896 465891 470759 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_29574_ch_109_strand.fast5_template_deepnano 442105 498334 - BC_CNV_tombo-MyOv_53.fa
chr8 168696 152289 161017 176375 184091 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5471_ch_289_strand.fast5_template_deepnano 147700 184094 - BC_CNV_tombo-MyOv_53.fa
chr12 91657 83396 90917 92398 95243 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_37319_ch_91_strand.fast5_template_deepnano 65404 102272 - BC_CNV_tombo-MyOv_53.fa
chr15 436851 433247 435356 438346 441628 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_24116_ch_407_strand.fast5_template_deepnano 433122 448268 - BC_CNV_tombo-MyOv_53.fa
chr15 337356 323227 328035 346677 353905 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_28293_ch_489_strand.fast5_template_deepnano 319636 356270 + BC_CNV_tombo-MyOv_53.fa
chr15 35489 29752 34109 36869 41247 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_51503_ch_369_strand.fast5_template_deepnano 4 41254 - BC_CNV_tombo-MyOv_53.fa
chr4 123327 112749 121047 125607 128246 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_35213_ch_444_strand.fast5_template_deepnano 112653 128282 - BC_CNV_tombo-MyOv_53.fa
chr1 41956 31139 38210 45703 57516 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_36501_ch_200_strand.fast5_template_deepnano 22658 57599 + BC_CNV_tombo-MyOv_53.fa
chr7 162777 159532 161710 163844 168845 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10334_ch_381_strand.fast5_template_deepnano 102802 177129 - BC_CNV_tombo-MyOv_53.fa
chr7 63869 56055 60292 67446 73515 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_14750_ch_246_strand.fast5_template_deepnano 46122 73582 - BC_CNV_tombo-MyOv_53.fa
chr4 213113 201189 206201 220025 221841 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_14062_ch_503_strand.fast5_template_deepnano 184357 254106 + BC_CNV_tombo-MyOv_53.fa
chr14 725181 718407 722351 728012 732193 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_14078_ch_494_strand.fast5_template_deepnano 704566 738958 - BC_CNV_tombo-MyOv_53.fa
chr4 1023569 1005328 1011938 1035201 1037218 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_26569_ch_62_strand.fast5_template_deepnano 989752 1037342 + BC_CNV_tombo-MyOv_53.fa
chr14 251078 242261 248694 253462 256128 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_52095_ch_113_strand.fast5_template_deepnano 242218 305297 - BC_CNV_tombo-MyOv_53.fa
chr14 274585 253462 256128 293043 299025 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_52095_ch_113_strand.fast5_template_deepnano 242218 305297 - BC_CNV_tombo-MyOv_53.fa
chr7 205720 180698 184323 227117 234115 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_51584_ch_369_strand.fast5_template_deepnano 173844 234225 + BC_CNV_tombo-MyOv_53.fa
chr16 298092 294624 297545 298640 302880 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_24492_ch_372_strand.fast5_template_deepnano 291302 316027 - BC_CNV_tombo-MyOv_53.fa
chr8 447856 441443 445417 450296 453758 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_38585_ch_153_strand.fast5_template_deepnano 433494 459131 - BC_CNV_tombo-MyOv_53.fa
chr10 297881 282957 288474 307289 313963 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_23739_ch_406_strand.fast5_template_deepnano 275300 334453 - BC_CNV_tombo-MyOv_53.fa
chr7 509018 501049 507121 510915 513711 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_19797_ch_442_strand.fast5_template_deepnano 483685 519924 - BC_CNV_tombo-MyOv_53.fa
chr13 611506 589022 596071 626941 633280 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_30047_ch_109_strand.fast5_template_deepnano 579334 633333 - BC_CNV_tombo-MyOv_53.fa
chr7 1063053 1050741 1052746 1073360 1079377 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_24763_ch_374_strand.fast5_template_deepnano 1037542 1090934 + BC_CNV_tombo-MyOv_53.fa
chr11 517797 510501 511964 523630 526490 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_28590_ch_489_strand.fast5_template_deepnano 480601 548526 + BC_CNV_tombo-MyOv_53.fa
chr7 421267 411430 416806 425729 431463 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_21646_ch_225_strand.fast5_template_deepnano 411381 436202 + BC_CNV_tombo-MyOv_53.fa
chr9 216007 197514 206861 225154 228978 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_16708_ch_26_strand.fast5_template_deepnano 178799 235993 + BC_CNV_tombo-MyOv_40.fa
chr6 68478 57858 65342 71614 85183 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_19720_ch_489_strand.fast5_template_deepnano 36072 85183 - BC_CNV_tombo-MyOv_40.fa
chr9 411643 380739 388120 435167 439515 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_15615_ch_183_strand.fast5_template_deepnano 375489 439551 - BC_CNV_tombo-MyOv_40.fa
chr11 418622 407714 411598 425646 433665 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17590_ch_308_strand.fast5_template_deepnano 404210 433756 + BC_CNV_tombo-MyOv_40.fa
chr14 126198 119769 122881 129515 135970 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_21653_ch_91_strand.fast5_template_deepnano 119768 140879 + BC_CNV_tombo-MyOv_40.fa
chr13 31113 7378 10405 51822 56744 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7544_ch_410_strand.fast5_template_deepnano 5626 65640 - BC_CNV_tombo-MyOv_40.fa
chr10 500190 489442 498717 501663 503702 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_32358_ch_206_strand.fast5_template_deepnano 481131 503724 - BC_CNV_tombo-MyOv_40.fa
chr3 38765 24789 30058 47472 50407 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_19919_ch_223_strand.fast5_template_deepnano 8427 64894 - BC_CNV_tombo-MyOv_40.fa
chr15 336578 316525 322488 350669 356411 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_37210_ch_130_strand.fast5_template_deepnano 310445 356445 + BC_CNV_tombo-MyOv_40.fa
chr12 413152 400832 409071 417233 424348 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9210_ch_157_strand.fast5_template_deepnano 396655 436115 + BC_CNV_tombo-MyOv_40.fa
chr4 1057621 1041622 1052220 1063023 1065147 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_21888_ch_313_strand.fast5_template_deepnano 1041516 1069062 - BC_CNV_tombo-MyOv_40.fa
chr16 212990 194082 203008 222972 226591 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9343_ch_105_strand.fast5_template_deepnano 173998 235307 - BC_CNV_tombo-MyOv_40.fa
chr16 843021 837607 840546 845497 850604 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12720_ch_124_strand.fast5_template_deepnano 794699 850627 - BC_CNV_tombo-MyOv_40.fa
chr16 564980 558125 560643 569317 572276 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17667_ch_304_strand.fast5_template_deepnano 558033 592188 - BC_CNV_tombo-MyOv_40.fa
chr8 57689 49572 55900 59478 64010 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5453_ch_483_strand.fast5_template_deepnano 40329 64094 + BC_CNV_tombo-MyOv_40.fa
chr3 132153 124475 128207 136100 140127 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_16942_ch_306_strand.fast5_template_deepnano 124462 148605 + BC_CNV_tombo-MyOv_40.fa
chr15 338585 313724 319145 358026 367207 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_37210_ch_84_strand.fast5_template_deepnano 307045 390731 - BC_CNV_tombo-MyOv_40.fa
chr4 1353272 1344592 1346514 1360031 1363349 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9782_ch_66_strand.fast5_template_deepnano 1344570 1387104 - BC_CNV_tombo-MyOv_40.fa
chr2 546873 532955 536021 557726 570415 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1289_ch_315_strand.fast5_template_deepnano 499846 570433 - BC_CNV_tombo-MyOv_16.fa
chr12 458862 451419 456319 461405 465076 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2580_ch_290_strand.fast5_template_deepnano 451417 465100 + BC_CNV_tombo-MyOv_16.fa
chr7 388652 373956 383820 393484 398084 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1403_ch_483_strand.fast5_template_deepnano 373897 427182 - BC_CNV_tombo-MyOv_16.fa
chr15 489944 483835 487336 492553 499643 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1459_ch_357_strand.fast5_template_deepnano 473716 539749 + BC_CNV_tombo-MyOv_16.fa
chr13 568001 563335 567251 568751 572804 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1534_ch_182_strand.fast5_template_deepnano 559124 580818 - BC_CNV_tombo-MyOv_16.fa
chr4 407982 403884 406691 409273 413403 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1680_ch_500_strand.fast5_template_deepnano 403791 425444 - BC_CNV_tombo-MyOv_16.fa
chr3 225350 212497 224800 225900 231358 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1408_ch_493_strand.fast5_template_deepnano 203724 257665 + BC_CNV_tombo-MyOv_16.fa
chr14 610397 604933 608491 612304 616129 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1483_ch_137_strand.fast5_template_deepnano 575723 632323 + BC_CNV_tombo-MyOv_16.fa
chr13 554318 548172 549826 558810 561906 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1557_ch_317_strand.fast5_template_deepnano 548092 587804 + BC_CNV_tombo-MyOv_16.fa
chr2 802219 777805 792596 811843 813026 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1643_ch_249_strand.fast5_template_deepnano 753860 813181 + BC_CNV_tombo-MyOv_16.fa
chr4 749220 735863 743522 754918 760296 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1493_ch_137_strand.fast5_template_deepnano 735780 767143 - BC_CNV_tombo-MyOv_16.fa
chr4 1017101 1008274 1012268 1021934 1029041 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1524_ch_371_strand.fast5_template_deepnano 1000171 1029129 + BC_CNV_tombo-MyOv_16.fa
chr14 196220 183581 194812 197629 200193 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1717_ch_73_strand.fast5_template_deepnano 183529 208298 + BC_CNV_tombo-MyOv_16.fa
chr2 326372 306914 310257 342487 344187 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2463_ch_199_strand.fast5_template_deepnano 297828 347130 + BC_CNV_tombo-MyOv_16.fa
chr14 61345 56085 58654 64037 72151 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6504_ch_246_strand.fast5_template_deepnano 40134 84419 - BC_CNV_tombo-MyOv_16.fa
chr2 408120 393761 396166 420075 422338 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1517_ch_151_strand.fast5_template_deepnano 378535 436712 - BC_CNV_tombo-MyOv_16.fa
chr12 459005 451499 457186 460825 464271 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1954_ch_6_strand.fast5_template_deepnano 451436 468929 + BC_CNV_tombo-MyOv_16.fa
chr15 227127 219116 225487 228767 234843 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1481_ch_52_strand.fast5_template_deepnano 182532 241173 + BC_CNV_tombo-MyOv_16.fa
chr11 55998 43686 45784 66212 69843 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1463_ch_493_strand.fast5_template_deepnano 18508 76757 - BC_CNV_tombo-MyOv_16.fa
chr16 288674 279767 283437 293912 299898 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1911_ch_439_strand.fast5_template_deepnano 279656 313723 - BC_CNV_tombo-MyOv_16.fa
chr15 566877 557952 565080 568675 573944 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1387_ch_82_strand.fast5_template_deepnano 542281 573965 - BC_CNV_tombo-MyOv_16.fa
chr4 1448051 1436014 1445336 1450767 1456271 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1574_ch_182_strand.fast5_template_deepnano 1436010 1480910 + BC_CNV_tombo-MyOv_16.fa
chr4 1462398 1456271 1460774 1464023 1472757 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1574_ch_182_strand.fast5_template_deepnano 1436010 1480910 + BC_CNV_tombo-MyOv_16.fa
chr13 370656 362715 368276 373036 376630 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1062_ch_52_strand.fast5_template_deepnano 332863 376630 - BC_CNV_tombo-MyOv_13.fa
chr7 999064 990757 996999 1001130 1004086 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1068_ch_283_strand.fast5_template_deepnano 979386 1023470 - BC_CNV_tombo-MyOv_13.fa
chr7 574263 567571 570611 577915 585494 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2118_ch_9_strand.fast5_template_deepnano 537900 605375 + BC_CNV_tombo-MyOv_13.fa
chr7 483249 471004 476480 490019 497442 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1288_ch_465_strand.fast5_template_deepnano 450696 516676 - BC_CNV_tombo-MyOv_13.fa
chr7 509380 504244 506995 511766 516662 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1288_ch_465_strand.fast5_template_deepnano 450696 516676 - BC_CNV_tombo-MyOv_13.fa
chr4 1462140 1460116 1461616 1462665 1464225 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1064_ch_129_strand.fast5_template_deepnano 1452265 1522302 + BC_CNV_tombo-MyOv_13.fa
chr8 245483 235511 240338 250628 257548 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1230_ch_21_strand.fast5_template_deepnano 214267 270360 - BC_CNV_tombo-MyOv_13.fa
chr13 502913 495207 500457 505370 512954 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1152_ch_377_strand.fast5_template_deepnano 488353 556507 - BC_CNV_tombo-MyOv_13.fa
chr9 309118 298230 305450 312786 315342 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1330_ch_498_strand.fast5_template_deepnano 298078 317457 - BC_CNV_tombo-MyOv_13.fa
chr5 287193 283749 284453 289934 293487 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1687_ch_60_strand.fast5_template_deepnano 283748 293567 + BC_CNV_tombo-MyOv_13.fa
chr9 215924 202638 208555 223294 224965 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1274_ch_180_strand.fast5_template_deepnano 175199 235621 + BC_CNV_tombo-MyOv_13.fa
chr9 247132 234778 244083 250182 256008 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1531_ch_233_strand.fast5_template_deepnano 228204 279780 - BC_CNV_tombo-MyOv_13.fa
chr5 287109 273795 284419 289800 297261 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1227_ch_234_strand.fast5_template_deepnano 263134 324419 - BC_CNV_tombo-MyOv_13.fa
chr2 29082 17715 20160 38004 40476 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1268_ch_282_strand.fast5_template_deepnano 3345 47848 + BC_CNV_tombo-MyOv_13.fa
chr4 1354012 1329162 1332340 1375685 1379489 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1036_ch_418_strand.fast5_template_deepnano 1312975 1383208 + BC_CNV_tombo-MyOv_13.fa
chr4 122307 84883 105067 139548 141545 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1138_ch_338_strand.fast5_template_deepnano 84774 141581 - BC_CNV_tombo-MyOv_13.fa
chr14 450805 442341 445708 455903 457282 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1677_ch_237_strand.fast5_template_deepnano 442302 484046 - BC_CNV_tombo-MyOv_13.fa
chr14 691852 686449 690955 692750 696667 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10393_ch_352_strand.fast5_template_deepnano 686440 730146 + BC_CNV_tombo-MyOv_45.fa
chr7 202188 181089 189766 214611 218912 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_14309_ch_368_strand.fast5_template_deepnano 175294 226752 - BC_CNV_tombo-MyOv_45.fa
chr2 487251 469709 472941 501562 504714 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3751_ch_440_strand.fast5_template_deepnano 465973 539010 + BC_CNV_tombo-MyOv_45.fa
chr2 517737 513752 516693 518782 522656 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3751_ch_440_strand.fast5_template_deepnano 465973 539010 + BC_CNV_tombo-MyOv_45.fa
chr4 329470 319672 322716 336224 339044 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_61901_ch_134_strand.fast5_template_deepnano 311639 339139 + BC_CNV_tombo-MyOv_45.fa
chr9 175491 161042 173542 177441 188691 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8745_ch_395_strand.fast5_template_deepnano 160954 200898 + BC_CNV_tombo-MyOv_45.fa
chr4 58687 53654 56883 60491 65769 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_24580_ch_430_strand.fast5_template_deepnano 15874 65773 - BC_CNV_tombo-MyOv_45.fa
chr6 199479 180910 185995 212963 216447 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5440_ch_415_strand.fast5_template_deepnano 175866 216455 - BC_CNV_tombo-MyOv_45.fa
chr15 981153 975972 979888 982419 997993 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12982_ch_249_strand.fast5_template_deepnano 954725 998027 + BC_CNV_tombo-MyOv_45.fa
chr8 448233 432778 435216 461251 465149 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_13889_ch_253_strand.fast5_template_deepnano 430470 476718 + BC_CNV_tombo-MyOv_45.fa
chr14 233120 212665 215939 250301 254895 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_26400_ch_424_strand.fast5_template_deepnano 208181 254988 + BC_CNV_tombo-MyOv_45.fa
chr11 301594 290528 293719 309469 313813 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_24784_ch_58_strand.fast5_template_deepnano 281195 335381 + BC_CNV_tombo-MyOv_45.fa
chr15 514688 509733 512968 516409 521390 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_13216_ch_71_strand.fast5_template_deepnano 509612 541484 - BC_CNV_tombo-MyOv_45.fa
chr5 439000 433166 437465 440536 442640 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_25308_ch_325_strand.fast5_template_deepnano 406513 449311 + BC_CNV_tombo-MyOv_45.fa
chr7 205014 186819 191838 218190 222030 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_13908_ch_135_strand.fast5_template_deepnano 182735 244663 - BC_CNV_tombo-MyOv_45.fa
chr13 286465 275807 279783 293148 301948 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_20849_ch_297_strand.fast5_template_deepnano 261593 301956 - BC_CNV_tombo-MyOv_45.fa
chr15 658160 640270 650422 665898 671441 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_19910_ch_307_strand.fast5_template_deepnano 640212 704563 - BC_CNV_tombo-MyOv_45.fa
chr15 683232 665898 671441 695024 704539 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_19910_ch_307_strand.fast5_template_deepnano 640212 704563 - BC_CNV_tombo-MyOv_45.fa
chr8 358394 349528 353142 363646 365956 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_20496_ch_17_strand.fast5_template_deepnano 333105 376855 - BC_CNV_tombo-MyOv_45.fa
chr13 717621 709511 714399 720843 727778 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_13126_ch_285_strand.fast5_template_deepnano 696518 735477 - BC_CNV_tombo-MyOv_45.fa
chr12 794152 789154 792224 796081 799083 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_13181_ch_249_strand.fast5_template_deepnano 781965 817504 + BC_CNV_tombo-MyOv_45.fa
chr7 607520 603811 605909 609132 613199 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_13212_ch_285_strand.fast5_template_deepnano 592855 613219 - BC_CNV_tombo-MyOv_45.fa
chr11 153096 135747 138542 167651 169676 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_13748_ch_122_strand.fast5_template_deepnano 133723 180286 + BC_CNV_tombo-MyOv_45.fa
chr11 153627 131270 139607 167648 172555 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17977_ch_341_strand.fast5_template_deepnano 105518 181627 + BC_CNV_tombo-MyOv_45.fa
chr4 14166 10 5276 23056 24936 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_29370_ch_377_strand.fast5_template_deepnano 3 70501 - BC_CNV_tombo-MyOv_61.fa
chr4 45851 24936 31175 60528 66292 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_29370_ch_377_strand.fast5_template_deepnano 3 70501 - BC_CNV_tombo-MyOv_61.fa
chr11 566048 557690 563414 568682 572951 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_23018_ch_380_strand.fast5_template_deepnano 548314 576244 + BC_CNV_tombo-MyOv_61.fa
chr16 729175 721082 725090 733261 736871 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_26282_ch_453_strand.fast5_template_deepnano 721065 767265 - BC_CNV_tombo-MyOv_61.fa
chr16 512005 503293 506265 517746 519989 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_38680_ch_105_strand.fast5_template_deepnano 485524 530812 + BC_CNV_tombo-MyOv_61.fa
chr9 163164 153172 158282 168046 171008 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_22627_ch_241_strand.fast5_template_deepnano 144919 190309 + BC_CNV_tombo-MyOv_61.fa
chr5 316785 307827 310708 322862 331454 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_41276_ch_191_strand.fast5_template_deepnano 283067 331462 - BC_CNV_tombo-MyOv_61.fa
chr14 279924 270283 273296 286553 293409 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_36502_ch_62_strand.fast5_template_deepnano 270185 319488 - BC_CNV_tombo-MyOv_61.fa
chr15 981661 969190 971955 991367 993565 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_40935_ch_115_strand.fast5_template_deepnano 945894 1013363 + BC_CNV_tombo-MyOv_61.fa
chr4 1385319 1368655 1374958 1395681 1398607 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_23745_ch_34_strand.fast5_template_deepnano 1343997 1427851 + BC_CNV_tombo-MyOv_61.fa
chr2 39232 34941 37998 40466 42365 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_42998_ch_151_strand.fast5_template_deepnano 4 53025 - BC_CNV_tombo-MyOv_61.fa
chr4 123726 113655 121682 125771 131175 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_26656_ch_103_strand.fast5_template_deepnano 104685 131182 - BC_CNV_tombo-MyOv_61.fa
chr12 730909 724897 728831 732988 737316 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10598_ch_244_strand.fast5_template_deepnano 717984 746155 + BC_CNV_tombo-MyOv_61.fa
chr6 167015 150262 156564 177467 181190 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10539_ch_315_strand.fast5_template_deepnano 139394 184396 - BC_CNV_tombo-MyOv_37.fa
chr16 332061 325380 327858 336264 338090 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7184_ch_384_strand.fast5_template_deepnano 325338 349141 + BC_CNV_tombo-MyOv_37.fa
chr15 372569 365681 369570 375568 379563 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10278_ch_83_strand.fast5_template_deepnano 346650 383035 - BC_CNV_tombo-MyOv_37.fa
chr2 486855 473596 480450 493260 502368 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_19751_ch_280_strand.fast5_template_deepnano 473481 502377 - BC_CNV_tombo-MyOv_37.fa
chr16 553409 546298 550782 556036 558383 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5850_ch_150_strand.fast5_template_deepnano 533919 577975 + BC_CNV_tombo-MyOv_37.fa
chr2 328630 312854 315142 342118 344604 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_16145_ch_306_strand.fast5_template_deepnano 310535 352305 + BC_CNV_tombo-MyOv_37.fa
chr7 888609 874722 880025 897193 906449 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6975_ch_66_strand.fast5_template_deepnano 874718 924840 + BC_CNV_tombo-MyOv_37.fa
chr7 999427 991101 993367 1005488 1010102 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_440_ch_364_strand.fast5_template_deepnano 986531 1020373 + BC_CNV_tombo-MyOv_37.fa
chr6 12693 5383 9808 15579 18497 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8913_ch_285_strand.fast5_template_deepnano 2 26471 + BC_CNV_tombo-MyOv_37.fa
chr8 359332 349174 353142 365523 374445 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12814_ch_447_strand.fast5_template_deepnano 349060 391554 - BC_CNV_tombo-MyOv_37.fa
chr15 873711 866430 872383 875039 878558 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_40230_ch_55_strand.fast5_template_deepnano 853904 878608 + BC_CNV_tombo-MyOv_37.fa
chr15 681534 677645 680220 682849 686547 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_15908_ch_26_strand.fast5_template_deepnano 641870 686594 - BC_CNV_tombo-MyOv_37.fa
chr15 310280 299220 306318 314243 321264 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_22076_ch_116_strand.fast5_template_deepnano 268386 321366 + BC_CNV_tombo-MyOv_37.fa
chr2 486324 479243 483540 489108 497804 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_58478_ch_423_strand.fast5_template_deepnano 473990 531961 - BC_CNV_tombo-MyOv_37.fa
chr2 177996 171089 174344 181649 185991 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6610_ch_182_strand.fast5_template_deepnano 167482 186083 + BC_CNV_tombo-MyOv_37.fa
chr2 171510 153325 159995 183026 185889 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_15145_ch_173_strand.fast5_template_deepnano 145067 203139 + BC_CNV_tombo-MyOv_37.fa
chr10 285151 278096 281901 288401 296841 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8402_ch_146_strand.fast5_template_deepnano 267472 353792 - BC_CNV_tombo-MyOv_37.fa
chr9 32806 18724 26869 38744 41924 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6876_ch_52_strand.fast5_template_deepnano 14689 72136 - BC_CNV_tombo-MyOv_37.fa
chr13 898319 890226 896276 900362 904723 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_21884_ch_314_strand.fast5_template_deepnano 876412 917160 + BC_CNV_tombo-MyOv_37.fa
chr14 693673 683323 684873 702473 706403 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4236_ch_512_strand.fast5_template_deepnano 683303 706633 + BC_CNV_tombo-MyOv_37.fa
chr6 118456 105147 115934 120979 131375 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6254_ch_117_strand.fast5_template_deepnano 105144 176767 + BC_CNV_tombo-MyOv_37.fa
chr7 286163 278200 283084 289243 292983 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_41386_ch_228_strand.fast5_template_deepnano 262830 310740 - BC_CNV_tombo-MyOv_59.fa
chr7 627226 618236 624767 629685 635685 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_41509_ch_484_strand.fast5_template_deepnano 609179 647315 - BC_CNV_tombo-MyOv_59.fa
chr8 65247 58596 60292 70202 75410 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_41005_ch_428_strand.fast5_template_deepnano 44803 75544 + BC_CNV_tombo-MyOv_59.fa
chr12 90744 67071 71511 109977 116961 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_20545_ch_34_strand.fast5_template_deepnano 67015 116974 - BC_CNV_tombo-MyOv_59.fa
chr10 228491 218968 222831 234152 238269 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_62938_ch_163_strand.fast5_template_deepnano 210849 276231 - BC_CNV_tombo-MyOv_59.fa
chr11 329861 319850 322560 337163 341311 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_41471_ch_428_strand.fast5_template_deepnano 317805 342871 - BC_CNV_tombo-MyOv_59.fa
chr4 232790 225557 228347 237234 240145 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_28241_ch_307_strand.fast5_template_deepnano 225551 259584 - BC_CNV_tombo-MyOv_59.fa
chr6 60726 42672 49732 71721 75628 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_46051_ch_60_strand.fast5_template_deepnano 42620 75675 - BC_CNV_tombo-MyOv_59.fa
chr12 458616 452587 457137 460096 463054 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_33545_ch_62_strand.fast5_template_deepnano 452560 468944 - BC_CNV_tombo-MyOv_59.fa
chr7 352916 346330 352366 353467 359105 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_34778_ch_492_strand.fast5_template_deepnano 331649 377235 + BC_CNV_tombo-MyOv_59.fa
chr14 546116 534059 542167 550065 552381 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_26245_ch_225_strand.fast5_template_deepnano 509432 574253 + BC_CNV_tombo-MyOv_59.fa
chr16 776726 766037 771189 782263 786826 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_22148_ch_380_strand.fast5_template_deepnano 763070 800676 - BC_CNV_tombo-MyOv_59.fa
chr8 168557 158510 165464 171651 175067 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_21217_ch_34_strand.fast5_template_deepnano 151244 179698 + BC_CNV_tombo-MyOv_59.fa
chr15 228903 214958 218816 238990 241255 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_45912_ch_363_strand.fast5_template_deepnano 193840 244497 + BC_CNV_tombo-MyOv_59.fa
chr10 655430 650084 653612 657248 659823 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_51206_ch_422_strand.fast5_template_deepnano 650082 722284 + BC_CNV_tombo-MyOv_59.fa
chr10 683936 676050 678197 689675 693516 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_51206_ch_422_strand.fast5_template_deepnano 650082 722284 + BC_CNV_tombo-MyOv_59.fa
chr12 1023832 1016934 1019805 1027860 1032883 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4072_ch_440_strand.fast5_template_deepnano 991041 1051814 - BC_CNV_tombo-MyOv_46.fa
chr12 1006834 991064 996734 1016934 1019805 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4072_ch_440_strand.fast5_template_deepnano 991041 1051814 - BC_CNV_tombo-MyOv_46.fa
chr16 211250 206376 210363 212138 214163 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_13648_ch_170_strand.fast5_template_deepnano 187673 219431 - BC_CNV_tombo-MyOv_46.fa
chr16 634270 629255 633193 635348 639410 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_31645_ch_495_strand.fast5_template_deepnano 615834 649930 - BC_CNV_tombo-MyOv_46.fa
chr15 874238 862298 865272 883205 888246 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_246234_ch_288_strand.fast5_template_deepnano 856185 888274 - BC_CNV_tombo-MyOv_46.fa
chr16 635029 609371 628815 641244 646659 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_24928_ch_180_strand.fast5_template_deepnano 609369 646723 + BC_CNV_tombo-MyOv_46.fa
chr9 174141 165708 167909 180373 183820 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_39604_ch_441_strand.fast5_template_deepnano 156843 196470 - BC_CNV_tombo-MyOv_46.fa
chr6 136171 131191 134920 137422 145519 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_21257_ch_297_strand.fast5_template_deepnano 126717 166821 + BC_CNV_tombo-MyOv_46.fa
chr15 806904 798470 800033 813776 817903 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_25819_ch_12_strand.fast5_template_deepnano 770020 818011 + BC_CNV_tombo-MyOv_46.fa
chr4 212381 206498 211324 213438 217335 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17124_ch_37_strand.fast5_template_deepnano 206482 247681 + BC_CNV_tombo-MyOv_46.fa
chr10 98670 83081 92434 104907 109882 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_25106_ch_180_strand.fast5_template_deepnano 63991 125747 + BC_CNV_tombo-MyOv_46.fa
chr15 908554 880540 890002 927106 934356 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_34022_ch_264_strand.fast5_template_deepnano 873437 948952 + BC_CNV_tombo-MyOv_46.fa
chr4 720829 712011 715644 726014 729289 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7916_ch_326_strand.fast5_template_deepnano 706086 729344 + BC_CNV_tombo-MyOv_46.fa
chr15 854259 845844 849144 859375 862928 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12724_ch_491_strand.fast5_template_deepnano 816540 882986 - BC_CNV_tombo-MyOv_46.fa
chr15 874781 867140 872542 877020 879493 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12724_ch_491_strand.fast5_template_deepnano 816540 882986 - BC_CNV_tombo-MyOv_46.fa
chr4 556172 537839 541942 570402 572394 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17158_ch_322_strand.fast5_template_deepnano 527530 597400 - BC_CNV_tombo-MyOv_46.fa
chr11 258818 253184 256698 260938 265093 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_246341_ch_288_strand.fast5_template_deepnano 212982 272069 + BC_CNV_tombo-MyOv_46.fa
chr14 352477 343113 347656 357298 361270 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_15872_ch_46_strand.fast5_template_deepnano 342730 361291 - BC_CNV_tombo-MyOv_46.fa
chr8 475158 467210 473715 476602 479158 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6344_ch_24_strand.fast5_template_deepnano 460996 489046 + BC_CNV_tombo-MyOv_46.fa
chr5 438538 428306 431142 445934 449320 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9656_ch_97_strand.fast5_template_deepnano 422270 449320 - BC_CNV_tombo-MyOv_46.fa
chr12 289959 277575 288731 291188 293326 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_33958_ch_229_strand.fast5_template_deepnano 267156 293457 + BC_CNV_tombo-MyOv_46.fa
chr10 278831 275170 277408 280255 286776 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_14700_ch_442_strand.fast5_template_deepnano 275025 286786 - BC_CNV_tombo-MyOv_46.fa
chr9 311501 306186 308771 314231 319748 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_19402_ch_308_strand.fast5_template_deepnano 297904 327850 + BC_CNV_tombo-MyOv_46.fa
chr15 874214 864477 868942 879486 882409 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_15326_ch_370_strand.fast5_template_deepnano 857895 886397 - BC_CNV_tombo-MyOv_46.fa
chr4 1353232 1346892 1349010 1357454 1362459 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_23984_ch_48_strand.fast5_template_deepnano 1293400 1362465 + BC_CNV_tombo-MyOv_46.fa
chr14 321090 311925 317135 325045 327282 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3086_ch_169_strand.fast5_template_deepnano 295698 352809 + BC_CNV_tombo-MyOv_46.fa
chr7 422058 411198 415786 428330 434891 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3554_ch_479_strand.fast5_template_deepnano 407189 457195 + BC_CNV_tombo-MyOv_29.fa
chr10 228870 213163 224001 233740 241001 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2988_ch_483_strand.fast5_template_deepnano 213073 274484 - BC_CNV_tombo-MyOv_29.fa
chr13 94977 73527 80658 109296 111220 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_23340_ch_262_strand.fast5_template_deepnano 39861 111237 - BC_CNV_tombo-MyOv_29.fa
chr15 617766 610241 614629 620904 623220 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4106_ch_377_strand.fast5_template_deepnano 605217 651090 + BC_CNV_tombo-MyOv_29.fa
chr9 411144 398538 404825 417463 423166 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4511_ch_496_strand.fast5_template_deepnano 398465 439398 - BC_CNV_tombo-MyOv_29.fa
chr15 114284 96193 101116 127453 130160 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3566_ch_479_strand.fast5_template_deepnano 95151 157218 + BC_CNV_tombo-MyOv_29.fa
chr13 504176 495516 503387 504966 508986 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3541_ch_331_strand.fast5_template_deepnano 483973 530393 - BC_CNV_tombo-MyOv_29.fa
chr5 353755 344547 348461 359049 367016 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3733_ch_7_strand.fast5_template_deepnano 333583 382921 - BC_CNV_tombo-MyOv_29.fa
chr7 888408 870708 874033 902783 904955 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5530_ch_82_strand.fast5_template_deepnano 870689 910587 + BC_CNV_tombo-MyOv_29.fa
chr11 153057 143608 148950 157164 164866 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5725_ch_27_strand.fast5_template_deepnano 136969 193170 + BC_CNV_tombo-MyOv_29.fa
chr13 94315 77768 81086 107544 113073 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3775_ch_403_strand.fast5_template_deepnano 57001 120083 + BC_CNV_tombo-MyOv_29.fa
chr9 106173 90217 97702 114645 119652 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3357_ch_99_strand.fast5_template_deepnano 90111 138100 - BC_CNV_tombo-MyOv_29.fa
chr6 167413 163350 164980 169846 173202 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6164_ch_121_strand.fast5_template_deepnano 159325 173263 - BC_CNV_tombo-MyOv_29.fa
chr8 17715 5101 9113 26318 30228 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3631_ch_195_strand.fast5_template_deepnano 3 35033 - BC_CNV_tombo-MyOv_29.fa
chr13 611509 595755 597989 625030 628798 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4202_ch_148_strand.fast5_template_deepnano 595701 628897 + BC_CNV_tombo-MyOv_29.fa
chr11 517396 510671 515803 518990 524007 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7029_ch_4_strand.fast5_template_deepnano 508244 537958 + BC_CNV_tombo-MyOv_29.fa
chr7 112496 106094 107747 117246 120566 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_33909_ch_321_strand.fast5_template_deepnano 106093 123156 + BC_CNV_tombo-MyOv_29.fa
chr14 429481 423643 427031 431931 436813 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3759_ch_151_strand.fast5_template_deepnano 420393 443127 - BC_CNV_tombo-MyOv_29.fa
chr2 198549 190041 196160 200939 204691 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_50130_ch_259_strand.fast5_template_deepnano 185664 232536 - BC_CNV_tombo-MyOv_65.fa
chr1 30396 20650 24673 36119 40424 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_34241_ch_247_strand.fast5_template_deepnano 13116 44877 - BC_CNV_tombo-MyOv_65.fa
chr4 1057994 1045622 1052702 1063287 1066465 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_20816_ch_68_strand.fast5_template_deepnano 1020315 1066586 + BC_CNV_tombo-MyOv_65.fa
chr13 433219 424024 427220 439219 444401 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_43963_ch_479_strand.fast5_template_deepnano 400171 458459 - BC_CNV_tombo-MyOv_65.fa
chr1 71217 60334 64215 78219 80396 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_26714_ch_449_strand.fast5_template_deepnano 48214 86879 - BC_CNV_tombo-MyOv_65.fa
chr15 336759 324554 333594 339924 351909 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_51885_ch_172_strand.fast5_template_deepnano 313339 351916 - BC_CNV_tombo-MyOv_65.fa
chr12 86932 59602 66105 107760 113321 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_67405_ch_2_strand.fast5_template_deepnano 59596 113450 + BC_CNV_tombo-MyOv_65.fa
chr15 981655 961949 969617 993694 1001123 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_15209_ch_231_strand.fast5_template_deepnano 961931 1016481 + BC_CNV_tombo-MyOv_39.fa
chr15 766845 760030 765650 768041 773654 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7109_ch_459_strand.fast5_template_deepnano 755079 788876 - BC_CNV_tombo-MyOv_39.fa
chr8 523199 515472 522307 524091 527599 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7236_ch_410_strand.fast5_template_deepnano 514341 543673 + BC_CNV_tombo-MyOv_39.fa
chr8 534736 530439 532925 536547 539306 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7236_ch_410_strand.fast5_template_deepnano 514341 543673 + BC_CNV_tombo-MyOv_39.fa
chr4 720455 714611 717625 723285 726177 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2626_ch_53_strand.fast5_template_deepnano 710656 745625 + BC_CNV_tombo-MyOv_39.fa
chr9 247559 237102 239884 255235 268745 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9641_ch_502_strand.fast5_template_deepnano 231739 290715 - BC_CNV_tombo-MyOv_39.fa
chr15 309249 303481 306950 311549 314515 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_14856_ch_444_strand.fast5_template_deepnano 278872 333173 - BC_CNV_tombo-MyOv_39.fa
chr3 224858 209328 214040 235677 239206 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_19209_ch_372_strand.fast5_template_deepnano 200856 239216 - BC_CNV_tombo-MyOv_39.fa
chr11 444558 440030 442690 446426 454445 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_20572_ch_324_strand.fast5_template_deepnano 435225 463257 - BC_CNV_tombo-MyOv_39.fa
chr8 246178 232144 235510 256847 261825 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2971_ch_409_strand.fast5_template_deepnano 226610 275562 - BC_CNV_tombo-MyOv_39.fa
chr5 317113 309157 312103 322123 328893 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8192_ch_74_strand.fast5_template_deepnano 302474 361947 + BC_CNV_tombo-MyOv_39.fa
chr5 498895 484637 486036 511754 516740 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6838_ch_439_strand.fast5_template_deepnano 484577 516761 - BC_CNV_tombo-MyOv_39.fa
chr12 513669 495582 500978 526360 529325 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12045_ch_305_strand.fast5_template_deepnano 492594 551592 - BC_CNV_tombo-MyOv_39.fa
chr12 512779 497031 499718 525841 529539 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12791_ch_154_strand.fast5_template_deepnano 481897 529627 - BC_CNV_tombo-MyOv_39.fa
chr11 644355 638353 639891 648819 655961 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17420_ch_308_strand.fast5_template_deepnano 629602 665440 + BC_CNV_tombo-MyOv_39.fa
chr15 338065 319895 326296 349835 351665 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2594_ch_271_strand.fast5_template_deepnano 310477 351836 + BC_CNV_tombo-MyOv_39.fa
chr12 948647 910977 942601 954693 965342 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5052_ch_250_strand.fast5_template_deepnano 909373 965356 - BC_CNV_tombo-MyOv_39.fa
chr12 775843 769092 773059 778627 782810 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6253_ch_150_strand.fast5_template_deepnano 737017 802631 + BC_CNV_tombo-MyOv_39.fa
chr12 794236 782810 789800 798672 802569 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6253_ch_150_strand.fast5_template_deepnano 737017 802631 + BC_CNV_tombo-MyOv_39.fa
chr12 512681 490270 496463 528900 537629 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_63222_ch_51_strand.fast5_template_deepnano 485189 537662 - BC_CNV_tombo-MyOv_39.fa
chr2 406846 394682 396682 417010 422895 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6334_ch_148_strand.fast5_template_deepnano 368786 442709 + BC_CNV_tombo-MyOv_39.fa
chr7 654071 649900 653561 654581 658531 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8733_ch_146_strand.fast5_template_deepnano 640040 680497 - BC_CNV_tombo-MyOv_39.fa
chr3 224737 213734 219168 230306 236551 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_19622_ch_489_strand.fast5_template_deepnano 213624 257262 - BC_CNV_tombo-MyOv_39.fa
chr8 245617 239934 243083 248151 255098 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4835_ch_418_strand.fast5_template_deepnano 235585 278838 - BC_CNV_tombo-MyOv_39.fa
chr11 15970 8722 12890 19051 22918 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6703_ch_395_strand.fast5_template_deepnano 3 53806 - BC_CNV_tombo-MyOv_39.fa
chr12 793858 785126 788612 799104 804873 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_19358_ch_372_strand.fast5_template_deepnano 778828 814947 - BC_CNV_tombo-MyOv_39.fa
chr10 99149 86643 92160 106138 111922 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8861_ch_146_strand.fast5_template_deepnano 65688 122936 - BC_CNV_tombo-MyOv_39.fa
chr8 392251 382474 385353 399149 401487 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_11642_ch_249_strand.fast5_template_deepnano 375613 403948 + BC_CNV_tombo-MyOv_39.fa
chr16 288868 272484 276172 301565 304055 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_25460_ch_164_strand.fast5_template_deepnano 260248 314405 - BC_CNV_tombo-MyOv_39.fa
chr7 659533 635197 653062 666005 669958 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_29690_ch_495_strand.fast5_template_deepnano 621941 669961 - BC_CNV_tombo-MyOv_39.fa
chr11 98875 91440 96142 101608 103883 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_47585_ch_258_strand.fast5_template_deepnano 89699 138623 - BC_CNV_tombo-MyOv_67.fa
chr10 455505 442972 445885 465126 471298 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_27301_ch_435_strand.fast5_template_deepnano 434346 488206 - BC_CNV_tombo-MyOv_67.fa
chr13 432484 420765 424066 440903 448141 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_133144_ch_464_strand.fast5_template_deepnano 420744 448222 - BC_CNV_tombo-MyOv_67.fa
chr15 72385 61109 68817 75953 78075 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_44168_ch_225_strand.fast5_template_deepnano 48532 78154 + BC_CNV_tombo-MyOv_67.fa
chr5 498185 489176 494131 502239 506047 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_248311_ch_202_strand.fast5_template_deepnano 458523 513276 - BC_CNV_tombo-MyOv_67.fa
chr9 135898 129838 133191 138605 142305 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_134847_ch_464_strand.fast5_template_deepnano 126793 150291 - BC_CNV_tombo-MyOv_67.fa
chr7 660934 649133 654091 667777 671299 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_249080_ch_202_strand.fast5_template_deepnano 649126 673078 + BC_CNV_tombo-MyOv_67.fa
chr15 372189 365534 369678 374701 379682 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_52161_ch_184_strand.fast5_template_deepnano 363474 403585 + BC_CNV_tombo-MyOv_67.fa
chr8 247194 218679 229324 265064 272181 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_90567_ch_300_strand.fast5_template_deepnano 214735 278433 - BC_CNV_tombo-MyOv_67.fa
chr7 888214 876139 882220 894208 900950 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_52548_ch_184_strand.fast5_template_deepnano 876055 916052 - BC_CNV_tombo-MyOv_67.fa
chr13 504624 498100 502866 506382 508737 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_13686_ch_107_strand.fast5_template_deepnano 485104 524138 + BC_CNV_tombo-MyOv_35.fa
chr1 176222 165962 170758 181687 188207 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8855_ch_472_strand.fast5_template_deepnano 160747 194392 - BC_CNV_tombo-MyOv_35.fa
chr3 224140 214019 221636 226645 231471 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_20470_ch_211_strand.fast5_template_deepnano 204746 231476 - BC_CNV_tombo-MyOv_35.fa
chr15 729313 716921 725079 733547 738789 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_21712_ch_511_strand.fast5_template_deepnano 709674 770925 - BC_CNV_tombo-MyOv_35.fa
chr15 980389 960919 968623 992155 994796 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10693_ch_135_strand.fast5_template_deepnano 960864 1016275 - BC_CNV_tombo-MyOv_35.fa
chr4 330931 304376 310821 351041 352547 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_18039_ch_428_strand.fast5_template_deepnano 304288 352624 + BC_CNV_tombo-MyOv_35.fa
chr6 199187 181662 187453 210922 215596 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_37021_ch_441_strand.fast5_template_deepnano 176678 222121 - BC_CNV_tombo-MyOv_35.fa
chr12 456611 451464 453296 459926 465039 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_723_ch_440_strand.fast5_template_deepnano 451421 465061 - BC_CNV_tombo-MyOv_35.fa
chr12 1007756 1001571 1005431 1010082 1013167 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_13249_ch_112_strand.fast5_template_deepnano 997537 1038476 + BC_CNV_tombo-MyOv_35.fa
chr4 1460654 1445217 1456633 1464676 1466396 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_24012_ch_20_strand.fast5_template_deepnano 1445173 1466413 - BC_CNV_tombo-MyOv_35.fa
chr16 73718 64977 68571 78865 83523 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_11086_ch_155_strand.fast5_template_deepnano 58963 102255 + BC_CNV_tombo-MyOv_35.fa
chr10 67783 59269 63102 72465 74747 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_13812_ch_107_strand.fast5_template_deepnano 36780 81578 - BC_CNV_tombo-MyOv_35.fa
chr12 457640 451464 455757 459523 464071 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_21665_ch_100_strand.fast5_template_deepnano 451420 466633 - BC_CNV_tombo-MyOv_35.fa
chr15 85493 69980 78249 92737 96453 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_21790_ch_116_strand.fast5_template_deepnano 69972 128545 + BC_CNV_tombo-MyOv_35.fa
chr4 329562 321522 326989 332135 340506 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_11684_ch_301_strand.fast5_template_deepnano 312657 359489 + BC_CNV_tombo-MyOv_35.fa
chr4 407561 397779 403649 411473 420720 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1682_ch_248_strand.fast5_template_deepnano 397728 432513 - BC_CNV_tombo-MyOv_19.fa
chr9 175377 165774 168724 182031 184072 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1656_ch_183_strand.fast5_template_deepnano 121312 184119 + BC_CNV_tombo-MyOv_19.fa
chr13 137139 127763 131119 143160 147392 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1924_ch_7_strand.fast5_template_deepnano 127738 155906 + BC_CNV_tombo-MyOv_19.fa
chr5 316779 303741 310136 323422 330442 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1985_ch_390_strand.fast5_template_deepnano 289297 330510 + BC_CNV_tombo-MyOv_19.fa
chr15 766590 756967 760135 773045 775301 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1991_ch_396_strand.fast5_template_deepnano 730761 775351 - BC_CNV_tombo-MyOv_19.fa
chr13 263389 252228 255729 271049 273763 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1775_ch_252_strand.fast5_template_deepnano 246553 273900 + BC_CNV_tombo-MyOv_19.fa
chr9 29262 17436 23360 35165 39593 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2017_ch_175_strand.fast5_template_deepnano 9928 68483 - BC_CNV_tombo-MyOv_19.fa
chr1 71657 64546 69197 74118 83164 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2018_ch_396_strand.fast5_template_deepnano 60524 83276 + BC_CNV_tombo-MyOv_19.fa
chr12 91810 83804 91240 92381 97584 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1859_ch_107_strand.fast5_template_deepnano 67675 112264 - BC_CNV_tombo-MyOv_19.fa
chr16 179527 170464 177157 181898 185290 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1598_ch_250_strand.fast5_template_deepnano 147211 204778 - BC_CNV_tombo-MyOv_19.fa
chr7 608284 596585 603375 613193 622620 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1457_ch_50_strand.fast5_template_deepnano 587316 622675 + BC_CNV_tombo-MyOv_19.fa
chr4 1461254 1436807 1450367 1472141 1484667 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2243_ch_237_strand.fast5_template_deepnano 1436689 1484670 - BC_CNV_tombo-MyOv_19.fa
chr8 349118 342201 348364 349872 354456 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6436_ch_317_strand.fast5_template_deepnano 313675 354467 - BC_CNV_tombo-MyOv_19.fa
chr7 319321 314400 318127 320515 328244 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1896_ch_403_strand.fast5_template_deepnano 301287 328354 + BC_CNV_tombo-MyOv_19.fa
chr16 776193 769117 772956 779431 786674 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1890_ch_32_strand.fast5_template_deepnano 747594 800970 + BC_CNV_tombo-MyOv_19.fa
chr13 94827 78519 85933 103721 108514 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2042_ch_172_strand.fast5_template_deepnano 66186 130988 + BC_CNV_tombo-MyOv_19.fa
chr11 257210 243487 249675 264745 266830 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2037_ch_379_strand.fast5_template_deepnano 199048 266920 - BC_CNV_tombo-MyOv_19.fa
chr15 35081 19815 26068 44095 45336 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1728_ch_319_strand.fast5_template_deepnano 19647 63806 - BC_CNV_tombo-MyOv_19.fa
chr12 794533 785586 788510 800556 802788 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2931_ch_23_strand.fast5_template_deepnano 781506 802799 + BC_CNV_tombo-MyOv_36.fa
chr16 632946 625765 630446 635446 639064 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6329_ch_189_strand.fast5_template_deepnano 607738 649142 - BC_CNV_tombo-MyOv_36.fa
chr2 676304 669287 673149 679459 683733 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_162671_ch_311_strand.fast5_template_deepnano 663999 698252 - BC_CNV_tombo-MyOv_36.fa
chr15 854691 842330 845776 863606 867444 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_15960_ch_219_strand.fast5_template_deepnano 835420 867478 + BC_CNV_tombo-MyOv_36.fa
chr13 878164 865321 869606 886723 888034 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_16230_ch_454_strand.fast5_template_deepnano 865278 901590 - BC_CNV_tombo-MyOv_36.fa
chr8 501670 490615 497891 505449 516058 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17482_ch_320_strand.fast5_template_deepnano 479217 523949 + BC_CNV_tombo-MyOv_36.fa
chr2 60964 35539 43084 78844 84139 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_20748_ch_216_strand.fast5_template_deepnano 23503 86754 - BC_CNV_tombo-MyOv_36.fa
chr4 914474 900842 905272 923677 929911 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_45420_ch_16_strand.fast5_template_deepnano 894667 940301 - BC_CNV_tombo-MyOv_36.fa
chr8 448394 429136 435623 461165 463024 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_20091_ch_324_strand.fast5_template_deepnano 396126 468607 - BC_CNV_tombo-MyOv_36.fa
chr9 341872 335598 340877 342868 347659 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_33806_ch_85_strand.fast5_template_deepnano 327862 359497 + BC_CNV_tombo-MyOv_36.fa
chr14 321585 307598 313226 329944 332557 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9988_ch_491_strand.fast5_template_deepnano 282318 332601 - BC_CNV_tombo-MyOv_36.fa
chr6 118104 113507 116654 119554 123386 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12220_ch_154_strand.fast5_template_deepnano 100931 158587 - BC_CNV_tombo-MyOv_36.fa
chr6 136031 123386 126671 145392 150262 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12220_ch_154_strand.fast5_template_deepnano 100931 158587 - BC_CNV_tombo-MyOv_36.fa
chr7 422283 403958 413207 431359 433100 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5774_ch_38_strand.fast5_template_deepnano 383098 438829 + BC_CNV_tombo-MyOv_36.fa
chr4 1239707 1231915 1234912 1244502 1247895 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10475_ch_315_strand.fast5_template_deepnano 1219305 1247946 + BC_CNV_tombo-MyOv_36.fa
chr12 139336 127996 135148 143524 145381 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_15325_ch_60_strand.fast5_template_deepnano 127901 158010 - BC_CNV_tombo-MyOv_36.fa
chr14 321988 306953 309263 334714 340109 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_22002_ch_287_strand.fast5_template_deepnano 290577 340139 + BC_CNV_tombo-MyOv_36.fa
chr5 287998 273101 277225 298772 301349 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_40101_ch_55_strand.fast5_template_deepnano 269410 301429 + BC_CNV_tombo-MyOv_36.fa
chr13 610874 608501 610157 611592 614860 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5949_ch_395_strand.fast5_template_deepnano 594200 625015 - BC_CNV_tombo-MyOv_36.fa
chr6 136368 115424 122983 149753 153673 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8247_ch_146_strand.fast5_template_deepnano 104719 155043 + BC_CNV_tombo-MyOv_36.fa
chr5 221755 212152 219054 224456 228402 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10149_ch_478_strand.fast5_template_deepnano 212103 264434 - BC_CNV_tombo-MyOv_36.fa
chr11 609933 594158 596402 623464 630135 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2931_ch_435_strand.fast5_template_deepnano 594151 630137 - BC_CNV_tombo-MyOv_36.fa
chr5 498544 490263 492747 504341 510541 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6734_ch_433_strand.fast5_template_deepnano 482152 516712 + BC_CNV_tombo-MyOv_36.fa
chr7 421807 410609 415202 428412 434441 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_22475_ch_436_strand.fast5_template_deepnano 401160 434559 + BC_CNV_tombo-MyOv_36.fa
chr16 73437 66732 70350 76525 79619 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_31050_ch_451_strand.fast5_template_deepnano 58734 87842 - BC_CNV_tombo-MyOv_36.fa
chr8 447557 440565 443584 451530 455488 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_59319_ch_134_strand.fast5_template_deepnano 427190 459560 - BC_CNV_tombo-MyOv_36.fa
chr12 230114 216125 225231 234998 238791 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9614_ch_217_strand.fast5_template_deepnano 216124 251338 + BC_CNV_tombo-MyOv_36.fa
chr13 898008 888133 890884 905133 912074 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9669_ch_35_strand.fast5_template_deepnano 881473 912131 + BC_CNV_tombo-MyOv_36.fa
chr7 285101 281049 284595 285607 287618 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17056_ch_308_strand.fast5_template_deepnano 266832 312958 - BC_CNV_tombo-MyOv_36.fa
chr9 136924 131103 134325 139524 142897 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_24364_ch_97_strand.fast5_template_deepnano 99692 149967 + BC_CNV_tombo-MyOv_66.fa
chr4 505531 495911 501771 509292 512156 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_45246_ch_418_strand.fast5_template_deepnano 475861 518353 - BC_CNV_tombo-MyOv_66.fa
chr14 437073 430515 434717 439429 442417 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_130527_ch_464_strand.fast5_template_deepnano 386498 442530 - BC_CNV_tombo-MyOv_66.fa
chr4 806823 783433 790158 823489 831450 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_50644_ch_319_strand.fast5_template_deepnano 772714 831537 + BC_CNV_tombo-MyOv_66.fa
chr10 162446 156962 161225 163668 168507 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_84188_ch_497_strand.fast5_template_deepnano 156958 168586 + BC_CNV_tombo-MyOv_66.fa
chr9 135645 127333 129809 141482 145041 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_48478_ch_122_strand.fast5_template_deepnano 120275 159458 + BC_CNV_tombo-MyOv_66.fa
chr15 617332 611464 614019 620646 623867 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_45985_ch_505_strand.fast5_template_deepnano 558895 627902 + BC_CNV_tombo-MyOv_66.fa
chr7 421056 397255 401346 440767 443389 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_113099_ch_134_strand.fast5_template_deepnano 397231 459296 + BC_CNV_tombo-MyOv_66.fa
chr8 133310 120732 126865 139755 145783 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_53012_ch_248_strand.fast5_template_deepnano 99299 177746 - BC_CNV_tombo-MyOv_66.fa
chr14 449067 440940 444871 453263 456217 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_26629_ch_435_strand.fast5_template_deepnano 440760 477966 - BC_CNV_tombo-MyOv_66.fa
chr14 449584 440733 448695 450473 458747 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_53185_ch_248_strand.fast5_template_deepnano 437230 511030 - BC_CNV_tombo-MyOv_66.fa
chr16 684239 670003 679292 689187 698947 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5097_ch_357_strand.fast5_template_deepnano 654468 698966 - BC_CNV_tombo-MyOv_33.fa
chr9 215659 196257 206217 225102 233045 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12328_ch_161_strand.fast5_template_deepnano 196251 238580 + BC_CNV_tombo-MyOv_33.fa
chr15 38032 444 20475 55590 60311 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_11175_ch_208_strand.fast5_template_deepnano 414 84298 + BC_CNV_tombo-MyOv_33.fa
chr7 657556 647000 649666 665447 670396 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4634_ch_488_strand.fast5_template_deepnano 638208 682577 - BC_CNV_tombo-MyOv_33.fa
chr9 412707 398733 404416 420999 428135 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7061_ch_199_strand.fast5_template_deepnano 386065 439561 - BC_CNV_tombo-MyOv_33.fa
chr7 777806 759142 762685 792927 800171 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7748_ch_105_strand.fast5_template_deepnano 754479 802183 - BC_CNV_tombo-MyOv_33.fa
chr13 635889 614184 627381 644397 646864 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4998_ch_150_strand.fast5_template_deepnano 614181 656594 + BC_CNV_tombo-MyOv_33.fa
chr8 348996 339075 344300 353692 357252 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_16984_ch_372_strand.fast5_template_deepnano 334919 366514 - BC_CNV_tombo-MyOv_33.fa
chr8 359832 353627 357098 362566 366496 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_16984_ch_372_strand.fast5_template_deepnano 334919 366514 - BC_CNV_tombo-MyOv_33.fa
chr12 745307 737718 744007 746607 750703 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4907_ch_316_strand.fast5_template_deepnano 737710 761370 + BC_CNV_tombo-MyOv_33.fa
chr16 79274 57923 59724 98824 100648 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4693_ch_366_strand.fast5_template_deepnano 52223 107053 - BC_CNV_tombo-MyOv_33.fa
chr16 90669 83165 87822 93516 96485 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5070_ch_487_strand.fast5_template_deepnano 83076 100770 + BC_CNV_tombo-MyOv_33.fa
chr5 210510 201827 206037 214984 220903 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5199_ch_484_strand.fast5_template_deepnano 184300 228124 - BC_CNV_tombo-MyOv_33.fa
chr3 225078 201082 206474 243682 252309 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6301_ch_384_strand.fast5_template_deepnano 200920 252353 - BC_CNV_tombo-MyOv_33.fa
chr12 287562 270232 276018 299106 307629 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5191_ch_357_strand.fast5_template_deepnano 254693 307713 + BC_CNV_tombo-MyOv_33.fa
chr16 162712 148409 153905 171520 178502 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4980_ch_387_strand.fast5_template_deepnano 148359 204096 + BC_CNV_tombo-MyOv_33.fa
chr8 45459 23854 34435 56484 59419 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10282_ch_229_strand.fast5_template_deepnano 23754 66161 - BC_CNV_tombo-MyOv_33.fa
chr4 1504034 1499473 1501176 1506893 1510110 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3984_ch_492_strand.fast5_template_deepnano 1492956 1516518 + BC_CNV_tombo-MyOv_33.fa
chr12 975460 967334 974710 976211 982041 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7162_ch_42_strand.fast5_template_deepnano 967289 986449 + BC_CNV_tombo-MyOv_33.fa
chr9 280043 270858 272657 287430 292954 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5112_ch_150_strand.fast5_template_deepnano 259388 293002 - BC_CNV_tombo-MyOv_33.fa
chr4 169572 158876 165925 173219 179062 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_14297_ch_509_strand.fast5_template_deepnano 158777 201349 - BC_CNV_tombo-MyOv_33.fa
chr12 230437 208373 210391 250483 253251 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5482_ch_44_strand.fast5_template_deepnano 200777 257589 - BC_CNV_tombo-MyOv_33.fa
chr15 981102 964506 970611 991594 1000094 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_24887_ch_262_strand.fast5_template_deepnano 964398 1000103 - BC_CNV_tombo-MyOv_33.fa
chr15 981517 974500 980677 982358 986705 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1229_ch_315_strand.fast5_template_deepnano 953976 993807 - BC_CNV_tombo-MyOv_15.fa
chr1 30407 17411 24218 36597 43163 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1225_ch_303_strand.fast5_template_deepnano 17341 43194 - BC_CNV_tombo-MyOv_15.fa
chr7 389238 381999 387329 391148 394849 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1175_ch_74_strand.fast5_template_deepnano 369014 403776 - BC_CNV_tombo-MyOv_15.fa
chr7 998004 989556 993408 1002601 1007001 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1310_ch_205_strand.fast5_template_deepnano 980197 1016108 + BC_CNV_tombo-MyOv_15.fa
chr7 1011732 1006685 1010325 1013140 1016062 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1310_ch_205_strand.fast5_template_deepnano 980197 1016108 + BC_CNV_tombo-MyOv_15.fa
chr10 683437 666431 671825 695050 698517 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2239_ch_262_strand.fast5_template_deepnano 666389 706935 + BC_CNV_tombo-MyOv_15.fa
chr2 388096 368396 381268 394924 398592 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1360_ch_363_strand.fast5_template_deepnano 335930 404740 - BC_CNV_tombo-MyOv_15.fa
chr2 758037 751428 753547 762528 765423 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1304_ch_251_strand.fast5_template_deepnano 751412 779723 + BC_CNV_tombo-MyOv_15.fa
chr10 100928 90701 93528 108328 111746 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1572_ch_316_strand.fast5_template_deepnano 74241 140324 + BC_CNV_tombo-MyOv_15.fa
chr5 497593 488676 492973 502213 509998 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1840_ch_113_strand.fast5_template_deepnano 472252 528384 + BC_CNV_tombo-MyOv_15.fa
chr5 521436 510793 515782 527090 531506 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1162_ch_266_strand.fast5_template_deepnano 481525 531594 + BC_CNV_tombo-MyOv_15.fa
chr16 162564 152813 158785 166344 169856 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1259_ch_303_strand.fast5_template_deepnano 152727 204968 - BC_CNV_tombo-MyOv_15.fa
chr12 457076 451779 454631 459522 464325 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1448_ch_300_strand.fast5_template_deepnano 451770 468929 - BC_CNV_tombo-MyOv_15.fa
chr4 505014 498733 501881 508148 513767 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1570_ch_131_strand.fast5_template_deepnano 498700 519353 - BC_CNV_tombo-MyOv_15.fa
chr8 528552 510391 516508 540597 543616 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2650_ch_427_strand.fast5_template_deepnano 502192 556985 + BC_CNV_tombo-MyOv_15.fa
chr4 914186 899529 902436 925936 932154 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2986_ch_330_strand.fast5_template_deepnano 880531 938097 - BC_CNV_tombo-MyOv_15.fa
chr6 69419 63605 66512 72327 75987 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3067_ch_462_strand.fast5_template_deepnano 57180 100421 + BC_CNV_tombo-MyOv_15.fa
chr5 288162 281431 286736 289588 295490 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3914_ch_447_strand.fast5_template_deepnano 254513 310167 - BC_CNV_tombo-MyOv_15.fa
chr7 286467 279393 284303 288631 292172 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4942_ch_184_strand.fast5_template_deepnano 274167 319823 + BC_CNV_tombo-MyOv_15.fa
chr15 227314 218870 222368 232260 240079 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1633_ch_249_strand.fast5_template_deepnano 218859 279877 + BC_CNV_tombo-MyOv_15.fa
chr14 250175 244703 248843 251508 258765 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1198_ch_50_strand.fast5_template_deepnano 226452 277783 - BC_CNV_tombo-MyOv_15.fa
chr11 388796 382788 386172 391421 396852 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1592_ch_32_strand.fast5_template_deepnano 382670 418285 - BC_CNV_tombo-MyOv_15.fa
chr5 261688 259426 261085 262292 263508 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2688_ch_438_strand.fast5_template_deepnano 254710 266359 + BC_CNV_tombo-MyOv_15.fa
chr8 356837 351834 355522 358152 363538 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_37129_ch_32_strand.fast5_template_deepnano 346719 363570 - BC_CNV_tombo-MyOv_52.fa
chr2 198495 191150 193339 203652 206816 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_30380_ch_218_strand.fast5_template_deepnano 183212 223190 - BC_CNV_tombo-MyOv_52.fa
chr5 58688 50425 55086 62290 65707 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_62110_ch_419_strand.fast5_template_deepnano 50351 73030 - BC_CNV_tombo-MyOv_52.fa
chr6 68287 60013 64868 71706 78274 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_13432_ch_494_strand.fast5_template_deepnano 52095 112802 - BC_CNV_tombo-MyOv_52.fa
chr16 255205 242518 246789 263621 268869 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_44028_ch_287_strand.fast5_template_deepnano 218160 275162 + BC_CNV_tombo-MyOv_52.fa
chr15 11031 52 5257 16806 21616 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17757_ch_479_strand.fast5_template_deepnano 14 51972 - BC_CNV_tombo-MyOv_52.fa
chr15 35040 27457 34080 36001 42748 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17757_ch_479_strand.fast5_template_deepnano 14 51972 - BC_CNV_tombo-MyOv_52.fa
chr8 245455 239247 242176 248734 252093 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_15472_ch_138_strand.fast5_template_deepnano 239229 293749 + BC_CNV_tombo-MyOv_52.fa
chr4 1016814 996611 999975 1033654 1035751 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_29235_ch_109_strand.fast5_template_deepnano 980445 1035771 - BC_CNV_tombo-MyOv_52.fa
chr15 981736 973515 978513 984960 989825 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_15828_ch_128_strand.fast5_template_deepnano 973488 1001338 - BC_CNV_tombo-MyOv_52.fa
chr7 283538 265976 273054 294022 302692 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_44108_ch_287_strand.fast5_template_deepnano 253547 302723 - BC_CNV_tombo-MyOv_52.fa
chr11 330327 320293 329540 331114 337818 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_106665_ch_464_strand.fast5_template_deepnano 288345 342035 + BC_CNV_tombo-MyOv_52.fa
chr4 554845 534600 538757 570933 576565 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_101064_ch_77_strand.fast5_template_deepnano 527470 581661 - BC_CNV_tombo-MyOv_52.fa
chr2 487746 472448 474203 501289 503757 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_19537_ch_271_strand.fast5_template_deepnano 472423 503877 + BC_CNV_tombo-MyOv_52.fa
chr4 1462906 1457604 1460197 1465615 1468617 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_37705_ch_482_strand.fast5_template_deepnano 1436504 1478749 + BC_CNV_tombo-MyOv_52.fa
chr13 371569 367176 370319 372819 374873 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_64630_ch_226_strand.fast5_template_deepnano 365501 374992 + BC_CNV_tombo-MyOv_52.fa
chr2 63059 55249 57433 68686 72982 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_32121_ch_457_strand.fast5_template_deepnano 142 83540 + BC_CNV_tombo-MyOv_52.fa
chr10 161382 157025 159009 163756 165893 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17808_ch_282_strand.fast5_template_deepnano 151627 183168 + BC_CNV_tombo-MyOv_52.fa
chr15 666170 651552 655280 677060 681597 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_574_ch_409_strand.fast5_template_deepnano 643828 686749 - BC_CNV_tombo-MyOv_6.fa
chr4 462795 454691 459102 466488 468064 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_396_ch_466_strand.fast5_template_deepnano 428915 468121 + BC_CNV_tombo-MyOv_6.fa
chr14 62132 51603 57714 66551 68059 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2017_ch_147_strand.fast5_template_deepnano 51484 82868 - BC_CNV_tombo-MyOv_6.fa
chr4 211215 200925 202780 219650 222266 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_596_ch_80_strand.fast5_template_deepnano 197159 231081 - BC_CNV_tombo-MyOv_6.fa
chr12 413545 401286 405742 421349 423856 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1381_ch_9_strand.fast5_template_deepnano 378096 423957 + BC_CNV_tombo-MyOv_6.fa
chr9 412527 397271 403879 421175 427005 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_562_ch_113_strand.fast5_template_deepnano 388608 439725 + BC_CNV_tombo-MyOv_6.fa
chr13 758884 751981 758055 759713 765018 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_683_ch_106_strand.fast5_template_deepnano 741967 765036 - BC_CNV_tombo-MyOv_6.fa
chr14 609804 595873 597991 621618 623316 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_503_ch_21_strand.fast5_template_deepnano 574296 623369 + BC_CNV_tombo-MyOv_6.fa
chr15 744458 717800 741085 747831 752405 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_739_ch_40_strand.fast5_template_deepnano 703454 763911 + BC_CNV_tombo-MyOv_6.fa
chr4 123764 101756 106350 141178 142665 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_447_ch_187_strand.fast5_template_deepnano 96513 147025 + BC_CNV_tombo-MyOv_6.fa
chr15 114711 100637 104124 125299 134512 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_348_ch_194_strand.fast5_template_deepnano 96000 143990 + BC_CNV_tombo-MyOv_6.fa
chr7 204142 192445 198479 209805 212036 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_462_ch_504_strand.fast5_template_deepnano 159841 212135 + BC_CNV_tombo-MyOv_6.fa
chr4 555228 541444 547706 562750 567168 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_482_ch_322_strand.fast5_template_deepnano 527525 572197 - BC_CNV_tombo-MyOv_6.fa
chr3 38481 14980 24518 52445 58777 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_508_ch_345_strand.fast5_template_deepnano 148 67660 - BC_CNV_tombo-MyOv_6.fa
chr16 555378 528707 539915 570841 575715 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_607_ch_293_strand.fast5_template_deepnano 518281 581982 - BC_CNV_tombo-MyOv_6.fa
chr9 74428 71114 73454 75402 78100 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_680_ch_363_strand.fast5_template_deepnano 71106 100820 + BC_CNV_tombo-MyOv_6.fa
chr4 628940 616737 624203 633677 637220 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_987_ch_214_strand.fast5_template_deepnano 591753 637250 - BC_CNV_tombo-MyOv_6.fa
chr8 168618 157932 161196 176041 180121 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1059_ch_285_strand.fast5_template_deepnano 152825 207432 + BC_CNV_tombo-MyOv_6.fa
chr4 629545 623733 625728 633362 637382 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_526_ch_468_strand.fast5_template_deepnano 623719 645501 - BC_CNV_tombo-MyOv_6.fa
chr4 1241358 1234170 1237501 1245215 1248047 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_550_ch_182_strand.fast5_template_deepnano 1233025 1274690 + BC_CNV_tombo-MyOv_6.fa
chr5 174781 166113 169171 180392 182756 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_322_ch_459_strand.fast5_template_deepnano 154837 182848 + BC_CNV_tombo-MyOv_6.fa
chr12 512940 507017 511831 514050 519610 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_520_ch_326_strand.fast5_template_deepnano 481899 531070 - BC_CNV_tombo-MyOv_6.fa
chr7 32861 29746 31729 33993 42272 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_528_ch_140_strand.fast5_template_deepnano 6194 42368 + BC_CNV_tombo-MyOv_6.fa
chr2 376738 367181 374889 378587 385670 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_178_ch_384_strand.fast5_template_deepnano 352303 385792 + BC_CNV_tombo-MyOv_4.fa
chr16 90319 84978 89167 91472 94636 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_231_ch_306_strand.fast5_template_deepnano 42379 94665 - BC_CNV_tombo-MyOv_4.fa
chr16 72582 61839 67244 77920 81853 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_231_ch_306_strand.fast5_template_deepnano 42379 94665 - BC_CNV_tombo-MyOv_4.fa
chr5 144262 130271 136144 152380 155355 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_246_ch_297_strand.fast5_template_deepnano 116182 164426 - BC_CNV_tombo-MyOv_4.fa
chr9 104478 90217 92590 116367 121308 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_302_ch_38_strand.fast5_template_deepnano 82101 137256 - BC_CNV_tombo-MyOv_4.fa
chr2 325125 314000 321839 328411 336858 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_376_ch_125_strand.fast5_template_deepnano 313938 357555 - BC_CNV_tombo-MyOv_4.fa
chr11 55745 46946 53047 58443 61733 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_390_ch_3_strand.fast5_template_deepnano 25948 61766 + BC_CNV_tombo-MyOv_4.fa
chr7 421469 414154 420664 422274 426258 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_394_ch_176_strand.fast5_template_deepnano 401941 456507 - BC_CNV_tombo-MyOv_4.fa
chr4 1486720 1480974 1483460 1489981 1497114 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_423_ch_100_strand.fast5_template_deepnano 1480880 1531925 - BC_CNV_tombo-MyOv_4.fa
chr9 106130 89879 94559 117702 119987 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_463_ch_151_strand.fast5_template_deepnano 76746 119988 - BC_CNV_tombo-MyOv_4.fa
chr9 310774 302596 309071 312478 315130 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_464_ch_106_strand.fast5_template_deepnano 293865 315185 + BC_CNV_tombo-MyOv_4.fa
chr2 197610 186983 193984 201237 223480 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_494_ch_103_strand.fast5_template_deepnano 180205 223559 + BC_CNV_tombo-MyOv_4.fa
chr14 342681 332059 336889 348473 355457 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1440_ch_189_strand.fast5_template_deepnano 321817 355596 + BC_CNV_tombo-MyOv_12.fa
chr9 73867 63118 72079 75655 87945 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_878_ch_235_strand.fast5_template_deepnano 63099 88056 + BC_CNV_tombo-MyOv_12.fa
chr7 286421 278727 281660 291182 294303 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_932_ch_479_strand.fast5_template_deepnano 275824 321867 + BC_CNV_tombo-MyOv_12.fa
chr4 211050 192059 200334 221766 225110 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_982_ch_42_strand.fast5_template_deepnano 185617 236542 - BC_CNV_tombo-MyOv_12.fa
chr12 793149 780983 786071 800227 813805 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1093_ch_497_strand.fast5_template_deepnano 773802 813810 - BC_CNV_tombo-MyOv_12.fa
chr15 521509 515180 518577 524442 526861 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_765_ch_410_strand.fast5_template_deepnano 515061 539326 - BC_CNV_tombo-MyOv_12.fa
chr4 407315 399714 405307 409323 413084 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1187_ch_500_strand.fast5_template_deepnano 399604 433682 - BC_CNV_tombo-MyOv_12.fa
chr10 203720 194834 197274 210167 213745 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2095_ch_30_strand.fast5_template_deepnano 184048 225979 - BC_CNV_tombo-MyOv_12.fa
chr13 611418 604386 607405 615432 620522 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1196_ch_151_strand.fast5_template_deepnano 604374 637274 + BC_CNV_tombo-MyOv_12.fa
chr4 1487051 1482262 1484308 1489795 1493592 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_846_ch_477_strand.fast5_template_deepnano 1480413 1503082 + BC_CNV_tombo-MyOv_12.fa
chr11 16013 4474 14621 17405 22443 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1000_ch_81_strand.fast5_template_deepnano 3 25965 - BC_CNV_tombo-MyOv_12.fa
chr7 421230 408618 417170 425291 431695 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2323_ch_427_strand.fast5_template_deepnano 391544 431722 - BC_CNV_tombo-MyOv_12.fa
chr4 1276146 1269751 1272066 1280227 1286158 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1036_ch_248_strand.fast5_template_deepnano 1269731 1306668 + BC_CNV_tombo-MyOv_12.fa
chr2 486856 461999 474646 499066 500964 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1078_ch_379_strand.fast5_template_deepnano 443113 501009 + BC_CNV_tombo-MyOv_12.fa
chr4 1353774 1347310 1350151 1357398 1360257 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_929_ch_271_strand.fast5_template_deepnano 1347303 1362836 - BC_CNV_tombo-MyOv_12.fa
chr13 469418 463505 467713 471123 472463 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_890_ch_194_strand.fast5_template_deepnano 447650 492597 + BC_CNV_tombo-MyOv_12.fa
chr3 274127 263405 267374 280881 284148 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_16299_ch_231_strand.fast5_template_deepnano 263359 284290 + BC_CNV_tombo-MyOv_43.fa
chr7 65001 51080 60591 69411 73771 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7944_ch_97_strand.fast5_template_deepnano 32313 95284 + BC_CNV_tombo-MyOv_43.fa
chr12 888420 878701 883184 893657 897191 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17227_ch_15_strand.fast5_template_deepnano 875512 924630 - BC_CNV_tombo-MyOv_43.fa
chr15 1052844 1035913 1038769 1066920 1073966 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12530_ch_135_strand.fast5_template_deepnano 1029143 1091035 - BC_CNV_tombo-MyOv_43.fa
chr13 94278 86915 90767 97790 102254 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_47244_ch_16_strand.fast5_template_deepnano 81521 112259 + BC_CNV_tombo-MyOv_43.fa
chr10 540025 522698 530491 549559 555136 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10399_ch_163_strand.fast5_template_deepnano 522688 571308 - BC_CNV_tombo-MyOv_43.fa
chr5 406356 396600 400249 412464 415183 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_18013_ch_183_strand.fast5_template_deepnano 383437 423865 - BC_CNV_tombo-MyOv_43.fa
chr4 124402 108586 112605 136200 140743 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_64338_ch_51_strand.fast5_template_deepnano 108561 153503 + BC_CNV_tombo-MyOv_43.fa
chr16 816325 802657 807652 824999 828979 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_16568_ch_173_strand.fast5_template_deepnano 780300 844297 - BC_CNV_tombo-MyOv_43.fa
chr14 322393 310752 316491 328295 329880 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_36615_ch_242_strand.fast5_template_deepnano 306001 329991 + BC_CNV_tombo-MyOv_43.fa
chr8 360096 350778 358847 361346 364238 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10869_ch_472_strand.fast5_template_deepnano 345350 364336 + BC_CNV_tombo-MyOv_43.fa
chr16 332558 321416 324788 340329 342929 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3596_ch_271_strand.fast5_template_deepnano 309109 355048 + BC_CNV_tombo-MyOv_43.fa