forked from WieheLab/ARMADiLLO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMutability.csv
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
1025 lines (1025 loc) · 77.7 KB
/
Mutability.csv
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
Fivemer Mutability Source lower25 upper25
"TCGGG" "0.0250144523428454" "Measured" "0.118862676469642" "0.0544760826072611"
"GCCGG" "0.0362888192124439" "Measured" "0.0165064202023042" "0.0583063759846407"
"GCCGC" "0.0582586813691011" "Measured" "0.0306241306770313" "0.0894815919663811"
"CCCGC" "0.0623151320628074" "Measured" "0.0197007526067768" "0.108767722685434"
"CCGGG" "0.0627625532316596" "Measured" "0.0605059959629277" "0.0688848799320449"
"GGGGC" "0.0634527826871822" "Measured" "0.0431958991201684" "0.0876179493790086"
"AGGTC" "0.0634529299708735" "Measured" "0.0477358741645842" "0.0830782779737031"
"GCCGA" "0.0696285232894252" "Measured" "0.0350950110652766" "0.108450704521508"
"CTGAC" "0.0766843505170666" "Measured" "0.0560479202509092" "0.102044043347462"
"CAGGG" "0.0801581022385171" "Measured" "0.067962184895191" "0.0972912429001689"
"CAGAC" "0.0805308305370234" "Measured" "0.0532783077635065" "0.112743534293723"
"ATGGG" "0.0828673084836298" "Inferred" "0.0637252094044029" "0.10784011270678"
"CCCCC" "0.0830714931948824" "Measured" "0.0538189448662638" "0.117440710978443"
"CCCGT" "0.0836420480152188" "Measured" "0.046625217562875" "0.125810690428186"
"CCCGG" "0.0882416581028815" "Measured" "0.0550959947969418" "0.126822439754524"
"GAGGG" "0.089173349721824" "Inferred" "0.0504206011775451" "0.13438741902502"
"GCCAA" "0.0901190198185244" "Measured" "0.0657066195600498" "0.120082171824448"
"CCCTA" "0.0911872337021372" "Inferred" "0.0547614831890896" "0.133229531064412"
"GCCAT" "0.093704051676813" "Measured" "0.0638796726608416" "0.129299997334716"
"CAGGC" "0.0945887871202347" "Measured" "0.0796030789799981" "0.115400555912862"
"GCCCT" "0.0972946710341211" "Measured" "0.0279424850887328" "0.17263958266991"
"GCCCC" "0.0983114130682428" "Measured" "0.0562759953911824" "0.14640218120275"
"GTCCG" "0.0987707129991059" "Measured" "0.0741138564156373" "0.129511209960384"
"TTGGG" "0.103360086686847" "Inferred" "0.0888830734390444" "0.124203416201171"
"GTCGA" "0.105158903595848" "Measured" "0.0687319832118731" "0.1480629357934"
"GACGA" "0.105858851079888" "Measured" "0.088008192592147" "0.13022973364239"
"GCCGT" "0.106062459583482" "Measured" "0.0643698291489732" "0.154287855066449"
"AAGGG" "0.106985565155715" "Measured" "0.100631456138566" "0.119929296584824"
"CCCTT" "0.111392835535941" "Inferred" "0.0643818509660692" "0.165264902014489"
"AAGGC" "0.111999820209258" "Measured" "0.0905120845147319" "0.140386024162676"
"AGGAG" "0.113910877547806" "Measured" "0.0752925554399913" "0.159545376749814"
"TCGGC" "0.11412852098238" "Inferred" "0.0903326610325801" "0.144953963461511"
"CCGGC" "0.120641765603095" "Inferred" "0.0939091883834408" "0.154805099311061"
"GCGGG" "0.1222955703284" "Inferred" "0.0864498162011549" "0.165673944673582"
"AGGGG" "0.125240874833127" "Inferred" "0.0855510530826158" "0.17322601833011"
"GCCTC" "0.126466708743036" "Measured" "0.110145968651257" "0.150576984339787"
"GCCCG" "0.128009275320842" "Inferred" "0.0929636675569035" "0.170939430765256"
"GACTG" "0.129846084231183" "Measured" "0.0953024670490654" "0.172387384703655"
"GTCAG" "0.13160253107688" "Measured" "0.0935198147473466" "0.177791116520556"
"GGCAA" "0.132724607226982" "Measured" "0.101246918400852" "0.172377277838069"
"ACGGC" "0.13438147789458" "Measured" "0.121059477080931" "0.15598051306513"
"GAGGC" "0.13438147789458" "Inferred" "0.121059477080931" "0.15598051306513"
"CGGGG" "0.136842080086735" "Inferred" "0.103054244374606" "0.18002732362247"
"TTGGC" "0.137827014342461" "Inferred" "0.0668741079391659" "0.234104901652573"
"CCCAC" "0.138665837134896" "Measured" "0.0985665061125907" "0.187306091475476"
"GCCCA" "0.139483677858247" "Measured" "0.135153812385479" "0.152404840375429"
"TGGGG" "0.141635097395701" "Inferred" "0.105677344310329" "0.186316661125623"
"GTCAA" "0.143219437908652" "Measured" "0.0765339515675074" "0.218726320075462"
"GGCCC" "0.145961657240113" "Measured" "0.131773041429325" "0.169140571942496"
"GCCAC" "0.146344568300279" "Measured" "0.0755643235372799" "0.226138696812328"
"ATGGC" "0.147584591202822" "Inferred" "0.0409329927000555" "0.291385990345019"
"CTGTC" "0.14762664193902" "Measured" "0.123693914270925" "0.180652220842773"
"TGCGA" "0.148010456342955" "Measured" "0.103589167139018" "0.201548237280168"
"GACAG" "0.148230705463979" "Measured" "0.0897913499850993" "0.21580011860479"
"CTGGC" "0.148636571148017" "Inferred" "0.0636918651789578" "0.263780988087501"
"GTCCT" "0.14898218378621" "Measured" "0.109555897136118" "0.197584814327474"
"CACGG" "0.149701310228561" "Measured" "0.0334048608523102" "0.275218397057594"
"GGCCT" "0.154030219297784" "Measured" "0.125904853282409" "0.191642855710118"
"CTCAC" "0.156222138643794" "Measured" "0.128427070978268" "0.193639484834025"
"GTCAC" "0.156909060593469" "Measured" "0.125736484717238" "0.197746224966488"
"AAGTC" "0.158174266703608" "Measured" "0.126194508846736" "0.199896541612648"
"GCGAC" "0.158205389339716" "Measured" "0.0453669418618341" "0.280788270823889"
"ATGAC" "0.16038509821253" "Inferred" "0.0969956936153486" "0.23365319285717"
"AAGCC" "0.16130394729767" "Measured" "0.146979540276903" "0.185563639557181"
"CCGCC" "0.16130394729767" "Inferred" "0.146979540276903" "0.185563639557181"
"CTGCC" "0.16130394729767" "Inferred" "0.146979540276903" "0.185563639557181"
"GACGG" "0.161804426609541" "Measured" "0.156642458673067" "0.17693250609002"
"GACAA" "0.162327615049297" "Measured" "0.147254231199124" "0.187399335484894"
"TGGGC" "0.162430996587593" "Inferred" "0.0878388444182166" "0.263863576655071"
"GGCCA" "0.16346742360112" "Measured" "0.143928802284645" "0.193074586375681"
"GGGGG" "0.163534126121497" "Measured" "0.126432656759493" "0.210708245387644"
"CTTGT" "0.164961404028383" "Measured" "0.487297976925116" "0.374329862089167"
"TAGGC" "0.167254789573914" "Inferred" "0.0780687394291304" "0.287787313144706"
"AGACT" "0.167560178387197" "Measured" "0.141147266379274" "0.204293719213084"
"TGGAC" "0.169149594431168" "Inferred" "0.103461658957049" "0.245256056524416"
"CCCAA" "0.169311715907741" "Inferred" "0.12603426269956" "0.223017681374834"
"GGGTC" "0.169930383224358" "Measured" "0.160486647628578" "0.18984073700492"
"TAGGG" "0.171141486426442" "Inferred" "0.121556434319345" "0.231267752882692"
"ACCGT" "0.172909691059101" "Measured" "0.146327013927911" "0.210142492567254"
"TCGAG" "0.173782901511889" "Measured" "0.021502837681358" "0.336766873864577"
"TCCGG" "0.174034971440054" "Measured" "0.120932280182001" "0.237857097105888"
"ACGGG" "0.175490373678156" "Inferred" "0.123420481552411" "0.238369343624723"
"GGCAT" "0.175767216407082" "Measured" "0.139187724630175" "0.223172837735559"
"ACGAC" "0.177036983201134" "Inferred" "0.140638710452568" "0.224339594965435"
"CCCAG" "0.177548510112234" "Inferred" "0.11829751695491" "0.247735349051583"
"CCCCA" "0.178577439897744" "Inferred" "0.133492189573948" "0.234661911457673"
"GAGAC" "0.178826722859457" "Measured" "0.114275904296261" "0.25439211688521"
"CGGGC" "0.179391548954433" "Inferred" "0.0898977857777713" "0.300979331840623"
"TTGAC" "0.179613581789944" "Inferred" "0.0861438915236864" "0.284146312965809"
"CTGGG" "0.179743043590967" "Measured" "0.0907558075697076" "0.279801294535753"
"TGCAG" "0.17985693869985" "Inferred" "0.116791479141605" "0.254000428387467"
"TCGCA" "0.180692347223695" "Measured" "0.0397423123794281" "0.332771867986944"
"GGCGT" "0.18106073768568" "Measured" "0.145535142429255" "0.227738509343126"
"GGCGC" "0.181773336943072" "Measured" "0.1771854080068" "0.197557333809379"
"GCCTT" "0.184623783735263" "Measured" "0.138992792493544" "0.241626412088137"
"CCCGA" "0.18467005718424" "Measured" "0.0947270564477732" "0.28598754517857"
"GTCTT" "0.185164415833998" "Measured" "0.085359855055874" "0.41431495604818"
"GGCTG" "0.185801354707199" "Measured" "0.158674148743132" "0.224372728577179"
"CCCAT" "0.186149717435911" "Inferred" "0.134051235847043" "0.249713823833231"
"GTGGC" "0.186472693912845" "Measured" "0.148019581515422" "0.236411324391498"
"GGGCC" "0.187450269411417" "Inferred" "0.168959372645721" "0.217486896618817"
"TGGCC" "0.187450269411417" "Inferred" "0.168959372645721" "0.217486896618817"
"AGGGC" "0.188591228278043" "Inferred" "0.0758742201651401" "0.340983782015849"
"CCCCG" "0.188667378900237" "Inferred" "0.127247029204175" "0.261708425150989"
"TCGAC" "0.188760859127888" "Inferred" "0.118867732420509" "0.270280440170479"
"TCGGA" "0.18905014911554" "Measured" "0.138461627528966" "0.25128294343912"
"CCAGA" "0.190915179885207" "Measured" "0.163591113514214" "0.229998392888026"
"CTCCA" "0.191004995192022" "Measured" "0.160033915491726" "0.233740753569124"
"GCTGA" "0.191928671490704" "Measured" "0.15845987045756" "0.237219043717231"
"TTGAT" "0.192427217339674" "Measured" "0.0933130527096597" "0.303393660379462"
"ACCGG" "0.194801401995407" "Measured" "0.13398597507517" "0.267615341823453"
"CCCCT" "0.195415441425914" "Inferred" "0.141509162721431" "0.26135805391607"
"GTCCA" "0.195450225707676" "Measured" "0.0735230396756417" "0.32941588801332"
"AAGAC" "0.19548471135554" "Measured" "0.0472710801574096" "0.35573894292129"
"CACCC" "0.204297192113341" "Measured" "0.107841980129851" "0.313335796574975"
"TAGAC" "0.204937827696582" "Inferred" "0.132523155317644" "0.289975351583403"
"ACTGA" "0.205779278677688" "Measured" "0.155842455679062" "0.268390781150295"
"GCCTG" "0.206427773057695" "Measured" "0.19001954259815" "0.235550626072274"
"TTGGA" "0.208840152495572" "Measured" "0.0807008239984447" "0.349842690598582"
"TGCGC" "0.211703421056744" "Measured" "0.129993791144192" "0.306452619494766"
"AGGCC" "0.213596591525164" "Inferred" "0.190939205014539" "0.249410153680454"
"CAGCC" "0.213596591525164" "Measured" "0.190939205014539" "0.249410153680454"
"CGGAC" "0.214420596383229" "Inferred" "0.127860931431969" "0.314187190376328"
"CGGTC" "0.215353853725171" "Measured" "0.13478532119637" "0.309186797943004"
"GTCTG" "0.216084011557631" "Measured" "0.171953031335418" "0.273524376493135"
"GGGAC" "0.223977450113922" "Measured" "0.175061620539793" "0.286688849425856"
"CCCTG" "0.224556143966634" "Measured" "0.204349053073644" "0.258594448415135"
"GTCGT" "0.225604353545718" "Measured" "0.101381625243271" "0.363722858369013"
"GGCGG" "0.232555575944666" "Measured" "0.0418195050492208" "0.437615573932898"
"CCGAC" "0.232822166568225" "Inferred" "0.14454957978583" "0.335435100710433"
"ACCGA" "0.233201996520277" "Measured" "0.181568168244869" "0.299199567236517"
"TTGAA" "0.23696452402571" "Measured" "0.124585237932887" "0.363939300043611"
"GTCTC" "0.2385321937993" "Measured" "0.216411427069942" "0.275345008824575"
"AGGAC" "0.240656386534003" "Measured" "0.0816094945233146" "0.414526163444887"
"GGCCG" "0.242549612775864" "Measured" "0.204559620630558" "0.295479100375846"
"TCGGT" "0.251226513180003" "Measured" "0.103358041465625" "0.414568921582194"
"CACGT" "0.252747338675062" "Measured" "0.208500990637535" "0.312561296465102"
"CCTGC" "0.253848408234844" "Measured" "0.105766620235411" "0.417565624786809"
"GGCAG" "0.255163076130418" "Measured" "0.227622917998932" "0.298419637897536"
"TAGTC" "0.257441603551133" "Inferred" "0.206198908199198" "0.324541045166569"
"GCAGC" "0.262257636675688" "Measured" "0.235124820607942" "0.305543835658505"
"GCGAG" "0.264934578473672" "Measured" "0.24462497952686" "0.301562442725454"
"AGTTA" "0.265936172196234" "Measured" "0.236782280244254" "0.31147002118171"
"GGTTG" "0.265936172196234" "Inferred" "0.236782280244254" "0.31147002118171"
"CTTGA" "0.265976412035437" "Measured" "0.213917459603194" "0.334417800016348"
"ACTCC" "0.266238115359975" "Measured" "0.16998464533992" "0.378890140169551"
"GCTCT" "0.266238115359975" "Inferred" "0.16998464533992" "0.378890140169551"
"CTCGG" "0.269104082563614" "Inferred" "0.229659188374604" "0.325124056680744"
"GGCTC" "0.271791497094698" "Measured" "0.246354670342536" "0.313968931217848"
"ACCAT" "0.272334759817226" "Measured" "0.248348320225267" "0.313095268268241"
"CTCTC" "0.272590656586926" "Measured" "0.250088701752458" "0.31188244187489"
"GTGAA" "0.272955400099705" "Measured" "0.259858400222765" "0.302864696283575"
"CCGTC" "0.274592875248669" "Measured" "0.238470838508395" "0.32762806622867"
"CTCTA" "0.275132188631185" "Inferred" "0.224730495820727" "0.342480253915505"
"CTCTT" "0.275773163531157" "Inferred" "0.237974616323642" "0.330557563142003"
"AGATC" "0.276712086368275" "Measured" "0.239899272523889" "0.330568584221232"
"GCCTA" "0.276875681371651" "Measured" "0.252294660217878" "0.318510462933547"
"GTGGG" "0.278526222761643" "Measured" "0.208531276985253" "0.365676591675324"
"AGGCA" "0.281719253987071" "Measured" "0.141828001125888" "0.438962600163381"
"GCGGC" "0.284712203801049" "Measured" "0.085057581747365" "0.671139465743187"
"TCCGC" "0.286773078195789" "Measured" "0.172403293217858" "0.418806239541129"
"GCCAG" "0.286821632667403" "Measured" "0.0945438539021505" "0.75497055315321"
"CTCCG" "0.288628854406513" "Inferred" "0.247065506595323" "0.347969882458648"
"GGCTT" "0.288944112217252" "Measured" "0.242642760434921" "0.353042562093136"
"CTCGT" "0.289615837445076" "Inferred" "0.251027449970738" "0.346042696964765"
"TCCAG" "0.289703265267601" "Measured" "0.0156579842537163" "0.581592403318149"
"AGGCG" "0.290336787354722" "Inferred" "0.273390805494719" "0.325165647135539"
"GTGCG" "0.290336787354722" "Measured" "0.273390805494719" "0.325165647135539"
"TCGTC" "0.290657915829521" "Inferred" "0.245152030067627" "0.354066458959966"
"CTCGA" "0.291999787287876" "Inferred" "0.245691544398408" "0.356293338193419"
"AAGAG" "0.294141494809925" "Measured" "0.240220979550025" "0.366179233488381"
"GCTCA" "0.294281827955822" "Inferred" "0.232676001146926" "0.374013521802083"
"ACTGT" "0.297539217966506" "Measured" "0.248227335333614" "0.365177601901655"
"AGAAT" "0.301267745215634" "Measured" "0.269634228820413" "0.351457416200345"
"CTGGT" "0.303855175984878" "Measured" "0.282288561092221" "0.344137314553513"
"AGAGC" "0.307135754715532" "Measured" "0.252274206526721" "0.380914889121153"
"AAGAA" "0.307690230498639" "Measured" "0.26169464652607" "0.372637552828467"
"GCTGG" "0.307874039467357" "Measured" "0.163391912487676" "0.471319226254047"
"CTCCT" "0.309338005895686" "Inferred" "0.26922615686654" "0.368503085643893"
"GGAGG" "0.309691146069277" "Measured" "0.249562250796517" "0.388895023223502"
"GCGGA" "0.312717861335034" "Measured" "0.254812858617642" "0.389884272118775"
"ACCCT" "0.313466908548385" "Measured" "0.281981696520907" "0.36425966513079"
"TTTGT" "0.315239651079503" "Measured" "0.313367965637711" "0.336528070609377"
"ATCGC" "0.315983205844383" "Measured" "0.0854584006087299" "0.56597054335721"
"CTCAT" "0.319505764678138" "Measured" "0.246036595654952" "0.412654432936655"
"TCTCG" "0.320296895853222" "Inferred" "0.23147411051273" "0.428847909018874"
"GTTCA" "0.320394415401716" "Measured" "0.211167823676291" "0.449355241528995"
"TCCCT" "0.320933976457901" "Measured" "0.29052996937435" "0.371105451432545"
"CCTCG" "0.320973110752704" "Inferred" "0.252771859326464" "0.408944240490788"
"TCCCC" "0.322308212172442" "Measured" "0.19253984126125" "0.471928695052186"
"TCTCT" "0.322325540551668" "Measured" "0.295367356953933" "0.369136903434616"
"GACTT" "0.32249054645333" "Inferred" "0.256291516687667" "0.408552918806012"
"ACGGT" "0.322797072724022" "Measured" "0.272983472677111" "0.392492895403875"
"GACCT" "0.323978104210867" "Inferred" "0.283940268057556" "0.383970906937329"
"CAGAA" "0.324155757338395" "Measured" "0.251828092994757" "0.416449330544726"
"AGAAC" "0.325037677951244" "Measured" "0.120438486044197" "0.549657099355993"
"GTGAC" "0.325165561978203" "Measured" "0.304529799412371" "0.365829430874923"
"CTCGC" "0.325677598823574" "Inferred" "0.27473710454973" "0.396677737603266"
"TCCAT" "0.328751700346038" "Measured" "0.314927608129998" "0.362824781941317"
"GACGT" "0.329567127294412" "Measured" "0.284769336907641" "0.394664132113554"
"GAAGG" "0.33245926562416" "Measured" "0.144539391576401" "0.540856491215857"
"ACCGC" "0.334204038981474" "Measured" "0.288334391772947" "0.400658504545956"
"GTTGG" "0.336625353450881" "Measured" "0.268725045959092" "0.425259616689925"
"GTCGC" "0.336677457963275" "Inferred" "0.251186319210631" "0.446978410242177"
"GTGTC" "0.337178456094047" "Inferred" "0.294410246053422" "0.400714689445791"
"ATTGA" "0.343292514045496" "Measured" "0.192117697937861" "0.515611940092982"
"TTGTC" "0.343634020540682" "Inferred" "0.285451210704044" "0.422982474919841"
"CGCCA" "0.345654191381544" "Measured" "0.329749753031039" "0.382848703799519"
"CGCTT" "0.345654191381544" "Inferred" "0.329749753031039" "0.382848703799519"
"AAGGA" "0.347938152733542" "Measured" "0.249498680728421" "0.467808376129203"
"ACTCG" "0.348340608449069" "Inferred" "0.294165466319736" "0.423971290651407"
"ACTGG" "0.348804756720727" "Measured" "0.289040263919116" "0.430053378142303"
"CTCAG" "0.349668662571622" "Measured" "0.299727820828959" "0.421146843975837"
"ATCAT" "0.350257599134266" "Measured" "0.275051908393536" "0.447036904239278"
"AGTCT" "0.353104113395218" "Measured" "0.299288169026642" "0.428668999090574"
"GATCT" "0.35470726836944" "Measured" "0.210924837117547" "0.52033738497898"
"TATCT" "0.356723178298049" "Measured" "0.311817864933845" "0.423600344100072"
"ATCGG" "0.357658211752095" "Measured" "0.295117403998432" "0.442228463987849"
"CACTT" "0.35855518962396" "Inferred" "0.104812881296079" "0.634382190499209"
"CTCCC" "0.359345749731462" "Inferred" "0.303412901814231" "0.437411983611802"
"CACAA" "0.361105157888153" "Inferred" "0.273883490599031" "0.470568579361874"
"CTCTG" "0.362011713958898" "Measured" "0.304177532777401" "0.442143487345691"
"ACACA" "0.365200208408448" "Measured" "0.28587369318535" "0.467020706578477"
"AGTGC" "0.367483481994113" "Measured" "0.171879413848587" "0.585722168047659"
"TTGGT" "0.368360023179663" "Measured" "0.298462160594399" "0.460946492969847"
"GCTGT" "0.368475543458875" "Measured" "0.29788554862747" "0.461761260801083"
"GTCCC" "0.368711399764968" "Inferred" "0.274630195558971" "0.490157309114093"
"TCCGA" "0.369010738005221" "Measured" "0.191191440853608" "0.569558722207967"
"CACAT" "0.369933160235327" "Measured" "0.181607973497812" "0.581043849297997"
"ACAGG" "0.370332841182974" "Measured" "0.219465304357232" "0.544010498108487"
"AGAAA" "0.373123648735579" "Measured" "0.255459650766334" "0.513769662592307"
"CACTC" "0.373512218917232" "Inferred" "0.149176406973434" "0.620853980171438"
"TTTCC" "0.373926586415758" "Inferred" "0.258022266145186" "0.512862378368387"
"TTTCG" "0.373926586415758" "Inferred" "0.258022266145186" "0.512862378368387"
"TTTCT" "0.373926586415758" "Inferred" "0.258022266145186" "0.512862378368387"
"TGTGT" "0.374304693422898" "Measured" "0.187174094594291" "0.584490052892262"
"GCTCC" "0.37435567634647" "Measured" "0.292963575685539" "0.478805677868198"
"GCGCC" "0.375794927593986" "Inferred" "0.112639581763814" "0.939417222798733"
"GTGCC" "0.375794927593986" "Inferred" "0.112639581763814" "0.939417222798733"
"TCGCC" "0.375794927593986" "Inferred" "0.112639581763814" "0.939417222798733"
"TTGCC" "0.375794927593986" "Inferred" "0.112639581763814" "0.939417222798733"
"CCTGA" "0.376944437754957" "Measured" "0.295480348757033" "0.481625878658982"
"GGAAC" "0.377034304537359" "Measured" "0.330782083737767" "0.446509412458597"
"GTCGG" "0.377486237495051" "Inferred" "0.287435966139118" "0.495441687536344"
"GAGAG" "0.377747986875991" "Inferred" "0.235402866738165" "0.401689466459779"
"ATCCA" "0.381909359259916" "Measured" "0.209930422297982" "0.57741145534573"
"CTGGA" "0.382890262025186" "Measured" "0.365212827276856" "0.424151273196089"
"TCCTG" "0.386445426382894" "Measured" "0.379405814395998" "0.417287590040994"
"CGGAG" "0.388116217493435" "Inferred" "0.248213992790264" "0.442862530622288"
"AGATT" "0.38987297364042" "Measured" "0.317864653607247" "0.485894960201211"
"AATCC" "0.391097820045768" "Inferred" "0.278932512701626" "0.527352236574789"
"ACCAC" "0.396255835283028" "Measured" "0.330504798966871" "0.486413681333284"
"ATGTC" "0.397290436695719" "Inferred" "0.330185010087756" "0.488866397827631"
"TGGTC" "0.398799379983537" "Inferred" "0.335678138231112" "0.486484097457102"
"TGCAT" "0.398936839111201" "Inferred" "0.136502655015377" "0.685942965525944"
"CTTCC" "0.399530859738692" "Inferred" "0.302369237292322" "0.521301012352394"
"CTTCG" "0.399530859738692" "Inferred" "0.302369237292322" "0.521301012352394"
"CTTCT" "0.399530859738692" "Inferred" "0.302369237292322" "0.521301012352394"
"GACGC" "0.40073182347185" "Inferred" "0.294654573841437" "0.531491574907922"
"GGTCC" "0.400940540042374" "Measured" "0.328854235828242" "0.497722201659917"
"GTCAT" "0.404690365415935" "Inferred" "0.335837383419315" "0.49846966993062"
"CCTCA" "0.405507147264181" "Inferred" "0.314904353858646" "0.521086571694027"
"GACCC" "0.405509798896029" "Measured" "0.337422222502211" "0.498574169637618"
"TGGAG" "0.405534944043279" "Inferred" "0.340937249979985" "0.495110981233618"
"CTCAA" "0.406196857717191" "Measured" "0.363709657995614" "0.473703170189024"
"ATTCA" "0.408840158969062" "Inferred" "0.303205061066242" "0.539657179970856"
"ATTCC" "0.408840158969062" "Inferred" "0.303205061066242" "0.539657179970856"
"ATTCG" "0.408840158969062" "Inferred" "0.303205061066242" "0.539657179970856"
"ATTCT" "0.408840158969062" "Inferred" "0.303205061066242" "0.539657179970856"
"TATGA" "0.409852695041115" "Measured" "0.356951361022941" "0.487998317865109"
"GCGCT" "0.410536033392182" "Measured" "0.3405719292552" "0.50578651558045"
"GATCA" "0.411624928142548" "Inferred" "0.362830378925425" "0.485772924321055"
"CACCG" "0.415911987946885" "Inferred" "0.228053415007731" "0.629388063146164"
"GACCG" "0.41651741578273" "Inferred" "0.343017668319242" "0.515671955965388"
"GGCGA" "0.417336175462616" "Inferred" "0.25186482507138" "0.608512748900973"
"AGAGT" "0.421551254853887" "Measured" "0.395618637529046" "0.473448716994302"
"GTGCA" "0.421784696713259" "Measured" "0.24199538200337" "0.627553234755171"
"TCTGA" "0.422648436512759" "Measured" "0.371244521493502" "0.500084775677931"
"ACGAG" "0.423038494643948" "Measured" "0.359696950201351" "0.512436488303501"
"GTTGC" "0.425249673145245" "Inferred" "0.334361285127552" "0.546611516371815"
"CTTCA" "0.427458757429801" "Measured" "0.304876708614082" "0.576369515207779"
"CGATG" "0.429148055426955" "Inferred" "0.364780491717729" "0.519948377985228"
"CAGAT" "0.429462130625435" "Measured" "0.336852134165475" "0.548524230945745"
"GGTCG" "0.430323731902254" "Inferred" "0.33435576604958" "0.552796870709932"
"CCTCT" "0.433234349501685" "Inferred" "0.321416686160218" "0.571736461113831"
"TCTCA" "0.433234349501685" "Inferred" "0.321416686160218" "0.571736461113831"
"GACAT" "0.434111165802464" "Measured" "0.186568472573835" "0.708392313543999"
"GGTCA" "0.436455233564952" "Inferred" "0.373142564670918" "0.526650736463092"
"TATGT" "0.438050591520435" "Measured" "0.305754383266075" "0.597327897563583"
"CAGAG" "0.440740029747316" "Inferred" "0.316230495973818" "0.519593321165331"
"GCGTC" "0.443798172732497" "Measured" "0.324199308826993" "0.590732148446478"
"GACTC" "0.443860613326161" "Measured" "0.407535246763132" "0.50752493763646"
"CATCA" "0.451597996845363" "Inferred" "0.330787483842383" "0.600224040633986"
"ACTCA" "0.451930157898917" "Inferred" "0.363210923364889" "0.568485382202186"
"GGACA" "0.452383747069784" "Measured" "0.416371830074475" "0.516259592008628"
"GTTCC" "0.453063030752735" "Inferred" "0.349223679761217" "0.584808149191786"
"GTTCG" "0.453063030752735" "Inferred" "0.349223679761217" "0.584808149191786"
"GTTCT" "0.453063030752735" "Inferred" "0.349223679761217" "0.584808149191786"
"AATCG" "0.453651000170254" "Inferred" "0.327440954284603" "0.607803028636251"
"TCTGT" "0.454857751445873" "Measured" "0.421120941299185" "0.516610872286612"
"GAGTC" "0.455906892345001" "Measured" "0.317913463560288" "0.621981252152425"
"AGATA" "0.456974861326439" "Measured" "0.345094185126936" "0.597002248566032"
"ATGAG" "0.458477000172762" "Inferred" "0.362456417736613" "0.58273681573638"
"CGTCT" "0.46037344688853" "Inferred" "0.387925598071718" "0.561177337747763"
"ATCAA" "0.461050124151539" "Measured" "0.414670686242228" "0.535827283068573"
"GCGAA" "0.461669650489793" "Measured" "0.374426649221855" "0.577348531601531"
"TATCA" "0.461863013469815" "Measured" "0.314054836053485" "0.638118980645314"
"CATCC" "0.463707027032324" "Inferred" "0.330937169963953" "0.625038253229958"
"TAGAG" "0.464026270581167" "Inferred" "0.393499876965252" "0.563133696674772"
"ATCGT" "0.465833645704445" "Measured" "0.319427588562152" "0.640932058002416"
"CACAC" "0.466294726092384" "Inferred" "0.32043581578853" "0.640874391136979"
"CACCA" "0.466344733240915" "Inferred" "0.268498351734032" "0.692914949607115"
"TATCC" "0.466526677987047" "Measured" "0.413842892917005" "0.547945504542038"
"ATTTT" "0.466810302543158" "Measured" "0.380445297439746" "0.581927818579188"
"ACCAA" "0.468613636199925" "Measured" "0.421283045211624" "0.544807811870497"
"CCCTC" "0.474043820104024" "Measured" "0.37661561329086" "0.600670075987281"
"GCAGG" "0.474923450426391" "Measured" "0.370743880959107" "0.608355248531621"
"GGGGT" "0.475138619036225" "Inferred" "0.383954423437444" "0.595588296274809"
"TCTGG" "0.475419998917493" "Measured" "0.432629308809501" "0.547493501855427"
"TGTCT" "0.476096748062117" "Inferred" "0.381758186405317" "0.599759805941606"
"TCACA" "0.476878334654434" "Measured" "0.399291507870529" "0.583837798365974"
"TTTCA" "0.478667304075668" "Measured" "0.393570650908353" "0.593246783175793"
"AATGA" "0.482637919638927" "Measured" "0.369246695074352" "0.62575653450597"
"ACGCC" "0.483040417742144" "Inferred" "0.0954696025072696" "1.31634401441951"
"ATGCC" "0.483040417742144" "Inferred" "0.0954696025072696" "1.31634401441951"
"ACACT" "0.484067458507143" "Measured" "0.403645909262461" "0.594304448450167"
"CGACG" "0.484402193796445" "Inferred" "0.401336824284948" "0.59730362154624"
"TAGAA" "0.485490919767105" "Inferred" "0.417402011045681" "0.583482945241183"
"TGGAA" "0.485951153840811" "Inferred" "0.39856100076789" "0.603272771123937"
"CCGAA" "0.486245629787571" "Inferred" "0.385489371367722" "0.616951490241132"
"ACGTC" "0.487336368017346" "Measured" "0.414020452798538" "0.590669067726433"
"AGTGA" "0.488871036493195" "Measured" "0.41062163130219" "0.597231751877724"
"CCTCC" "0.49071739867514" "Inferred" "0.398334597204563" "0.61332523436918"
"TGAGA" "0.491233963518327" "Measured" "0.439497620640088" "0.573227157690517"
"ACCCG" "0.491441412068161" "Inferred" "0.43078046369071" "0.582371989235401"
"TAGGT" "0.491493896757851" "Inferred" "0.434029560078434" "0.579231094946228"
"CATCG" "0.491631608140543" "Inferred" "0.354025985528992" "0.659518574396121"
"GATCG" "0.491661879436726" "Inferred" "0.381666683913817" "0.631940283120723"
"GCAAA" "0.492801048719844" "Measured" "0.42098313911558" "0.594972331983021"
"TCCCA" "0.493675552677915" "Inferred" "0.395988859941971" "0.621769482889567"
"ACGAA" "0.498777592459528" "Inferred" "0.410709240536558" "0.617567434679536"
"GTTGT" "0.502688347664589" "Inferred" "0.411768598150044" "0.62457046483294"
"CCGAG" "0.503513145682326" "Inferred" "0.377944796995841" "0.583243338896709"
"GGTGT" "0.505059396057576" "Measured" "0.442813830030443" "0.598413371062944"
"ACCCA" "0.505420966028374" "Inferred" "0.435116500570945" "0.606856110847707"
"CGTCA" "0.507543350409291" "Measured" "0.369423363072517" "0.676924742329291"
"GGATT" "0.507819059501691" "Measured" "0.453286959376078" "0.593629546116564"
"ACAAA" "0.508081986065472" "Measured" "0.465915341163458" "0.581543212041267"
"AGGAA" "0.51237465518951" "Measured" "0.353556870406205" "0.702751421843335"
"GGATA" "0.514361296297948" "Measured" "0.467757387954497" "0.592646550821103"
"TGATG" "0.514545275786306" "Inferred" "0.446272055313884" "0.614511174391091"
"CGCTC" "0.515861303581047" "Inferred" "0.331053252953928" "0.732443091184669"
"ATTGG" "0.516731540474453" "Measured" "0.430419253089214" "0.634871165829263"
"ACTCT" "0.516732466572541" "Inferred" "0.397132706570366" "0.668159621585971"
"TGTTG" "0.518464244053482" "Measured" "0.317437931052115" "0.751424618415759"
"TTCAT" "0.51879786476555" "Measured" "0.270848770410129" "0.798701569371052"
"AATCT" "0.51894151806126" "Inferred" "0.371487356457208" "0.698359138034068"
"AGTCG" "0.519806353734686" "Measured" "0.446996960315193" "0.624632473835609"
"GGCTA" "0.520089771631346" "Measured" "0.433126408497333" "0.639087318165562"
"GTGAG" "0.520176163566858" "Measured" "0.375024216991727" "0.697367614729529"
"TCCGT" "0.520995687937684" "Measured" "0.45201382000613" "0.622067537884769"
"TTTGC" "0.523840955371299" "Inferred" "0.375946207818045" "0.708893291247905"
"CTGAG" "0.525383988721994" "Measured" "0.485119123629962" "0.598009126921225"
"CGGAA" "0.526442025319068" "Inferred" "0.344799423494467" "0.740510068497283"
"TGTCG" "0.528292809850862" "Inferred" "0.423241638386241" "0.665883419087329"
"TGTCA" "0.531358560682211" "Inferred" "0.44263503769691" "0.652810351963909"
"AGAAG" "0.531541267850143" "Measured" "0.388779131766401" "0.707042925816192"
"CACGA" "0.533393052353573" "Inferred" "0.302106971827542" "0.797532712771964"
"GCTGC" "0.534380875209177" "Measured" "0.437055305444573" "0.664620868397871"
"CGTCG" "0.535209296331386" "Inferred" "0.441181063490816" "0.662202978006675"
"ACCCC" "0.53547219191965" "Inferred" "0.463791678291347" "0.6401343470593"
"ATTGC" "0.537426337008707" "Inferred" "0.41725366936587" "0.694981820550508"
"TTCAC" "0.538134343446332" "Measured" "0.469935435243992" "0.639478864564374"
"TCCAA" "0.538445460369127" "Measured" "0.487986687280985" "0.622069009173524"
"TTAGA" "0.539791914650924" "Measured" "0.407307018824663" "0.705524519113401"
"CGGGA" "0.541186809294902" "Inferred" "0.431442048849864" "0.684265194910736"
"AGTAA" "0.541226342983966" "Measured" "0.422384157161627" "0.693404588997965"
"GGAGC" "0.542625082298998" "Measured" "0.382347697032183" "0.736324681099053"
"CCAGG" "0.54634116107546" "Measured" "0.510443819329179" "0.615889602896398"
"ATCAC" "0.547410776457953" "Measured" "0.454033343883112" "0.674505190532542"
"CGAAG" "0.551716670876157" "Inferred" "0.430556589752823" "0.706858948889002"
"CGAGG" "0.553466472218851" "Inferred" "0.459333373501821" "0.681689544328954"
"TTCGA" "0.553558780324464" "Measured" "0.472595319759539" "0.66861789986781"
"CGTGA" "0.554820965649632" "Inferred" "0.442037308314756" "0.701778024457392"
"TATCG" "0.554892259696117" "Inferred" "0.361480106423205" "0.782482205696433"
"TGTCC" "0.55800926327394" "Inferred" "0.452777319507979" "0.697610987131252"
"CATCT" "0.559589800543943" "Inferred" "0.400353302780639" "0.753293429324418"
"ACCAG" "0.559837006896617" "Measured" "0.508895235678316" "0.645261135452757"
"GCTTG" "0.559843346490445" "Measured" "0.509592713703629" "0.644576727093289"
"TGAAG" "0.563865669902136" "Inferred" "0.442512434702807" "0.719949402157898"
"AGTGT" "0.564080674758146" "Measured" "0.430604602228296" "0.732300487260105"
"TGAAT" "0.564970421240546" "Inferred" "0.448698557584095" "0.716040827527323"
"CGCCT" "0.566037769873559" "Measured" "0.348412632316506" "0.818527191868848"
"AATTA" "0.570327752047169" "Measured" "0.236609010192161" "0.939175013638295"
"TTTGA" "0.570739210165807" "Measured" "0.51386279680068" "0.662769486439621"
"CTGAA" "0.571100904381494" "Measured" "0.514742638950534" "0.662635310757496"
"CCAAC" "0.574536268678699" "Measured" "0.508526689716607" "0.675933584921593"
"GCTTA" "0.574674464635209" "Measured" "0.518739708747004" "0.666005469785912"
"CGTCC" "0.574831234228823" "Inferred" "0.480561971653133" "0.704506402065239"
"TGACG" "0.57609568120173" "Inferred" "0.502120714172422" "0.685554435289174"
"TGCTA" "0.576723253528801" "Inferred" "0.460782234499562" "0.728186714033393"
"GGACT" "0.577462739245247" "Measured" "0.496344764027284" "0.694148703500453"
"GCAGA" "0.578422141955528" "Measured" "0.550227746526924" "0.642243619455025"
"ATTTA" "0.579839094773273" "Measured" "0.504374117114165" "0.691018429679424"
"CGAAA" "0.58104326845967" "Inferred" "0.468388119552338" "0.729486943964837"
"TGTGG" "0.582443940649239" "Inferred" "0.47258591712947" "0.728176763161058"
"CGGGT" "0.583053474985818" "Inferred" "0.50369170913155" "0.698327583225202"
"CACCT" "0.583524658056113" "Inferred" "0.311608518855665" "0.891382161486968"
"TGAAA" "0.589002753545146" "Inferred" "0.474939460245249" "0.739344826508614"
"GACAC" "0.591861797858643" "Measured" "0.506449718909668" "0.713728755204298"
"TGACA" "0.592512224294332" "Inferred" "0.450369372669712" "0.771150016398885"
"CGACC" "0.594024506087266" "Inferred" "0.463792676948474" "0.760844422533615"
"TGAGG" "0.594594758676091" "Measured" "0.488396544635596" "0.737416183914309"
"GCGGT" "0.59549222093353" "Inferred" "0.504792798572546" "0.722870132392547"
"ATCCG" "0.59568541704332" "Measured" "0.553642108855156" "0.674419113966756"
"GGATC" "0.596126404183306" "Inferred" "0.505562904009613" "0.72340745506255"
"TTAGT" "0.596742770932713" "Measured" "0.437933382662321" "0.79230767413439"
"CTTGC" "0.597022103598052" "Measured" "0.5208578716676" "0.7099590555546"
"TGTGC" "0.597084937697348" "Measured" "0.537858697077717" "0.693087768519284"
"GTGGA" "0.598625586754244" "Measured" "0.405747518514182" "0.828375139265165"
"CCAGT" "0.60206674138014" "Inferred" "0.508576283440797" "0.732640636573093"
"AGTTG" "0.604579079536669" "Measured" "0.531033374133632" "0.715362966058047"
"TTTGG" "0.606569201745205" "Measured" "0.501712088789324" "0.748787074541973"
"ACTTT" "0.608341784471225" "Measured" "0.549322154596629" "0.704831353876898"
"GGGAA" "0.609353988675025" "Measured" "0.584425496427047" "0.671814765719979"
"GGTGC" "0.610323174236835" "Inferred" "0.486040473578263" "0.772197855286738"
"ACAAC" "0.612111709748325" "Measured" "0.494340368893767" "0.76758519327334"
"CGAGC" "0.612127548562224" "Inferred" "0.508961471849255" "0.752996743514671"
"TTTTA" "0.612280488026888" "Inferred" "0.519667069764028" "0.742606444616156"
"TCACG" "0.61348505262539" "Measured" "0.499097769307995" "0.765659067697656"
"CGTGC" "0.615186532368731" "Inferred" "0.518276448503126" "0.749988148193177"
"GGAGA" "0.616239662665002" "Inferred" "0.519265889174054" "0.751169834164644"
"GTTTG" "0.616399682024352" "Inferred" "0.483405522938572" "0.787360095281713"
"GGACC" "0.616877306564539" "Inferred" "0.532628992253451" "0.739121293645596"
"CCTGT" "0.616954227020029" "Measured" "0.466002114157258" "0.80590675045788"
"CTTGG" "0.618487451587675" "Measured" "0.509493019162431" "0.765576731355789"
"ATCCC" "0.618706149103805" "Measured" "0.49643997183215" "0.779080644078108"
"GCACA" "0.619978967921108" "Measured" "0.573438918074932" "0.704705732919089"
"CCTTC" "0.622180079380336" "Measured" "0.553472465603427" "0.729209982611825"
"TCCTC" "0.622199680146771" "Measured" "0.594747440228052" "0.687975416801161"
"AACGC" "0.624482589049406" "Measured" "0.520812006204855" "0.766617281128589"
"CACTA" "0.625055464930266" "Measured" "0.294051280887846" "0.994559043675393"
"GCAAT" "0.625282750822816" "Inferred" "0.533870663808694" "0.755208231888149"
"AGTCA" "0.62626188779947" "Inferred" "0.512127510722903" "0.778969967464726"
"AGGAT" "0.627701113290615" "Measured" "0.415414968637148" "0.878649607562288"
"GATCC" "0.628434862726918" "Measured" "0.386564340401133" "0.909012928914853"
"ATTGT" "0.630890249222832" "Inferred" "0.506502751565264" "0.794136526751446"
"CGCAT" "0.635891949488039" "Measured" "0.314997373514238" "0.99595337788564"
"TGTGA" "0.636405060247548" "Inferred" "0.517319127226392" "0.794689450013666"
"CGAAT" "0.636759664058007" "Measured" "0.514247504402714" "0.798492121771276"
"ACAGA" "0.63833589113761" "Measured" "0.562803624508923" "0.7531855412701"
"CACGC" "0.638582620557805" "Inferred" "0.34865929701704" "0.967838524547068"
"GTGGT" "0.638670361968183" "Measured" "0.5842672401636" "0.732411468527571"
"CAGGA" "0.639447702517822" "Measured" "0.29311009227005" "1.02517117669644"
"ATGGT" "0.641281396801816" "Inferred" "0.528728730774668" "0.793332870528743"
"CCTTG" "0.641489329317394" "Measured" "0.53543726594795" "0.787053007691628"
"GTGCT" "0.6435224375273" "Measured" "0.472371867794272" "0.854309848648757"
"TGGGT" "0.643760225549286" "Inferred" "0.572635028617343" "0.754536910081758"
"TATGC" "0.645245210584702" "Measured" "0.585199465792118" "0.74503390850082"
"TGGGA" "0.645261419783552" "Inferred" "0.504635460186447" "0.82563133088654"
"CGTTT" "0.646196295218293" "Inferred" "0.555687546095524" "0.776506578158243"
"TGAGT" "0.646943587470823" "Inferred" "0.488551510068582" "0.845183227084529"
"CTTTC" "0.648153929990695" "Inferred" "0.49804769127903" "0.838182280225065"
"TCTAA" "0.650052809828843" "Measured" "0.548847116785963" "0.791297573174061"
"ACATC" "0.650775586385593" "Measured" "0.590406022537279" "0.751228738921416"
"AGGGA" "0.650996860542941" "Measured" "0.539189971693232" "0.802900967144458"
"TGACC" "0.652165360209867" "Inferred" "0.537369943077448" "0.807129967154831"
"TTGAG" "0.652623671954316" "Measured" "0.34821538014397" "0.489920934377252"
"AGATG" "0.654570577794233" "Inferred" "0.591591406875077" "0.757867084452691"
"ATGAA" "0.654910348660755" "Inferred" "0.451782369141376" "0.898376591618549"
"AGACG" "0.657572039045967" "Inferred" "0.605990955941359" "0.749655328589998"
"AAACT" "0.65892399612251" "Measured" "0.33143378650054" "1.02699968404061"
"CAACC" "0.65892399612251" "Inferred" "0.33143378650054" "1.02699968404061"
"GCTCG" "0.659109256798612" "Measured" "0.501301837455194" "0.857513565303744"
"TCTCC" "0.659109256798612" "Inferred" "0.501301837455194" "0.857513565303744"
"ACGCG" "0.659864017482192" "Inferred" "0.44256788187942" "0.917803530648259"
"CAGCG" "0.659864017482192" "Inferred" "0.44256788187942" "0.917803530648259"
"TAGCG" "0.659864017482192" "Inferred" "0.44256788187942" "0.917803530648259"
"AGTAC" "0.660863940418995" "Measured" "0.555760792844532" "0.806672054375627"
"GCTAG" "0.661159590778047" "Measured" "0.502377526547797" "0.860664831550213"
"TCAGA" "0.661373134589646" "Inferred" "0.566903755666564" "0.796578842979385"
"ACAAG" "0.661962439773297" "Measured" "0.564184298022763" "0.800513208397901"
"TCAAG" "0.663223286339717" "Measured" "0.543354183145589" "0.823942676443451"
"TGCCA" "0.663514382330501" "Inferred" "0.365829825254015" "1.00206715595656"
"AGAGA" "0.666838525534486" "Measured" "0.558617339204021" "0.816132674246598"
"TGAAC" "0.668120396007746" "Inferred" "0.554335207199648" "0.823057502170411"
"GATTG" "0.668417077684726" "Measured" "0.588368648078496" "0.789635698327819"
"CGTGT" "0.670912704360444" "Measured" "0.546805564424596" "0.836343749878199"
"CGAAC" "0.673347184666036" "Inferred" "0.561016490999137" "0.827151732236934"
"TCAGG" "0.673738230516829" "Measured" "0.530054833037936" "0.858919567807936"
"TTTTG" "0.675553115870676" "Inferred" "0.53825797898135" "0.85445797783208"
"CTTTA" "0.675703541603467" "Inferred" "0.534910431263287" "0.858115642272947"
"TCAAT" "0.677017190793963" "Inferred" "0.553449332816141" "0.842284951438507"
"TGTTT" "0.678129308009496" "Inferred" "0.615249949856377" "0.782777068093864"
"AGTCC" "0.679563292982928" "Inferred" "0.53241207434504" "0.868571237799412"
"CAGGT" "0.679971863755598" "Measured" "0.533191557882562" "0.868634061137867"
"AATCA" "0.681534647991993" "Measured" "0.486951141750933" "0.918096303195468"
"GACCA" "0.681840630215933" "Measured" "0.468472442952352" "0.937205812978071"
"TACGA" "0.687422841658758" "Measured" "0.357006523489326" "1.06017998363273"
"GTTTT" "0.691194371764948" "Inferred" "0.534885635687985" "0.890076233632976"
"AGTGG" "0.692204347441108" "Measured" "0.635836989291339" "0.791207039384877"
"CCAAT" "0.694948520943768" "Inferred" "0.566984490631493" "0.865716908480343"
"TAGGA" "0.695584491289133" "Inferred" "0.577940017278299" "0.856072494205372"
"AGGGT" "0.700652976354322" "Measured" "0.596578966380802" "0.847882701299954"
"CTTTG" "0.700952422447865" "Inferred" "0.543685814037441" "0.901393189782969"
"TACAC" "0.701452750005546" "Measured" "0.603418629485731" "0.842691846408222"
"CGATC" "0.701838898413608" "Inferred" "0.627173463404876" "0.819733093562455"
"CGATA" "0.703642605202982" "Inferred" "0.640728754116709" "0.809896313161593"
"GAGCA" "0.704361944249655" "Inferred" "0.576234301059046" "0.875873750969269"
"CAAGA" "0.707890161882105" "Measured" "0.491547416161765" "0.967834386635194"
"ACCTC" "0.71256562435245" "Measured" "0.624947094298864" "0.844073611842564"
"TCAAC" "0.72042918621778" "Inferred" "0.595178976371913" "0.890053198312768"
"CACAG" "0.721667066529978" "Measured" "0.173191802906077" "1.31459237786506"
"TGATT" "0.722053636323551" "Inferred" "0.651153744141235" "0.837427386428933"
"CCAGC" "0.722066771629542" "Inferred" "0.609272651070293" "0.879335559162187"
"CCGGT" "0.72499004807304" "Inferred" "0.648477541405473" "0.846157276733019"
"GCAAG" "0.727540544906254" "Measured" "0.538478075688865" "0.961414830309737"
"AAAGG" "0.72874068481666" "Measured" "0.549820137531384" "0.952546969184176"
"TCAAA" "0.731780814331386" "Measured" "0.626903101909979" "0.881731516251341"
"ATCAG" "0.732906476392782" "Measured" "0.659535485874017" "0.851419789949973"
"CGCGG" "0.735342503964914" "Inferred" "0.556595953008084" "0.959381421583926"
"AGACA" "0.74020211048355" "Measured" "0.551483436658762" "0.974512471462794"
"CGACT" "0.741699870934629" "Inferred" "0.560490451445271" "0.968593229984846"
"TGATC" "0.74178764494185" "Inferred" "0.664932865053172" "0.864331770705447"
"TGAGC" "0.741887685892006" "Inferred" "0.596656774511252" "0.932814105026493"
"AAGTG" "0.743888584652804" "Measured" "0.42280887977536" "1.11078703977281"
"TCTTT" "0.743955182638765" "Inferred" "0.661296321675743" "0.872436895851755"
"TTTTT" "0.745134053646515" "Inferred" "0.590862206161885" "0.94530136424971"
"TGATA" "0.751220359678997" "Inferred" "0.683328977952298" "0.865382081813356"
"AGACC" "0.751307468097114" "Inferred" "0.632897238856663" "0.915993403063277"
"CGGCC" "0.752484243959123" "Measured" "0.146979540276903" "2.38327787515856"
"GAGCC" "0.752484243959123" "Inferred" "0.135228396337015" "2.38327787515856"
"TAGCC" "0.752484243959123" "Inferred" "0.135228396337015" "2.38327787515856"
"CGGCG" "0.754403051300179" "Inferred" "0.636813055696504" "0.91845942063626"
"TGGCG" "0.754403051300179" "Inferred" "0.636813055696504" "0.91845942063626"
"GTTTC" "0.757750673510618" "Measured" "0.65888884208831" "0.903285070653124"
"CTTTT" "0.759487952424042" "Inferred" "0.584495943186865" "0.981259532583915"
"GCTTT" "0.763422616766387" "Measured" "0.660830554834359" "0.91303659962689"
"AGCGC" "0.767342079370325" "Measured" "0.525496415660538" "1.0564510776851"
"CGCAG" "0.768492688790539" "Inferred" "0.637128812839366" "0.947190769483354"
"ACAGC" "0.769352957966385" "Measured" "0.711956853693965" "0.874136254026254"
"GCACC" "0.774533399795143" "Measured" "0.597742953852261" "0.999030119408426"
"GGTTA" "0.778388418306485" "Measured" "0.740731137481708" "0.863989417136736"
"CGTTC" "0.782310726014791" "Inferred" "0.643571279142195" "0.969235479809493"
"AAGAT" "0.782721308507833" "Measured" "0.568272335735961" "1.04538087744148"
"GGTGG" "0.783529228176231" "Measured" "0.688093531132617" "0.927225284034611"
"TCCCG" "0.785439082938603" "Inferred" "0.618445880695446" "1.00081027876087"
"CCAAG" "0.786436968025818" "Inferred" "0.646032232677272" "0.975281160253929"
"AGTTT" "0.786822074786187" "Inferred" "0.670207358699912" "0.951899967850486"
"CCACT" "0.78815046804083" "Inferred" "0.506450362383443" "1.11839557115314"
"TGACT" "0.791992310906689" "Inferred" "0.646681907014533" "0.986084345053863"
"TTCAG" "0.792352958732357" "Measured" "0.650097870343933" "0.983411890961261"
"TTTTC" "0.802549648756624" "Measured" "0.565397154261805" "1.08913403758653"
"GCGTG" "0.808499643705338" "Inferred" "0.573095402636791" "1.0937022605124"
"GGGTG" "0.808499643705338" "Inferred" "0.573095402636791" "1.0937022605124"
"GCGAT" "0.818046894914449" "Inferred" "0.605162980111938" "1.0813172346979"
"ATTTG" "0.819370904974298" "Inferred" "0.611203218544431" "1.07800656688541"
"ACCTT" "0.821216227481735" "Measured" "0.736699669502233" "0.956314420935163"
"CCGGA" "0.821506931941673" "Inferred" "0.676550781489232" "1.01706262339223"
"GCTAA" "0.823384726434596" "Measured" "0.572210665133751" "1.1252739887916"
"CAGTC" "0.824160442898616" "Measured" "0.80525448080591" "0.893829385190291"
"GAGCG" "0.82537669830099" "Inferred" "0.607802674181307" "1.0937886161264"
"ACGGA" "0.825407423819427" "Inferred" "0.654823159343441" "1.04683147449537"
"ACAGT" "0.828740685713437" "Measured" "0.662843149222184" "1.04568331588935"
"TCAGT" "0.834377723016374" "Measured" "0.720294208453697" "0.999853536489897"
"ATCTC" "0.836007998708838" "Measured" "0.748581412650297" "0.974927298170825"
"TGCTG" "0.837096639933902" "Measured" "0.175925006762922" "1.5498280398029"
"CACTG" "0.837674790535648" "Measured" "0.745786130776427" "0.981158827349826"
"CCAAA" "0.839780705009579" "Inferred" "0.668068061788638" "1.06321843606651"
"CCACG" "0.84196496091173" "Inferred" "0.592672873562074" "1.14311667220629"
"CCGCG" "0.84606578340334" "Inferred" "0.628457023219043" "1.11578675181117"
"TCGCG" "0.84606578340334" "Inferred" "0.628457023219043" "1.11578675181117"
"GCATC" "0.847699001378389" "Measured" "0.706757955903418" "1.04085285079516"
"GACTA" "0.848034740068245" "Measured" "0.780538479289148" "0.967764484132121"
"TGTTC" "0.848272346505118" "Inferred" "0.725104616164715" "1.02368819515793"
"CGAGT" "0.848347606187871" "Measured" "0.756646887118259" "0.992301079082085"
"TCTAG" "0.850641689736983" "Measured" "0.597821341774233" "1.15585609230962"
"GGTCT" "0.851583235556566" "Measured" "0.695400785617564" "1.06021773326953"
"ATGGA" "0.852771310418428" "Inferred" "0.694110454483554" "1.06395739189406"
"ACTGC" "0.853831643791103" "Measured" "0.563600161821374" "1.1966536610146"
"GTGTG" "0.860506320477119" "Measured" "0.775612212297937" "0.998402081045532"
"TAGTG" "0.860506320477119" "Inferred" "0.775612212297937" "0.998402081045532"
"TCACC" "0.860932726234032" "Inferred" "0.74027296638439" "1.03462040232381"
"CTGTT" "0.866419208928477" "Measured" "0.732096437150411" "1.05410782897773"
"CGTGG" "0.871565588945219" "Measured" "0.705199959628864" "1.09161405042726"
"CAGTG" "0.873110702757872" "Measured" "0.723381925498223" "1.07661748125199"
"GGAAA" "0.882771830991219" "Measured" "0.751531147696423" "1.06838557885486"
"GATGA" "0.882801731061274" "Measured" "0.743632573059103" "1.07634579528421"
"GATAA" "0.885989055564326" "Measured" "0.636955068854573" "1.1895942671753"
"ACTAT" "0.88613952297606" "Measured" "0.221237782927104" "1.60562175575062"
"TCTGC" "0.888287172829852" "Measured" "0.718181347083408" "1.11310577271378"
"GGAGT" "0.891414252391874" "Measured" "0.727644740078868" "1.1100891468221"
"CTAGA" "0.895509024081374" "Measured" "0.709890576463579" "1.13628506540454"
"ACATA" "0.896347284851254" "Measured" "0.777626325729147" "1.07027746914834"
"ATTTC" "0.897812392655653" "Inferred" "0.609323659283179" "1.24160059241658"
"GTTTA" "0.897812392655653" "Measured" "0.609323659283179" "1.24160059241658"
"CGCGC" "0.898199835657686" "Inferred" "0.721784042845327" "1.12993895885441"
"GGTGA" "0.898256350231963" "Measured" "0.832790460942708" "1.01904905083972"
"TCCTT" "0.898428511137806" "Measured" "0.822599192085232" "1.0295952455129"
"ACACG" "0.900204300058483" "Inferred" "0.742638027150585" "1.11321736546005"
"GGAAG" "0.900313797377729" "Measured" "0.845200845493447" "1.01088028608599"
"TCGAA" "0.901237366563724" "Measured" "0.319416030371866" "1.53856912549868"
"AGAGG" "0.909568938891627" "Measured" "0.703393170060649" "1.17176830171137"
"TGTAA" "0.915635079195066" "Measured" "0.800577406604096" "1.08708998098474"
"CGCGA" "0.917186293930124" "Inferred" "0.681982136008349" "1.20888322589695"
"CCTAA" "0.920413096322792" "Measured" "0.765286385978539" "1.13223133097653"
"AAGGT" "0.924621065393187" "Measured" "0.813442746912746" "1.09275009200156"
"CCACC" "0.928182798314783" "Measured" "0.552993023312467" "1.36054266127493"
"AGCCT" "0.928795820242206" "Measured" "0.8467829937413" "1.06801649290716"
"TCTTG" "0.928990010951419" "Inferred" "0.578600723026354" "1.40239086587263"
"TATTC" "0.935414912420907" "Measured" "0.717086246439335" "1.211359118054"
"TCCAC" "0.935747653246598" "Measured" "0.691212306978756" "1.2379190338598"
"GGGAG" "0.936713520532725" "Measured" "0.821241436001621" "1.10988113061911"
"CGATT" "0.941531377583059" "Measured" "0.853729873294655" "1.08732515642041"
"TGCAC" "0.941743086000857" "Measured" "0.791570677854931" "1.14992080857202"
"CGACA" "0.94286963082287" "Measured" "0.905256273722317" "1.03855769026091"
"GTAGC" "0.947560654648234" "Inferred" "0.770212451332821" "1.18327249718425"
"TCATG" "0.948924358864728" "Inferred" "0.813128518082373" "1.14316783427263"
"TCATT" "0.948924358864728" "Inferred" "0.813128518082373" "1.14316783427263"
"TATAA" "0.957207892907005" "Measured" "0.631189697414542" "1.34218393542139"
"ACTAC" "0.958922509875864" "Inferred" "0.787937418494098" "1.18897105765208"
"CGTTG" "0.9630309671206" "Inferred" "0.830459524522785" "1.15491892064316"
"CGCAC" "0.963776807200098" "Inferred" "0.8234807101781" "1.1634353540966"
"GCTAT" "0.969226591704151" "Measured" "0.879933076766703" "1.11821822817477"
"ACTTC" "0.97632021764656" "Inferred" "0.604706283153187" "1.47386095532095"
"GAGAA" "0.97813498023684" "Measured" "0.728815576691356" "1.28770120472783"
"GATGG" "0.981580561622117" "Measured" "0.8714651419679" "1.15215502786448"
"CGTTA" "0.982710650392458" "Inferred" "0.798198996387732" "1.227750957182"
"TCGTG" "0.987469047557472" "Inferred" "0.827277787928626" "1.20848204661845"
"TGGTG" "0.987469047557472" "Inferred" "0.827277787928626" "1.20848204661845"
"CATTC" "0.990442787489014" "Inferred" "0.751752338603745" "1.29013813905159"
"GAGGT" "0.992645813469847" "Measured" "0.949636592975817" "1.09679562886617"
"GAAAG" "0.999061103419795" "Measured" "0.768910152817836" "1.2907477895056"
"AATGT" "0.999322773956857" "Inferred" "0.479352657699311" "1.64595248028396"
"TATTA" "1.0028562523534" "Measured" "0.894099569890269" "1.17338242705469"
"GAACA" "1.00334864196962" "Inferred" "0.577240209128878" "1.49125689508058"
"TAACA" "1.00334864196962" "Inferred" "0.577240209128878" "1.49125689508058"
"CCATA" "1.00385046508696" "Inferred" "0.901723023770641" "1.16780863574854"
"CCATG" "1.00648999259474" "Inferred" "0.884972412113853" "1.19000088033124"
"CCATT" "1.00648999259474" "Inferred" "0.884972412113853" "1.19000088033124"
"TATTG" "1.00718427004123" "Measured" "0.901057169059818" "1.17534744130162"
"CATTT" "1.01104491936164" "Inferred" "0.776716034277836" "1.30764766588111"
"ACCTA" "1.01167089891823" "Measured" "0.8990116710658" "1.18664254451913"
"CATGT" "1.01220307799309" "Inferred" "0.577585308413386" "1.55257120237085"
"AGTTC" "1.01367945944702" "Inferred" "0.81668024711103" "1.2731148039359"
"CGCCG" "1.01483902730228" "Inferred" "0.774110713342395" "1.31807489533367"
"AGTAT" "1.01660951698386" "Measured" "0.677225336816333" "1.41861030199501"
"TCACT" "1.01980359787111" "Measured" "0.93463489632941" "1.1677856390867"
"CCACA" "1.0201022176392" "Inferred" "0.717508012372725" "1.38552815563579"
"CCGAT" "1.02034140627897" "Inferred" "0.786344159835843" "1.31718511793335"
"CCGTG" "1.02558849582401" "Inferred" "0.861909742072093" "1.25243690174061"
"CGGTG" "1.02558849582401" "Inferred" "0.861909742072093" "1.25243690174061"
"ACTAG" "1.02854271817176" "Measured" "0.935557843409196" "1.18487920618661"
"ATGCG" "1.02939124760966" "Inferred" "0.61174495826412" "1.51044141416098"
"GGGCG" "1.02939124760966" "Measured" "0.61174495826412" "1.51044141416098"
"TTGTG" "1.02978995658426" "Inferred" "0.844499646472189" "1.27850870180943"
"CCTTA" "1.03117021158656" "Inferred" "0.885515515582612" "1.24033835753047"
"TGCCT" "1.03145410655779" "Inferred" "0.725941029340399" "1.40049811981863"
"GGACG" "1.03251375525055" "Measured" "0.713616087602577" "1.41500762648312"
"CCTGG" "1.03845776531393" "Measured" "0.942335497050539" "1.19854234993491"
"TTCTC" "1.04247234931553" "Measured" "0.916535859082102" "1.2326184284491"
"GCATA" "1.04381948898672" "Measured" "0.879272779271903" "1.2726587627372"
"CATTA" "1.045064951771" "Inferred" "0.80966978457502" "1.3448293954962"
"ATCGA" "1.0466915516443" "Inferred" "0.878328817181611" "1.27952375072199"
"TCAGC" "1.04917078117972" "Measured" "0.888233203834344" "1.27473052772682"
"TCTAT" "1.04996526551573" "Inferred" "0.837147108081787" "1.32745452727437"
"GGAAT" "1.05106481782591" "Measured" "0.855493941451804" "1.31137452387191"
"AATTC" "1.05208778658953" "Measured" "0.753356084589778" "1.4156213265547"
"CATGG" "1.05217902151089" "Inferred" "0.707380040291869" "1.46178546017942"
"CGCAA" "1.05783346615117" "Inferred" "0.865474517255405" "1.3153481499026"
"CAAGC" "1.05799731148861" "Measured" "0.890030562235648" "1.29112988741577"
"ATAAG" "1.06005443781422" "Measured" "0.798959778248986" "1.38644162979867"
"GGTTC" "1.0636135619986" "Measured" "0.952453007565913" "1.24028586799896"
"ACGTG" "1.06866253519236" "Inferred" "0.962100757313047" "1.24104704890034"
"AGGTG" "1.06866253519236" "Inferred" "0.962100757313047" "1.24104704890034"
"ACTTA" "1.07070158703489" "Inferred" "0.709595022123973" "1.55414941733386"
"CAAGT" "1.07309642082159" "Inferred" "0.821872672308351" "1.39041600398829"
"GCTAC" "1.07361452402138" "Measured" "0.583056800220872" "1.63029999429871"
"TGCCG" "1.08004347321376" "Inferred" "0.863445034984768" "1.36316563982256"
"TGCTT" "1.08004347321376" "Inferred" "0.863445034984768" "1.36316563982256"
"AACAT" "1.08106870916781" "Measured" "0.933763868569152" "1.29496042608413"
"CGGCA" "1.08388228243995" "Measured" "0.927092065050097" "1.30743267415702"
"ACCTG" "1.08466410838833" "Measured" "0.89800600569093" "1.33813054086069"
"TCATA" "1.08722178646956" "Measured" "0.947766296370144" "1.29364314285629"
"GCATG" "1.090680379585" "Inferred" "0.967076648895583" "1.28146300364323"
"GCATT" "1.090680379585" "Inferred" "0.967076648895583" "1.28146300364323"
"CGCGT" "1.09635648630894" "Inferred" "0.981836736131965" "1.27840474150586"
"CTGTG" "1.10812958349745" "Inferred" "0.905058506959172" "1.37945431208815"
"GAAGT" "1.10891576123452" "Measured" "1.09175630752016" "1.19437729049123"
"ATAGA" "1.11625382852642" "Inferred" "0.878869530473387" "1.42239217984997"
"CTGCG" "1.12393028142765" "Inferred" "0.805990132081204" "1.51109730414898"
"TTGCG" "1.12393028142765" "Inferred" "0.805990132081204" "1.51109730414898"
"GTAGT" "1.12701829804737" "Inferred" "0.903747646271825" "1.41970602515164"
"TGTTA" "1.13745945250545" "Inferred" "0.958452684832937" "1.38652640343741"
"AATAA" "1.14190580462699" "Measured" "1.06294326865608" "1.29120239053786"
"CGAGA" "1.14580207731502" "Measured" "0.785114396791402" "1.5770637931055"
"AAACA" "1.1488678257899" "Inferred" "0.446353144161574" "1.92214537306449"
"CAACG" "1.1488678257899" "Measured" "0.446353144161574" "1.92214537306449"
"ACATG" "1.15955950341065" "Inferred" "1.01067632627736" "1.37986408473575"
"ACATT" "1.15955950341065" "Inferred" "1.01067632627736" "1.37986408473575"
"GCAAC" "1.16208633766585" "Measured" "0.881717417111947" "1.51403229914269"
"AATGC" "1.16365994828307" "Measured" "0.772953126016153" "1.6260407357615"
"GATTC" "1.16924485031026" "Measured" "1.00948794584894" "1.40101971401177"
"AAAAC" "1.17235536324342" "Measured" "1.00145978285484" "1.41546049045418"
"ATGTG" "1.17274064254998" "Inferred" "1.0553450298206" "1.36236953282774"
"AAAGA" "1.17486389899341" "Measured" "0.871095447789238" "1.55099640668072"
"TACCT" "1.18697709980731" "Measured" "1.00113527424404" "1.44592907708112"
"CGCCC" "1.19310240567778" "Inferred" "0.976919276293031" "1.48277296620123"
"AACAG" "1.19430666551049" "Measured" "0.972660469903193" "1.48951446691335"
"TAAGG" "1.19651423137873" "Inferred" "0.981389686391924" "1.48533635401393"
"ACTAA" "1.19656576575459" "Inferred" "0.980566114377384" "1.48626616896614"
"AAACC" "1.20225410399644" "Measured" "0.953933696724519" "1.52462562813664"
"CAACT" "1.20225410399644" "Inferred" "0.953933696724519" "1.52462562813664"
"GTTAT" "1.20611800531168" "Measured" "1.10194110879706" "1.38458401015322"
"CATGC" "1.20718278815214" "Inferred" "0.754179684571859" "1.78337138685421"
"ACAAT" "1.21175991162403" "Measured" "0.986334027868899" "1.51182240883191"
"ACTTG" "1.21471600280809" "Inferred" "0.83493033423563" "1.72571329811541"
"ATAAT" "1.21554727594809" "Measured" "1.03008054266421" "1.47588389995718"
"AATAC" "1.21632402603491" "Inferred" "0.97441869238235" "1.53314709322001"
"AAGCG" "1.21846931524564" "Measured" "1.00023530589829" "1.51175319413698"
"GCGCG" "1.21846931524564" "Inferred" "1.00023530589829" "1.51175319413698"
"TAAGC" "1.21849049229473" "Inferred" "0.998052231335272" "1.51397992716815"
"CTAGG" "1.2286235553417" "Inferred" "1.01471881176176" "1.51820360431781"
"TACAT" "1.22899017930443" "Measured" "1.0491304068625" "1.48454783881958"
"TATAG" "1.23156715253666" "Measured" "1.14382214347394" "1.3951687736421"
"TTCCG" "1.23185210944054" "Measured" "0.433610472415844" "2.10596791001967"
"GAGTT" "1.23468662773141" "Measured" "0.840911607738085" "1.7045103993671"
"GATGC" "1.23834745266544" "Measured" "0.318867404353806" "2.2341017358797"
"TAAGT" "1.24917940809775" "Inferred" "0.994991295875038" "1.5803089339792"
"GCACG" "1.25356829453915" "Measured" "1.0406794479353" "1.54366888196611"
"GATTA" "1.25583055922823" "Measured" "1.00171702096797" "1.58729517925984"
"CCTAT" "1.26233190989128" "Measured" "1.16291292405926" "1.43950241886237"
"TAAGA" "1.26751649648869" "Inferred" "1.05340431981044" "1.55969953348004"
"CTGCA" "1.27115389334791" "Measured" "1.19627482568077" "1.42432786156973"
"TCGAT" "1.27526464864206" "Inferred" "1.00017562602213" "1.62890176789204"
"ATTAA" "1.28263208668995" "Measured" "1.07632922463902" "1.56793683214869"
"GATAG" "1.29101185511586" "Inferred" "1.07632399481982" "1.58521773863489"
"CATAC" "1.29778184347507" "Inferred" "1.00244212597828" "1.67305657191609"
"TGGTT" "1.30281141725229" "Inferred" "1.07377849543793" "1.61208913939263"
"CATAG" "1.30581561355794" "Measured" "1.11417892068288" "1.57788214592082"
"CCATC" "1.30598043272169" "Measured" "1.11157950697012" "1.58082134976103"
"AACAC" "1.3063706997706" "Measured" "1.07733931635483" "1.61586611241317"
"TACAA" "1.30792085164652" "Measured" "1.11428353429776" "1.58211767760314"
"CCTAC" "1.30847253857133" "Measured" "1.22743022437581" "1.47010834173943"
"ATAGC" "1.31457334452924" "Measured" "0.972074162418334" "1.73804178600393"
"AAAGT" "1.31498208250143" "Inferred" "1.07274485774835" "1.63821374224734"
"TTAAA" "1.31832648080921" "Inferred" "1.07557863104385" "1.64227475898355"
"GCTTC" "1.32158869337044" "Measured" "1.1892394543767" "1.53533929207612"
"GAACC" "1.32927636183325" "Inferred" "0.856926783476088" "1.88350081081314"
"TAACC" "1.32927636183325" "Inferred" "0.856926783476088" "1.88350081081314"
"TACAG" "1.33115597049596" "Measured" "1.11295685894578" "1.6313457244681"
"TGGAT" "1.33354168839235" "Inferred" "1.12523861001121" "1.62398235406691"
"TGCCC" "1.33460800857711" "Inferred" "0.90271355923429" "1.84870572367545"
"GTGAT" "1.33724977665527" "Inferred" "1.08061864159645" "1.67624689338471"
"CTTAG" "1.34015615977546" "Measured" "1.11001138800212" "1.65284592771841"
"GATTT" "1.34324692153694" "Inferred" "0.748754143399259" "2.02047506688115"
"GAACG" "1.34707178790209" "Inferred" "1.02612030099707" "1.75099422917052"
"TAACG" "1.34707178790209" "Inferred" "1.02612030099707" "1.75099422917052"
"AATTT" "1.34796636939511" "Inferred" "0.851746415782076" "1.92721237783531"
"CTAAC" "1.36043697384048" "Inferred" "1.12514339486454" "1.67952471663496"
"TATTT" "1.3643950718809" "Inferred" "0.7612299476144" "2.05159815333673"
"GCGCA" "1.36605273389048" "Inferred" "1.16300875233436" "1.65323677394947"
"CATGA" "1.36617782137613" "Inferred" "0.780078355447569" "2.08525585341505"
"GAAGC" "1.36839010824888" "Inferred" "1.09536300713588" "1.72570123508532"
"CGTAT" "1.37245565986601" "Measured" "1.24887287196378" "1.58057288531138"
"GCAGT" "1.37766320908719" "Measured" "1.25774846149634" "1.58243314574508"
"ATAGT" "1.38361300402659" "Inferred" "1.1696409891786" "1.68280667702576"
"CGCTA" "1.39378610511651" "Measured" "1.23322405317055" "1.6401964127817"
"CTAGC" "1.39877693437712" "Inferred" "1.18646511805877" "1.69724440938351"
"GAATT" "1.40126272693982" "Measured" "1.09123231340446" "1.79760190799018"
"ACACC" "1.41340901834214" "Measured" "0.14902824645774" "2.76484669113627"
"GAGAT" "1.41662316537069" "Inferred" "1.14782044769761" "1.77268075472894"
"TATAT" "1.41819112596289" "Measured" "1.29265774318287" "1.63107595671147"
"GTTGA" "1.42081201197677" "Measured" "1.01695097897453" "1.91218592266186"
"CTTAT" "1.43103440647332" "Measured" "0.826583830534377" "2.12362749381981"
"ATTAC" "1.43273584643502" "Measured" "1.23786646463258" "1.71585253739869"
"AATTG" "1.43804081357933" "Measured" "0.888662613433755" "2.07599307472726"
"AAAAG" "1.46504446700628" "Measured" "1.27967970811619" "1.74064653819407"
"AATGG" "1.46759319027466" "Measured" "1.1799520084341" "1.84562866936642"
"TGGCA" "1.47161170743467" "Inferred" "1.24702976937479" "1.78683545754553"
"GAGTG" "1.47237058234209" "Measured" "1.38730813414298" "1.64812158440349"
"CTAAT" "1.47639458701979" "Inferred" "1.21704715225307" "1.82667842844436"
"CTACA" "1.47683998221766" "Measured" "0.806749214788199" "2.23789458978326"
"GTACC" "1.47683998221766" "Inferred" "0.806749214788199" "2.23789458978326"
"GTACT" "1.47683998221766" "Inferred" "0.806749214788199" "2.23789458978326"
"AATAT" "1.4796336558935" "Inferred" "1.22886090925222" "1.82154231499339"
"TTTAG" "1.48471727510286" "Measured" "1.29073090583907" "1.77015267505786"
"CGTAG" "1.48483137649693" "Inferred" "1.29450307409529" "1.76661573750146"
"AGTAG" "1.4902698310319" "Measured" "1.3612131749259" "1.71111751954626"
"TAAAT" "1.49652111472651" "Inferred" "1.17850636157707" "1.90671193913584"
"GATAT" "1.49917331568064" "Measured" "1.0277085806853" "2.06297748044898"
"AAGTT" "1.50324707873453" "Measured" "1.31120415020913" "1.78788035462431"
"GTTAC" "1.50356284088302" "Measured" "1.34012387961993" "1.75961159842704"
"GAACT" "1.51038639779122" "Inferred" "1.06442675355075" "2.04937612551181"
"TAACT" "1.51038639779122" "Inferred" "1.06442675355075" "2.04937612551181"
"TCATC" "1.5130768074969" "Measured" "1.40800509287123" "1.71134431752905"
"AAAGC" "1.51492026846481" "Measured" "1.17529049293791" "1.94785938473201"
"CTAAG" "1.51526779655326" "Inferred" "1.27482734335688" "1.84903899598399"
"TGTAG" "1.52308708295132" "Inferred" "1.3130331412788" "1.82695338858689"
"CATAT" "1.52347581192529" "Inferred" "1.22053545472387" "1.92025247629328"
"ATCTA" "1.5274519926373" "Measured" "1.09080838271569" "2.05817681687248"
"GGGGA" "1.53269188578826" "Measured" "1.32473691028958" "1.83505081930237"
"CCTAG" "1.53416966431022" "Measured" "1.27411031090654" "1.88872399737749"
"CAATC" "1.5394289144828" "Measured" "1.82428025440308" "3.29682622095504"
"GAAAC" "1.54003497793353" "Measured" "1.14815505502831" "2.026771146081"
"ATAAA" "1.54185116052062" "Measured" "1.23892283563392" "1.93974759581066"
"CTAGT" "1.54234304909643" "Inferred" "1.29329327400998" "1.88639123175742"
"GAAAT" "1.54619514607222" "Measured" "1.24779482330428" "1.93983114080198"
"AGCTC" "1.5477324255626" "Measured" "1.2199314263254" "1.97086378328656"
"TTCTT" "1.54815143290148" "Inferred" "0.570813666721098" "2.76021563075502"
"CGCTG" "1.54962916242877" "Measured" "1.3825364021943" "1.81216910793636"
"AACCG" "1.55019809354431" "Inferred" "1.25044505387882" "1.94543336097883"
"TTCTG" "1.55670027880031" "Inferred" "0.522404485595389" "2.85412311058405"
"TTAGG" "1.55782285328818" "Inferred" "1.30784180734121" "1.90375576314267"
"TACCG" "1.56533548924772" "Inferred" "1.18532688823719" "2.04175868420061"
"GTCTA" "1.57414614483605" "Measured" "1.41029096280738" "1.83495860049891"
"GCGTT" "1.58141381153584" "Inferred" "1.31467924488787" "1.94555329332269"
"GCACT" "1.58184870179432" "Measured" "1.39772686346391" "1.86340224170522"
"TGCTC" "1.58336369289872" "Inferred" "1.26610783546997" "1.99814456561173"
"ATACG" "1.58554069483758" "Inferred" "1.16874348283187" "2.09999701143902"
"TTACG" "1.58554069483758" "Inferred" "1.16874348283187" "2.09999701143902"
"ATCTT" "1.58619372657369" "Measured" "1.33227435713058" "1.93781242316553"
"CTGTA" "1.58750376067872" "Measured" "1.4384554263607" "1.83433211181688"
"GAGGA" "1.58994895333548" "Measured" "1.45943078371153" "1.81839774791357"
"TGCGT" "1.59918555179641" "Inferred" "1.13204072947293" "2.16482991410607"
"TGTAT" "1.60004121387841" "Inferred" "1.40656470371992" "1.89206996730154"
"CTTAA" "1.600575708136" "Inferred" "1.4311587637659" "1.8685778171778"
"TTCCA" "1.60606061057828" "Measured" "1.39864290256328" "1.91240131796266"
"CAGTT" "1.60689275361474" "Measured" "1.4109017866541" "1.90185797460136"
"GAAAA" "1.60763557191376" "Measured" "1.27350242286404" "2.04078872781698"
"GTAAC" "1.61155301617718" "Inferred" "1.40988194410816" "1.91248538445943"
"TTAAC" "1.61410141715754" "Inferred" "1.41442763986873" "1.91319345576221"
"GAAGA" "1.61449798620891" "Measured" "1.36861789170683" "1.95982076812868"
"CAAAT" "1.62031965465193" "Measured" "1.46994357173582" "1.87049700230214"
"GTAAA" "1.62429502107899" "Measured" "1.43261042291104" "1.91602574097333"
"TTCCT" "1.63118688567709" "Inferred" "0.599884891658089" "2.90232976096627"
"TCTTA" "1.63475912158501" "Measured" "1.40363745568618" "1.96657143046985"
"GTAGG" "1.63576488612012" "Measured" "1.31980567828445" "2.05247668556555"
"GGATG" "1.64016630130154" "Measured" "1.55186413095962" "1.82949216210737"
"TATAC" "1.64674259696657" "Measured" "1.31850527002581" "2.07640867186883"
"CAAAA" "1.65295446352326" "Inferred" "1.07806858366605" "2.32965170235143"
"AACTT" "1.65448025811404" "Inferred" "1.338433273222" "2.07243258110607"
"ATGAT" "1.65530027380395" "Inferred" "1.33906360857917" "2.07349278481881"
"TTTAA" "1.66233296815653" "Inferred" "1.43522542773884" "1.99182952308435"
"CTGAT" "1.669345008455" "Inferred" "1.38066373669148" "2.06084719129186"
"TAAAA" "1.6706059639535" "Inferred" "1.14001446936239" "2.30409603636302"
"ATAAC" "1.67937772866533" "Measured" "1.39769557221834" "2.0644987471948"
"CCTTT" "1.68373242708492" "Measured" "1.02796040658305" "3.86592249725814"
"TTAGC" "1.68821475259584" "Inferred" "1.44924394131762" "2.03116872976858"
"CTACG" "1.6942414074575" "Inferred" "1.53073775087554" "1.96209943309477"
"GTACA" "1.6942414074575" "Measured" "1.53073775087554" "1.96209943309477"
"TCGTT" "1.69684914091915" "Inferred" "1.41769024016165" "2.08052303033368"
"CGTAA" "1.69854200293238" "Inferred" "1.5023500890024" "1.99935317492663"
"ACGTT" "1.70115270934035" "Inferred" "1.47927635862557" "2.02780912083546"
"TACGC" "1.70389834091102" "Measured" "1.44964996519384" "2.06309589064644"
"AACCT" "1.7058646873062" "Inferred" "1.36943370798356" "2.14736595493251"
"TTAAT" "1.70686750770099" "Inferred" "1.48795064577956" "2.03091642520974"
"TTTAT" "1.71363507533345" "Inferred" "1.53239704657991" "2.00042199829435"
"TACCC" "1.71482971923731" "Inferred" "1.34275496675597" "2.19252694830355"
"GGGCT" "1.71526093389143" "Measured" "1.68442318125433" "1.85174772316143"
"TTCGT" "1.72449646482242" "Inferred" "0.708423915024017" "2.96624712770173"
"GTAAT" "1.72751062935649" "Inferred" "1.50178570149669" "2.05963909626884"
"GTTAG" "1.72922042529433" "Inferred" "1.44800490347824" "2.116944798591"
"AACTA" "1.7298186903397" "Measured" "1.5002767150376" "2.06590636639963"
"ATACC" "1.73519137061494" "Inferred" "1.23824418792072" "2.33901517660129"
"ATACT" "1.73519137061494" "Inferred" "1.23824418792072" "2.33901517660129"
"TTACC" "1.73519137061494" "Inferred" "1.23824418792072" "2.33901517660129"
"TTACT" "1.73519137061494" "Inferred" "1.23824418792072" "2.33901517660129"
"TTAAG" "1.73796607532776" "Inferred" "1.53417479866261" "2.04880487924144"
"TACCA" "1.74271682313209" "Inferred" "1.2537186865429" "2.33905510246573"
"GGTTT" "1.74418571598109" "Measured" "1.39187167279927" "2.20393037625521"
"TTCCC" "1.74506249721325" "Inferred" "0.496737365206513" "3.26811656843104"
"CGTAC" "1.7551504325885" "Measured" "1.31534231001789" "2.30306452824167"
"GTTAA" "1.75543078298195" "Inferred" "1.50542655156386" "2.1135582552629"
"ATAGG" "1.75819890892793" "Measured" "1.52571882738072" "2.09897273008468"
"GTGTT" "1.76016246218768" "Inferred" "1.46032494682223" "2.16841465940893"
"AACGA" "1.76033548663854" "Inferred" "1.47873114104683" "2.1503651712789"
"TTCGG" "1.76101134172493" "Inferred" "0.691017972136412" "3.07884194371704"
"TAAAC" "1.76560099826214" "Inferred" "1.23001000850891" "2.40994164869895"
"ATTAT" "1.76562721252693" "Inferred" "1.56802223420927" "2.07198346615822"
"CATAA" "1.76609872867037" "Inferred" "1.42217107866835" "2.21880669634647"
"GTAAG" "1.76638383888996" "Inferred" "1.5595658926005" "2.08199966380847"
"CAAAC" "1.7796145092681" "Inferred" "1.19806263586141" "2.47077918546602"
"TAAAG" "1.7923273544302" "Inferred" "1.25133490912191" "2.44371563199054"
"AGCCA" "1.79476479633543" "Measured" "1.17174132679975" "2.52833422886073"
"TACGG" "1.81534039572776" "Measured" "0.715949079135443" "3.026544999838"
"ATCTG" "1.82073276373597" "Measured" "1.64931303713541" "2.10429791302641"
"CAAAG" "1.82680127583656" "Measured" "1.18176068116698" "2.58436107449341"
"TTCGC" "1.83494440429343" "Inferred" "0.640557480208692" "3.28172236171162"
"TTGTT" "1.83525412958427" "Inferred" "1.53195587399685" "2.25159223055967"
"CCGTT" "1.8357638421218" "Inferred" "1.46947133617397" "2.31512758847018"
"TATGG" "1.83810899276649" "Measured" "0.882227022450763" "4.18008009630945"
"TACGT" "1.85208134824247" "Inferred" "1.42679522657779" "2.39144376368927"
"ATATA" "1.85760810419895" "Measured" "1.62956081204829" "2.20007210273659"
"AAATG" "1.8625366235213" "Inferred" "1.19315579548422" "2.67742509211194"
"CTACC" "1.86436706481358" "Inferred" "1.45399167448698" "2.3895754700103"
"CTACT" "1.86436706481358" "Inferred" "1.45399167448698" "2.3895754700103"
"AAAAA" "1.86471504373226" "Measured" "1.59607672819127" "2.24820780740568"
"AGGTT" "1.86893336099779" "Measured" "1.21624573779455" "2.63673525353413"
"TTTAC" "1.87664827486977" "Measured" "1.6427419493531" "2.22614405877223"
"TAGCT" "1.88309455682233" "Inferred" "1.64072376714124" "2.24145185437871"
"TAGTT" "1.88327938158835" "Inferred" "1.59020353413256" "2.29235312093574"
"AACGG" "1.89209352410959" "Inferred" "1.56864685674164" "2.33208097783361"
"CAGCA" "1.89350330456813" "Measured" "1.6945152996229" "2.2091189292744"
"TCTTC" "1.90265461683431" "Measured" "1.51859270040174" "2.40390781497914"
"TGTAC" "1.90592536162433" "Measured" "1.61539723790942" "2.31384622388487"
"ATGTT" "1.90983608444332" "Inferred" "1.66607133899436" "2.27123444379989"
"AAATC" "1.91098833980596" "Measured" "1.7320011460557" "2.20768011897996"
"TCTAC" "1.91290961702329" "Measured" "1.61688671036785" "2.32675544741655"
"TTATC" "1.92675826496222" "Measured" "1.61517727926678" "2.357015161999"
"GGTAG" "1.93125879923263" "Measured" "1.84872603471613" "2.13274467904272"
"GAATC" "1.94773711911568" "Measured" "1.59910891254603" "2.41633339945351"
"TAATA" "1.94865919364979" "Inferred" "1.30682065263712" "2.73515249756001"
"AATAG" "1.95043855704697" "Measured" "1.22181837958063" "2.79919319947556"
"TACTT" "1.95259545983968" "Measured" "1.6467530857101" "2.3787051502649"
"GGTAA" "1.95352419953426" "Measured" "1.82655161562176" "2.20082130413159"
"TGCGG" "1.98023000772767" "Inferred" "1.61009859082793" "2.47233085125766"
"AACGT" "1.98556486483058" "Inferred" "1.63298670372543" "2.46044104543624"
"TAGAT" "1.98814535753021" "Inferred" "1.64158625508535" "2.45716142122162"
"GCGTA" "2.00348080753426" "Measured" "1.32135701128196" "2.80900613007697"
"AAGCT" "2.00959571922635" "Measured" "1.75713284401945" "2.38583675993733"
"GGTAT" "2.01687161987636" "Measured" "1.94215320505289" "2.21581634886697"
"TAATT" "2.02219973320415" "Inferred" "1.48504757432603" "2.7085362790177"
"ATACA" "2.03449272216966" "Inferred" "1.37724559809842" "2.81705150692583"
"GTACG" "2.03449272216966" "Measured" "1.37724559809842" "2.81705150692583"
"TTACA" "2.03449272216966" "Inferred" "1.37724559809842" "2.81705150692583"
"GGCAC" "2.03601683329314" "Measured" "0.790063688150431" "3.40737551455903"
"CAATA" "2.05096676344154" "Inferred" "1.6335258157964" "2.59473406671125"
"CGGAT" "2.05792270480868" "Measured" "1.61196240931145" "2.63063779716052"
"CGGTT" "2.06157665540364" "Measured" "1.90294811263114" "2.34718505487593"
"TAATG" "2.06516289440932" "Inferred" "1.51831872517343" "2.75680059192858"
"ATTAG" "2.09967200621366" "Measured" "1.97354827435366" "2.35512202325774"
"ATGCT" "2.10661823112915" "Inferred" "1.90482255507164" "2.43816803512986"
"CGGCT" "2.11967529814729" "Inferred" "1.84320732446314" "2.52670163108689"
"AACCC" "2.1279655767122" "Measured" "1.83479390981509" "2.55220623068034"
"TGGCT" "2.13540461448767" "Inferred" "1.8592956376237" "2.54304077528293"
"GAATG" "2.13635567031571" "Inferred" "1.46390197356929" "2.97118249900184"
"CAATT" "2.14289243788449" "Inferred" "1.85630946790754" "2.56146379353336"
"AAATA" "2.1511265590694" "Measured" "2.01184585704205" "2.42290281565098"
"CAATG" "2.15278522439708" "Inferred" "1.77137184603567" "2.66679632042417"
"GTATG" "2.17784967173493" "Inferred" "1.91244551990798" "2.57739534990568"
"AAACG" "2.18003726358733" "Inferred" "1.79299341976615" "2.70135737533431"
"CAACA" "2.18003726358733" "Measured" "1.79299341976615" "2.70135737533431"
"CAGCT" "2.2140511961896" "Measured" "1.93973720342653" "2.62473649626314"
"AACAA" "2.23377289780306" "Measured" "1.46111816674575" "3.14401366609041"
"TAATC" "2.2644964718652" "Inferred" "1.82428025440308" "2.84419110102788"
"GTATA" "2.27375263492569" "Measured" "2.03919877611026" "2.64835502552716"
"TTCTA" "2.29365308735694" "Measured" "1.09014486551897" "3.63843558080071"
"AAGCA" "2.30000493510938" "Measured" "1.85533357019212" "2.88634180458282"
"TCGCT" "2.3111851479386" "Inferred" "2.03717879755853" "2.72754563204575"
"AACTC" "2.3256749751353" "Measured" "2.00936025036076" "2.78523631375702"
"CCGCT" "2.3306119382884" "Inferred" "2.05666711638493" "2.74810745920227"
"ATCCT" "2.33232305764803" "Measured" "1.73608772888025" "3.07221447936852"
"TACTC" "2.37674646208138" "Measured" "0.984152091130632" "3.91573312185427"
"AACCA" "2.43998311983848" "Measured" "2.16387577030829" "2.86637772941059"
"TTGCT" "2.44031743186339" "Inferred" "2.15466784595834" "2.87627486927996"
"CTATG" "2.45923285607895" "Inferred" "2.13462861260387" "2.9353100194854"
"GTAGA" "2.46338619125393" "Measured" "2.24156068314171" "2.83694043801954"
"TAGCA" "2.4673418355957" "Inferred" "2.05071769213262" "3.03593835995092"
"CTGCT" "2.47802847114235" "Inferred" "2.19048961971364" "2.91819793144942"
"GGGAT" "2.47851598597774" "Measured" "2.0683762822606" "3.04131632635018"
"AACTG" "2.52662629353482" "Measured" "2.04446903127793" "3.1644074778254"
"AGCGG" "2.5319935269987" "Measured" "2.02997877517182" "3.18996278790503"
"GAATA" "2.56171773354691" "Measured" "2.08228195598638" "3.19893884004901"
"ATATT" "2.56312451005073" "Inferred" "2.18366126085407" "3.10045973656965"
"TACTA" "2.56365702853443" "Measured" "2.27822086972763" "3.00699796437557"
"TCCTA" "2.5685992370624" "Measured" "1.83893113747839" "3.45647652192529"
"TTATG" "2.59235150385813" "Inferred" "2.26449144593814" "3.079883733857"
"GTATT" "2.61550814726014" "Inferred" "2.33259346995693" "3.05952129687373"
"CTTAC" "2.62305151200357" "Measured" "2.45650304823215" "2.95116307081556"
"CTAAA" "2.62875919042579" "Measured" "2.57156461988551" "2.84786841227123"
"CTATC" "2.68661477098681" "Inferred" "2.42059896942078" "3.11810875534721"
"CTATT" "2.70410797570509" "Inferred" "2.37769673052052" "3.19707487253415"
"GGGTT" "2.73618830102348" "Measured" "2.50952384895412" "3.13138434635518"
"ATATC" "2.7491826460436" "Measured" "2.49259846840886" "3.17509878498145"
"ACGAT" "2.78844162604379" "Measured" "2.4705913601322" "3.27804195381349"
"ACGCA" "2.78969864571191" "Inferred" "2.36125515183202" "3.38996962577312"
"TACTG" "2.83155502669098" "Measured" "2.4677393758792" "3.36977624742635"
"GATAC" "2.85047962382853" "Measured" "2.52851435506155" "3.3480160959319"
"TTATT" "2.85957791785366" "Inferred" "2.53020062077127" "3.36508681464118"
"CAAGG" "2.86206568730336" "Measured" "2.46898902706113" "3.43142717784118"
"GGTAC" "2.86799495135858" "Measured" "2.51597484075163" "3.39666509677492"
"AAATT" "2.94387886790468" "Measured" "2.11176089117942" "3.95732084042136"
"TTGCA" "2.96745576551896" "Inferred" "2.4730334245588" "3.64465428745738"
"AGGTA" "2.96859301029009" "Inferred" "2.45963682331585" "3.66039542520284"
"TGCAA" "3.01871692945448" "Measured" "2.42862650380093" "3.79474089394329"
"CTATA" "3.02332177877648" "Inferred" "2.64935519874115" "3.58350552673528"
"CCGCA" "3.070419484325" "Inferred" "2.49638878503109" "3.83356826715266"
"AGCTG" "3.08894749430704" "Measured" "2.79498716351139" "3.57316711483232"
"AGCCG" "3.09908181576878" "Inferred" "2.44269187309871" "3.94635525716095"
"ATGCA" "3.10906174643052" "Inferred" "2.60193696596385" "3.80768472513191"
"GATGT" "3.15683662329213" "Measured" "2.2064353137504" "4.30167875607448"
"AGCTA" "3.17357982305269" "Measured" "2.59071680781417" "3.95191493490249"
"AAAAT" "3.19503572346429" "Measured" "1.02241197987483" "5.56445310907179"
"AGGCT" "3.19805583975355" "Measured" "2.7148497825061" "3.87824155874941"
"AGCGT" "3.26091086704951" "Inferred" "2.70470726056026" "4.01796560052617"
"AGCGA" "3.28827428150028" "Inferred" "2.74201900270896" "4.03706609753852"
"TTATA" "3.38884295004789" "Inferred" "2.99408117189927" "3.99233564831404"
"CATTG" "3.39681666372704" "Measured" "0.850408310189699" "6.15244706683745"