-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathFORKseq_TM-CNN_read_coord.term
4486 lines (4486 loc) · 829 KB
/
FORKseq_TM-CNN_read_coord.term
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 termination fork1_start fork1_end fork2_start fork2_end read_name read_start read_end strand fasta
chr16 596211 591707 598510 598510 600716 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_24417_ch_262_strand.fast5_template_deepnano 585593 601564 + BC_CNV_tombo-MyOv_32.fa
chr2 343800 339482 343016 345717 348118 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4562_ch_182_strand.fast5_template_deepnano 307096 365704 + BC_CNV_tombo-MyOv_32.fa
chr10 219190 208806 213188 220014 229574 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8274_ch_286_strand.fast5_template_deepnano 208762 229671 + BC_CNV_tombo-MyOv_32.fa
chr4 461960 453205 459805 466185 470716 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 1474663 1467632 1469738 1479015 1481695 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4252_ch_252_strand.fast5_template_deepnano 1463822 1504313 - BC_CNV_tombo-MyOv_32.fa
chr15 540501 536781 540680 540680 544221 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4303_ch_381_strand.fast5_template_deepnano 534176 562324 - BC_CNV_tombo-MyOv_32.fa
chr11 471875 465210 470319 470319 478541 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5662_ch_97_strand.fast5_template_deepnano 453219 487064 - BC_CNV_tombo-MyOv_32.fa
chr5 163461 157551 163561 167238 169372 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4513_ch_373_strand.fast5_template_deepnano 146098 192324 + BC_CNV_tombo-MyOv_32.fa
chr4 419820 411760 414632 421926 427880 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4843_ch_484_strand.fast5_template_deepnano 402093 434453 - BC_CNV_tombo-MyOv_32.fa
chr4 474873 466580 472446 478252 483166 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_20374_ch_275_strand.fast5_template_deepnano 457753 492024 - BC_CNV_tombo-MyOv_32.fa
chr9 21491 8679 10936 30451 34304 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5015_ch_274_strand.fast5_template_deepnano 277 73299 + BC_CNV_tombo-MyOv_32.fa
chr7 772714 769674 774096 774096 775754 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4582_ch_373_strand.fast5_template_deepnano 755144 791857 - BC_CNV_tombo-MyOv_32.fa
chr16 470196 457387 461788 479167 483005 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4570_ch_40_strand.fast5_template_deepnano 425821 483032 - BC_CNV_tombo-MyOv_32.fa
chr11 493133 485085 490197 490197 501181 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5597_ch_94_strand.fast5_template_deepnano 485084 513246 + BC_CNV_tombo-MyOv_32.fa
chr12 144350 141070 144169 145750 147631 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7151_ch_282_strand.fast5_template_deepnano 119895 161208 - BC_CNV_tombo-MyOv_32.fa
chr2 115518 111055 117238 117238 119982 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_16780_ch_372_strand.fast5_template_deepnano 107344 127707 + BC_CNV_tombo-MyOv_32.fa
chr14 627324 624817 627705 627705 629831 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4953_ch_148_strand.fast5_template_deepnano 623894 647797 - BC_CNV_tombo-MyOv_32.fa
chr10 139855 133119 140547 140547 146592 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_24594_ch_262_strand.fast5_template_deepnano 100532 150007 - BC_CNV_tombo-MyOv_32.fa
chr12 458470 451586 457234 459733 465355 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3522_ch_225_strand.fast5_template_deepnano 451559 468944 - BC_CNV_tombo-MyOv_32.fa
chr5 76147 70051 78895 78895 82244 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 621947 613482 617869 624539 630412 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12583_ch_247_strand.fast5_template_deepnano 593973 643273 + BC_CNV_tombo-MyOv_32.fa
chr5 467900 459764 466604 472564 476036 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_11907_ch_498_strand.fast5_template_deepnano 445575 481217 + BC_CNV_tombo-MyOv_32.fa
chr2 326457 323667 325889 325889 329247 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_23375_ch_362_strand.fast5_template_deepnano 322562 362660 + BC_CNV_tombo-MyOv_56.fa
chr15 141257 135593 140885 144123 146921 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_38724_ch_228_strand.fast5_template_deepnano 105952 154065 + BC_CNV_tombo-MyOv_56.fa
chr15 235227 232091 236089 236089 238363 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_39252_ch_32_strand.fast5_template_deepnano 205404 245939 - BC_CNV_tombo-MyOv_56.fa
chr15 1007883 1003785 1006953 1006953 1011981 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 1012092 1003785 1006648 1015268 1020399 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 1035831 1027881 1036085 1036085 1043781 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_11793_ch_483_strand.fast5_template_deepnano 1003783 1043833 + BC_CNV_tombo-MyOv_56.fa
chr2 20947 9688 18987 24375 32206 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_26052_ch_374_strand.fast5_template_deepnano 3 39313 - BC_CNV_tombo-MyOv_56.fa
chr15 252071 244547 250290 253629 259595 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_34860_ch_71_strand.fast5_template_deepnano 225411 265464 - BC_CNV_tombo-MyOv_56.fa
chr15 143880 135789 138962 142701 151972 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_28839_ch_201_strand.fast5_template_deepnano 118280 182707 + BC_CNV_tombo-MyOv_56.fa
chr12 913794 909347 912784 912784 918242 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_37203_ch_180_strand.fast5_template_deepnano 890236 933668 + BC_CNV_tombo-MyOv_56.fa
chr12 555549 548882 552559 558553 562216 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_46587_ch_287_strand.fast5_template_deepnano 528630 563901 - BC_CNV_tombo-MyOv_56.fa
chr12 456019 452455 456169 456169 459584 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_41202_ch_31_strand.fast5_template_deepnano 452354 463759 - BC_CNV_tombo-MyOv_56.fa
chr9 49832 33398 36576 62473 66267 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_29272_ch_281_strand.fast5_template_deepnano 142 66311 + BC_CNV_tombo-MyOv_56.fa
chr2 519236 510995 513509 523724 527478 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_47422_ch_314_strand.fast5_template_deepnano 487915 533418 - BC_CNV_tombo-MyOv_56.fa
chr5 559354 555280 560164 560164 563428 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_33539_ch_218_strand.fast5_template_deepnano 513450 576587 - BC_CNV_tombo-MyOv_56.fa
chr10 218303 215714 217496 217496 220893 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_16766_ch_246_strand.fast5_template_deepnano 204643 246751 + BC_CNV_tombo-MyOv_56.fa
chr16 806871 797155 799227 811325 816587 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_39237_ch_228_strand.fast5_template_deepnano 794216 833654 + BC_CNV_tombo-MyOv_56.fa
chr11 79645 75432 78817 80069 83858 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_22287_ch_435_strand.fast5_template_deepnano 68868 113489 - BC_CNV_tombo-MyOv_56.fa
chr14 585273 574184 579363 590038 596363 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_33590_ch_218_strand.fast5_template_deepnano 551173 596409 + BC_CNV_tombo-MyOv_56.fa
chr2 395438 386945 395253 400175 403932 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_69292_ch_434_strand.fast5_template_deepnano 385131 413187 + BC_CNV_tombo-MyOv_56.fa
chr8 478281 466584 474669 486107 489978 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_922_ch_88_strand.fast5_template_deepnano 460338 493192 + BC_CNV_tombo-MyOv_7.fa
chr9 189313 184331 188553 188553 194295 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_737_ch_244_strand.fast5_template_deepnano 174626 196099 + BC_CNV_tombo-MyOv_7.fa
chr13 625221 618722 623837 626690 631720 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_446_ch_109_strand.fast5_template_deepnano 584922 651884 + BC_CNV_tombo-MyOv_7.fa
chr14 625490 619419 622021 628799 631562 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_664_ch_463_strand.fast5_template_deepnano 605498 635601 + BC_CNV_tombo-MyOv_7.fa
chr14 289521 272319 285168 299715 306723 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_493_ch_485_strand.fast5_template_deepnano 272317 325135 + BC_CNV_tombo-MyOv_7.fa
chr12 303848 299964 302055 302055 307733 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_527_ch_248_strand.fast5_template_deepnano 297599 349747 + BC_CNV_tombo-MyOv_7.fa
chr14 691001 687046 690005 691483 694956 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_542_ch_235_strand.fast5_template_deepnano 682991 715884 + BC_CNV_tombo-MyOv_7.fa
chr10 646310 643188 644783 644783 649433 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_550_ch_390_strand.fast5_template_deepnano 643180 650520 + BC_CNV_tombo-MyOv_7.fa
chr10 312149 300187 313138 313138 324112 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_926_ch_508_strand.fast5_template_deepnano 300065 350273 - BC_CNV_tombo-MyOv_7.fa
chr7 924390 913488 919372 933005 935293 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 961579 948662 952400 972691 974496 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_542_ch_326_strand.fast5_template_deepnano 912724 975379 - BC_CNV_tombo-MyOv_7.fa
chr6 146000 143339 146436 146436 148662 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_879_ch_40_strand.fast5_template_deepnano 129491 172037 - BC_CNV_tombo-MyOv_7.fa
chr14 625307 621039 625352 625352 629576 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_11919_ch_276_strand.fast5_template_deepnano 614214 630870 + BC_CNV_tombo-MyOv_7.fa
chr5 326045 308646 321868 336369 343444 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_26770_ch_93_strand.fast5_template_deepnano 308540 356903 - BC_CNV_tombo-MyOv_57.fa
chr12 533326 527063 530081 530081 539590 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_31071_ch_238_strand.fast5_template_deepnano 526108 563472 + BC_CNV_tombo-MyOv_57.fa
chr13 853112 846281 854100 854100 859944 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7881_ch_289_strand.fast5_template_deepnano 830467 861426 - BC_CNV_tombo-MyOv_57.fa
chr11 81917 69075 78649 78649 94759 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 866104 858875 863190 868893 873334 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_110058_ch_464_strand.fast5_template_deepnano 858789 878341 - BC_CNV_tombo-MyOv_57.fa
chr10 577743 570378 572818 581203 585109 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_53920_ch_84_strand.fast5_template_deepnano 566126 628419 + BC_CNV_tombo-MyOv_57.fa
chr12 715023 703001 710055 722588 727045 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_11948_ch_440_strand.fast5_template_deepnano 697384 729736 - BC_CNV_tombo-MyOv_57.fa
chr16 321619 315984 322949 322949 327254 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_25292_ch_442_strand.fast5_template_deepnano 306334 328173 - BC_CNV_tombo-MyOv_57.fa
chr10 710319 705168 709030 711492 715471 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_24023_ch_255_strand.fast5_template_deepnano 695626 715525 + BC_CNV_tombo-MyOv_57.fa
chr8 345109 336526 347478 347478 353692 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_36638_ch_144_strand.fast5_template_deepnano 336381 374084 - BC_CNV_tombo-MyOv_57.fa
chr12 901926 894484 896387 900450 909369 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_18116_ch_34_strand.fast5_template_deepnano 882773 918935 - BC_CNV_tombo-MyOv_57.fa
chr4 933270 923525 928975 937551 943016 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_29262_ch_502_strand.fast5_template_deepnano 921404 952584 + BC_CNV_tombo-MyOv_57.fa
chr12 461435 454049 461380 461380 468821 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_42784_ch_214_strand.fast5_template_deepnano 454012 468918 + BC_CNV_tombo-MyOv_57.fa
chr10 724277 721491 724540 724540 727063 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_37037_ch_324_strand.fast5_template_deepnano 690198 745336 - BC_CNV_tombo-MyOv_57.fa
chr12 760563 757038 759991 759991 764088 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_41767_ch_153_strand.fast5_template_deepnano 713652 798526 + BC_CNV_tombo-MyOv_57.fa
chr10 242770 226294 229022 257164 259247 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_65248_ch_419_strand.fast5_template_deepnano 219081 259661 - BC_CNV_tombo-MyOv_57.fa
chr7 180329 176324 180492 180492 184335 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12830_ch_381_strand.fast5_template_deepnano 169839 196352 + BC_CNV_tombo-MyOv_57.fa
chr9 155073 147814 153685 153685 162332 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3987_ch_92_strand.fast5_template_deepnano 141329 184190 - BC_CNV_tombo-MyOv_24.fa
chr4 27057 22500 26998 26998 31615 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2649_ch_137_strand.fast5_template_deepnano 552 59188 + BC_CNV_tombo-MyOv_24.fa
chr5 304496 297340 301948 304913 311653 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2800_ch_316_strand.fast5_template_deepnano 294967 313156 + BC_CNV_tombo-MyOv_24.fa
chr4 64094 48380 50920 76983 79808 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2089_ch_492_strand.fast5_template_deepnano 31635 79818 + BC_CNV_tombo-MyOv_24.fa
chr12 462479 456137 461915 461915 468821 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5505_ch_59_strand.fast5_template_deepnano 456126 468928 + BC_CNV_tombo-MyOv_24.fa
chr10 642178 628576 636443 649996 655780 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2653_ch_195_strand.fast5_template_deepnano 613210 655889 + BC_CNV_tombo-MyOv_24.fa
chr15 150333 144095 154858 154858 156571 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2749_ch_479_strand.fast5_template_deepnano 132115 158826 + BC_CNV_tombo-MyOv_24.fa
chr15 204589 199986 204627 204627 209193 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3349_ch_189_strand.fast5_template_deepnano 183238 224896 - BC_CNV_tombo-MyOv_24.fa
chr2 598016 593639 599113 599113 602394 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9108_ch_208_strand.fast5_template_deepnano 576638 607798 + BC_CNV_tombo-MyOv_24.fa
chr6 148907 142583 144482 153175 155232 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3152_ch_477_strand.fast5_template_deepnano 129474 157009 - BC_CNV_tombo-MyOv_24.fa
chr4 152245 147692 151988 151988 156799 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2862_ch_460_strand.fast5_template_deepnano 138114 160882 + BC_CNV_tombo-MyOv_24.fa
chr4 1115974 1108642 1111783 1119987 1123307 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2874_ch_460_strand.fast5_template_deepnano 1104752 1123360 - BC_CNV_tombo-MyOv_24.fa
chr5 206057 203218 206976 206976 208897 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 77859 74468 79206 79206 81251 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 826769 809069 825249 825249 844469 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 1077483 1069920 1071894 1080274 1085047 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2701_ch_268_strand.fast5_template_deepnano 1057627 1091288 + BC_CNV_tombo-MyOv_24.fa
chr14 297779 289484 302425 302425 306074 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2928_ch_379_strand.fast5_template_deepnano 289416 313832 - BC_CNV_tombo-MyOv_24.fa
chr3 190396 183018 191888 191888 197775 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2930_ch_391_strand.fast5_template_deepnano 169206 197790 - BC_CNV_tombo-MyOv_24.fa
chr13 244611 238368 242001 247766 250855 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3841_ch_425_strand.fast5_template_deepnano 228937 261370 - BC_CNV_tombo-MyOv_24.fa
chr7 181408 172888 178126 184846 189929 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3451_ch_278_strand.fast5_template_deepnano 158457 191227 + BC_CNV_tombo-MyOv_24.fa
chr15 196620 173017 181667 209604 220224 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_348_ch_326_strand.fast5_template_deepnano 163319 227965 - BC_CNV_tombo-MyOv_5.fa
chr13 578659 573423 578419 578419 583895 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_425_ch_44_strand.fast5_template_deepnano 565078 619573 + BC_CNV_tombo-MyOv_5.fa
chr9 381038 377241 379851 381746 384836 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_426_ch_425_strand.fast5_template_deepnano 374730 391918 - BC_CNV_tombo-MyOv_5.fa
chr16 105467 95329 99692 111646 115605 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_439_ch_125_strand.fast5_template_deepnano 82200 127892 - BC_CNV_tombo-MyOv_5.fa
chr8 262366 257164 263007 263007 267568 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_601_ch_465_strand.fast5_template_deepnano 250741 274731 - BC_CNV_tombo-MyOv_5.fa
chr13 159452 147386 150772 166168 171519 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1343_ch_392_strand.fast5_template_deepnano 115936 178314 + BC_CNV_tombo-MyOv_5.fa
chr4 536287 532081 537996 537996 540493 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_449_ch_35_strand.fast5_template_deepnano 528201 561216 - BC_CNV_tombo-MyOv_5.fa
chr9 378475 372933 378946 378946 384018 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_397_ch_22_strand.fast5_template_deepnano 372919 439403 - BC_CNV_tombo-MyOv_5.fa
chr9 381546 373003 378651 378651 390089 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 187170 174288 180304 185627 200052 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 138224 130090 136429 142323 146359 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_363_ch_331_strand.fast5_template_deepnano 113044 155089 + BC_CNV_tombo-MyOv_5.fa
chr7 414998 411283 414057 416737 418713 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_405_ch_458_strand.fast5_template_deepnano 406055 427597 + BC_CNV_tombo-MyOv_5.fa
chr7 419483 411430 414166 424347 427536 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_405_ch_458_strand.fast5_template_deepnano 406055 427597 + BC_CNV_tombo-MyOv_5.fa
chr4 1049129 1042677 1047716 1052980 1055581 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_724_ch_143_strand.fast5_template_deepnano 1029956 1062126 + BC_CNV_tombo-MyOv_5.fa
chr13 157838 144678 146979 165851 170998 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_428_ch_149_strand.fast5_template_deepnano 134399 181739 + BC_CNV_tombo-MyOv_5.fa
chr4 1078409 1065900 1078465 1078465 1090919 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_511_ch_39_strand.fast5_template_deepnano 1059689 1090965 - BC_CNV_tombo-MyOv_5.fa
chr10 80276 76491 78561 80008 84061 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_803_ch_273_strand.fast5_template_deepnano 59105 102361 + BC_CNV_tombo-MyOv_5.fa
chr8 28185 20281 29534 29534 36089 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_362_ch_248_strand.fast5_template_deepnano 4 60598 - BC_CNV_tombo-MyOv_5.fa
chr8 535047 529247 534627 534627 540847 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_435_ch_131_strand.fast5_template_deepnano 514311 556480 - BC_CNV_tombo-MyOv_5.fa
chr14 117879 110258 113817 122292 125500 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_326_ch_258_strand.fast5_template_deepnano 110213 133554 - BC_CNV_tombo-MyOv_5.fa
chr11 320302 315917 319958 319958 324688 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_493_ch_66_strand.fast5_template_deepnano 293752 334371 - BC_CNV_tombo-MyOv_5.fa
chr12 711724 709559 711970 711970 713890 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_522_ch_305_strand.fast5_template_deepnano 708108 725717 + BC_CNV_tombo-MyOv_5.fa
chr13 204756 195646 202928 208838 213867 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_576_ch_108_strand.fast5_template_deepnano 190674 213920 + BC_CNV_tombo-MyOv_5.fa
chr14 475696 467486 470008 477474 483906 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_103_ch_446_strand.fast5_template_deepnano 460514 515354 - BC_CNV_tombo-MyOv_1.fa
chr13 407644 397610 401756 414404 417679 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_121_ch_108_strand.fast5_template_deepnano 370008 419443 - BC_CNV_tombo-MyOv_1.fa
chr12 129694 123622 129731 129731 135766 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_187_ch_369_strand.fast5_template_deepnano 105402 142620 - BC_CNV_tombo-MyOv_1.fa
chr15 358910 355118 358100 358100 362702 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 530748 525797 532663 532663 535700 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_60_ch_139_strand.fast5_template_deepnano 512953 567738 - BC_CNV_tombo-MyOv_1.fa
chr16 84902 74565 76343 90799 95240 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_62_ch_214_strand.fast5_template_deepnano 67543 104528 + BC_CNV_tombo-MyOv_1.fa
chr6 182460 177467 182992 182992 187453 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_75_ch_219_strand.fast5_template_deepnano 164181 212205 - BC_CNV_tombo-MyOv_1.fa
chr10 238209 232752 238269 241027 243666 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_83_ch_304_strand.fast5_template_deepnano 227495 289263 - BC_CNV_tombo-MyOv_1.fa
chr12 456159 451559 456475 457671 460760 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_99_ch_326_strand.fast5_template_deepnano 451419 467615 - BC_CNV_tombo-MyOv_1.fa
chr13 209439 198233 205591 213781 220645 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5895_ch_27_strand.fast5_template_deepnano 186757 242422 + BC_CNV_tombo-MyOv_30.fa
chr7 792807 781939 788679 792522 803676 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7406_ch_285_strand.fast5_template_deepnano 777387 806669 - BC_CNV_tombo-MyOv_30.fa
chr2 156305 153682 155977 155977 158929 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5764_ch_56_strand.fast5_template_deepnano 127496 161783 + BC_CNV_tombo-MyOv_30.fa
chr2 773482 766669 776794 776794 780295 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12663_ch_228_strand.fast5_template_deepnano 766604 796274 - BC_CNV_tombo-MyOv_30.fa
chr13 709147 701779 703573 714231 716516 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_23394_ch_78_strand.fast5_template_deepnano 697311 721761 - BC_CNV_tombo-MyOv_30.fa
chr7 334255 322200 329619 343801 346311 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3852_ch_466_strand.fast5_template_deepnano 322072 360946 - BC_CNV_tombo-MyOv_30.fa
chr16 84459 79645 85232 85232 89274 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 228183 223423 228642 228642 232943 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7605_ch_239_strand.fast5_template_deepnano 216725 253704 + BC_CNV_tombo-MyOv_30.fa
chr11 243470 236657 241408 241408 250283 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7605_ch_239_strand.fast5_template_deepnano 216725 253704 + BC_CNV_tombo-MyOv_30.fa
chr15 538282 528621 531865 539808 547943 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4264_ch_102_strand.fast5_template_deepnano 500506 556207 - BC_CNV_tombo-MyOv_30.fa
chr8 156523 146359 150086 162119 166687 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8577_ch_166_strand.fast5_template_deepnano 141904 168983 + BC_CNV_tombo-MyOv_30.fa
chr15 710363 698367 713468 713468 722359 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4266_ch_396_strand.fast5_template_deepnano 693819 722420 - BC_CNV_tombo-MyOv_30.fa
chr14 711565 707209 710519 712641 715922 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5448_ch_433_strand.fast5_template_deepnano 705474 725691 + BC_CNV_tombo-MyOv_30.fa
chr13 641999 636117 642047 642047 647881 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10911_ch_46_strand.fast5_template_deepnano 628024 691275 - BC_CNV_tombo-MyOv_30.fa
chr14 295963 290618 298093 298093 301308 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5111_ch_356_strand.fast5_template_deepnano 269668 323973 - BC_CNV_tombo-MyOv_30.fa
chr13 832063 825443 832860 832860 838684 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8258_ch_254_strand.fast5_template_deepnano 805148 867229 - BC_CNV_tombo-MyOv_30.fa
chr10 105743 98627 106719 110658 112859 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4324_ch_281_strand.fast5_template_deepnano 73192 116480 + BC_CNV_tombo-MyOv_30.fa
chr16 911170 891285 897236 925933 931056 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5971_ch_82_strand.fast5_template_deepnano 891245 947804 - BC_CNV_tombo-MyOv_30.fa
chr8 362363 359714 361170 362754 365013 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_783_ch_355_strand.fast5_template_deepnano 347621 373366 - BC_CNV_tombo-MyOv_11.fa
chr2 154127 149515 152427 156494 158740 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_799_ch_307_strand.fast5_template_deepnano 126648 175206 + BC_CNV_tombo-MyOv_11.fa
chr4 243915 238601 241320 246529 249229 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2172_ch_427_strand.fast5_template_deepnano 224372 274808 + BC_CNV_tombo-MyOv_11.fa
chr9 119674 110604 120490 120490 128744 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3230_ch_197_strand.fast5_template_deepnano 110574 142522 + BC_CNV_tombo-MyOv_11.fa
chr8 32929 3933 11064 55521 61925 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1056_ch_381_strand.fast5_template_deepnano 4 76480 - BC_CNV_tombo-MyOv_11.fa
chr14 367935 360697 363434 371676 375173 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1221_ch_43_strand.fast5_template_deepnano 345669 411864 - BC_CNV_tombo-MyOv_11.fa
chr2 688722 682377 686888 690486 695067 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 446580 443644 447282 447282 449516 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1159_ch_113_strand.fast5_template_deepnano 440696 491055 + BC_CNV_tombo-MyOv_11.fa
chr13 407409 387884 391239 423771 426934 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1265_ch_273_strand.fast5_template_deepnano 380343 434697 - BC_CNV_tombo-MyOv_11.fa
chr10 582547 570904 575405 590279 594191 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1138_ch_151_strand.fast5_template_deepnano 526830 595632 + BC_CNV_tombo-MyOv_11.fa
chr4 148684 146491 148289 148289 150877 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2367_ch_223_strand.fast5_template_deepnano 145148 157054 - BC_CNV_tombo-MyOv_11.fa
chr14 374739 358396 362538 384863 391082 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_806_ch_29_strand.fast5_template_deepnano 356620 410208 + BC_CNV_tombo-MyOv_11.fa
chr8 336220 328916 337034 340070 343525 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1027_ch_493_strand.fast5_template_deepnano 327031 373357 - BC_CNV_tombo-MyOv_11.fa
chr15 554384 529186 541245 561921 579583 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1421_ch_237_strand.fast5_template_deepnano 526181 579773 + BC_CNV_tombo-MyOv_11.fa
chr13 633269 622500 626927 637851 644039 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1464_ch_247_strand.fast5_template_deepnano 620028 649437 + BC_CNV_tombo-MyOv_11.fa
chr15 1010203 1000094 1008602 1008602 1020312 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2208_ch_15_strand.fast5_template_deepnano 994222 1026481 - BC_CNV_tombo-MyOv_20.fa
chr12 394936 379122 383208 408920 410750 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4139_ch_503_strand.fast5_template_deepnano 369044 459584 - BC_CNV_tombo-MyOv_20.fa
chr3 56443 49031 52557 59773 63856 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 423123 417137 421026 426373 429110 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1517_ch_50_strand.fast5_template_deepnano 372239 449114 + BC_CNV_tombo-MyOv_20.fa
chr11 230192 225219 232863 232863 235166 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2647_ch_148_strand.fast5_template_deepnano 222003 257799 + BC_CNV_tombo-MyOv_20.fa
chr11 244853 236959 238927 240822 252748 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2647_ch_148_strand.fast5_template_deepnano 222003 257799 + BC_CNV_tombo-MyOv_20.fa
chr3 130675 127047 132352 132352 134303 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3488_ch_97_strand.fast5_template_deepnano 127035 134360 + BC_CNV_tombo-MyOv_20.fa
chr11 281909 274178 276843 283924 289640 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2002_ch_112_strand.fast5_template_deepnano 267691 302424 - BC_CNV_tombo-MyOv_20.fa
chr12 773255 764634 768871 779108 781876 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2804_ch_3_strand.fast5_template_deepnano 761003 795389 - BC_CNV_tombo-MyOv_20.fa
chr16 860129 856700 858526 858526 863559 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1919_ch_52_strand.fast5_template_deepnano 856556 873052 - BC_CNV_tombo-MyOv_20.fa
chr12 737721 734027 737404 739925 741415 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1945_ch_82_strand.fast5_template_deepnano 708087 755079 - BC_CNV_tombo-MyOv_20.fa
chr4 144857 141018 145092 145092 148697 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2142_ch_498_strand.fast5_template_deepnano 117737 158966 - BC_CNV_tombo-MyOv_20.fa
chr9 384199 369427 374224 394001 398972 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2279_ch_316_strand.fast5_template_deepnano 360441 433195 + BC_CNV_tombo-MyOv_20.fa
chr11 15826 10094 16069 16069 21558 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_14058_ch_479_strand.fast5_template_deepnano 3 43250 - BC_CNV_tombo-MyOv_51.fa
chr12 266406 251254 268846 273945 281559 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_28730_ch_430_strand.fast5_template_deepnano 245766 303632 + BC_CNV_tombo-MyOv_51.fa
chr13 152000 147779 149889 151266 156222 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 220467 215498 219650 219650 225437 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_50159_ch_369_strand.fast5_template_deepnano 207625 235733 + BC_CNV_tombo-MyOv_51.fa
chr5 243499 238634 244253 244253 248365 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17361_ch_370_strand.fast5_template_deepnano 228503 261438 + BC_CNV_tombo-MyOv_51.fa
chr15 671480 664359 666128 666128 678601 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_15919_ch_170_strand.fast5_template_deepnano 644841 678645 + BC_CNV_tombo-MyOv_51.fa
chr4 827266 814073 816723 833513 840460 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6182_ch_364_strand.fast5_template_deepnano 814044 854303 - BC_CNV_tombo-MyOv_51.fa
chr13 782176 774231 776185 782328 790122 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8265_ch_53_strand.fast5_template_deepnano 762057 800089 + BC_CNV_tombo-MyOv_51.fa
chr13 394403 385676 395423 395423 403130 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_69933_ch_51_strand.fast5_template_deepnano 378745 415055 + BC_CNV_tombo-MyOv_51.fa
chr10 389206 383468 388406 388406 394945 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_13288_ch_494_strand.fast5_template_deepnano 362782 394960 - BC_CNV_tombo-MyOv_51.fa
chr11 236226 228681 231890 240776 243771 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_22451_ch_406_strand.fast5_template_deepnano 225490 245672 + BC_CNV_tombo-MyOv_51.fa
chr1 137486 129069 132252 138937 145904 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_61992_ch_419_strand.fast5_template_deepnano 118029 177955 + BC_CNV_tombo-MyOv_51.fa
chr15 950977 942126 944732 947573 959828 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_23549_ch_508_strand.fast5_template_deepnano 919274 981983 - BC_CNV_tombo-MyOv_51.fa
chr7 948716 946376 949267 949267 951056 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_37030_ch_32_strand.fast5_template_deepnano 944561 987236 + BC_CNV_tombo-MyOv_51.fa
chr7 874962 869256 877151 877151 880668 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_25508_ch_478_strand.fast5_template_deepnano 857815 886668 - BC_CNV_tombo-MyOv_51.fa
chr12 212391 206730 212938 212938 218052 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 400328 393339 397162 403138 407318 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_16779_ch_297_strand.fast5_template_deepnano 378373 414662 - BC_CNV_tombo-MyOv_42.fa
chr9 381281 371623 380366 386296 390939 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 263060 251821 259068 269296 274300 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 149457 142515 145660 151538 156399 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 321377 317922 321220 321220 324833 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10147_ch_66_strand.fast5_template_deepnano 317894 349894 + BC_CNV_tombo-MyOv_42.fa
chr14 169044 162062 169426 169426 176026 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_24362_ch_7_strand.fast5_template_deepnano 148844 201920 - BC_CNV_tombo-MyOv_42.fa
chr7 991360 985115 990569 990569 997605 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8243_ch_227_strand.fast5_template_deepnano 943441 1000032 - BC_CNV_tombo-MyOv_42.fa
chr11 637777 632721 637455 637455 642834 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_23575_ch_116_strand.fast5_template_deepnano 604170 642908 + BC_CNV_tombo-MyOv_42.fa
chr7 804413 797956 805175 805175 810871 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12401_ch_135_strand.fast5_template_deepnano 781586 811775 + BC_CNV_tombo-MyOv_42.fa
chr10 223057 220103 223075 223075 226012 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_26650_ch_464_strand.fast5_template_deepnano 214783 239873 + BC_CNV_tombo-MyOv_42.fa
chr7 36200 23155 40154 40154 49246 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_64059_ch_51_strand.fast5_template_deepnano 6194 49246 - BC_CNV_tombo-MyOv_42.fa
chr4 1520323 1511553 1516329 1526674 1529093 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6761_ch_404_strand.fast5_template_deepnano 1511537 1531751 - BC_CNV_tombo-MyOv_42.fa
chr12 273521 266268 269964 276438 280774 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17847_ch_186_strand.fast5_template_deepnano 257958 287465 - BC_CNV_tombo-MyOv_42.fa
chr16 511850 506609 511465 511465 517091 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_22281_ch_481_strand.fast5_template_deepnano 506552 523457 - BC_CNV_tombo-MyOv_42.fa
chr4 1285459 1279554 1282710 1286076 1291364 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_36426_ch_242_strand.fast5_template_deepnano 1279511 1298340 - BC_CNV_tombo-MyOv_42.fa
chr4 1286536 1277329 1283835 1289897 1295743 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_11459_ch_83_strand.fast5_template_deepnano 1274821 1310026 + BC_CNV_tombo-MyOv_42.fa
chr5 306260 300833 302976 305464 311687 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12513_ch_237_strand.fast5_template_deepnano 276074 311732 - BC_CNV_tombo-MyOv_42.fa
chr11 93017 89094 92577 92577 96941 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_26820_ch_422_strand.fast5_template_deepnano 70023 100732 + BC_CNV_tombo-MyOv_42.fa
chr11 85407 74389 77349 86478 96426 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_26820_ch_422_strand.fast5_template_deepnano 70023 100732 + BC_CNV_tombo-MyOv_42.fa
chr13 854199 850233 853431 855013 858166 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8253_ch_189_strand.fast5_template_deepnano 849479 863962 + BC_CNV_tombo-MyOv_42.fa
chr7 313321 310690 313510 313510 315953 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10315_ch_66_strand.fast5_template_deepnano 284390 327510 - BC_CNV_tombo-MyOv_42.fa
chr2 292401 286433 292274 292274 298370 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12879_ch_282_strand.fast5_template_deepnano 268933 308576 + BC_CNV_tombo-MyOv_42.fa
chr14 476740 458273 476916 476916 495208 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17877_ch_186_strand.fast5_template_deepnano 422017 502485 - BC_CNV_tombo-MyOv_42.fa
chr12 464831 460773 463252 463252 468890 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_48664_ch_95_strand.fast5_template_deepnano 458439 468929 + BC_CNV_tombo-MyOv_42.fa
chr12 773286 759421 763314 784580 787151 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_108_ch_391_strand.fast5_template_deepnano 750503 804822 - BC_CNV_tombo-MyOv_2.fa
chr16 349065 345967 349210 349210 352164 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_132_ch_190_strand.fast5_template_deepnano 345938 368694 - BC_CNV_tombo-MyOv_2.fa
chr15 299839 292924 298959 302862 306755 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_136_ch_333_strand.fast5_template_deepnano 277944 310251 + BC_CNV_tombo-MyOv_2.fa
chr14 430776 413669 417846 440219 447883 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 384163 371452 384128 384128 396874 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 544421 538673 545088 545088 550169 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 564114 559655 561906 563722 568574 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_151_ch_371_strand.fast5_template_deepnano 529043 575799 - BC_CNV_tombo-MyOv_2.fa
chr1 82178 78468 82641 82641 85888 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 349524 324501 335743 364799 374548 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_169_ch_320_strand.fast5_template_deepnano 283118 379990 - BC_CNV_tombo-MyOv_2.fa
chr7 304663 295816 303961 303961 313510 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_169_ch_320_strand.fast5_template_deepnano 283118 379990 - BC_CNV_tombo-MyOv_2.fa
chr15 722133 711098 714983 721314 733169 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_169_ch_489_strand.fast5_template_deepnano 699632 743165 - BC_CNV_tombo-MyOv_2.fa
chr5 383766 378193 383205 383205 389339 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_170_ch_28_strand.fast5_template_deepnano 359387 402749 + BC_CNV_tombo-MyOv_2.fa
chr14 627742 618845 623071 631071 636639 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_173_ch_190_strand.fast5_template_deepnano 597986 636726 + BC_CNV_tombo-MyOv_2.fa
chr12 699908 693364 701270 701270 706452 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_174_ch_374_strand.fast5_template_deepnano 687624 715120 + BC_CNV_tombo-MyOv_2.fa
chr10 496377 484371 497461 497461 508384 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_177_ch_102_strand.fast5_template_deepnano 474537 512540 - BC_CNV_tombo-MyOv_2.fa
chr5 32514 28450 32272 34415 36579 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_190_ch_318_strand.fast5_template_deepnano 19965 41636 - BC_CNV_tombo-MyOv_2.fa
chr16 239832 231615 234444 238863 248049 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_196_ch_336_strand.fast5_template_deepnano 215437 252378 + BC_CNV_tombo-MyOv_2.fa
chr15 1029080 1025948 1029612 1029612 1032213 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_226_ch_88_strand.fast5_template_deepnano 1021800 1037611 + BC_CNV_tombo-MyOv_2.fa
chr4 369025 360754 372305 372305 377297 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_277_ch_274_strand.fast5_template_deepnano 355898 379789 - BC_CNV_tombo-MyOv_2.fa
chr13 775267 768919 773853 773853 781615 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_345_ch_12_strand.fast5_template_deepnano 768901 836430 + BC_CNV_tombo-MyOv_2.fa
chr11 71322 66110 71363 73920 76535 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1469_ch_42_strand.fast5_template_deepnano 50587 80300 - BC_CNV_tombo-MyOv_18.fa
chr15 403860 397457 402981 402981 410264 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1413_ch_418_strand.fast5_template_deepnano 397348 455416 - BC_CNV_tombo-MyOv_18.fa
chr7 344284 323874 326221 362182 364695 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1478_ch_387_strand.fast5_template_deepnano 302672 370738 - BC_CNV_tombo-MyOv_18.fa
chr7 988531 977408 982966 996816 999654 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2519_ch_262_strand.fast5_template_deepnano 968257 1015128 - BC_CNV_tombo-MyOv_18.fa
chr9 19558 11559 15950 15950 27558 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2654_ch_199_strand.fast5_template_deepnano 8638 45290 - BC_CNV_tombo-MyOv_18.fa
chr8 270401 263375 270451 270451 277427 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5040_ch_139_strand.fast5_template_deepnano 262039 295103 + BC_CNV_tombo-MyOv_18.fa
chr4 1246614 1241980 1246958 1246958 1251249 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1878_ch_486_strand.fast5_template_deepnano 1239712 1262184 + BC_CNV_tombo-MyOv_18.fa
chr3 3988 97 1971 1971 7880 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2274_ch_247_strand.fast5_template_deepnano 90 25671 - BC_CNV_tombo-MyOv_18.fa
chr11 271868 267117 270270 270270 276620 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2380_ch_44_strand.fast5_template_deepnano 245754 285817 + BC_CNV_tombo-MyOv_18.fa
chr12 708281 699290 704185 704185 717273 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1576_ch_129_strand.fast5_template_deepnano 687554 736012 + BC_CNV_tombo-MyOv_18.fa
chr11 82070 75516 83561 85982 88624 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1628_ch_99_strand.fast5_template_deepnano 75516 104914 + BC_CNV_tombo-MyOv_18.fa
chr15 149035 140924 148755 152696 157146 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1675_ch_150_strand.fast5_template_deepnano 131600 157160 - BC_CNV_tombo-MyOv_18.fa
chr8 155573 150581 153593 157187 160566 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 562091 551384 560120 560120 572799 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1963_ch_498_strand.fast5_template_deepnano 537788 576695 - BC_CNV_tombo-MyOv_18.fa
chr4 894727 888067 897850 897850 901387 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1888_ch_249_strand.fast5_template_deepnano 862824 911926 + BC_CNV_tombo-MyOv_18.fa
chr4 354718 347538 350997 350997 361898 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2471_ch_94_strand.fast5_template_deepnano 332161 361947 - BC_CNV_tombo-MyOv_18.fa
chr15 741858 736332 742091 742091 747384 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1431_ch_50_strand.fast5_template_deepnano 733331 758928 + BC_CNV_tombo-MyOv_18.fa
chr2 352031 346051 347804 355191 358011 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2682_ch_229_strand.fast5_template_deepnano 343699 381662 + BC_CNV_tombo-MyOv_18.fa
chr6 42363 35591 41038 41038 49136 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_78718_ch_432_strand.fast5_template_deepnano 32611 56099 - BC_CNV_tombo-MyOv_63.fa
chr7 260136 255519 261511 261511 264754 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_23873_ch_241_strand.fast5_template_deepnano 217652 272533 + BC_CNV_tombo-MyOv_63.fa
chr12 269694 264641 268914 268914 274747 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10374_ch_462_strand.fast5_template_deepnano 262073 295650 + BC_CNV_tombo-MyOv_63.fa
chr16 68048 65487 68426 68426 70609 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 773116 760812 765819 765819 785420 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_54348_ch_444_strand.fast5_template_deepnano 760785 785521 + BC_CNV_tombo-MyOv_63.fa
chr8 271343 265565 269322 269322 277122 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_48242_ch_499_strand.fast5_template_deepnano 257003 295639 - BC_CNV_tombo-MyOv_63.fa
chr14 728866 720913 728020 732176 736819 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_49581_ch_239_strand.fast5_template_deepnano 713049 755031 - BC_CNV_tombo-MyOv_63.fa
chr5 378280 371176 373603 378560 385384 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_24219_ch_241_strand.fast5_template_deepnano 348728 399366 - BC_CNV_tombo-MyOv_63.fa
chr1 104284 97661 101612 108544 110908 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_40556_ch_105_strand.fast5_template_deepnano 81561 127044 - BC_CNV_tombo-MyOv_63.fa
chr13 41136 37415 40965 40965 44858 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_76419_ch_95_strand.fast5_template_deepnano 32926 57902 + BC_CNV_tombo-MyOv_63.fa
chr16 663476 648409 660723 674202 678543 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_38847_ch_62_strand.fast5_template_deepnano 641555 687869 - BC_CNV_tombo-MyOv_63.fa
chr4 476302 471607 474765 474765 480998 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_46617_ch_455_strand.fast5_template_deepnano 448607 496417 - BC_CNV_tombo-MyOv_55.fa
chr13 854111 844812 854315 854315 863410 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 181098 163394 167151 193314 198802 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 290209 281356 283597 295684 299063 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_27619_ch_115_strand.fast5_template_deepnano 275434 306252 - BC_CNV_tombo-MyOv_55.fa
chr2 738963 730181 734285 744563 747746 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_23660_ch_373_strand.fast5_template_deepnano 728467 762480 - BC_CNV_tombo-MyOv_55.fa
chr13 571212 563512 571003 571003 578912 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8078_ch_364_strand.fast5_template_deepnano 555591 587263 + BC_CNV_tombo-MyOv_55.fa
chr13 63877 59913 63841 63841 67841 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_40865_ch_214_strand.fast5_template_deepnano 45829 91107 - BC_CNV_tombo-MyOv_55.fa
chr15 65859 62216 66084 66084 69503 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10870_ch_53_strand.fast5_template_deepnano 59257 72620 + BC_CNV_tombo-MyOv_55.fa
chr15 153075 149911 152331 152331 156239 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_23850_ch_373_strand.fast5_template_deepnano 135882 163753 - BC_CNV_tombo-MyOv_55.fa
chr2 442890 435464 443103 446450 450317 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_37817_ch_313_strand.fast5_template_deepnano 424490 467487 + BC_CNV_tombo-MyOv_55.fa
chr14 111662 106073 112646 112646 117252 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 585957 568509 572097 598389 603406 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12706_ch_126_strand.fast5_template_deepnano 564918 639511 - BC_CNV_tombo-MyOv_28.fa
chr15 214244 208056 212747 212747 220432 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3888_ch_380_strand.fast5_template_deepnano 200373 232302 - BC_CNV_tombo-MyOv_28.fa
chr9 235339 229357 235201 235201 241322 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_129759_ch_160_strand.fast5_template_deepnano 224944 260513 + BC_CNV_tombo-MyOv_28.fa
chr15 114342 93237 108852 119454 135448 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3634_ch_301_strand.fast5_template_deepnano 93183 135453 - BC_CNV_tombo-MyOv_28.fa
chr14 517110 508659 511531 517183 525561 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4723_ch_22_strand.fast5_template_deepnano 507742 546935 - BC_CNV_tombo-MyOv_28.fa
chr12 333872 329413 333251 333251 338331 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4623_ch_188_strand.fast5_template_deepnano 325180 338341 - BC_CNV_tombo-MyOv_28.fa
chr15 643139 640574 643325 643325 645704 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3220_ch_289_strand.fast5_template_deepnano 611819 664944 + BC_CNV_tombo-MyOv_28.fa
chr7 148055 140679 146823 146823 155432 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9804_ch_186_strand.fast5_template_deepnano 140673 158355 - BC_CNV_tombo-MyOv_28.fa
chr15 140080 124876 133366 146634 155285 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3269_ch_485_strand.fast5_template_deepnano 116921 158392 - BC_CNV_tombo-MyOv_28.fa
chr13 853010 842360 846187 851797 863660 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3437_ch_336_strand.fast5_template_deepnano 832054 885855 + BC_CNV_tombo-MyOv_28.fa
chr13 872250 866991 870376 870376 877509 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3437_ch_336_strand.fast5_template_deepnano 832054 885855 + BC_CNV_tombo-MyOv_28.fa
chr12 189631 182730 187331 187331 196532 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3567_ch_300_strand.fast5_template_deepnano 180488 199821 - BC_CNV_tombo-MyOv_28.fa
chr10 648211 629546 632589 660302 666876 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7137_ch_49_strand.fast5_template_deepnano 592996 673626 - BC_CNV_tombo-MyOv_28.fa
chr4 1304433 1298427 1303018 1303018 1310440 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3438_ch_410_strand.fast5_template_deepnano 1298314 1310467 - BC_CNV_tombo-MyOv_28.fa
chr13 115813 107307 113790 118358 124320 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4088_ch_66_strand.fast5_template_deepnano 87686 132405 - BC_CNV_tombo-MyOv_28.fa
chr5 547340 517850 535092 570574 576830 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_13885_ch_255_strand.fast5_template_deepnano 508481 576868 + BC_CNV_tombo-MyOv_48.fa
chr4 131397 126625 134247 134247 136170 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 160310 154281 159958 163466 166339 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17277_ch_458_strand.fast5_template_deepnano 153139 166348 - BC_CNV_tombo-MyOv_48.fa
chr12 767877 758257 763318 767926 777497 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_40391_ch_441_strand.fast5_template_deepnano 741804 786181 - BC_CNV_tombo-MyOv_48.fa
chr13 351003 346916 351592 353185 355090 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_67572_ch_51_strand.fast5_template_deepnano 335347 357900 - BC_CNV_tombo-MyOv_48.fa
chr8 544261 535684 546162 546162 552839 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_26607_ch_116_strand.fast5_template_deepnano 504003 556517 - BC_CNV_tombo-MyOv_48.fa
chr4 1057564 1034205 1037721 1078786 1080924 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9327_ch_148_strand.fast5_template_deepnano 1033464 1094879 - BC_CNV_tombo-MyOv_48.fa
chr9 391220 383832 387518 396841 398609 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 67611 65301 67845 67845 69921 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17430_ch_49_strand.fast5_template_deepnano 54400 108268 - BC_CNV_tombo-MyOv_48.fa
chr6 79251 65170 70292 90391 93333 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17430_ch_49_strand.fast5_template_deepnano 54400 108268 - BC_CNV_tombo-MyOv_48.fa
chr14 590207 584838 590008 590008 595576 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_11585_ch_27_strand.fast5_template_deepnano 578627 611679 - BC_CNV_tombo-MyOv_48.fa
chr12 435124 423014 428481 442603 447234 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_40702_ch_441_strand.fast5_template_deepnano 418153 464898 + BC_CNV_tombo-MyOv_48.fa
chr16 532059 525770 532226 532226 538348 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_30235_ch_299_strand.fast5_template_deepnano 513788 561972 - BC_CNV_tombo-MyOv_48.fa
chr15 91824 87681 92926 92926 95967 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_38717_ch_242_strand.fast5_template_deepnano 87625 140560 - BC_CNV_tombo-MyOv_48.fa
chr14 137954 131846 138000 141029 144062 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_18362_ch_189_strand.fast5_template_deepnano 102558 147792 - BC_CNV_tombo-MyOv_50.fa
chr4 319445 313758 318438 320658 325132 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_29428_ch_164_strand.fast5_template_deepnano 292785 335556 + BC_CNV_tombo-MyOv_50.fa
chr5 71985 64170 66328 73432 79800 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17305_ch_460_strand.fast5_template_deepnano 62275 88495 + BC_CNV_tombo-MyOv_50.fa
chr13 208468 201399 208453 208453 215537 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_31843_ch_422_strand.fast5_template_deepnano 201373 245156 - BC_CNV_tombo-MyOv_50.fa
chr16 656026 650346 655062 655062 661706 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_19608_ch_446_strand.fast5_template_deepnano 625728 676538 + BC_CNV_tombo-MyOv_50.fa
chr15 497316 491450 498306 498306 503182 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_27148_ch_48_strand.fast5_template_deepnano 485606 526835 - BC_CNV_tombo-MyOv_50.fa
chr12 771393 768089 770736 770736 774697 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_11305_ch_97_strand.fast5_template_deepnano 736417 774731 + BC_CNV_tombo-MyOv_50.fa
chr10 396063 382279 390280 403949 409847 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17608_ch_122_strand.fast5_template_deepnano 374396 412809 + BC_CNV_tombo-MyOv_50.fa
chr16 397149 389115 394141 401862 405183 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_49256_ch_369_strand.fast5_template_deepnano 374970 419820 - BC_CNV_tombo-MyOv_50.fa
chr5 533485 528483 532181 535181 538487 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_32464_ch_213_strand.fast5_template_deepnano 507033 538545 + BC_CNV_tombo-MyOv_50.fa
chr16 446410 442780 446832 446832 450041 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_18102_ch_442_strand.fast5_template_deepnano 432968 465661 - BC_CNV_tombo-MyOv_50.fa
chr1 90019 74287 93214 101841 105751 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 245999 238802 241532 251075 253197 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_26896_ch_58_strand.fast5_template_deepnano 227038 261598 + BC_CNV_tombo-MyOv_50.fa
chr14 471958 463651 473335 473335 480266 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8823_ch_483_strand.fast5_template_deepnano 457710 513040 - BC_CNV_tombo-MyOv_50.fa
chr2 454594 442393 445862 462609 466796 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_32089_ch_490_strand.fast5_template_deepnano 440195 480720 + BC_CNV_tombo-MyOv_50.fa
chr9 238050 233614 238036 238036 242486 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17396_ch_435_strand.fast5_template_deepnano 210833 249730 - BC_CNV_tombo-MyOv_50.fa
chr10 111452 103297 106149 116511 119607 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_11967_ch_52_strand.fast5_template_deepnano 84737 136892 - BC_CNV_tombo-MyOv_50.fa
chr13 683785 670545 673927 681572 697025 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12905_ch_356_strand.fast5_template_deepnano 634366 697027 - BC_CNV_tombo-MyOv_50.fa
chr7 35442 29707 35068 35068 41178 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_13968_ch_190_strand.fast5_template_deepnano 29662 55513 - BC_CNV_tombo-MyOv_50.fa
chr10 640386 635198 638460 638460 645574 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_13726_ch_378_strand.fast5_template_deepnano 618714 645603 + BC_CNV_tombo-MyOv_50.fa
chr1 36729 31294 37896 37896 42165 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10707_ch_43_strand.fast5_template_deepnano 13088 52513 - BC_CNV_tombo-MyOv_50.fa
chr8 453768 449909 453356 453356 457628 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_49672_ch_369_strand.fast5_template_deepnano 445169 477343 + BC_CNV_tombo-MyOv_50.fa
chr4 90049 87817 89780 89780 92281 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_14288_ch_472_strand.fast5_template_deepnano 73918 99231 - BC_CNV_tombo-MyOv_50.fa
chr8 312400 309976 311607 311607 314825 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_26363_ch_58_strand.fast5_template_deepnano 281991 328955 - BC_CNV_tombo-MyOv_49.fa
chr11 559513 549882 560457 560457 569145 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_31257_ch_422_strand.fast5_template_deepnano 511993 569295 + BC_CNV_tombo-MyOv_49.fa
chr12 956386 952246 956264 956264 960527 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12542_ch_34_strand.fast5_template_deepnano 950497 982663 + BC_CNV_tombo-MyOv_49.fa
chr12 965056 960527 964231 964231 969585 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12542_ch_34_strand.fast5_template_deepnano 950497 982663 + BC_CNV_tombo-MyOv_49.fa
chr10 166379 157516 166695 171466 175242 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17786_ch_137_strand.fast5_template_deepnano 157444 187932 - BC_CNV_tombo-MyOv_49.fa
chr10 443435 430070 433055 448683 456800 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_247938_ch_288_strand.fast5_template_deepnano 417433 471629 - BC_CNV_tombo-MyOv_49.fa
chr15 423998 418809 424475 425877 429188 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4462_ch_169_strand.fast5_template_deepnano 355475 451444 + BC_CNV_tombo-MyOv_49.fa
chr16 526278 507184 516798 543006 545372 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_14218_ch_291_strand.fast5_template_deepnano 507178 545378 - BC_CNV_tombo-MyOv_49.fa
chr16 871745 865883 871990 875027 877608 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17651_ch_442_strand.fast5_template_deepnano 863822 886460 + BC_CNV_tombo-MyOv_49.fa
chr9 383269 378685 381415 381415 387854 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12641_ch_117_strand.fast5_template_deepnano 348104 398294 + BC_CNV_tombo-MyOv_49.fa
chr13 9727 9 7919 14754 19446 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_35602_ch_264_strand.fast5_template_deepnano 3 19449 - BC_CNV_tombo-MyOv_49.fa
chr12 712083 707129 712741 712741 717037 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_11129_ch_395_strand.fast5_template_deepnano 688302 721892 - BC_CNV_tombo-MyOv_49.fa
chr4 1250794 1245376 1249937 1254511 1256213 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10866_ch_182_strand.fast5_template_deepnano 1241208 1259994 + BC_CNV_tombo-MyOv_49.fa
chr4 528999 523757 528261 531684 534242 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_11265_ch_44_strand.fast5_template_deepnano 515995 535401 + BC_CNV_tombo-MyOv_49.fa
chr15 91729 86773 91983 91983 96685 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_15030_ch_237_strand.fast5_template_deepnano 84971 105804 + BC_CNV_tombo-MyOv_49.fa
chr9 87018 75655 79644 91286 98382 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9900_ch_148_strand.fast5_template_deepnano 72888 124711 + BC_CNV_tombo-MyOv_49.fa
chr16 800115 797325 801488 801488 802905 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_23772_ch_297_strand.fast5_template_deepnano 784193 811912 - BC_CNV_tombo-MyOv_49.fa
chr14 740106 721751 724104 752774 758462 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_16342_ch_203_strand.fast5_template_deepnano 703455 765398 + BC_CNV_tombo-MyOv_49.fa
chr12 12902 5949 11591 11591 19856 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6848_ch_53_strand.fast5_template_deepnano 311 56060 + BC_CNV_tombo-MyOv_49.fa
chr4 421561 417661 418743 421606 425462 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_37630_ch_229_strand.fast5_template_deepnano 414586 439085 + BC_CNV_tombo-MyOv_49.fa
chr15 196742 187738 191070 201902 205746 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_25302_ch_47_strand.fast5_template_deepnano 181113 210515 - BC_CNV_tombo-MyOv_49.fa
chr16 428960 421637 424235 424235 436284 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 657754 649427 652973 663005 666082 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_22668_ch_124_strand.fast5_template_deepnano 643857 666103 - BC_CNV_tombo-MyOv_49.fa
chr10 263732 258593 261125 261125 268871 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17664_ch_82_strand.fast5_template_deepnano 256188 274679 - BC_CNV_tombo-MyOv_60.fa
chr14 154997 149925 155785 155785 160070 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_40218_ch_242_strand.fast5_template_deepnano 147805 193003 - BC_CNV_tombo-MyOv_60.fa
chr4 155115 149925 154030 154030 160306 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_11639_ch_148_strand.fast5_template_deepnano 132227 171870 + BC_CNV_tombo-MyOv_60.fa
chr7 542283 537343 542758 542758 547224 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5321_ch_387_strand.fast5_template_deepnano 512260 560656 - BC_CNV_tombo-MyOv_60.fa
chr16 26628 22993 26137 26137 30264 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_53123_ch_490_strand.fast5_template_deepnano 7069 36188 - BC_CNV_tombo-MyOv_60.fa
chr10 108232 104008 108177 108177 112456 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 161492 153049 164446 164446 169935 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_36790_ch_282_strand.fast5_template_deepnano 152978 211088 - BC_CNV_tombo-MyOv_60.fa
chr16 196712 187536 198975 198975 205889 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_36790_ch_282_strand.fast5_template_deepnano 152978 211088 - BC_CNV_tombo-MyOv_60.fa
chr4 230566 227266 230047 230047 233866 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_25497_ch_103_strand.fast5_template_deepnano 220967 237726 + BC_CNV_tombo-MyOv_60.fa
chr9 91045 86051 90763 93130 96039 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_38177_ch_105_strand.fast5_template_deepnano 77943 134204 - BC_CNV_tombo-MyOv_60.fa
chr5 328381 322377 324822 328223 334386 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_11653_ch_43_strand.fast5_template_deepnano 320321 367066 + BC_CNV_tombo-MyOv_60.fa
chr11 165965 159362 161502 168932 172569 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10024_ch_326_strand.fast5_template_deepnano 159316 199803 - BC_CNV_tombo-MyOv_60.fa
chr6 105536 98932 101604 101604 112140 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 467598 463062 466800 466800 472134 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5864_ch_252_strand.fast5_template_deepnano 463035 487542 + BC_CNV_tombo-MyOv_60.fa
chr13 164669 159857 164716 164716 169481 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_31668_ch_372_strand.fast5_template_deepnano 155754 171756 + BC_CNV_tombo-MyOv_60.fa
chr7 363840 359103 361851 361851 368577 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_40776_ch_191_strand.fast5_template_deepnano 356296 383823 + BC_CNV_tombo-MyOv_60.fa
chr13 471665 469314 471477 471477 474016 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_39587_ch_122_strand.fast5_template_deepnano 466890 476580 - BC_CNV_tombo-MyOv_60.fa
chr12 439949 430065 436011 446183 449833 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 701886 695483 700820 703343 708290 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1976_ch_342_strand.fast5_template_deepnano 695412 726840 - BC_CNV_tombo-MyOv_17.fa
chr5 159926 151184 158588 163384 168668 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2003_ch_14_strand.fast5_template_deepnano 148527 185004 + BC_CNV_tombo-MyOv_17.fa
chr15 194309 182872 192531 199478 205746 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1726_ch_479_strand.fast5_template_deepnano 162600 211814 - BC_CNV_tombo-MyOv_17.fa
chr11 552876 542210 545463 556499 563542 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1943_ch_273_strand.fast5_template_deepnano 525810 578486 + BC_CNV_tombo-MyOv_17.fa
chr4 1467112 1461870 1466292 1466292 1472354 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2137_ch_240_strand.fast5_template_deepnano 1458679 1506997 + BC_CNV_tombo-MyOv_17.fa
chr16 576454 569100 572968 581706 583809 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1742_ch_479_strand.fast5_template_deepnano 556928 598817 - BC_CNV_tombo-MyOv_17.fa
chr16 727270 718285 727273 727273 736256 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3315_ch_341_strand.fast5_template_deepnano 718181 755020 - BC_CNV_tombo-MyOv_17.fa
chr13 212264 200396 203213 219457 224133 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 221557 205615 215969 223574 237499 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2670_ch_101_strand.fast5_template_deepnano 184169 245128 - BC_CNV_tombo-MyOv_17.fa
chr4 820398 817136 818840 820791 823660 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1806_ch_379_strand.fast5_template_deepnano 809203 826610 + BC_CNV_tombo-MyOv_17.fa
chr15 453186 447220 452540 452540 459153 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_82369_ch_504_strand.fast5_template_deepnano 439012 462926 + BC_CNV_tombo-MyOv_68.fa
chr15 870646 867792 870148 870148 873501 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_69852_ch_184_strand.fast5_template_deepnano 856061 913501 - BC_CNV_tombo-MyOv_68.fa
chr4 323335 320350 324419 324419 326321 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_83568_ch_166_strand.fast5_template_deepnano 320340 329215 + BC_CNV_tombo-MyOv_68.fa
chr15 22017 11988 18219 25134 32046 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_84845_ch_166_strand.fast5_template_deepnano 1089 59871 - BC_CNV_tombo-MyOv_68.fa
chr9 383436 377241 386361 386361 389631 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_14545_ch_82_strand.fast5_template_deepnano 371174 398026 - BC_CNV_tombo-MyOv_47.fa
chr6 142892 137813 141741 144499 147971 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_13708_ch_285_strand.fast5_template_deepnano 131869 169982 + BC_CNV_tombo-MyOv_47.fa
chr8 380468 372630 375363 382240 388306 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_18511_ch_341_strand.fast5_template_deepnano 367372 397628 + BC_CNV_tombo-MyOv_47.fa
chr9 233840 228969 233699 233699 238711 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10437_ch_38_strand.fast5_template_deepnano 222901 244075 + BC_CNV_tombo-MyOv_47.fa
chr13 325585 319850 323119 328007 331321 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_16149_ch_124_strand.fast5_template_deepnano 318515 341016 - BC_CNV_tombo-MyOv_47.fa
chr7 1080423 1073870 1084375 1084375 1086976 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_11196_ch_117_strand.fast5_template_deepnano 1065814 1090933 + BC_CNV_tombo-MyOv_47.fa
chr5 521064 518595 521355 521355 523534 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_15820_ch_447_strand.fast5_template_deepnano 516240 531147 - BC_CNV_tombo-MyOv_47.fa
chr8 509981 502498 505260 514835 517465 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_19176_ch_195_strand.fast5_template_deepnano 494212 519722 + BC_CNV_tombo-MyOv_47.fa
chr4 523318 515007 528196 528196 531630 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_20692_ch_307_strand.fast5_template_deepnano 514824 533137 - BC_CNV_tombo-MyOv_47.fa
chr6 129343 124258 130247 130247 134428 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_16201_ch_508_strand.fast5_template_deepnano 114163 165117 - BC_CNV_tombo-MyOv_47.fa
chr16 654534 643332 649967 659066 665736 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_22941_ch_125_strand.fast5_template_deepnano 615245 669551 - BC_CNV_tombo-MyOv_47.fa
chr2 798353 793739 796808 798854 802968 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_25202_ch_239_strand.fast5_template_deepnano 773771 813181 + BC_CNV_tombo-MyOv_47.fa
chr2 785284 777848 779772 788243 792720 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_25202_ch_239_strand.fast5_template_deepnano 773771 813181 + BC_CNV_tombo-MyOv_47.fa
chr13 69465 64486 67501 71839 74444 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_22267_ch_254_strand.fast5_template_deepnano 60535 92377 - BC_CNV_tombo-MyOv_47.fa
chr2 217180 208822 217920 217920 225539 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_13769_ch_255_strand.fast5_template_deepnano 203777 225640 + BC_CNV_tombo-MyOv_47.fa
chr13 410499 399900 409462 415295 421098 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_19215_ch_306_strand.fast5_template_deepnano 399891 423727 + BC_CNV_tombo-MyOv_47.fa
chr5 563953 554067 556331 569974 573840 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_34898_ch_264_strand.fast5_template_deepnano 543099 576869 + BC_CNV_tombo-MyOv_47.fa
chr11 248101 239991 243068 250677 256212 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1196_ch_321_strand.fast5_template_deepnano 233816 257946 + BC_CNV_tombo-MyOv_3.fa
chr5 263907 250451 255434 272586 277364 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_179_ch_194_strand.fast5_template_deepnano 250428 300363 + BC_CNV_tombo-MyOv_3.fa
chr8 9408 5108 9617 9617 13709 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_199_ch_282_strand.fast5_template_deepnano 307 20862 + BC_CNV_tombo-MyOv_3.fa
chr15 203230 189396 193474 213644 217064 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_242_ch_492_strand.fast5_template_deepnano 183780 217150 + BC_CNV_tombo-MyOv_3.fa
chr3 89433 86414 89505 89505 92453 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_247_ch_29_strand.fast5_template_deepnano 82699 102364 - BC_CNV_tombo-MyOv_3.fa
chr15 201764 199269 201139 201139 204260 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_256_ch_238_strand.fast5_template_deepnano 170805 217743 + BC_CNV_tombo-MyOv_3.fa
chr12 696161 686755 694745 694745 705567 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_258_ch_17_strand.fast5_template_deepnano 680316 730524 + BC_CNV_tombo-MyOv_3.fa
chr4 885727 880578 889487 889487 890876 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_278_ch_39_strand.fast5_template_deepnano 852780 895019 - BC_CNV_tombo-MyOv_3.fa
chr12 550005 541663 544028 555566 558347 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_292_ch_487_strand.fast5_template_deepnano 503811 559025 - BC_CNV_tombo-MyOv_3.fa
chr6 74856 70849 73615 76458 78864 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_297_ch_27_strand.fast5_template_deepnano 70838 97558 + BC_CNV_tombo-MyOv_3.fa
chr10 388325 375886 381518 395737 400765 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_323_ch_377_strand.fast5_template_deepnano 365422 415237 + BC_CNV_tombo-MyOv_3.fa
chr15 888802 879659 891158 893085 897945 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_506_ch_310_strand.fast5_template_deepnano 860351 900606 + BC_CNV_tombo-MyOv_3.fa
chr2 776414 769933 780288 780288 782895 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3389_ch_496_strand.fast5_template_deepnano 756317 788983 - BC_CNV_tombo-MyOv_23.fa
chr15 453381 443101 445896 456743 463662 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2322_ch_388_strand.fast5_template_deepnano 434782 463696 + BC_CNV_tombo-MyOv_23.fa
chr8 256562 254158 256228 256228 258966 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2437_ch_274_strand.fast5_template_deepnano 248298 282328 - BC_CNV_tombo-MyOv_23.fa
chr4 179735 168488 179056 179056 190982 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2601_ch_273_strand.fast5_template_deepnano 156816 195937 - BC_CNV_tombo-MyOv_23.fa
chr16 170201 164248 167044 171789 176154 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4708_ch_101_strand.fast5_template_deepnano 163271 177258 - BC_CNV_tombo-MyOv_23.fa
chr5 331445 317003 321307 343103 345887 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9541_ch_126_strand.fast5_template_deepnano 309173 361108 - BC_CNV_tombo-MyOv_23.fa
chr15 742731 737184 745983 745983 748279 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2561_ch_391_strand.fast5_template_deepnano 701116 760300 + BC_CNV_tombo-MyOv_23.fa
chr10 653885 649778 654037 654037 657992 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2923_ch_477_strand.fast5_template_deepnano 649605 731194 - BC_CNV_tombo-MyOv_23.fa
chr10 665325 654037 657992 670288 676614 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2923_ch_477_strand.fast5_template_deepnano 649605 731194 - BC_CNV_tombo-MyOv_23.fa
chr9 145936 140150 146921 146921 151723 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2078_ch_187_strand.fast5_template_deepnano 138209 219102 - BC_CNV_tombo-MyOv_23.fa
chr12 1015762 1008279 1015557 1015557 1023246 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2939_ch_477_strand.fast5_template_deepnano 1002328 1045086 - BC_CNV_tombo-MyOv_23.fa
chr13 244846 235125 242001 246762 254567 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3186_ch_261_strand.fast5_template_deepnano 227438 267901 - BC_CNV_tombo-MyOv_23.fa
chr7 450951 441877 446954 454455 460026 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7005_ch_320_strand.fast5_template_deepnano 429697 469802 - BC_CNV_tombo-MyOv_23.fa
chr7 222272 219113 222945 222945 225431 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2033_ch_205_strand.fast5_template_deepnano 200948 232626 + BC_CNV_tombo-MyOv_23.fa
chr8 5562 241 7855 7855 10884 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17610_ch_8_strand.fast5_template_deepnano 232 13072 + BC_CNV_tombo-MyOv_23.fa
chr15 320722 311782 315660 327947 329663 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2470_ch_234_strand.fast5_template_deepnano 311726 332206 - BC_CNV_tombo-MyOv_23.fa
chr7 638366 624857 628128 644697 651876 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4279_ch_462_strand.fast5_template_deepnano 621234 654000 - BC_CNV_tombo-MyOv_23.fa
chr14 554005 547077 550319 552813 560933 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6022_ch_153_strand.fast5_template_deepnano 536344 568999 - BC_CNV_tombo-MyOv_23.fa
chr8 169766 164066 167853 172794 175467 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5059_ch_316_strand.fast5_template_deepnano 149462 214253 + BC_CNV_tombo-MyOv_34.fa
chr7 268184 261665 263813 264672 274704 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5737_ch_261_strand.fast5_template_deepnano 240778 299994 + BC_CNV_tombo-MyOv_34.fa
chr14 301708 288800 296495 310574 314617 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_26962_ch_152_strand.fast5_template_deepnano 288800 325097 + BC_CNV_tombo-MyOv_34.fa
chr12 776836 764228 767198 784540 789445 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5352_ch_485_strand.fast5_template_deepnano 760512 789540 + BC_CNV_tombo-MyOv_34.fa
chr14 598691 589206 592639 605586 608177 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6761_ch_56_strand.fast5_template_deepnano 573857 619615 - BC_CNV_tombo-MyOv_34.fa
chr5 202987 197180 199275 204429 208794 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 79822 75299 77241 77241 84345 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 97807 91545 96355 101875 104070 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 441109 435215 438930 438930 447003 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_605_ch_440_strand.fast5_template_deepnano 426094 455686 + BC_CNV_tombo-MyOv_34.fa
chr10 37143 18574 32913 43528 55713 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4638_ch_236_strand.fast5_template_deepnano 408 60613 + BC_CNV_tombo-MyOv_34.fa
chr15 1080879 1073770 1080055 1083868 1087989 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5939_ch_494_strand.fast5_template_deepnano 1045552 1091288 + BC_CNV_tombo-MyOv_34.fa
chr10 79317 71527 74112 81763 87108 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6985_ch_27_strand.fast5_template_deepnano 60057 106187 + BC_CNV_tombo-MyOv_34.fa
chr2 305719 297143 303418 303418 314295 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4267_ch_492_strand.fast5_template_deepnano 294212 315749 - BC_CNV_tombo-MyOv_34.fa
chr14 293589 284543 294123 294123 302635 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2707_ch_99_strand.fast5_template_deepnano 284483 314631 + BC_CNV_tombo-MyOv_26.fa
chr4 488281 484441 487602 487602 492121 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2549_ch_404_strand.fast5_template_deepnano 469627 506982 + BC_CNV_tombo-MyOv_26.fa
chr4 485335 478763 484550 484550 491908 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2549_ch_404_strand.fast5_template_deepnano 469627 506982 + BC_CNV_tombo-MyOv_26.fa
chr13 269299 267532 269538 269538 271067 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5067_ch_96_strand.fast5_template_deepnano 265299 276896 + BC_CNV_tombo-MyOv_26.fa
chr12 395917 391925 396223 396223 399909 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9548_ch_174_strand.fast5_template_deepnano 391913 435858 - BC_CNV_tombo-MyOv_26.fa
chr10 636260 629764 636778 639131 642756 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_18366_ch_292_strand.fast5_template_deepnano 619977 656602 + BC_CNV_tombo-MyOv_26.fa
chr12 768064 764660 766830 766830 771469 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2243_ch_488_strand.fast5_template_deepnano 759420 793491 - BC_CNV_tombo-MyOv_26.fa
chr12 774165 765095 771804 779495 783236 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2243_ch_488_strand.fast5_template_deepnano 759420 793491 - BC_CNV_tombo-MyOv_26.fa
chr16 826929 821277 825463 825463 832582 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2707_ch_122_strand.fast5_template_deepnano 818126 836895 + BC_CNV_tombo-MyOv_26.fa
chr5 421519 415559 419888 419888 427479 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6478_ch_153_strand.fast5_template_deepnano 415534 434002 - BC_CNV_tombo-MyOv_26.fa
chr7 445272 434271 437047 448681 456273 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3042_ch_151_strand.fast5_template_deepnano 426499 476189 - BC_CNV_tombo-MyOv_26.fa
chr9 128481 122460 124775 130980 134503 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6214_ch_59_strand.fast5_template_deepnano 118630 144292 - BC_CNV_tombo-MyOv_26.fa
chr6 219237 215419 217756 219606 223055 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4732_ch_462_strand.fast5_template_deepnano 208074 248660 + BC_CNV_tombo-MyOv_26.fa
chr4 495114 489446 493506 493506 500783 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3291_ch_149_strand.fast5_template_deepnano 459505 500814 - BC_CNV_tombo-MyOv_26.fa
chr5 267983 261845 266968 269277 274121 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3559_ch_148_strand.fast5_template_deepnano 241799 302573 - BC_CNV_tombo-MyOv_26.fa
chr14 264534 259051 262716 266867 270018 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5072_ch_56_strand.fast5_template_deepnano 237071 286650 + BC_CNV_tombo-MyOv_26.fa
chr2 208451 202818 209329 209329 214084 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3469_ch_245_strand.fast5_template_deepnano 192911 222204 + BC_CNV_tombo-MyOv_26.fa
chr4 283155 267252 270991 289033 299059 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7615_ch_231_strand.fast5_template_deepnano 256963 309267 + BC_CNV_tombo-MyOv_26.fa
chr13 545971 543495 545911 545911 548448 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9277_ch_320_strand.fast5_template_deepnano 541558 550953 - BC_CNV_tombo-MyOv_26.fa
chr4 1284844 1279101 1286086 1286086 1290588 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7164_ch_341_strand.fast5_template_deepnano 1271994 1296415 - BC_CNV_tombo-MyOv_26.fa
chr14 262241 256305 262249 266440 268177 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3073_ch_150_strand.fast5_template_deepnano 256291 276428 - BC_CNV_tombo-MyOv_26.fa
chr15 478936 472648 479789 479789 485225 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4812_ch_230_strand.fast5_template_deepnano 468902 499358 - BC_CNV_tombo-MyOv_26.fa
chr7 336391 332971 336403 336403 339812 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_31786_ch_341_strand.fast5_template_deepnano 332928 362512 - BC_CNV_tombo-MyOv_64.fa
chr7 634016 622823 631473 638867 645210 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_34896_ch_15_strand.fast5_template_deepnano 622816 675746 + BC_CNV_tombo-MyOv_64.fa
chr10 641127 632235 637872 642936 650019 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_28852_ch_104_strand.fast5_template_deepnano 627945 662607 - BC_CNV_tombo-MyOv_64.fa
chr13 451515 446760 452573 452573 456271 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_21209_ch_486_strand.fast5_template_deepnano 431380 460231 - BC_CNV_tombo-MyOv_64.fa
chr15 993032 989496 992352 992352 996569 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_35856_ch_280_strand.fast5_template_deepnano 983968 1008503 - BC_CNV_tombo-MyOv_64.fa
chr14 668301 663471 668661 668661 673132 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_19116_ch_68_strand.fast5_template_deepnano 635043 676371 + BC_CNV_tombo-MyOv_64.fa
chr5 13871 6374 12748 12748 21368 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_54958_ch_468_strand.fast5_template_deepnano 83 28849 + BC_CNV_tombo-MyOv_64.fa
chr7 330280 322343 325317 335179 338217 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_42849_ch_122_strand.fast5_template_deepnano 301913 341091 - BC_CNV_tombo-MyOv_64.fa
chr7 37886 32892 39902 39902 42880 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2728_ch_315_strand.fast5_template_deepnano 28660 85798 + BC_CNV_tombo-MyOv_27.fa
chr2 440334 417157 421023 461011 463511 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4764_ch_92_strand.fast5_template_deepnano 392644 468248 - BC_CNV_tombo-MyOv_27.fa
chr7 363598 360744 363659 363659 366453 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3374_ch_403_strand.fast5_template_deepnano 353353 381671 + BC_CNV_tombo-MyOv_27.fa
chr4 1521125 1510387 1524320 1524320 1531863 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_11597_ch_232_strand.fast5_template_deepnano 1510267 1531871 - BC_CNV_tombo-MyOv_27.fa
chr12 272625 259692 266530 272241 285558 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12635_ch_168_strand.fast5_template_deepnano 246338 285575 + BC_CNV_tombo-MyOv_27.fa
chr16 160747 152369 156906 156906 169126 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3749_ch_377_strand.fast5_template_deepnano 143082 177626 + BC_CNV_tombo-MyOv_27.fa
chr14 610441 597732 603660 616472 623150 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3842_ch_302_strand.fast5_template_deepnano 572881 628852 - BC_CNV_tombo-MyOv_27.fa
chr15 1010135 1007230 1010294 1010294 1013041 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3366_ch_309_strand.fast5_template_deepnano 996830 1044403 - BC_CNV_tombo-MyOv_27.fa
chr7 587317 582735 584386 589110 591900 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3956_ch_261_strand.fast5_template_deepnano 582332 593625 + BC_CNV_tombo-MyOv_27.fa
chr10 640778 635820 637807 640665 645736 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7102_ch_375_strand.fast5_template_deepnano 596492 655925 - BC_CNV_tombo-MyOv_27.fa
chr8 200656 197257 200808 200808 204055 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3445_ch_40_strand.fast5_template_deepnano 168882 214253 + BC_CNV_tombo-MyOv_27.fa
chr10 635898 622274 630259 643718 649523 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_44315_ch_287_strand.fast5_template_deepnano 622265 657472 + BC_CNV_tombo-MyOv_53.fa
chr4 481130 465891 470759 491599 496370 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_29574_ch_109_strand.fast5_template_deepnano 442105 498334 - BC_CNV_tombo-MyOv_53.fa
chr10 597583 594075 599634 599634 601092 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_32477_ch_317_strand.fast5_template_deepnano 593968 606913 - BC_CNV_tombo-MyOv_53.fa
chr15 141942 129695 136054 150250 154189 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_36149_ch_243_strand.fast5_template_deepnano 127238 161856 + BC_CNV_tombo-MyOv_53.fa
chr13 780053 777349 779936 779936 782757 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_29276_ch_499_strand.fast5_template_deepnano 770055 799219 - BC_CNV_tombo-MyOv_53.fa
chr7 455021 451261 454608 454608 458782 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_37546_ch_32_strand.fast5_template_deepnano 427721 463000 - BC_CNV_tombo-MyOv_53.fa
chr2 164209 158593 161770 166041 169826 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_64046_ch_423_strand.fast5_template_deepnano 158559 191665 + BC_CNV_tombo-MyOv_53.fa
chr9 382553 376100 379325 384798 389007 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_28662_ch_155_strand.fast5_template_deepnano 374740 392482 - BC_CNV_tombo-MyOv_53.fa
chr14 298330 293043 299025 299025 303618 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_52095_ch_113_strand.fast5_template_deepnano 242218 305297 - BC_CNV_tombo-MyOv_53.fa
chr4 1369687 1362530 1366355 1371812 1376845 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9347_ch_53_strand.fast5_template_deepnano 1335713 1380151 + BC_CNV_tombo-MyOv_53.fa
chr12 713831 702563 710055 717077 725099 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_24453_ch_372_strand.fast5_template_deepnano 696172 738011 - BC_CNV_tombo-MyOv_53.fa
chr9 190369 185614 189851 189851 195124 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_30917_ch_300_strand.fast5_template_deepnano 152736 208604 - BC_CNV_tombo-MyOv_53.fa
chr2 310387 308081 309758 309758 312694 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_27111_ch_195_strand.fast5_template_deepnano 302329 314252 - BC_CNV_tombo-MyOv_53.fa
chr16 294657 291769 294624 294624 297545 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_24492_ch_372_strand.fast5_template_deepnano 291302 316027 - BC_CNV_tombo-MyOv_53.fa
chr4 889642 884783 889329 889329 894501 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_44893_ch_314_strand.fast5_template_deepnano 883336 911846 + BC_CNV_tombo-MyOv_53.fa
chr8 342243 336125 342293 342293 348362 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_24504_ch_372_strand.fast5_template_deepnano 336059 370832 - BC_CNV_tombo-MyOv_53.fa
chr12 1057675 1053816 1057752 1057752 1061534 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_23538_ch_307_strand.fast5_template_deepnano 1037958 1077119 - BC_CNV_tombo-MyOv_53.fa
chr7 501209 495297 501049 501049 507121 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 452089 447856 450051 451452 456322 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_24446_ch_93_strand.fast5_template_deepnano 414306 481362 + BC_CNV_tombo-MyOv_53.fa
chr7 1082128 1073360 1079377 1085072 1090896 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 527309 523630 526490 526490 530988 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_28590_ch_489_strand.fast5_template_deepnano 480601 548526 + BC_CNV_tombo-MyOv_53.fa
chr13 217404 200769 206740 221383 234039 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_53705_ch_233_strand.fast5_template_deepnano 200732 240694 + BC_CNV_tombo-MyOv_53.fa
chr15 249448 238121 243338 256054 260776 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_16159_ch_499_strand.fast5_template_deepnano 235975 264857 - BC_CNV_tombo-MyOv_40.fa
chr10 37343 15435 18477 55558 59252 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2809_ch_53_strand.fast5_template_deepnano 337 65569 + BC_CNV_tombo-MyOv_40.fa
chr9 144218 139772 142004 144677 148665 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1029_ch_169_strand.fast5_template_deepnano 134130 164141 + BC_CNV_tombo-MyOv_40.fa
chr12 933719 927766 932744 935032 939673 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12979_ch_258_strand.fast5_template_deepnano 916044 942628 + BC_CNV_tombo-MyOv_40.fa
chr10 729896 715033 717865 737093 744759 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_19783_ch_125_strand.fast5_template_deepnano 693983 745748 + BC_CNV_tombo-MyOv_40.fa
chr12 146184 137211 146184 152231 155158 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6505_ch_148_strand.fast5_template_deepnano 137169 156469 - BC_CNV_tombo-MyOv_40.fa
chr16 400660 396707 399753 399753 404613 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_21484_ch_374_strand.fast5_template_deepnano 384676 414911 + BC_CNV_tombo-MyOv_40.fa
chr4 856981 853147 857669 857669 860815 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9986_ch_472_strand.fast5_template_deepnano 846496 868789 - BC_CNV_tombo-MyOv_40.fa
chr15 1072287 1067553 1071244 1072867 1077022 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17159_ch_454_strand.fast5_template_deepnano 1064509 1091288 + BC_CNV_tombo-MyOv_40.fa
chr16 445547 442167 443707 445649 448927 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6387_ch_150_strand.fast5_template_deepnano 417187 453153 - BC_CNV_tombo-MyOv_40.fa
chr13 58721 51822 56744 62016 65621 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 492919 487601 496776 496776 498237 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_32358_ch_206_strand.fast5_template_deepnano 481131 503724 - BC_CNV_tombo-MyOv_40.fa
chr8 412784 396811 410329 419229 428758 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7612_ch_190_strand.fast5_template_deepnano 394856 451449 + BC_CNV_tombo-MyOv_40.fa
chr14 64292 59854 61562 64424 68730 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_24198_ch_213_strand.fast5_template_deepnano 52472 94413 - BC_CNV_tombo-MyOv_40.fa
chr12 630100 625166 628974 631404 635035 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_46579_ch_419_strand.fast5_template_deepnano 607118 650582 + BC_CNV_tombo-MyOv_40.fa
chr15 318112 313737 316525 316525 322488 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 430793 421678 430009 430009 439909 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_16651_ch_15_strand.fast5_template_deepnano 415842 455998 + BC_CNV_tombo-MyOv_40.fa
chr12 447300 436776 450565 450565 457825 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9212_ch_157_strand.fast5_template_deepnano 436773 464304 + BC_CNV_tombo-MyOv_40.fa
chr6 78996 72618 77323 79433 85374 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3537_ch_409_strand.fast5_template_deepnano 63248 92465 - BC_CNV_tombo-MyOv_40.fa
chr16 76041 72993 76009 76009 79090 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9605_ch_425_strand.fast5_template_deepnano 57454 85309 + BC_CNV_tombo-MyOv_40.fa
chr16 198925 194317 199344 199344 203533 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9343_ch_105_strand.fast5_template_deepnano 173998 235307 - BC_CNV_tombo-MyOv_40.fa
chr15 669361 657058 660276 676035 681664 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_60604_ch_134_strand.fast5_template_deepnano 657049 710110 - BC_CNV_tombo-MyOv_40.fa
chr15 1077945 1067456 1069795 1085844 1088435 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10539_ch_217_strand.fast5_template_deepnano 1053153 1091043 - BC_CNV_tombo-MyOv_40.fa
chr15 363588 357795 363887 363887 369381 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_37210_ch_84_strand.fast5_template_deepnano 307045 390731 - BC_CNV_tombo-MyOv_40.fa
chr2 522076 508131 514931 532955 536021 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1289_ch_315_strand.fast5_template_deepnano 499846 570433 - BC_CNV_tombo-MyOv_16.fa
chr2 92012 88713 91887 91887 95312 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2439_ch_30_strand.fast5_template_deepnano 32091 101374 + BC_CNV_tombo-MyOv_16.fa
chr7 397479 393484 398084 398084 401475 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1403_ch_483_strand.fast5_template_deepnano 373897 427182 - BC_CNV_tombo-MyOv_16.fa
chr4 416247 409273 413403 419723 423221 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1680_ch_500_strand.fast5_template_deepnano 403791 425444 - BC_CNV_tombo-MyOv_16.fa
chr16 806528 803268 806001 806001 809789 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1342_ch_298_strand.fast5_template_deepnano 791706 822318 - BC_CNV_tombo-MyOv_16.fa
chr14 595728 582966 586349 604933 608491 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1483_ch_137_strand.fast5_template_deepnano 575723 632323 + BC_CNV_tombo-MyOv_16.fa
chr14 615996 612304 616129 616129 619689 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 568382 558810 561906 574643 577955 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1557_ch_317_strand.fast5_template_deepnano 548092 587804 + BC_CNV_tombo-MyOv_16.fa
chr5 463916 457737 462626 465233 470096 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4302_ch_72_strand.fast5_template_deepnano 443396 471347 - BC_CNV_tombo-MyOv_16.fa
chr5 460860 456218 461102 461102 465502 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1659_ch_381_strand.fast5_template_deepnano 443396 482169 - BC_CNV_tombo-MyOv_16.fa
chr7 860792 858741 861067 861067 862843 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1252_ch_286_strand.fast5_template_deepnano 853172 877500 - BC_CNV_tombo-MyOv_16.fa
chr2 22008 8332 10386 33313 35685 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_15015_ch_292_strand.fast5_template_deepnano 74 50614 + BC_CNV_tombo-MyOv_16.fa
chr14 72208 64037 72151 76849 80380 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6504_ch_246_strand.fast5_template_deepnano 40134 84419 - BC_CNV_tombo-MyOv_16.fa
chr13 674654 670846 673065 673065 678462 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1253_ch_268_strand.fast5_template_deepnano 662085 693749 + BC_CNV_tombo-MyOv_16.fa
chr11 122685 114661 118472 126020 130710 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2527_ch_389_strand.fast5_template_deepnano 108505 135593 - BC_CNV_tombo-MyOv_16.fa
chr16 531638 527465 530787 530787 535811 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1651_ch_486_strand.fast5_template_deepnano 508545 553999 + BC_CNV_tombo-MyOv_16.fa
chr16 536394 527356 538652 538652 545432 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1651_ch_486_strand.fast5_template_deepnano 508545 553999 + BC_CNV_tombo-MyOv_16.fa
chr6 91062 87071 88064 92160 95053 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1430_ch_81_strand.fast5_template_deepnano 87060 96975 + BC_CNV_tombo-MyOv_16.fa
chr15 558454 552125 558622 558622 564783 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 1455770 1450767 1456271 1456271 1460774 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1574_ch_182_strand.fast5_template_deepnano 1436010 1480910 + BC_CNV_tombo-MyOv_16.fa
chr14 513733 505108 511027 517202 522358 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1801_ch_396_strand.fast5_template_deepnano 490788 526840 - BC_CNV_tombo-MyOv_16.fa
chr7 990263 983528 990757 990757 996999 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1068_ch_283_strand.fast5_template_deepnano 979386 1023470 - BC_CNV_tombo-MyOv_13.fa
chr10 499179 491970 498682 502689 506388 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1143_ch_173_strand.fast5_template_deepnano 486586 532345 + BC_CNV_tombo-MyOv_13.fa
chr7 498507 490019 497442 504244 506995 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 542575 531857 535276 544776 553294 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_843_ch_322_strand.fast5_template_deepnano 507219 558162 + BC_CNV_tombo-MyOv_13.fa
chr13 510956 505370 512954 512954 516543 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1152_ch_377_strand.fast5_template_deepnano 488353 556507 - BC_CNV_tombo-MyOv_13.fa
chr13 859524 848077 850917 868043 870972 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1593_ch_43_strand.fast5_template_deepnano 838605 878327 - BC_CNV_tombo-MyOv_13.fa
chr15 928548 917911 921129 933079 939185 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1836_ch_70_strand.fast5_template_deepnano 893669 941770 + BC_CNV_tombo-MyOv_13.fa
chr9 239248 234413 237327 239384 244083 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1531_ch_233_strand.fast5_template_deepnano 228204 279780 - BC_CNV_tombo-MyOv_13.fa
chr14 586645 581737 586194 586194 591553 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1135_ch_149_strand.fast5_template_deepnano 552859 629672 + BC_CNV_tombo-MyOv_13.fa
chr5 297678 289800 297261 297261 305556 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 17004 13849 17715 17715 20160 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1268_ch_282_strand.fast5_template_deepnano 3345 47848 + BC_CNV_tombo-MyOv_13.fa
chr10 725831 721988 724179 725717 729675 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1624_ch_54_strand.fast5_template_deepnano 699906 745748 + BC_CNV_tombo-MyOv_13.fa
chr14 467729 455929 467499 467499 479530 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1677_ch_237_strand.fast5_template_deepnano 442302 484046 - BC_CNV_tombo-MyOv_13.fa
chr8 416767 411178 413788 420445 422357 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8698_ch_395_strand.fast5_template_deepnano 380974 426862 + BC_CNV_tombo-MyOv_45.fa
chr4 30247 20147 23981 32183 40348 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_18422_ch_26_strand.fast5_template_deepnano 19314 40462 + BC_CNV_tombo-MyOv_45.fa
chr4 494082 489588 493210 496282 498576 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17136_ch_173_strand.fast5_template_deepnano 479523 501559 + BC_CNV_tombo-MyOv_45.fa
chr16 138540 128309 135203 143096 148772 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_204383_ch_501_strand.fast5_template_deepnano 125914 163778 - BC_CNV_tombo-MyOv_45.fa
chr2 509127 501562 504714 513752 516693 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3751_ch_440_strand.fast5_template_deepnano 465973 539010 + BC_CNV_tombo-MyOv_45.fa
chr13 779929 768190 773376 786872 791669 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4816_ch_81_strand.fast5_template_deepnano 764624 813341 + BC_CNV_tombo-MyOv_45.fa
chr7 863569 856019 866984 866984 871119 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8927_ch_97_strand.fast5_template_deepnano 855993 901453 - BC_CNV_tombo-MyOv_45.fa
chr9 187253 177441 188691 188691 197066 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8745_ch_395_strand.fast5_template_deepnano 160954 200898 + BC_CNV_tombo-MyOv_45.fa
chr6 250232 243542 251286 251286 256923 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9961_ch_190_strand.fast5_template_deepnano 243542 270158 + BC_CNV_tombo-MyOv_45.fa
chr4 51691 46548 49804 53721 56834 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_24580_ch_430_strand.fast5_template_deepnano 15874 65773 - BC_CNV_tombo-MyOv_45.fa
chr7 208709 203310 209509 209509 214109 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17548_ch_427_strand.fast5_template_deepnano 162854 220900 + BC_CNV_tombo-MyOv_45.fa
chr5 428950 420436 423609 433166 437465 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_25308_ch_325_strand.fast5_template_deepnano 406513 449311 + BC_CNV_tombo-MyOv_45.fa
chr2 307975 300695 304963 309088 315256 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_27370_ch_164_strand.fast5_template_deepnano 292403 319027 + BC_CNV_tombo-MyOv_45.fa
chr13 285216 268485 278193 293237 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
chr14 651975 648018 651358 651358 655932 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_24584_ch_293_strand.fast5_template_deepnano 644708 658708 - BC_CNV_tombo-MyOv_45.fa
chr7 947553 940782 943982 950894 954324 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7672_ch_326_strand.fast5_template_deepnano 927347 969403 - BC_CNV_tombo-MyOv_45.fa
chr8 13450 9797 13358 15073 17103 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_21087_ch_372_strand.fast5_template_deepnano 3 21749 - BC_CNV_tombo-MyOv_45.fa
chr11 124069 108531 117159 131270 139607 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17977_ch_341_strand.fast5_template_deepnano 105518 181627 + BC_CNV_tombo-MyOv_45.fa
chr15 486137 469151 471220 500658 503124 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_19196_ch_121_strand.fast5_template_deepnano 467589 533940 - BC_CNV_tombo-MyOv_61.fa
chr4 27115 23056 24936 24936 31175 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_29370_ch_377_strand.fast5_template_deepnano 3 70501 - BC_CNV_tombo-MyOv_61.fa
chr12 919097 909347 919087 919087 928848 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17327_ch_390_strand.fast5_template_deepnano 896734 941421 + BC_CNV_tombo-MyOv_61.fa
chr16 741252 733261 736871 746742 749243 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_26282_ch_453_strand.fast5_template_deepnano 721065 767265 - BC_CNV_tombo-MyOv_61.fa
chr14 590728 580186 585947 598110 601270 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_52019_ch_243_strand.fast5_template_deepnano 570374 609833 + BC_CNV_tombo-MyOv_61.fa
chr13 241762 237275 241779 241779 246249 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_15110_ch_68_strand.fast5_template_deepnano 228260 248249 + BC_CNV_tombo-MyOv_61.fa
chr9 179118 168046 171008 187048 190190 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 298864 287020 291984 307827 310708 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_41276_ch_191_strand.fast5_template_deepnano 283067 331462 - BC_CNV_tombo-MyOv_61.fa
chr12 548075 537143 547746 555027 559007 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_28374_ch_251_strand.fast5_template_deepnano 537083 566382 - BC_CNV_tombo-MyOv_61.fa
chr14 294131 286553 293409 298205 301709 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_36502_ch_62_strand.fast5_template_deepnano 270185 319488 - BC_CNV_tombo-MyOv_61.fa
chr4 1398781 1395328 1397059 1397059 1402235 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_14510_ch_236_strand.fast5_template_deepnano 1392982 1411627 - BC_CNV_tombo-MyOv_61.fa
chr15 198029 195126 198863 198863 200933 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_84609_ch_339_strand.fast5_template_deepnano 182753 207092 - BC_CNV_tombo-MyOv_61.fa
chr4 1369205 1363453 1368655 1368655 1374958 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 25641 13285 18067 34941 37998 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_42998_ch_151_strand.fast5_template_deepnano 4 53025 - BC_CNV_tombo-MyOv_61.fa
chr2 43125 40466 42365 42365 45785 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_42998_ch_151_strand.fast5_template_deepnano 4 53025 - BC_CNV_tombo-MyOv_61.fa
chr7 623878 616288 625854 627985 631468 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6753_ch_274_strand.fast5_template_deepnano 582106 638941 + BC_CNV_tombo-MyOv_61.fa
chr3 123485 118706 123571 123571 128264 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_15730_ch_190_strand.fast5_template_deepnano 118691 148445 + BC_CNV_tombo-MyOv_61.fa
chr2 510558 505453 508344 511277 515663 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_13511_ch_498_strand.fast5_template_deepnano 492851 529447 - BC_CNV_tombo-MyOv_61.fa
chr4 1080091 1067431 1073958 1090087 1092752 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_15648_ch_204_strand.fast5_template_deepnano 1058450 1095465 + BC_CNV_tombo-MyOv_61.fa
chr11 272870 264745 273298 273298 280995 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_51084_ch_125_strand.fast5_template_deepnano 249003 312956 - BC_CNV_tombo-MyOv_61.fa
chr15 372135 367429 370717 370717 376842 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_135923_ch_404_strand.fast5_template_deepnano 363155 399612 + BC_CNV_tombo-MyOv_61.fa
chr12 735032 732643 734918 734918 737421 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10598_ch_244_strand.fast5_template_deepnano 717984 746155 + BC_CNV_tombo-MyOv_61.fa
chr11 275501 270534 276247 276247 280469 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_26970_ch_298_strand.fast5_template_deepnano 248445 291591 - BC_CNV_tombo-MyOv_61.fa
chr7 456921 445213 453165 459230 468629 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_43887_ch_8_strand.fast5_template_deepnano 442637 506646 + BC_CNV_tombo-MyOv_61.fa
chr4 1415242 1411755 1414084 1414084 1418729 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10719_ch_239_strand.fast5_template_deepnano 1400702 1424469 + BC_CNV_tombo-MyOv_37.fa
chr12 741854 739720 742229 742229 743988 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7341_ch_27_strand.fast5_template_deepnano 727028 746301 + BC_CNV_tombo-MyOv_37.fa
chr15 140665 127523 136052 150740 153807 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9661_ch_82_strand.fast5_template_deepnano 119170 157003 + BC_CNV_tombo-MyOv_37.fa
chr15 361229 352888 357206 365681 369570 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10278_ch_83_strand.fast5_template_deepnano 346650 383035 - BC_CNV_tombo-MyOv_37.fa
chr10 137190 127485 131379 143474 146896 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_21132_ch_481_strand.fast5_template_deepnano 124312 166414 + BC_CNV_tombo-MyOv_37.fa
chr14 660837 652522 663349 663349 669153 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_20874_ch_374_strand.fast5_template_deepnano 632313 675950 + BC_CNV_tombo-MyOv_37.fa
chr16 602707 592445 603981 603981 612969 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7582_ch_463_strand.fast5_template_deepnano 575945 633705 - BC_CNV_tombo-MyOv_37.fa
chr12 122362 118296 122283 122283 126429 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12017_ch_229_strand.fast5_template_deepnano 117773 135480 + BC_CNV_tombo-MyOv_37.fa
chr14 260327 245144 260578 260578 275510 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8905_ch_285_strand.fast5_template_deepnano 245084 275552 - BC_CNV_tombo-MyOv_37.fa
chr11 324243 320642 323814 323814 327844 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_21565_ch_211_strand.fast5_template_deepnano 290860 330986 + BC_CNV_tombo-MyOv_37.fa
chr6 4915 22 5383 5383 9808 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8913_ch_285_strand.fast5_template_deepnano 2 26471 + BC_CNV_tombo-MyOv_37.fa
chr15 312758 298014 302562 323895 327502 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1014_ch_440_strand.fast5_template_deepnano 286120 338493 - BC_CNV_tombo-MyOv_37.fa
chr15 300585 294853 299220 299220 306318 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 506105 488667 492363 515858 523543 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_58478_ch_423_strand.fast5_template_deepnano 473990 531961 - BC_CNV_tombo-MyOv_37.fa
chr4 77627 71900 79814 79814 83354 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_16268_ch_219_strand.fast5_template_deepnano 52473 87291 - BC_CNV_tombo-MyOv_37.fa
chr4 473673 469271 471031 475988 478076 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_11421_ch_122_strand.fast5_template_deepnano 468047 496677 - BC_CNV_tombo-MyOv_37.fa
chr12 636796 632389 635389 635389 641204 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_11621_ch_460_strand.fast5_template_deepnano 628139 650823 + BC_CNV_tombo-MyOv_37.fa
chr14 521843 516548 520244 524565 527139 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_13532_ch_265_strand.fast5_template_deepnano 491127 530620 - BC_CNV_tombo-MyOv_37.fa
chr2 185738 183026 185889 185889 188450 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_15145_ch_173_strand.fast5_template_deepnano 145067 203139 + BC_CNV_tombo-MyOv_37.fa
chr2 152545 145095 153325 153325 159995 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_15145_ch_173_strand.fast5_template_deepnano 145067 203139 + BC_CNV_tombo-MyOv_37.fa
chr14 580679 575181 581073 581073 586178 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_21607_ch_211_strand.fast5_template_deepnano 571593 597672 + BC_CNV_tombo-MyOv_37.fa
chr10 647732 621324 624406 670853 674140 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_13630_ch_247_strand.fast5_template_deepnano 612349 674197 - BC_CNV_tombo-MyOv_37.fa
chr10 343982 340724 343783 343783 347241 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8402_ch_146_strand.fast5_template_deepnano 267472 353792 - BC_CNV_tombo-MyOv_37.fa
chr10 317828 288401 296841 335347 347255 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 46656 38744 41924 45293 54568 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6876_ch_52_strand.fast5_template_deepnano 14689 72136 - BC_CNV_tombo-MyOv_37.fa
chr9 20810 14752 18724 18724 26869 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 121752 117719 120689 122738 125786 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10326_ch_121_strand.fast5_template_deepnano 71582 140097 + BC_CNV_tombo-MyOv_37.fa
chr7 748087 742817 750399 750399 753357 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10449_ch_83_strand.fast5_template_deepnano 736323 778920 - BC_CNV_tombo-MyOv_37.fa
chr4 1263988 1259035 1261628 1265961 1268942 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_20801_ch_292_strand.fast5_template_deepnano 1250346 1274076 - BC_CNV_tombo-MyOv_37.fa
chr6 128562 120979 131375 131375 136145 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6254_ch_117_strand.fast5_template_deepnano 105144 176767 + BC_CNV_tombo-MyOv_37.fa
chr6 144403 136145 143535 143535 152662 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6254_ch_117_strand.fast5_template_deepnano 105144 176767 + BC_CNV_tombo-MyOv_37.fa
chr9 61580 56834 61754 61754 66327 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_69193_ch_120_strand.fast5_template_deepnano 13978 70228 - BC_CNV_tombo-MyOv_37.fa
chr9 45766 25206 38522 56737 66327 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_69193_ch_120_strand.fast5_template_deepnano 13978 70228 - BC_CNV_tombo-MyOv_37.fa
chr16 527967 519160 524886 534493 536774 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_48133_ch_163_strand.fast5_template_deepnano 506504 541204 + BC_CNV_tombo-MyOv_59.fa
chr15 197911 188253 194248 203440 207570 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_25425_ch_225_strand.fast5_template_deepnano 174157 217132 - BC_CNV_tombo-MyOv_59.fa
chr11 124352 120807 124746 126239 127897 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_27198_ch_30_strand.fast5_template_deepnano 80245 133130 - BC_CNV_tombo-MyOv_59.fa
chr7 796162 784248 790416 804963 808076 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_58025_ch_491_strand.fast5_template_deepnano 784213 811397 + BC_CNV_tombo-MyOv_59.fa
chr7 399400 391666 396040 401793 407135 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_82988_ch_6_strand.fast5_template_deepnano 391647 410653 + BC_CNV_tombo-MyOv_59.fa
chr14 52739 45684 53825 53825 59794 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_41925_ch_484_strand.fast5_template_deepnano 21691 60612 - BC_CNV_tombo-MyOv_59.fa
chr4 490203 485167 489460 489460 495239 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_68184_ch_168_strand.fast5_template_deepnano 461496 503543 - BC_CNV_tombo-MyOv_59.fa
chr10 388262 378933 384851 384851 397591 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_21776_ch_380_strand.fast5_template_deepnano 376459 410731 - BC_CNV_tombo-MyOv_59.fa
chr15 202435 194573 198047 202431 210298 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_38896_ch_115_strand.fast5_template_deepnano 189252 210369 - BC_CNV_tombo-MyOv_59.fa
chr5 383410 376064 377796 385316 390757 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_35345_ch_281_strand.fast5_template_deepnano 373889 402250 + BC_CNV_tombo-MyOv_59.fa
chr7 333232 328201 334341 334341 338264 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_26073_ch_225_strand.fast5_template_deepnano 316276 378500 - BC_CNV_tombo-MyOv_59.fa
chr10 431191 423813 428109 434193 438570 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_26193_ch_225_strand.fast5_template_deepnano 412811 461816 + BC_CNV_tombo-MyOv_59.fa
chr7 411511 405925 407519 412962 417097 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_28620_ch_307_strand.fast5_template_deepnano 395915 423664 + BC_CNV_tombo-MyOv_59.fa
chr2 656621 646979 650322 658641 666264 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_54507_ch_316_strand.fast5_template_deepnano 643857 668659 - BC_CNV_tombo-MyOv_59.fa
chr15 145827 139743 146751 146751 151912 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_26464_ch_225_strand.fast5_template_deepnano 136254 172086 + BC_CNV_tombo-MyOv_59.fa
chr10 667722 657248 659823 676050 678197 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_51206_ch_422_strand.fast5_template_deepnano 650082 722284 + BC_CNV_tombo-MyOv_59.fa
chr15 1077519 1068811 1073038 1083910 1086228 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_21134_ch_297_strand.fast5_template_deepnano 1063145 1091288 + BC_CNV_tombo-MyOv_46.fa
chr2 26286 4253 9956 40514 48319 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12415_ch_59_strand.fast5_template_deepnano 10 51975 - BC_CNV_tombo-MyOv_46.fa
chr6 239997 230373 236213 239084 249621 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_21192_ch_297_strand.fast5_template_deepnano 230363 269859 - BC_CNV_tombo-MyOv_46.fa
chr16 746224 735738 741281 745652 756710 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8928_ch_151_strand.fast5_template_deepnano 735668 765581 - BC_CNV_tombo-MyOv_46.fa
chr6 132159 129399 131217 131217 134920 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_21257_ch_297_strand.fast5_template_deepnano 126717 166821 + BC_CNV_tombo-MyOv_46.fa
chr6 146803 137422 145519 150380 156185 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_21257_ch_297_strand.fast5_template_deepnano 126717 166821 + BC_CNV_tombo-MyOv_46.fa
chr10 84763 77092 79189 83081 92434 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 885502 880526 886767 886767 890478 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_34022_ch_264_strand.fast5_template_deepnano 873437 948952 + BC_CNV_tombo-MyOv_46.fa
chr15 934087 927106 934356 934356 941069 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_34022_ch_264_strand.fast5_template_deepnano 873437 948952 + BC_CNV_tombo-MyOv_46.fa
chr15 865958 859375 862928 867140 872542 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12724_ch_491_strand.fast5_template_deepnano 816540 882986 - BC_CNV_tombo-MyOv_46.fa
chr16 26804 20199 26589 29028 33410 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_21756_ch_254_strand.fast5_template_deepnano 10019 42091 + BC_CNV_tombo-MyOv_46.fa
chr12 463343 459173 463995 463995 467514 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_34071_ch_264_strand.fast5_template_deepnano 456269 468943 - BC_CNV_tombo-MyOv_46.fa
chr12 966934 961016 966130 966130 972852 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_13521_ch_249_strand.fast5_template_deepnano 941075 986846 - BC_CNV_tombo-MyOv_46.fa
chr11 638135 625626 631049 636359 650644 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12562_ch_59_strand.fast5_template_deepnano 621452 650647 - BC_CNV_tombo-MyOv_46.fa
chr15 68047 46272 49048 87472 89823 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_14332_ch_135_strand.fast5_template_deepnano 43735 92108 - BC_CNV_tombo-MyOv_46.fa
chr4 1041360 1037351 1041779 1041779 1045370 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3567_ch_364_strand.fast5_template_deepnano 1035388 1057155 - BC_CNV_tombo-MyOv_46.fa
chr4 1323585 1313582 1319453 1319453 1333588 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_23431_ch_232_strand.fast5_template_deepnano 1299909 1338261 + BC_CNV_tombo-MyOv_46.fa
chr14 620520 613902 620464 620464 627139 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3049_ch_169_strand.fast5_template_deepnano 612079 634158 - BC_CNV_tombo-MyOv_46.fa
chr4 1519818 1512151 1515738 1520317 1527486 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_62709_ch_134_strand.fast5_template_deepnano 1505908 1531931 - BC_CNV_tombo-MyOv_46.fa
chr16 793472 788789 793890 793890 798155 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_22493_ch_280_strand.fast5_template_deepnano 774731 834664 - BC_CNV_tombo-MyOv_46.fa
chr5 537081 532777 537232 537232 541385 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_246465_ch_288_strand.fast5_template_deepnano 524048 569093 - BC_CNV_tombo-MyOv_46.fa
chr6 149773 147253 150262 150262 152293 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9058_ch_243_strand.fast5_template_deepnano 101457 158417 - BC_CNV_tombo-MyOv_29.fa
chr12 118303 109626 115135 124626 126981 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4045_ch_117_strand.fast5_template_deepnano 97478 132124 + BC_CNV_tombo-MyOv_29.fa
chr10 91238 86122 92963 92963 96355 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4470_ch_34_strand.fast5_template_deepnano 63063 97495 + BC_CNV_tombo-MyOv_29.fa
chr10 80261 63114 71192 84638 97408 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4470_ch_34_strand.fast5_template_deepnano 63063 97495 + BC_CNV_tombo-MyOv_29.fa
chr13 64479 48300 52021 73527 80658 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_23340_ch_262_strand.fast5_template_deepnano 39861 111237 - BC_CNV_tombo-MyOv_29.fa
chr10 121519 116077 121581 124864 126962 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3307_ch_99_strand.fast5_template_deepnano 110064 129988 + BC_CNV_tombo-MyOv_29.fa
chr15 628811 620904 623220 633978 636719 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4106_ch_377_strand.fast5_template_deepnano 605217 651090 + BC_CNV_tombo-MyOv_29.fa
chr15 135168 127222 130008 139170 143115 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3566_ch_479_strand.fast5_template_deepnano 95151 157218 + BC_CNV_tombo-MyOv_29.fa
chr2 49316 39711 49481 54796 58921 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4569_ch_189_strand.fast5_template_deepnano 30291 58934 + BC_CNV_tombo-MyOv_29.fa
chr12 269579 260781 263934 268518 278377 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6606_ch_83_strand.fast5_template_deepnano 240287 301611 - BC_CNV_tombo-MyOv_29.fa
chr13 497046 490705 495516 495516 503387 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3541_ch_331_strand.fast5_template_deepnano 483973 530393 - BC_CNV_tombo-MyOv_29.fa
chr13 511708 504966 508986 511701 518451 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3541_ch_331_strand.fast5_template_deepnano 483973 530393 - BC_CNV_tombo-MyOv_29.fa
chr15 377321 358848 378047 386215 395794 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3692_ch_40_strand.fast5_template_deepnano 348636 398101 + BC_CNV_tombo-MyOv_29.fa
chr11 495512 479207 485443 508331 511818 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_23373_ch_262_strand.fast5_template_deepnano 459642 516233 + BC_CNV_tombo-MyOv_29.fa
chr4 1017348 1011495 1016875 1016875 1023201 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4052_ch_379_strand.fast5_template_deepnano 991398 1044678 - BC_CNV_tombo-MyOv_29.fa
chr5 418878 411589 415569 422281 426167 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4244_ch_380_strand.fast5_template_deepnano 405228 430407 + BC_CNV_tombo-MyOv_29.fa
chr11 360507 353860 358505 364769 367154 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5737_ch_27_strand.fast5_template_deepnano 331082 375943 - BC_CNV_tombo-MyOv_29.fa
chr13 458728 443497 447963 468488 473959 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5416_ch_230_strand.fast5_template_deepnano 440726 489369 + BC_CNV_tombo-MyOv_29.fa
chr8 4561 10 5101 5101 9113 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3631_ch_195_strand.fast5_template_deepnano 3 35033 - BC_CNV_tombo-MyOv_29.fa
chr3 58465 55662 58005 58005 61269 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5528_ch_345_strand.fast5_template_deepnano 51951 75747 + BC_CNV_tombo-MyOv_29.fa
chr15 352739 349091 352261 354326 356388 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3236_ch_418_strand.fast5_template_deepnano 348994 366121 - BC_CNV_tombo-MyOv_29.fa
chr12 1033337 1029736 1031788 1031788 1036938 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3930_ch_137_strand.fast5_template_deepnano 1013968 1044469 - BC_CNV_tombo-MyOv_29.fa
chr11 320232 315220 319920 319920 325245 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4357_ch_290_strand.fast5_template_deepnano 315179 329218 - BC_CNV_tombo-MyOv_29.fa
chr2 213957 200939 204691 220253 226976 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_50130_ch_259_strand.fast5_template_deepnano 185664 232536 - BC_CNV_tombo-MyOv_65.fa
chr11 23614 16899 21437 26600 30330 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_41447_ch_505_strand.fast5_template_deepnano 492 30359 + BC_CNV_tombo-MyOv_65.fa
chr15 1083110 1075180 1077846 1087076 1091041 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_51343_ch_172_strand.fast5_template_deepnano 1047950 1091049 - BC_CNV_tombo-MyOv_65.fa
chr1 57493 50772 54989 60334 64215 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_26714_ch_449_strand.fast5_template_deepnano 48214 86879 - BC_CNV_tombo-MyOv_65.fa
chr8 517610 514360 518899 518899 520861 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 539304 536547 539306 539306 542062 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 532961 524091 527599 540001 541831 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7236_ch_410_strand.fast5_template_deepnano 514341 543673 + BC_CNV_tombo-MyOv_39.fa
chr13 861020 857543 859802 862710 864497 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_15941_ch_499_strand.fast5_template_deepnano 819714 873682 - BC_CNV_tombo-MyOv_39.fa
chr15 318388 311549 314515 321189 325227 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_14856_ch_444_strand.fast5_template_deepnano 278872 333173 - BC_CNV_tombo-MyOv_39.fa
chr2 210621 205626 207883 212187 215616 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_28712_ch_369_strand.fast5_template_deepnano 191206 225759 + BC_CNV_tombo-MyOv_39.fa
chr5 331505 322123 328893 328893 340887 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 307290 302478 305186 309157 312103 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8192_ch_74_strand.fast5_template_deepnano 302474 361947 + BC_CNV_tombo-MyOv_39.fa
chr2 103126 98785 102444 104404 107467 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8919_ch_333_strand.fast5_template_deepnano 78918 112605 - BC_CNV_tombo-MyOv_39.fa
chr12 495253 490887 496857 496857 499619 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 637273 634595 638434 638434 639951 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17420_ch_308_strand.fast5_template_deepnano 629602 665440 + BC_CNV_tombo-MyOv_39.fa
chr12 759970 746881 750078 769092 773059 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 784213 778627 782810 782810 789800 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6253_ch_150_strand.fast5_template_deepnano 737017 802631 + BC_CNV_tombo-MyOv_39.fa
chr14 178968 171509 179422 179422 186427 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7448_ch_52_strand.fast5_template_deepnano 159798 204164 + BC_CNV_tombo-MyOv_39.fa
chr9 154693 151478 154944 154944 157909 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2721_ch_53_strand.fast5_template_deepnano 139540 176053 + BC_CNV_tombo-MyOv_39.fa
chr10 180969 170909 173392 186360 191029 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9956_ch_484_strand.fast5_template_deepnano 170879 192773 - BC_CNV_tombo-MyOv_39.fa
chr10 633151 630510 633860 633860 635792 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10748_ch_121_strand.fast5_template_deepnano 626982 659405 - BC_CNV_tombo-MyOv_39.fa
chr10 396938 387983 391653 397687 405893 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_29636_ch_495_strand.fast5_template_deepnano 379732 406030 + BC_CNV_tombo-MyOv_39.fa
chr8 256667 248151 255098 255098 265183 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 31803 19051 22918 40026 44556 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6703_ch_395_strand.fast5_template_deepnano 3 53806 - BC_CNV_tombo-MyOv_39.fa
chr13 682921 679075 684002 684002 686768 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_16014_ch_104_strand.fast5_template_deepnano 666885 716384 + BC_CNV_tombo-MyOv_39.fa
chr9 81689 71143 77302 85705 92235 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7269_ch_34_strand.fast5_template_deepnano 49679 105478 + BC_CNV_tombo-MyOv_39.fa
chr4 177489 173802 176309 176309 181176 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9540_ch_163_strand.fast5_template_deepnano 170578 202444 - BC_CNV_tombo-MyOv_39.fa
chr7 641125 629189 632835 635197 653062 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_29690_ch_495_strand.fast5_template_deepnano 621941 669961 - BC_CNV_tombo-MyOv_39.fa
chr10 440200 434516 442972 442972 445885 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_27301_ch_435_strand.fast5_template_deepnano 434346 488206 - BC_CNV_tombo-MyOv_67.fa
chr15 58674 48532 54709 61109 68817 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_44168_ch_225_strand.fast5_template_deepnano 48532 78154 + BC_CNV_tombo-MyOv_67.fa
chr1 116770 113110 117962 117962 120430 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_75240_ch_343_strand.fast5_template_deepnano 113095 121183 - BC_CNV_tombo-MyOv_67.fa
chr12 429971 425499 428963 428963 434443 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_92000_ch_301_strand.fast5_template_deepnano 404886 450546 + BC_CNV_tombo-MyOv_67.fa
chr15 249820 244603 250936 250936 255037 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_44586_ch_225_strand.fast5_template_deepnano 230414 263748 + BC_CNV_tombo-MyOv_67.fa
chr11 302992 281262 283254 320508 324723 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_51401_ch_184_strand.fast5_template_deepnano 269775 324750 + BC_CNV_tombo-MyOv_67.fa
chr10 497206 472123 477241 517919 522289 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_161375_ch_315_strand.fast5_template_deepnano 466816 534309 - BC_CNV_tombo-MyOv_67.fa
chr10 644356 635254 639434 651296 653459 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6143_ch_182_strand.fast5_template_deepnano 593568 653575 - BC_CNV_tombo-MyOv_35.fa
chr11 132415 129037 133030 133030 135794 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_15498_ch_297_strand.fast5_template_deepnano 115938 145296 + BC_CNV_tombo-MyOv_35.fa
chr15 746867 733547 738789 752275 760188 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_21712_ch_511_strand.fast5_template_deepnano 709674 770925 - BC_CNV_tombo-MyOv_35.fa
chr3 56371 52175 56614 56614 60568 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_241072_ch_288_strand.fast5_template_deepnano 49939 69404 + BC_CNV_tombo-MyOv_35.fa
chr13 212570 207551 212985 212985 217589 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5941_ch_390_strand.fast5_template_deepnano 202701 256962 - BC_CNV_tombo-MyOv_35.fa
chr9 370967 368183 370063 370063 373751 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_20933_ch_510_strand.fast5_template_deepnano 367510 379527 + BC_CNV_tombo-MyOv_35.fa
chr12 459774 451419 462713 462713 468130 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_18255_ch_198_strand.fast5_template_deepnano 451417 468732 + BC_CNV_tombo-MyOv_35.fa
chr6 182116 176779 181662 181662 187453 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_37021_ch_441_strand.fast5_template_deepnano 176678 222121 - BC_CNV_tombo-MyOv_35.fa
chr4 776409 772865 777055 778229 779953 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_16117_ch_434_strand.fast5_template_deepnano 764063 811288 + BC_CNV_tombo-MyOv_35.fa
chr12 262390 258931 262913 262913 265849 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_162601_ch_311_strand.fast5_template_deepnano 256573 319850 + BC_CNV_tombo-MyOv_35.fa
chr11 122673 116416 121030 123999 128930 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_21657_ch_100_strand.fast5_template_deepnano 77397 130466 - BC_CNV_tombo-MyOv_35.fa
chr7 336846 322829 334638 334638 350864 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_13575_ch_500_strand.fast5_template_deepnano 318206 360069 + BC_CNV_tombo-MyOv_35.fa
chr6 139701 137406 139322 139322 141996 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_11946_ch_208_strand.fast5_template_deepnano 124729 145883 - BC_CNV_tombo-MyOv_35.fa
chr13 107305 102808 108781 108781 111803 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1193_ch_492_strand.fast5_template_deepnano 102775 122054 - BC_CNV_tombo-MyOv_19.fa
chr9 146352 123981 131794 165774 168724 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 148109 143160 147392 147392 153058 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 304795 299455 303741 303741 310136 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1985_ch_390_strand.fast5_template_deepnano 289297 330510 + BC_CNV_tombo-MyOv_19.fa
chr9 42576 35165 39593 46891 49988 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2017_ch_175_strand.fast5_template_deepnano 9928 68483 - BC_CNV_tombo-MyOv_19.fa
chr15 1069648 1063880 1067841 1070834 1075417 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2097_ch_15_strand.fast5_template_deepnano 1052834 1091288 - BC_CNV_tombo-MyOv_19.fa
chr16 170050 162944 165394 170464 177157 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1598_ch_250_strand.fast5_template_deepnano 147211 204778 - BC_CNV_tombo-MyOv_19.fa
chr5 232288 217811 222178 241705 246765 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2908_ch_290_strand.fast5_template_deepnano 216081 246776 - BC_CNV_tombo-MyOv_19.fa
chr7 599714 595593 600194 600194 603835 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1457_ch_50_strand.fast5_template_deepnano 587316 622675 + BC_CNV_tombo-MyOv_19.fa
chr15 60208 44686 57931 71250 75730 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2830_ch_425_strand.fast5_template_deepnano 24174 77476 - BC_CNV_tombo-MyOv_19.fa
chr8 331093 313822 320881 342201 348364 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6436_ch_317_strand.fast5_template_deepnano 313675 354467 - BC_CNV_tombo-MyOv_19.fa
chr15 999824 991361 995187 1003871 1008288 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1809_ch_289_strand.fast5_template_deepnano 986005 1036189 + BC_CNV_tombo-MyOv_19.fa
chr7 314173 310220 312005 314400 318127 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1896_ch_403_strand.fast5_template_deepnano 301287 328354 + BC_CNV_tombo-MyOv_19.fa
chr4 416972 409953 413477 413477 423992 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2849_ch_389_strand.fast5_template_deepnano 397449 429622 - BC_CNV_tombo-MyOv_19.fa
chr12 724658 722261 725226 725226 727055 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1590_ch_466_strand.fast5_template_deepnano 722244 728859 + BC_CNV_tombo-MyOv_19.fa
chr13 79284 72636 78519 78519 85933 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2042_ch_172_strand.fast5_template_deepnano 66186 130988 + BC_CNV_tombo-MyOv_19.fa
chr13 108744 103114 108542 108542 114375 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2042_ch_172_strand.fast5_template_deepnano 66186 130988 + BC_CNV_tombo-MyOv_19.fa
chr6 135064 114880 118797 152313 155249 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2200_ch_245_strand.fast5_template_deepnano 109962 156862 - BC_CNV_tombo-MyOv_19.fa
chr15 943481 928017 930867 955358 958945 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5480_ch_239_strand.fast5_template_deepnano 910582 965407 + BC_CNV_tombo-MyOv_19.fa
chr5 76562 67452 73414 77961 85673 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2382_ch_14_strand.fast5_template_deepnano 61960 102897 - BC_CNV_tombo-MyOv_19.fa
chr16 263458 254740 257252 266131 272176 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2039_ch_183_strand.fast5_template_deepnano 235999 278913 + BC_CNV_tombo-MyOv_19.fa
chr15 451246 447005 450954 450954 455488 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2162_ch_377_strand.fast5_template_deepnano 440458 461806 + BC_CNV_tombo-MyOv_19.fa
chr8 322985 314990 317440 322653 330980 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2343_ch_41_strand.fast5_template_deepnano 289847 352150 + BC_CNV_tombo-MyOv_19.fa
chr15 23353 19659 25290 25290 27048 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1728_ch_319_strand.fast5_template_deepnano 19647 63806 - BC_CNV_tombo-MyOv_19.fa
chr15 48781 43934 45371 45371 53629 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1728_ch_319_strand.fast5_template_deepnano 19647 63806 - BC_CNV_tombo-MyOv_19.fa
chr13 337547 333928 338202 338202 341167 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_13337_ch_508_strand.fast5_template_deepnano 332159 355963 + BC_CNV_tombo-MyOv_36.fa
chr16 663639 644673 650251 676583 682605 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17003_ch_103_strand.fast5_template_deepnano 637421 689074 - BC_CNV_tombo-MyOv_36.fa
chr12 458427 455573 458517 458517 461281 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_21586_ch_369_strand.fast5_template_deepnano 452138 468925 + BC_CNV_tombo-MyOv_36.fa
chr5 69735 65698 70099 70099 73773 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_14216_ch_504_strand.fast5_template_deepnano 43202 76245 - BC_CNV_tombo-MyOv_36.fa
chr16 319226 311391 317149 323813 327062 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_14651_ch_47_strand.fast5_template_deepnano 308380 337516 - BC_CNV_tombo-MyOv_36.fa
chr13 658111 652280 655119 660483 663942 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_15975_ch_505_strand.fast5_template_deepnano 652259 666333 - BC_CNV_tombo-MyOv_36.fa
chr8 514393 505449 516058 516058 523337 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17482_ch_320_strand.fast5_template_deepnano 479217 523949 + BC_CNV_tombo-MyOv_36.fa
chr5 15726 4240 7487 23118 27212 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_18729_ch_259_strand.fast5_template_deepnano 29 45944 + BC_CNV_tombo-MyOv_36.fa
chr15 825263 819770 822964 824709 830757 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_15178_ch_175_strand.fast5_template_deepnano 815116 841528 + BC_CNV_tombo-MyOv_36.fa
chr9 347360 342868 347659 347659 351852 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_33806_ch_85_strand.fast5_template_deepnano 327862 359497 + BC_CNV_tombo-MyOv_36.fa
chr11 124863 101311 109994 143624 148415 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_58314_ch_423_strand.fast5_template_deepnano 96522 153813 + BC_CNV_tombo-MyOv_36.fa
chr14 299699 286173 295443 307598 313226 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 123112 119554 123386 123386 126671 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 150069 145392 150262 151916 154747 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12220_ch_154_strand.fast5_template_deepnano 100931 158587 - BC_CNV_tombo-MyOv_36.fa
chr16 642300 631772 636703 647825 652828 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_23213_ch_455_strand.fast5_template_deepnano 610315 652936 - BC_CNV_tombo-MyOv_36.fa
chr5 387737 382593 383958 388599 392881 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8814_ch_425_strand.fast5_template_deepnano 367481 419115 + BC_CNV_tombo-MyOv_36.fa
chr8 40331 35750 41778 41778 44913 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4463_ch_418_strand.fast5_template_deepnano 24146 44925 - BC_CNV_tombo-MyOv_36.fa
chr12 436957 434286 437567 437567 439628 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9870_ch_378_strand.fast5_template_deepnano 432298 468929 + BC_CNV_tombo-MyOv_36.fa
chr14 31438 9080 14823 48138 53797 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5813_ch_150_strand.fast5_template_deepnano 9 56052 - BC_CNV_tombo-MyOv_36.fa
chr15 580846 566447 571894 589579 595246 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_14905_ch_341_strand.fast5_template_deepnano 555014 601235 + BC_CNV_tombo-MyOv_36.fa
chr7 289571 285607 287618 287618 293536 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17056_ch_308_strand.fast5_template_deepnano 266832 312958 - BC_CNV_tombo-MyOv_36.fa
chr12 442002 436471 438650 438650 447533 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5740_ch_445_strand.fast5_template_deepnano 427215 465218 + BC_CNV_tombo-MyOv_36.fa
chr9 128522 122719 128371 131103 134325 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 496364 490958 495911 495911 501771 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_45246_ch_418_strand.fast5_template_deepnano 475861 518353 - BC_CNV_tombo-MyOv_66.fa
chr10 661085 653633 661319 661319 668537 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_45275_ch_418_strand.fast5_template_deepnano 653474 688620 - BC_CNV_tombo-MyOv_66.fa
chr4 1328981 1319696 1323569 1332655 1338267 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_52221_ch_105_strand.fast5_template_deepnano 1309057 1345808 - BC_CNV_tombo-MyOv_66.fa
chr8 118798 110732 114302 120732 126865 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_53012_ch_248_strand.fast5_template_deepnano 99299 177746 - BC_CNV_tombo-MyOv_66.fa
chr4 356059 353936 355885 355885 358183 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_57384_ch_115_strand.fast5_template_deepnano 353929 361024 - BC_CNV_tombo-MyOv_66.fa
chr15 58441 55398 59709 59709 61485 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_26984_ch_435_strand.fast5_template_deepnano 35400 62049 + BC_CNV_tombo-MyOv_66.fa
chr3 59791 57186 60764 60764 62397 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4925_ch_182_strand.fast5_template_deepnano 32474 63627 - BC_CNV_tombo-MyOv_33.fa
chr13 72998 65338 70383 70383 80658 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7693_ch_83_strand.fast5_template_deepnano 46265 95054 - BC_CNV_tombo-MyOv_33.fa
chr13 116944 112497 115688 115688 121392 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_7858_ch_379_strand.fast5_template_deepnano 107646 134825 + BC_CNV_tombo-MyOv_33.fa
chr7 501110 495010 503681 503681 507210 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5093_ch_390_strand.fast5_template_deepnano 487351 544656 - BC_CNV_tombo-MyOv_33.fa
chr15 64282 55590 60311 66124 72975 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_11175_ch_208_strand.fast5_template_deepnano 414 84298 + BC_CNV_tombo-MyOv_33.fa
chr12 311398 290911 293900 327485 331885 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_13907_ch_168_strand.fast5_template_deepnano 290893 343043 + BC_CNV_tombo-MyOv_33.fa
chr4 1184555 1181376 1184539 1184539 1187735 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5352_ch_44_strand.fast5_template_deepnano 1160776 1187835 + BC_CNV_tombo-MyOv_33.fa
chr13 378572 374673 379179 379179 382471 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10465_ch_124_strand.fast5_template_deepnano 361252 384391 - BC_CNV_tombo-MyOv_33.fa
chr13 158872 147455 153301 165999 170289 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_24760_ch_262_strand.fast5_template_deepnano 136893 172419 + BC_CNV_tombo-MyOv_33.fa
chr4 96420 90575 93864 95642 102265 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_14766_ch_468_strand.fast5_template_deepnano 89191 121930 - BC_CNV_tombo-MyOv_33.fa
chr5 220451 214986 223186 223186 225917 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5199_ch_484_strand.fast5_template_deepnano 184300 228124 - BC_CNV_tombo-MyOv_33.fa
chr12 272026 268034 270232 270232 276018 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5191_ch_357_strand.fast5_template_deepnano 254693 307713 + BC_CNV_tombo-MyOv_33.fa
chr4 940559 927192 939982 939982 953927 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8145_ch_59_strand.fast5_template_deepnano 927100 975986 - BC_CNV_tombo-MyOv_33.fa
chr16 20678 3482 11228 30400 37875 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3741_ch_225_strand.fast5_template_deepnano 3 43326 - BC_CNV_tombo-MyOv_33.fa
chr7 453470 436759 438489 465632 470181 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4963_ch_316_strand.fast5_template_deepnano 412332 485259 + BC_CNV_tombo-MyOv_33.fa
chr16 264428 257421 259538 261462 271436 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_11378_ch_360_strand.fast5_template_deepnano 248912 286948 + BC_CNV_tombo-MyOv_33.fa
chr15 891606 885378 891335 891335 897835 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4872_ch_227_strand.fast5_template_deepnano 885372 917152 + BC_CNV_tombo-MyOv_33.fa
chr15 257710 253630 255899 257938 261791 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_6029_ch_97_strand.fast5_template_deepnano 247707 264761 - BC_CNV_tombo-MyOv_33.fa
chr4 183498 173219 179062 188629 193777 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_14297_ch_509_strand.fast5_template_deepnano 158777 201349 - BC_CNV_tombo-MyOv_33.fa
chr8 417101 411006 412930 412930 423197 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_25094_ch_185_strand.fast5_template_deepnano 395367 442994 - BC_CNV_tombo-MyOv_33.fa
chr12 205637 200883 206445 208373 210391 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 147442 135392 139351 155794 159493 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_5070_ch_493_strand.fast5_template_deepnano 134432 169070 - BC_CNV_tombo-MyOv_33.fa
chr8 519931 506525 510217 520033 533338 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1899_ch_114_strand.fast5_template_deepnano 483772 533357 - BC_CNV_tombo-MyOv_15.fa
chr2 603664 599888 604135 604135 607440 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1078_ch_322_strand.fast5_template_deepnano 593026 627247 - BC_CNV_tombo-MyOv_15.fa
chr7 914910 908141 912822 917901 921679 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1504_ch_144_strand.fast5_template_deepnano 892853 959874 - BC_CNV_tombo-MyOv_15.fa
chr13 243224 237273 241920 241920 249176 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3871_ch_419_strand.fast5_template_deepnano 229848 285237 + BC_CNV_tombo-MyOv_15.fa
chr7 988072 982737 984905 989556 993408 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 1006462 1002601 1007001 1007001 1010323 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 996497 982670 986840 1006685 1010325 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1310_ch_205_strand.fast5_template_deepnano 980197 1016108 + BC_CNV_tombo-MyOv_15.fa
chr15 198346 190947 198879 198879 205746 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1493_ch_34_strand.fast5_template_deepnano 172517 226659 - BC_CNV_tombo-MyOv_15.fa
chr11 628960 614354 619358 638750 643567 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1381_ch_499_strand.fast5_template_deepnano 612942 646342 - BC_CNV_tombo-MyOv_15.fa
chr16 739170 734555 738698 738698 743786 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4004_ch_72_strand.fast5_template_deepnano 721145 751366 - BC_CNV_tombo-MyOv_15.fa
chr4 240139 235641 242650 242650 244637 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1159_ch_470_strand.fast5_template_deepnano 234538 249476 - BC_CNV_tombo-MyOv_15.fa
chr2 766130 762528 765423 765423 769733 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1304_ch_251_strand.fast5_template_deepnano 751412 779723 + BC_CNV_tombo-MyOv_15.fa
chr5 508780 502213 509998 509998 515347 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1840_ch_113_strand.fast5_template_deepnano 472252 528384 + BC_CNV_tombo-MyOv_15.fa
chr16 20329 10854 26308 28178 29804 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1207_ch_404_strand.fast5_template_deepnano 182 44774 + BC_CNV_tombo-MyOv_15.fa
chr4 894519 886602 890848 899529 902436 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 76604 72327 75987 75987 80881 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3067_ch_462_strand.fast5_template_deepnano 57180 100421 + BC_CNV_tombo-MyOv_15.fa
chr8 337904 325652 334617 345682 350157 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1607_ch_381_strand.fast5_template_deepnano 308373 355938 - BC_CNV_tombo-MyOv_15.fa
chr5 292026 289855 291772 291772 294198 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3914_ch_447_strand.fast5_template_deepnano 254513 310167 - BC_CNV_tombo-MyOv_15.fa
chr11 597651 586668 589631 606263 608635 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1223_ch_418_strand.fast5_template_deepnano 574711 611211 - BC_CNV_tombo-MyOv_15.fa
chr16 343916 338389 340355 347692 349443 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1235_ch_477_strand.fast5_template_deepnano 332085 353653 - BC_CNV_tombo-MyOv_15.fa
chr13 160870 147472 153373 167985 174269 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1480_ch_151_strand.fast5_template_deepnano 144369 174368 + BC_CNV_tombo-MyOv_15.fa
chr15 249854 232260 240079 249271 267449 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1633_ch_249_strand.fast5_template_deepnano 218859 279877 + BC_CNV_tombo-MyOv_15.fa
chr9 432578 429203 432777 432777 435954 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_46128_ch_445_strand.fast5_template_deepnano 426039 439885 + BC_CNV_tombo-MyOv_52.fa
chr5 318686 312412 316682 321097 324961 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_13061_ch_410_strand.fast5_template_deepnano 307089 328451 - BC_CNV_tombo-MyOv_52.fa
chr4 746899 741808 745933 745933 751990 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_20482_ch_459_strand.fast5_template_deepnano 727388 770397 + BC_CNV_tombo-MyOv_52.fa
chr9 144686 135867 142457 150048 153505 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_35559_ch_200_strand.fast5_template_deepnano 135807 164734 - BC_CNV_tombo-MyOv_52.fa
chr9 280089 265445 271409 277228 294734 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_64191_ch_226_strand.fast5_template_deepnano 257691 318093 - BC_CNV_tombo-MyOv_52.fa
chr2 211327 203652 206816 217031 219003 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_30380_ch_218_strand.fast5_template_deepnano 183212 223190 - BC_CNV_tombo-MyOv_52.fa
chr8 370275 362566 365289 372409 377985 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_28146_ch_420_strand.fast5_template_deepnano 360666 380516 - BC_CNV_tombo-MyOv_52.fa
chr7 953035 947722 954595 956919 958348 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_23564_ch_93_strand.fast5_template_deepnano 933838 966901 + BC_CNV_tombo-MyOv_52.fa
chr15 25443 16806 21616 27457 34080 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 262569 252129 254381 264628 273010 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_15472_ch_138_strand.fast5_template_deepnano 239229 293749 + BC_CNV_tombo-MyOv_52.fa
chr12 554005 547964 552201 552201 560046 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_37627_ch_482_strand.fast5_template_deepnano 519340 563561 - BC_CNV_tombo-MyOv_52.fa
chr7 401688 395983 400834 403781 407393 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_14899_ch_157_strand.fast5_template_deepnano 394175 425976 + BC_CNV_tombo-MyOv_52.fa
chr5 412248 409009 412465 412465 415487 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_18088_ch_418_strand.fast5_template_deepnano 407984 445223 - BC_CNV_tombo-MyOv_52.fa
chr5 419838 409069 412439 427072 430607 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_18088_ch_418_strand.fast5_template_deepnano 407984 445223 - BC_CNV_tombo-MyOv_52.fa
chr12 764651 758983 764424 764424 770320 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_23844_ch_407_strand.fast5_template_deepnano 757468 770367 - BC_CNV_tombo-MyOv_52.fa
chr13 352957 346858 354600 354600 359057 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_59280_ch_168_strand.fast5_template_deepnano 327156 359111 - BC_CNV_tombo-MyOv_52.fa
chr4 1120317 1109518 1113575 1129063 1131116 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_20521_ch_30_strand.fast5_template_deepnano 1095473 1143752 - BC_CNV_tombo-MyOv_52.fa
chr2 378536 373446 380701 380701 383626 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_39184_ch_63_strand.fast5_template_deepnano 363361 401150 - BC_CNV_tombo-MyOv_52.fa
chr11 236069 231652 236209 239109 240487 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_64682_ch_226_strand.fast5_template_deepnano 216577 248651 + BC_CNV_tombo-MyOv_52.fa
chr10 167859 163756 165893 165893 171963 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 251711 241261 248155 254558 262161 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_753_ch_15_strand.fast5_template_deepnano 229008 275498 - BC_CNV_tombo-MyOv_6.fa
chr8 71250 68011 69309 69309 74489 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_363_ch_473_strand.fast5_template_deepnano 66714 85388 + BC_CNV_tombo-MyOv_6.fa
chr4 452900 446699 452750 454691 459102 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_396_ch_466_strand.fast5_template_deepnano 428915 468121 + BC_CNV_tombo-MyOv_6.fa
chr12 396881 388021 392125 401286 405742 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1381_ch_9_strand.fast5_template_deepnano 378096 423957 + BC_CNV_tombo-MyOv_6.fa
chr12 117746 98417 102932 132217 137076 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_470_ch_370_strand.fast5_template_deepnano 88031 142485 - BC_CNV_tombo-MyOv_6.fa
chr8 50498 44742 48583 53113 56254 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_571_ch_500_strand.fast5_template_deepnano 29076 76998 + BC_CNV_tombo-MyOv_6.fa
chr9 256047 245468 260031 260031 266626 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_594_ch_110_strand.fast5_template_deepnano 245371 279705 - BC_CNV_tombo-MyOv_6.fa
chr2 512588 504659 509347 516596 520517 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_629_ch_482_strand.fast5_template_deepnano 496156 530430 + BC_CNV_tombo-MyOv_6.fa
chr11 34427 26582 30763 37584 42272 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_562_ch_144_strand.fast5_template_deepnano 25768 44687 + BC_CNV_tombo-MyOv_6.fa
chr9 238774 233688 236094 239042 243861 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_595_ch_110_strand.fast5_template_deepnano 233670 245296 - BC_CNV_tombo-MyOv_6.fa
chr10 256251 249300 252659 261288 263203 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_758_ch_478_strand.fast5_template_deepnano 236478 272726 + BC_CNV_tombo-MyOv_6.fa
chr13 127857 124545 129610 130013 131169 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_889_ch_88_strand.fast5_template_deepnano 124545 138697 + BC_CNV_tombo-MyOv_6.fa
chr4 987871 982904 987090 987090 992839 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_702_ch_244_strand.fast5_template_deepnano 969286 992861 - BC_CNV_tombo-MyOv_6.fa
chr3 58150 52445 58777 58777 63856 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_508_ch_345_strand.fast5_template_deepnano 148 67660 - BC_CNV_tombo-MyOv_6.fa
chr4 609732 595261 605767 616737 624203 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_987_ch_214_strand.fast5_template_deepnano 591753 637250 - BC_CNV_tombo-MyOv_6.fa
chr2 459484 442987 451894 472253 475981 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1487_ch_72_strand.fast5_template_deepnano 418928 479704 - BC_CNV_tombo-MyOv_6.fa
chr2 343098 334748 338250 338250 351448 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_344_ch_183_strand.fast5_template_deepnano 325613 368411 + BC_CNV_tombo-MyOv_6.fa
chr5 162711 156252 158588 166113 169171 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_322_ch_459_strand.fast5_template_deepnano 154837 182848 + BC_CNV_tombo-MyOv_6.fa
chr4 1374107 1360013 1365695 1379791 1388202 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_190_ch_424_strand.fast5_template_deepnano 1355619 1388216 + BC_CNV_tombo-MyOv_4.fa
chr16 83543 77920 81853 84978 89167 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 155669 151956 155460 155460 159382 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 243248 238506 241442 241442 247991 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_247_ch_250_strand.fast5_template_deepnano 227102 257016 + BC_CNV_tombo-MyOv_4.fa
chr11 79053 68886 76235 84075 89220 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_274_ch_204_strand.fast5_template_deepnano 57664 98330 - BC_CNV_tombo-MyOv_4.fa
chr11 178438 170513 174116 184227 186363 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_276_ch_298_strand.fast5_template_deepnano 165439 188714 + BC_CNV_tombo-MyOv_4.fa
chr8 155468 150624 154415 157737 160313 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_298_ch_336_strand.fast5_template_deepnano 147504 164680 + BC_CNV_tombo-MyOv_4.fa
chr4 182281 178802 183911 183911 185761 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_301_ch_141_strand.fast5_template_deepnano 171928 218211 - BC_CNV_tombo-MyOv_4.fa
chr9 89805 87021 90217 90217 92590 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_302_ch_38_strand.fast5_template_deepnano 82101 137256 - BC_CNV_tombo-MyOv_4.fa
chr9 119492 116634 118925 118925 122351 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_302_ch_38_strand.fast5_template_deepnano 82101 137256 - BC_CNV_tombo-MyOv_4.fa
chr9 124278 116367 121308 129234 132189 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_302_ch_38_strand.fast5_template_deepnano 82101 137256 - BC_CNV_tombo-MyOv_4.fa
chr8 77118 74026 75922 76255 80211 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_329_ch_71_strand.fast5_template_deepnano 70057 85271 - BC_CNV_tombo-MyOv_4.fa
chr5 541509 514072 521243 561699 568947 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_359_ch_149_strand.fast5_template_deepnano 504060 576746 - BC_CNV_tombo-MyOv_4.fa
chr4 192829 185839 191382 194693 199820 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_367_ch_493_strand.fast5_template_deepnano 185791 204962 - BC_CNV_tombo-MyOv_4.fa
chr2 342966 328411 336858 353518 357522 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_376_ch_125_strand.fast5_template_deepnano 313938 357555 - BC_CNV_tombo-MyOv_4.fa
chr4 582349 577888 581306 584009 586811 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_395_ch_444_strand.fast5_template_deepnano 571827 590601 + BC_CNV_tombo-MyOv_4.fa
chr4 1508224 1489981 1497114 1521906 1526468 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 89701 84843 87657 89879 94559 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_463_ch_151_strand.fast5_template_deepnano 76746 119988 - BC_CNV_tombo-MyOv_4.fa
chr11 397025 393386 395331 395331 400664 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_468_ch_32_strand.fast5_template_deepnano 388990 400664 - BC_CNV_tombo-MyOv_4.fa
chr14 430054 420908 424283 435201 439200 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_514_ch_143_strand.fast5_template_deepnano 406759 463370 + BC_CNV_tombo-MyOv_4.fa
chr15 423798 417561 426645 426645 430035 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_654_ch_88_strand.fast5_template_deepnano 401451 430145 + BC_CNV_tombo-MyOv_4.fa
chr16 87221 73956 90222 90222 100486 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_347_ch_81_strand.fast5_template_deepnano 61658 112124 - BC_CNV_tombo-MyOv_4.fa
chr12 464335 460282 465054 465054 468388 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_379_ch_22_strand.fast5_template_deepnano 451417 468501 + BC_CNV_tombo-MyOv_4.fa
chr15 245670 234039 248410 248410 257302 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_395_ch_499_strand.fast5_template_deepnano 234017 258712 + BC_CNV_tombo-MyOv_4.fa
chr14 332551 327718 332050 332050 337384 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1440_ch_189_strand.fast5_template_deepnano 321817 355596 + BC_CNV_tombo-MyOv_12.fa
chr6 149686 141994 145735 152312 157379 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_938_ch_150_strand.fast5_template_deepnano 135225 171354 + BC_CNV_tombo-MyOv_12.fa
chr2 30171 9963 14559 44992 50380 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1014_ch_398_strand.fast5_template_deepnano 175 67050 + BC_CNV_tombo-MyOv_12.fa
chr7 539125 528963 534392 544361 549287 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1195_ch_465_strand.fast5_template_deepnano 503787 571784 + BC_CNV_tombo-MyOv_12.fa
chr10 283525 274754 277706 284483 292296 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1122_ch_131_strand.fast5_template_deepnano 260815 295502 + BC_CNV_tombo-MyOv_12.fa
chr10 172199 165977 168542 173455 178422 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1267_ch_478_strand.fast5_template_deepnano 141670 203131 - BC_CNV_tombo-MyOv_12.fa
chr10 639949 634733 638580 640686 645165 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1422_ch_54_strand.fast5_template_deepnano 628337 661193 + BC_CNV_tombo-MyOv_12.fa
chr4 416639 409323 413084 421679 423955 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1187_ch_500_strand.fast5_template_deepnano 399604 433682 - BC_CNV_tombo-MyOv_12.fa
chr8 466131 457558 466953 466953 474705 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_4290_ch_166_strand.fast5_template_deepnano 457515 477120 + BC_CNV_tombo-MyOv_12.fa
chr4 385717 381224 384598 384598 390211 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_951_ch_238_strand.fast5_template_deepnano 377188 411104 + BC_CNV_tombo-MyOv_12.fa
chr15 254893 252161 254979 254979 257626 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1132_ch_53_strand.fast5_template_deepnano 250803 286321 + BC_CNV_tombo-MyOv_12.fa
chr16 521683 511290 518534 527152 532077 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1144_ch_131_strand.fast5_template_deepnano 511241 532103 - BC_CNV_tombo-MyOv_12.fa
chr4 1493720 1489795 1493592 1493592 1497646 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_846_ch_477_strand.fast5_template_deepnano 1480413 1503082 + BC_CNV_tombo-MyOv_12.fa
chr8 15817 9152 13694 13694 22483 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_957_ch_303_strand.fast5_template_deepnano 3 33323 - BC_CNV_tombo-MyOv_12.fa
chr6 41062 36526 41593 41593 45599 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1156_ch_137_strand.fast5_template_deepnano 2 64361 + BC_CNV_tombo-MyOv_12.fa
chr7 671716 667794 671956 671956 675639 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1434_ch_106_strand.fast5_template_deepnano 656309 686255 - BC_CNV_tombo-MyOv_12.fa
chr2 466618 458745 465365 469762 474492 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1078_ch_379_strand.fast5_template_deepnano 443113 501009 + BC_CNV_tombo-MyOv_12.fa
chr12 765306 755024 760879 770771 775589 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1216_ch_457_strand.fast5_template_deepnano 749637 792690 + BC_CNV_tombo-MyOv_12.fa
chr13 474025 471123 472463 474288 476928 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_890_ch_194_strand.fast5_template_deepnano 447650 492597 + BC_CNV_tombo-MyOv_12.fa
chr12 900605 893657 897191 902923 907553 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17227_ch_15_strand.fast5_template_deepnano 875512 924630 - BC_CNV_tombo-MyOv_43.fa
chr4 476676 471851 477098 479137 481502 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_22354_ch_180_strand.fast5_template_deepnano 459171 483444 + BC_CNV_tombo-MyOv_43.fa
chr9 90684 82328 87687 92075 99040 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_64286_ch_51_strand.fast5_template_deepnano 76459 99055 + BC_CNV_tombo-MyOv_43.fa
chr15 1078016 1066920 1073966 1084566 1089112 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_12530_ch_135_strand.fast5_template_deepnano 1029143 1091035 - BC_CNV_tombo-MyOv_43.fa
chr7 753889 740283 743370 761520 767496 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8474_ch_188_strand.fast5_template_deepnano 737188 769671 + BC_CNV_tombo-MyOv_43.fa
chr5 241744 232450 245705 248133 251039 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_18210_ch_70_strand.fast5_template_deepnano 222473 259063 - BC_CNV_tombo-MyOv_43.fa
chr4 143250 136200 140743 144019 150301 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 832171 825727 829332 835792 838616 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_16568_ch_173_strand.fast5_template_deepnano 780300 844297 - BC_CNV_tombo-MyOv_43.fa
chr7 545431 542043 543740 543740 548819 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_61263_ch_134_strand.fast5_template_deepnano 520420 575354 - BC_CNV_tombo-MyOv_43.fa
chr11 29433 22916 30635 30635 35951 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_34425_ch_369_strand.fast5_template_deepnano 7003 47427 - BC_CNV_tombo-MyOv_43.fa
chr16 319951 315115 321416 321416 324788 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3596_ch_271_strand.fast5_template_deepnano 309109 355048 + BC_CNV_tombo-MyOv_43.fa
chr6 229285 221939 227612 227612 236632 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10475_ch_163_strand.fast5_template_deepnano 201863 270158 + BC_CNV_tombo-MyOv_43.fa
chr11 255298 241054 247169 260303 269542 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_30677_ch_495_strand.fast5_template_deepnano 211939 289187 + BC_CNV_tombo-MyOv_43.fa
chr15 14719 444 16268 21870 28995 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8810_ch_234_strand.fast5_template_deepnano 413 45255 + BC_CNV_tombo-MyOv_43.fa
chr16 721711 719927 721580 721580 723496 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_15238_ch_258_strand.fast5_template_deepnano 719830 742713 + BC_CNV_tombo-MyOv_43.fa
chr12 1064651 1058249 1067083 1067083 1071053 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10954_ch_59_strand.fast5_template_deepnano 1058247 1078174 + BC_CNV_tombo-MyOv_43.fa
chr7 92611 82749 87163 98071 102473 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_10786_ch_255_strand.fast5_template_deepnano 82732 148485 - BC_CNV_tombo-MyOv_43.fa
chr7 679429 664235 667863 689850 694623 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_11101_ch_472_strand.fast5_template_deepnano 664160 699253 - BC_CNV_tombo-MyOv_43.fa
chr14 74857 65069 69922 81384 84645 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_20239_ch_62_strand.fast5_template_deepnano 51536 96610 + BC_CNV_tombo-MyOv_43.fa
chr5 424738 422813 424653 424653 426663 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1252_ch_487_strand.fast5_template_deepnano 418624 439838 + BC_CNV_tombo-MyOv_14.fa
chr5 533701 511883 517033 544402 555519 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2857_ch_462_strand.fast5_template_deepnano 481687 576711 - BC_CNV_tombo-MyOv_14.fa
chr5 554581 544402 555519 559663 564760 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2857_ch_462_strand.fast5_template_deepnano 481687 576711 - BC_CNV_tombo-MyOv_14.fa
chr5 538317 511850 514747 558730 564785 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2857_ch_462_strand.fast5_template_deepnano 481687 576711 - BC_CNV_tombo-MyOv_14.fa
chr7 338106 331981 335839 335839 344231 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1389_ch_484_strand.fast5_template_deepnano 308706 353950 - BC_CNV_tombo-MyOv_14.fa
chr11 180192 173905 177323 183813 186479 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_3070_ch_230_strand.fast5_template_deepnano 149677 199199 + BC_CNV_tombo-MyOv_14.fa
chr5 246769 223316 227318 265310 270223 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1730_ch_269_strand.fast5_template_deepnano 218280 284112 - BC_CNV_tombo-MyOv_14.fa
chr2 298917 294194 298010 298010 303641 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1480_ch_304_strand.fast5_template_deepnano 283565 328814 - BC_CNV_tombo-MyOv_14.fa
chr15 191468 187777 191266 191266 195159 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1713_ch_273_strand.fast5_template_deepnano 151392 207167 + BC_CNV_tombo-MyOv_14.fa
chr12 462072 459271 461149 461149 464873 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1818_ch_189_strand.fast5_template_deepnano 456954 466088 + BC_CNV_tombo-MyOv_14.fa
chr13 150577 147723 150851 150851 153431 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1917_ch_482_strand.fast5_template_deepnano 147589 162949 - BC_CNV_tombo-MyOv_14.fa
chr13 545959 540802 547054 547054 551116 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1492_ch_144_strand.fast5_template_deepnano 532484 558753 + BC_CNV_tombo-MyOv_14.fa
chr16 800142 786924 794567 810628 813361 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_1774_ch_22_strand.fast5_template_deepnano 781467 838316 - BC_CNV_tombo-MyOv_14.fa
chr15 608343 604921 608330 608330 611765 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_31512_ch_280_strand.fast5_template_deepnano 595249 625710 - BC_CNV_tombo-MyOv_62.fa
chr16 670258 657977 664940 680302 682540 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9716_ch_273_strand.fast5_template_deepnano 629219 696131 - BC_CNV_tombo-MyOv_62.fa
chr13 580363 569138 572769 587693 591588 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_17133_ch_188_strand.fast5_template_deepnano 552984 592493 + BC_CNV_tombo-MyOv_62.fa
chr16 626412 620116 627107 627107 632709 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8131_ch_302_strand.fast5_template_deepnano 585633 638530 - BC_CNV_tombo-MyOv_62.fa
chr11 243880 239993 245580 245580 247768 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_37205_ch_62_strand.fast5_template_deepnano 225928 268979 + BC_CNV_tombo-MyOv_62.fa
chr11 251810 247768 253683 253683 255853 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_37205_ch_62_strand.fast5_template_deepnano 225928 268979 + BC_CNV_tombo-MyOv_62.fa
chr11 247870 239822 243347 253173 255918 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_37205_ch_62_strand.fast5_template_deepnano 225928 268979 + BC_CNV_tombo-MyOv_62.fa
chr2 157927 150045 153402 159516 165810 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_9395_ch_400_strand.fast5_template_deepnano 149986 165893 + BC_CNV_tombo-MyOv_62.fa
chr16 272450 258259 268172 284527 286641 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8222_ch_302_strand.fast5_template_deepnano 243926 294259 + BC_CNV_tombo-MyOv_62.fa
chr12 394172 380565 385186 405165 407779 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_47510_ch_499_strand.fast5_template_deepnano 347276 411564 + BC_CNV_tombo-MyOv_62.fa
chr4 1223888 1218247 1227662 1227662 1229529 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_42237_ch_191_strand.fast5_template_deepnano 1218224 1252924 - BC_CNV_tombo-MyOv_62.fa
chr15 213806 209449 211929 211929 218163 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_30347_ch_93_strand.fast5_template_deepnano 204831 218261 + BC_CNV_tombo-MyOv_62.fa
chr8 365301 361716 364358 364358 368887 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_16391_ch_68_strand.fast5_template_deepnano 346140 375199 - BC_CNV_tombo-MyOv_62.fa
chr12 905772 902011 904666 907800 909534 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_30696_ch_509_strand.fast5_template_deepnano 838665 912182 + BC_CNV_tombo-MyOv_62.fa
chr2 80975 72994 75503 83433 88957 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_32847_ch_372_strand.fast5_template_deepnano 53570 99625 + BC_CNV_tombo-MyOv_62.fa
chr2 685602 678247 682069 689562 692957 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_21410_ch_75_strand.fast5_template_deepnano 656614 704496 - BC_CNV_tombo-MyOv_62.fa
chr7 51682 45294 50285 55657 58071 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_16519_ch_68_strand.fast5_template_deepnano 39340 66186 + BC_CNV_tombo-MyOv_62.fa
chr2 212932 208667 212490 212490 217197 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_30757_ch_509_strand.fast5_template_deepnano 196727 244671 - BC_CNV_tombo-MyOv_62.fa
chr13 458871 439076 441727 463055 478667 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_22348_ch_429_strand.fast5_template_deepnano 439067 492931 - BC_CNV_tombo-MyOv_62.fa
chr7 178195 169941 180913 180913 186450 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2560_ch_214_strand.fast5_template_deepnano 166820 237071 - BC_CNV_tombo-MyOv_22.fa
chr1 48780 44000 48462 48462 53560 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2082_ch_289_strand.fast5_template_deepnano 30977 70493 - BC_CNV_tombo-MyOv_22.fa
chr4 33322 24442 33637 38121 42202 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2243_ch_68_strand.fast5_template_deepnano 3 44664 - BC_CNV_tombo-MyOv_22.fa
chr7 131890 122562 131465 131465 141219 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8665_ch_154_strand.fast5_template_deepnano 113726 146321 - BC_CNV_tombo-MyOv_22.fa
chr4 1123196 1118601 1125118 1125118 1127792 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2590_ch_379_strand.fast5_template_deepnano 1113888 1143578 + BC_CNV_tombo-MyOv_22.fa
chr7 1049007 1041363 1051274 1051274 1056651 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2103_ch_476_strand.fast5_template_deepnano 1036726 1090935 + BC_CNV_tombo-MyOv_22.fa
chr12 420412 414024 418177 422373 426800 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_8606_ch_511_strand.fast5_template_deepnano 408747 431987 + BC_CNV_tombo-MyOv_22.fa
chr7 136580 126567 134518 134518 146593 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2106_ch_452_strand.fast5_template_deepnano 115714 152646 + BC_CNV_tombo-MyOv_22.fa
chr12 463066 459368 461884 461884 466764 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2276_ch_234_strand.fast5_template_deepnano 451416 468929 + BC_CNV_tombo-MyOv_22.fa
chr14 251892 248951 252262 252262 254834 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2531_ch_273_strand.fast5_template_deepnano 246375 256310 - BC_CNV_tombo-MyOv_22.fa
chr3 56197 51614 55586 55586 60780 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2366_ch_112_strand.fast5_template_deepnano 45106 66729 - BC_CNV_tombo-MyOv_22.fa
chr7 1037695 1025868 1030255 1045594 1049523 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2926_ch_131_strand.fast5_template_deepnano 1009199 1053219 - BC_CNV_tombo-MyOv_22.fa
chr10 135131 127429 135192 135192 142834 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_2512_ch_453_strand.fast5_template_deepnano 94156 153195 + BC_CNV_tombo-MyOv_22.fa
chr16 625306 621539 625431 625431 629074 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_18529_ch_479_strand.fast5_template_deepnano 616154 631440 + BC_CNV_tombo-MyOv_54.fa
chr9 383056 378259 384135 384135 387854 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_53715_ch_233_strand.fast5_template_deepnano 357483 409081 + BC_CNV_tombo-MyOv_54.fa
chr12 456139 452718 455861 455861 459561 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_15543_ch_34_strand.fast5_template_deepnano 452715 463198 + BC_CNV_tombo-MyOv_54.fa
chr13 517734 507926 516537 516537 527543 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_27014_ch_201_strand.fast5_template_deepnano 494280 546271 - BC_CNV_tombo-MyOv_54.fa
chr5 72538 61248 68729 78227 83829 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_37919_ch_228_strand.fast5_template_deepnano 53689 98721 + BC_CNV_tombo-MyOv_54.fa
chr4 998290 994197 999134 999134 1002384 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_29079_ch_155_strand.fast5_template_deepnano 986236 1030916 - BC_CNV_tombo-MyOv_54.fa
chr16 532732 526756 529177 530557 538708 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_48202_ch_491_strand.fast5_template_deepnano 521538 549636 - BC_CNV_tombo-MyOv_54.fa
chr8 201647 194260 197452 197452 209035 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_21839_ch_459_strand.fast5_template_deepnano 168360 209113 + BC_CNV_tombo-MyOv_54.fa
chr4 1042188 1027932 1036357 1050818 1056445 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_40125_ch_63_strand.fast5_template_deepnano 1027932 1068232 + BC_CNV_tombo-MyOv_54.fa
chr12 463339 459480 464174 464174 467198 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_37984_ch_398_strand.fast5_template_deepnano 455880 468618 - BC_CNV_tombo-MyOv_54.fa
chr11 161478 157037 162384 162384 165919 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_31300_ch_300_strand.fast5_template_deepnano 154265 172949 - BC_CNV_tombo-MyOv_54.fa
chr15 203125 194577 199563 206000 211674 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_37068_ch_313_strand.fast5_template_deepnano 182204 229681 - BC_CNV_tombo-MyOv_54.fa
chr12 900691 890019 895552 907800 911364 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_29748_ch_10_strand.fast5_template_deepnano 886217 924568 + BC_CNV_tombo-MyOv_54.fa
chr14 239606 232290 235493 241357 246923 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_38092_ch_228_strand.fast5_template_deepnano 232271 276492 + BC_CNV_tombo-MyOv_54.fa
chr5 327491 322562 328140 328140 332421 I0013833_20180226_FAH59201_MN17490_sequencing_run_1002_17038_read_20652_ch_255_strand.fast5_template_deepnano 312046 335412 + BC_CNV_tombo-MyOv_54.fa