diff --git a/.gitignore b/.gitignore index b0cf483c8..4696f1fdc 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,48 @@ build/ /GTAGS /.dir-locals.el /iqtree_config.h +eigen/* +CPackConfig.cmake +CPackSourceConfig.cmake +Makefile +alignment/CMakeFiles/ +alignment/Makefile +alignment/cmake_install.cmake +cmake_utils/neon_test_build/* +example +gsl/CmakeFiles/ +gsl/Makefile +gsl/cmake_install.cmake +lbfgsb/CMakeFiles/ +lbfgsb/Makefile +lbfgsb/cmake_install.cmake +model/CMakeFiles/ +model/cmake_install.cmake +model/Makefile +ncl/CMakeFiles/ +ncl/cmake_install.cmake +ncl/Makefile +nclextra/CMakeFiles/ +nclextra/cmake_install.cmake +nclextra/Makefile +neon_test_build +pda/CMakeFiles/ +pda/cmake_install.cmake +pda/Makefile +sprng/CMakeFiles/ +sprng/cmake_install.cmake +sprng/Makefile +tree/CMakeFiles/ +tree/cmake_install.cmake +tree/Makefile +cmake_install.cmake +utils/CMakeFiles/ +utils/cmake_install.cmake +utils/Makefile +vectorclass/CMakeFiles/ +vectorclass/cmake_install.cmake +vectorclass/Makefile +whtest/CMakeFiles/ +whtest/cmake_install.cmake +whtest/Makefile +includelog diff --git a/CMakeLists.txt b/CMakeLists.txt index 2f2a01ca9..e575e1b63 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -76,6 +76,15 @@ endif() include_directories("${PROJECT_SOURCE_DIR}") +# Check if __ARM_NEON is defined +include(cmake_utls/check_neon_exists.cmake) +if (NEON) +set (__ARM_NEON "TRUE") +message("__ARM_NEON DETECTED : TRUE") +else() + message("__ARM_NEON DETECTED : FALSE") +endif() + ################################################################## # Detect target platforms ################################################################## @@ -120,7 +129,11 @@ set(CLANG "FALSE") # Clang compiler set(ICC "FALSE") # Intel compiler set(VCC "FALSE") # MS Visual C Compiler, note that it is different from MSVC variable # using C++11 standard -set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wno-deprecated") +# disable AVX for NEON +if (__ARM_NEON) +set(IQTREE_FLAGS "${IQTREE_FLAGS} novx") +endif() if (CMAKE_COMPILER_IS_GNUCXX) message("Compiler : GNU Compiler (gcc)") @@ -306,9 +319,17 @@ SET(AVX_FLAGS "-D__SSE3 -D__AVX") if (VCC) set(AVX_FLAGS "${AVX_FLAGS} /arch:AVX") elseif (CLANG) - set(AVX_FLAGS "${AVX_FLAGS} -mavx") + if (__ARM_NEON) + set(AVX_FLAGS "${AVX_FLAGS} -march=armv8-a+fp+simd+crypto+crc") + else() + set(AVX_FLAGS "${AVX_FLAGS} -mavx") + endif() elseif (GCC) - set(AVX_FLAGS "${AVX_FLAGS} -mavx -fabi-version=0") + if (__ARM_NEON) + set(AVX_FLAGS "${AVX_FLAGS} -march=armv8-a+fp+simd+crypto+crc") #-mavx -fabi-version=0") + else() + set(AVX_FLAGS "${AVX_FLAGS} -mavx -fabi-version=0") + endif() elseif (ICC) if (WIN32) set(AVX_FLAGS "${AVX_FLAGS} /arch:avx") @@ -321,7 +342,11 @@ SET(SSE_FLAGS "-D__SSE3") if (VCC) set(SSE_FLAGS "${SSE_FLAGS} /arch:SSE2 -D__SSE3__") elseif (GCC OR CLANG) - set(SSE_FLAGS "${SSE_FLAGS} -msse3") + if (__ARM_NEON) + set(SSE_FLAGS "${SSE_FLAGS} -march=armv8-a+fp+simd+crypto+crc") # changed from -msse3 + else() + set(SSE_FLAGS "${SSE_FLAGS} -msse3") + endif() elseif (ICC) if (WIN32) set(SSE_FLAGS "${SSE_FLAGS} /arch:sse3") @@ -334,9 +359,17 @@ SET(FMA_FLAGS "-D__SSE3 -D__AVX") if (VCC) set(FMA_FLAGS "${FMA_FLAGS} /arch:AVX2") elseif (CLANG) - set(FMA_FLAGS "${FMA_FLAGS} -mavx -mfma") + if (__ARM_NEON) + set(FMA_FLAGS "${FMA_FLAGS} -march=armv8-a+fp+simd+crypto+crc") #-mavx -mfma") + else() + set(FMA_FLAGS "${FMA_FLAGS} -mavx -mfma") + endif() elseif (GCC) - set(FMA_FLAGS "${FMA_FLAGS} -mavx -fabi-version=0 -mfma") + if (__ARM_NEON) + set(FMA_FLAGS "${FMA_FLAGS} -march=armv8-a+fp+simd+crypto+crc") #-mavx -fabi-version=0 -mfma") + else() + set(FMA_FLAGS "${FMA_FLAGS} -mavx -fabi-version=0 -mfma") + endif() elseif (ICC) if (WIN32) set(FMA_FLAGS "${FMA_FLAGS} /arch:core-avx2") diff --git a/cmake_utls/check_neon_exists.cmake b/cmake_utls/check_neon_exists.cmake new file mode 100644 index 000000000..70e7fcf0f --- /dev/null +++ b/cmake_utls/check_neon_exists.cmake @@ -0,0 +1,17 @@ +cmake_minimum_required(VERSION 2.8.12) + +if (DEFINED NEON) + return() +endif() + +set(NEON 0) + +enable_language(C) +enable_language(CXX) + +try_compile(test_for_neon_worked ${PROJECT_BINARY_DIR}/neon_test_build ${CMAKE_CURRENT_LIST_DIR}/test_for_neon + neon_test) + +if(test_for_neon_worked) + set(NEON 1) +endif() diff --git a/cmake_utls/test_for_neon/CMakeLists.txt b/cmake_utls/test_for_neon/CMakeLists.txt new file mode 100644 index 000000000..e8915ff64 --- /dev/null +++ b/cmake_utls/test_for_neon/CMakeLists.txt @@ -0,0 +1,4 @@ +cmake_minimum_required(VERSION 2.8.12) + +project(neon_test) +add_library(neon_test STATIC neon_test.cpp) diff --git a/cmake_utls/test_for_neon/neon_test.cpp b/cmake_utls/test_for_neon/neon_test.cpp new file mode 100644 index 000000000..acc0c72bc --- /dev/null +++ b/cmake_utls/test_for_neon/neon_test.cpp @@ -0,0 +1,5 @@ +#ifdef __ARM_NEON +#else +#error "No NEON" +#endif +int main(){} diff --git a/example/example.cf b/example/example.cf deleted file mode 100644 index b89f02be0..000000000 --- a/example/example.cf +++ /dev/null @@ -1,18852 +0,0 @@ -COUNTSFILE NPOP 12 NSITES 18850 -CHROM POS Gorilla_beringei_graueri Gorilla_gorilla_dielhi Gorilla_gorilla_gorilla Homo_sapiens_afr Homo_sapiens_nonAfr Pan_paniscus Pan_troglodytes_ellioti Pan_troglodytes_schweinfurthii Pan_troglodytes_troglodytes Pan_troglodytes_verus Pongo_abelii Pongo_pygmaeus -chr1 869378 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 877254 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 887074 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 891852 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 939520 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 967305 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 969594 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 971686 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 979769 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 1106011 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 1130701 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 1131681 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 1138928 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 1153725 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 1193155 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 1180526 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 1213076 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 1236241 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 1252171 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 1257476 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 1258612 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 1263251 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 1280865 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 1299547 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 1323535 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 1404327 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 1415662 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 1449099 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 1550047 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 1559277 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 1677567 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 1674350 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 1837781 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 1946840 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 1951410 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 2093456 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 2093641 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 2225608 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 2306334 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 2318468 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 2330106 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 2442046 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 2434228 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 2508497 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 2519527 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 2513281 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 2928746 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 1,9,0,0 0,10,0,0 0,10,0,0 -chr1 3291593 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 3337389 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 3517615 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 3415644 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 3406016 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,10,0 0,0,6,0 1,0,9,0 0,0,10,0 0,0,10,0 -chr1 3401065 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 3532275 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 3542403 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,19,0,1 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 3537520 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 3661909 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 3702357 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 3693458 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 3687553 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 3745462 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 3764126 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 3797454 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 4672462 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 6079345 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 6079384 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 6137514 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 6129443 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 6124849 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 6112969 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 6109365 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 6094513 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 6175645 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 6193046 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 6202018 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 6322169 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 6316155 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 6316173 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 6322193 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 6401548 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 6434359 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 6445289 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 6444700 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 6458633 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 6454191 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 6451814 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 6455713 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 6452250 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 6456041 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 6452909 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 6536927 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 6511670 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 6557751 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 6561442 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 6557340 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 6559611 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 6562030 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 6564725 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 6571619 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 6578201 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 6602932 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 2,0,8,0 0,0,10,0 -chr1 6628448 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 6802875 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 7719922 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 7727649 0,0,6,0 0,0,2,0 0,0,54,0 0,0,0,6 0,0,0,12 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 7781208 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 7922604 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 8308532 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,9,0,1 0,10,0,0 -chr1 8313484 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 8342420 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 8341247 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 8597317 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 8346821 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 8340944 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 8338784 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 8849026 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 8931949 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,5,0,5 0,7,0,3 -chr1 9000981 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 9040869 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 9020622 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 9228018 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 9339155 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 9583791 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 9698636 0,0,4,2 0,0,2,0 0,0,40,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 9702821 0,0,0,6 0,0,0,0 0,9,0,39 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 9706689 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 9734184 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 9718591 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 9714447 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 9734196 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 9718606 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 2,0,0,24 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 9714468 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 9965067 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 10088992 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 10115103 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 10162107 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr1 10113431 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 10161420 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 10277772 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 10273786 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 10320119 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 10383147 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 10434107 0,6,0,0 0,2,0,0 0,53,0,1 0,6,0,0 0,12,0,0 0,26,0,0 0,19,0,1 0,12,0,0 0,8,0,0 0,9,0,1 0,0,0,10 0,0,0,10 -chr1 10444142 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 10612205 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 10636036 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 10636720 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 10628817 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 10637125 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 26,0,0,0 1,0,17,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 10636645 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 10630729 0,0,6,0 0,0,2,0 0,0,52,0 3,0,3,0 10,0,2,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 0,0,10,0 -chr1 10932329 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 10930993 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 11004788 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 11029376 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 11029553 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 11038537 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 11070094 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 11056610 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 11073268 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 11060083 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 11225906 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 11211508 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 11139831 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,10,0 0,0,10,0 -chr1 11113238 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 11107269 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 11172331 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 11483804 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 11484617 5,0,1,0 0,0,2,0 13,0,37,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 11502463 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 11512567 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 11519054 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 11632599 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 11640933 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 11643814 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 11663076 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 11689235 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 11731099 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 11732746 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 11777810 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 11799318 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,6,0,20 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 11802176 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 11805376 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 11802134 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 11811266 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 11819684 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 11829909 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 11908277 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 11908844 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 11905920 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 11941177 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 11957344 0,0,6,0 0,0,2,0 0,0,54,0 6,0,0,0 12,0,0,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 11984736 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 11992257 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 12012455 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 12098321 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 12125112 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 12184793 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 12243678 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 12265747 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,7,0,1 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 12276279 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 12300734 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 12310434 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 12339133 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 12368956 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 12491554 0,0,6,0 0,0,2,0 0,0,54,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 12249535 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 12266029 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 12287161 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 12300980 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 12318458 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 12345759 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 12384280 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 12563218 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 12633902 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 12702132 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 13237621 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 13261417 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 13588884 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 13813434 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 13930096 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 15159885 0,0,4,0 0,0,2,0 0,0,54,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 15123615 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 15159906 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 15414401 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 15655856 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 15694359 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 15694479 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 15763193 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 15778100 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 15858965 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 15859994 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 15935627 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 15938353 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 15946100 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 15964122 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 15973792 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 16115277 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 16136661 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 16146033 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 16144221 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 16142584 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 16141313 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 16216229 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 16226498 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 16229712 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 16225305 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 16229150 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 16246991 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 16262664 0,0,6,0 0,0,2,0 0,0,54,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 16347810 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 16337233 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 16330823 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 16407084 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 16404459 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 16432063 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 16493872 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 16620597 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 16647161 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 17130408 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 17150048 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 17160091 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 17169379 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 17174795 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 17196220 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 17191122 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 17185561 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 17226917 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 17292654 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 17269247 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 17429701 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr1 17464775 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 17479451 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 17541416 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 17624712 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 17609098 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 17822119 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 17837034 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 17886714 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 17786564 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 17822257 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 17837739 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 17894259 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 18022321 0,6,0,0 0,2,0,0 0,54,0,0 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 18426986 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 18564777 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 18680443 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,10,0,0 0,10,0,0 -chr1 18681226 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 18682030 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 18834320 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 18934868 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr1 19053818 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 19088472 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 19076675 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 19409306 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 19384205 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 19372315 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 19364076 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 19355892 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 19346017 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 19337152 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 19320292 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 19314701 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 19309214 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 19303301 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 19291912 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 19280604 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 19440124 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 19434296 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 19421785 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 19485345 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 19505204 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 19523840 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 19556590 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 19864857 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 19865505 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 19979746 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 19938974 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 19882500 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 20177098 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 20313318 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 20389956 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 20707038 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 20832889 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 20848152 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 20853712 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 20912560 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 20897535 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 20887006 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 20871218 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 20920949 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 20943976 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 21050458 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 21478336 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 21437282 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 21670766 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 21682385 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 21772794 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 21810807 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 21798676 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 21935632 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 26,0,0,0 20,0,0,0 3,0,9,0 1,0,7,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr1 22089684 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 22084512 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 22079873 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 22075467 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 22072165 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 22059057 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 22053752 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 22050894 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 22048101 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 22045334 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 22041188 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 22037945 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 22033946 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 22028590 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 22022738 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 22206469 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 22689520 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 22708217 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 22720644 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 22788411 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 22796414 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 22836828 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 22980505 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 23094589 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 22980550 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 23094631 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,6,0,14 0,0,0,12 0,0,0,6 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 23252843 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr1 23280611 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 23522695 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 23561431 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 23641638 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 23630969 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 23721121 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 23758312 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 23950387 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,0,10 0,0,0,10 -chr1 23955063 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 23993189 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 23996146 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 24007277 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 24170351 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 24291387 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 24279220 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 24266105 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 24256590 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 24320046 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 24379842 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 24368521 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 24368599 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 24536821 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 24535745 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 24546549 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 24618648 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 24713620 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 24860467 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 25118346 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 25101729 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 25101501 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 25431229 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 25607882 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 25569558 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 25588149 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 25690643 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 25765938 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 25980136 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 26010601 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 26008866 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 26028594 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 26062356 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 26100727 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 26173714 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 26222363 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 26232833 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 26240792 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 26240795 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 26257527 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 26369208 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 26382468 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 26388521 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 26399031 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 26458853 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 26500050 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 26485115 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 26484947 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 26501908 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 26484544 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 26538376 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 26535777 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 26610528 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 26668098 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 26668116 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 26754291 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 26770679 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 26750768 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 26760152 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 26930286 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 26960499 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 26966984 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 26972895 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 27050222 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 27062944 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 27085145 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 27096473 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 27091863 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 27112909 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 27145226 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 27353366 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 27301142 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 27495439 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 27521314 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 27546616 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 27550547 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 27563431 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 27559364 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 27556927 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 27554478 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 27568540 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 10,0,0,0 10,0,0,0 -chr1 27582258 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 27822953 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 27813656 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 27865555 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 27972456 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 28046175 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 28078758 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 28134341 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 28148229 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 28162628 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 28177527 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 28349936 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 28436992 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 28473157 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 28534038 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 28690823 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 28688275 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 28734385 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 28731284 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 28737055 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 28802658 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 28913317 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 28896041 0,6,0,0 0,2,0,0 0,48,0,6 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 28913539 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 29058227 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 29229520 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 29196349 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 29308524 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 29297007 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 29395069 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 29399650 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 29459112 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 29510646 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 29522496 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 29459097 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 29510613 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 29519918 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 30967122 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 30987979 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 31122188 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 31118697 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 31238004 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 31211630 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 31186638 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 31534808 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 31614883 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 31672221 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 31823954 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 31859183 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 31873580 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 31935156 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 31928581 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 31922404 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 31906995 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 31893555 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 31994267 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 31982840 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 31978663 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 31976466 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 31970752 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 31966809 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 32031580 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 32029278 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 32252432 6,0,0,0 0,0,0,0 37,0,1,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 32330172 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 32397623 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 32419575 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 32442806 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,10,0 0,0,10,0 -chr1 32462629 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 32514628 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 32554945 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 32600961 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 32622068 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 32614733 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 32890172 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 32910990 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 33025148 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 33068164 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr1 33127263 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 33133016 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 33180477 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 33251583 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 33332874 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 33385576 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 33518544 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 33570567 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 33613583 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 33605402 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 33569564 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 33729336 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 33731750 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 34403976 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 34057934 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 33977392 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 33952838 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 33885000 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 33855720 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 33821905 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 33788479 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 33763175 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 34440327 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 34996175 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 35000171 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 35033148 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 35123829 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 35245264 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 35350093 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 35623677 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 35646227 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 35700900 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,6,0,2 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 35673158 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 35798987 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 35802009 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 35798588 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 35799338 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 35803626 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 35828958 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 36003447 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 35986789 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 35974752 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 36070334 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 36126634 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 36140207 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 36157296 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 36251847 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 36247175 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 5,0,19,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 36293313 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 36325698 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 36329920 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 36336217 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 36336886 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 36337498 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 36409265 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 36414517 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 36416343 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 36524583 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 36525381 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 36557949 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 36558792 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 36560802 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 36632002 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 36661007 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 36699494 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 36710476 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 36705436 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 36710512 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 36705472 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 36709713 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 36704760 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 36710536 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 36704736 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 37079953 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 37714008 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 37721322 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 1,7,0,0 1,9,0,0 0,10,0,0 0,10,0,0 -chr1 37740176 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 37778698 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 37795850 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 37825633 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 37867856 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 37928083 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 37973589 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 37959082 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 38037835 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 38047280 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 38053723 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 38123968 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 38102603 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 38237653 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 38256017 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 39102946 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 39229759 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 39496230 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 39533391 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 39556847 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 39597489 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 39617631 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 39626380 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 39672690 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 39681050 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 39692097 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 39718235 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 39595693 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 39599738 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 39625687 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 39626818 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 39676245 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 39686888 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 39697388 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 39723885 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 39808206 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 39800372 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 39897418 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 39978467 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 3,0,23,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr1 39987265 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 40001395 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 40085492 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 40136052 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 40204228 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 40207791 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 40469863 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 40553881 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 40542740 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 40539631 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 40655184 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 40733397 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 40874191 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 40987852 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 41058202 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 41062368 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 41241428 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 41258859 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 41255594 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 41287034 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 41381211 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 41275691 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 41719410 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 41751258 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 41751975 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,11,0,1 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 42466197 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 42642806 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 42669083 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 42884449 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 42920907 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 43000613 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 42988557 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 43078544 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 43169354 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 43435930 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 43543356 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 43547756 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 43551484 0,0,6,0 0,0,2,0 0,0,54,0 6,0,0,0 12,0,0,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 43557755 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 43598819 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 43603215 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 43642020 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 43665364 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 43668021 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 43669733 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 43672671 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 43677198 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 43679561 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 43681878 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 43686164 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 43690222 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 43807990 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 43829549 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 43836250 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 43843207 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 43855783 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 43858747 0,6,0,0 0,2,0,0 0,52,0,2 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr1 43827116 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 43829801 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 43841921 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 43843669 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 43856974 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 43905301 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 43942298 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 43974610 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 44168438 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 44168447 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 44158803 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 43974529 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 44159175 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 44158707 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 44137986 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 44174399 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 44188317 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 44198576 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 44215406 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 44223543 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 44234323 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,10,0,0 -chr1 44240613 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 44235914 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 44240625 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 44235923 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 44240613 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 44235914 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 44456876 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 44591159 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 44650599 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 44887980 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 44893369 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 44995887 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 45015907 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 45024430 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 45022691 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 45081125 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 45068218 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 45064811 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 45095978 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 45246841 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 45251214 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 45253084 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 45278745 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 45565665 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 45566346 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 45570008 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 45571402 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 45569548 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 45569969 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 45571823 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 45569806 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 45580873 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 45593591 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 45747111 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 45806427 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 45854616 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 45854622 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 45854607 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 45878602 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 45931732 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 45957592 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 46249033 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 46268979 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 46270660 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 46281959 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 46433207 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 46427565 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 46505720 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 46516532 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 46579148 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 46632661 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 46644336 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 46651741 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 46750393 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 46806736 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 46821527 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 46797026 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 46956224 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 46916820 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 47057007 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 47057007 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 47172812 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 47274100 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 47337376 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 47464070 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 47498619 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 47498721 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 48470371 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 48649745 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 48997329 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 50439134 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 50820884 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 51212164 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 51683200 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 51595058 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 52020890 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 52019526 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 52019445 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 52010441 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 52116777 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 52042104 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 52116711 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 1,9,0,0 0,10,0,0 -chr1 52053043 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 52028861 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 52303111 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr1 52476472 6,0,0,0 2,0,0,0 54,0,0,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 52477561 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 52476457 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 52477549 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 52534162 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 52476322 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 52477387 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 52512765 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 52600882 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 52598002 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 52596088 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 52591886 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 52622846 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 52747876 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 52754218 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 52840675 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 53009350 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 53034624 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 53142991 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 53165686 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 53308088 0,0,0,6 0,0,0,0 0,0,0,42 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 53353033 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 53328962 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 53457156 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 53527942 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 53485283 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 53496673 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 53514000 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 53527936 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 53487642 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 53698275 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 53832836 0,4,0,0 0,0,0,0 0,32,0,0 0,0,0,6 0,1,0,11 0,0,0,26 0,20,0,0 0,8,0,0 0,0,0,0 0,8,0,0 0,0,0,10 0,0,0,10 -chr1 53752902 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 54045977 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 54121489 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 54132540 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 54144423 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 54204586 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 54291287 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 54382848 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 54448238 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 54643152 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 54490057 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 54837638 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 54847370 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,10,0 0,0,10,0 -chr1 54840977 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 54849972 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 54848085 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 54924521 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 54954902 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 55039082 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 55024366 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 55053189 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 55109760 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 55230295 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 55290979 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 55296890 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 56750349 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 56942493 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 57031060 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 57114345 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr1 57155884 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 57184219 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 57374881 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 58772504 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 58814999 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 58931186 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 59020523 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 59021147 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 59898532 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 60164802 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 60132005 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 61321075 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 62026091 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 62094370 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 62317742 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 62491337 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 62886406 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 62767626 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 62695815 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 63650197 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 8,2,0,0 -chr1 63771826 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 63868304 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 63892650 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 64380812 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 64872350 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 64897143 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 64929637 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 10,0,0,0 10,0,0,0 -chr1 65069142 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 65098426 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 2,0,10,0 1,0,7,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 65083087 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 65457125 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 65630796 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 65649616 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 65839682 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 65854281 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr1 66606306 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 66604015 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 66599920 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 66610904 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 66967613 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 67100428 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 67184425 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,4,0,16 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 67280548 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 67474988 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 67606136 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 67634273 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 67668396 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 67663423 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 67924648 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 68285307 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 68386422 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 68727774 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 70328006 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 70417252 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 70488277 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 70515071 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 70672196 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 70677034 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr1 71285623 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 71285326 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 71285014 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 71285752 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 71285458 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 71285128 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 71250578 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 71285563 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 71285212 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 71250698 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 71285608 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 71316936 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 71849340 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 74442685 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 74443843 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 74701786 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 74948372 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 75476799 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 75966676 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 76029832 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,0,0,26 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 76054688 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 76160518 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 77282479 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 77407569 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 77532229 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 77979152 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 77960119 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 77966744 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 77953031 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 77961689 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 78039750 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 78113175 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 78217168 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 78333238 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 78731685 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 78774798 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 78901099 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 82188582 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 82208669 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 84436014 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 84717588 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 84744353 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 84896663 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 85190751 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 85260376 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 85362477 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 85703154 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 85820455 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 86327468 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,1,19,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 86134662 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 86021769 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 86623783 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 86670658 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 0,0,26,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 86691677 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 86724988 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 86736946 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 86809350 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 86981458 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 89022926 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 89071536 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 89199744 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 89301432 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 89295312 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 89360134 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 89346559 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 89385933 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 89426930 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 89507019 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 89500516 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 89621876 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 90171713 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 90172958 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 90245624 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 91154988 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 91632311 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 91590676 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 91753092 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 91954835 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 92232242 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 92290690 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 92483732 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 92485247 0,6,0,0 0,2,0,0 0,40,0,14 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 92562496 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 92845791 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 93367561 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 93450324 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 93584991 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 93820483 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 93809914 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 94134817 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 94316745 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 94285112 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 94274901 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 94246961 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 94234288 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 94416239 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 94412872 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 94736971 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 94770620 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 95141609 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 95265344 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 97045086 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 97320506 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 99502617 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 99926992 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 99986731 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 99950615 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 100115960 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 100100455 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 100151789 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 100118897 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 100253540 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 100315419 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 100386285 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 100387196 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 4,0,8,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 100508803 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 100693608 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 100737103 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 100734149 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr1 100961210 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 100972875 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 100967420 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 100976391 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 101204059 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 101259823 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 102044317 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 103234150 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 103127625 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 103244414 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 103173212 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 103116300 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 103234144 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 103127607 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 104000595 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 107668477 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 108121379 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 108530020 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 108483250 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 108994413 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 109040220 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 109123520 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 109196620 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 109174721 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 109242805 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 2,0,6,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 109294519 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 109278937 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 109281524 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 109355591 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 109326806 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 109458409 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 109535993 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 109547130 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 109581433 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 109603154 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 109607113 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 109609348 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 109612902 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 109614257 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 109616815 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 109626019 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 109625911 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 109625374 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 109624953 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 109640933 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 109680440 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 109658412 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 109831237 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 109838344 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 109954233 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 109969812 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 109972410 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 109975285 0,0,6,0 0,0,2,0 0,0,52,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 109971634 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 109974932 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 109971580 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 109974866 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 110034622 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 110082282 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 110102750 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 110095425 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 110102480 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 110094826 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,18,0,0 0,12,0,0 0,5,0,3 0,6,0,4 0,10,0,0 0,10,0,0 -chr1 110102091 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 110266132 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 110267852 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 110267846 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 110357107 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 110384846 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 110393326 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 110414681 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 110405081 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr1 110733411 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 110795376 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 2,0,18,0 1,0,11,0 1,0,7,0 1,0,9,0 0,0,10,0 0,0,10,0 -chr1 110948171 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 111017418 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 111018300 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 111018915 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 111294046 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 111491895 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 111543925 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 111574981 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 111574960 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 111579118 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 111659439 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 111664476 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 111664368 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 111767742 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 111793286 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 111793710 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 111822136 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 111847194 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 111847182 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 112105395 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 112110738 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 112326488 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 112120297 0,0,0,6 0,0,1,1 0,0,1,53 0,0,0,6 0,0,0,12 0,0,4,22 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,1,9 0,0,2,8 -chr1 112326500 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 112120303 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 112860523 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 112864606 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 112926187 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 112944988 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 112963131 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 112921197 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 112928147 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 113033260 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 113038192 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 113040950 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 113045696 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 113056897 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 113054661 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 113066414 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 113437399 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 10,0,0,0 10,0,0,0 -chr1 113458948 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 113987913 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 114102806 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 114048228 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 114156391 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 114200734 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 114178518 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 114182721 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 114248836 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 114240504 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 114249806 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,10,0 0,0,10,0 -chr1 114255706 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 114302333 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 114314143 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 10,0,0,0 10,0,0,0 -chr1 114302351 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 114314164 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 114317573 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 114311923 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 114317198 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr1 114302330 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 114314140 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 114317537 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 114325710 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 114482060 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 114775027 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 114772000 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 114952885 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 115031003 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 115018145 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 115074404 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 115062811 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 115068061 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 115124745 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 115202780 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 115377590 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 116003836 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 116084951 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 116728191 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 116740826 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,11,0,1 0,7,0,1 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 116888517 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 116928914 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 116923997 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,10,0,0 0,10,0,0 -chr1 116928941 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 116924006 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 117112760 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 117289077 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 117329120 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 117362515 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 117406544 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 117435545 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 117462821 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 117804682 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 118277558 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 118301244 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 118425766 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 118369466 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 118335653 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 119484742 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 119484727 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 119730950 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 119858317 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 120071224 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 120087015 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 120096744 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 120341219 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 120294970 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 120269543 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 120266869 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 120262626 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 143628915 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 143626882 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 143628921 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 144127813 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 144128017 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 144128230 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,19,0,7 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 144198803 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 144233925 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 144239929 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 144244785 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 144247239 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 144250432 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 144271585 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 144296724 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 144298777 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 144312976 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 144374656 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 144410428 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 144500146 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 144747312 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 145163131 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 145125253 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 145218373 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 145551507 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 145557614 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 145558508 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 145559315 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 145598499 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 145696908 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 145697742 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 145847426 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 146056599 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 146045130 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 148029688 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 148089538 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 148099231 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 148125973 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 148165722 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 148171956 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 148168405 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 148316421 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 148397928 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 148465748 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 148502698 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 148506987 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 148522541 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,11,1 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 148525921 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 148574324 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 148735674 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 148744048 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 148752393 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 148752369 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 148795279 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 148796670 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 148794578 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 148796404 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 148798449 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 148866596 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 148866644 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 148933872 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 148945843 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 149045309 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 149085384 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 149056515 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 149075487 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 149169070 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 149189804 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 149200201 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 149206500 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 149223703 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 149238476 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 149241477 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 149236753 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr1 149278017 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 149294202 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 149337029 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr1 149378747 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 149375641 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 149398022 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 149407280 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 149410544 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 149415801 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 149503955 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 149526036 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 149526774 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 149527639 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 149529260 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 149546730 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 149533141 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 149582798 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 149581819 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 149607388 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 149604124 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 149640392 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 149663099 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 149647646 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 149644586 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 149645384 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 149666942 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 149647802 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 149644286 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 149645159 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 149757937 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 149762566 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 149773161 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 149813372 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 149922479 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 150002456 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 150019201 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 150019149 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 150054053 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 150052358 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 150054083 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 150052400 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 150128342 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 150651297 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 150853111 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 150998877 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 150999786 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 151026549 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 151123711 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 151388997 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 151586992 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 151597401 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 151773834 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 151802872 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 151854080 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 151882442 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 151902161 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 151918565 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 151922862 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 151932487 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 152004092 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 152012319 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 152017619 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 152052363 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 152187396 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 152211906 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 152223864 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 152380601 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 152297239 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 152422147 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 152422213 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 152415247 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 152415322 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 152412301 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 152467792 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 152490274 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 152494825 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 152514354 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 152562856 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 152573688 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 152583813 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 152587524 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 152573316 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 152673664 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 152668510 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 152725763 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 152791280 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 152840143 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 152837643 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 152828946 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 152836268 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 152825447 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 153108602 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 153011410 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 153011353 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 153168135 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 153187309 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 153207696 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 153206883 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 153232086 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 153232884 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,10,0,0 0,10,0,0 -chr1 153269713 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 153262474 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 153280637 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 153290504 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 153295504 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 153293061 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 153296193 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 153293040 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 153296169 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 153293031 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 153296160 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 153293022 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 153296139 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 153305839 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 153308002 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 153370562 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 153379106 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 153411950 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 153417119 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 153421076 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 153428605 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 153429227 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 153439533 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 153436871 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 153433623 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 153445714 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 153445240 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 153448589 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 153476119 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 153487950 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 153484226 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 153488243 0,0,6,0 0,0,2,0 8,0,44,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 153487136 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 153498074 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 153506092 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 153518991 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 153537731 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 153529735 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 153555103 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 153562324 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 153562306 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 153561847 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 153561898 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 153675061 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 153589188 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 153574079 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 153849520 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 153909001 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 154089810 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 154050762 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 154014196 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 154104801 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 154140818 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 154153075 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 154178733 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 154202104 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 154198179 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 154187552 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 154288252 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 154279328 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 154302411 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 154351618 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 154372794 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 154367113 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 154373443 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 154351645 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 154372833 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 154391119 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 154446732 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 154481572 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 154482044 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 154514421 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 154502254 0,0,6,0 0,0,2,0 0,0,54,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 154499976 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 154487306 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 154531347 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 154581089 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 154716109 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 154704505 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 154799626 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr1 154790776 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 154780585 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 154773678 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 154767645 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 154829071 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 154859912 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 154892756 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 154937011 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 154960587 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 154970556 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 155004208 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 155023218 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 155004466 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 155023524 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 155050378 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 155108170 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 155112917 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 155087818 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 155082054 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 155080598 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 155077861 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 155104538 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 155111339 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 155116456 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 155104634 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 155111417 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 155117875 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 155144396 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 155146768 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 155150154 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 155213449 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 155191318 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 155179140 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 155176250 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 155220822 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 155195218 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 155180821 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 155176121 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 155172432 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 155780953 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 155771302 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 155822781 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 155933561 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 155932005 0,0,6,0 0,0,2,0 0,0,54,0 6,0,0,0 12,0,0,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 156005009 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 156040488 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 156034647 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 156071158 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 156331138 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 156419365 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 156527606 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 156566414 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 156590819 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 156592356 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 156592299 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 156592422 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 156592371 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 156784312 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 156908568 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 156893061 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 156880750 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 156872344 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 156849288 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 156992003 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 157084192 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 157180272 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 157256778 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr1 157305001 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 157436283 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 158018680 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 158066602 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 158093029 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 158120904 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 158156146 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 158170899 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 158166358 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 158165133 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 158189907 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 158278538 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 158330155 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 158328922 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 158361552 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 158365781 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 158376367 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 158400811 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 158411118 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 158449855 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 158518868 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 158562045 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 158532560 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 158526624 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 158543635 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 158528465 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 158586529 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 158655448 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 158657485 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 158815838 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 158873693 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 158917854 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 159036408 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 159060192 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 159070518 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 159113125 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 159184446 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 159279277 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 159306013 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 159288116 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 159288032 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 159309239 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 159335883 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 159335471 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 159337201 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 159356960 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 159358631 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 159397336 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 159403312 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 159411642 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 159433210 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 159428568 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 159446768 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 159462987 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 159472369 6,0,0,0 2,0,0,0 54,0,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 159467604 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 159472300 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 159467854 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 159542870 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 159602873 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 159750325 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 159907942 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 159909489 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 159947863 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 159959926 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 160020462 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 160148772 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 160236646 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 160221249 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 160593508 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 160610715 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 160734651 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 160813315 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 161002446 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 161015020 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 1,0,19,0 0,0,12,0 0,0,8,0 2,0,8,0 0,0,10,0 8,0,2,0 -chr1 161310911 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 161585395 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 163057436 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 163446616 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 163646880 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 163780511 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 163916391 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 164126172 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,18,2,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 165112047 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 165193940 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 165158665 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 165257677 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 165353322 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,0,26,0 0,0,18,0 0,8,4,0 0,6,2,0 0,0,10,0 0,10,0,0 0,10,0,0 -chr1 165633958 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 165676535 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 165674484 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 165781985 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 166009155 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 166096898 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 166081669 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 166280979 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 166311264 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 166332904 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 166527040 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 166548801 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 166932429 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 167612622 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 167721553 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 167785847 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 167763937 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 167849521 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 167968474 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 168039854 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 168078256 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 168104799 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 168102694 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 168267739 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 168955594 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 169328540 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 169435233 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 169516551 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 169577329 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 169888259 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 170021796 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 170032441 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr1 170021661 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr1 170032327 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 170021739 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 170032405 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 170793482 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 170895150 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 171823588 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 171860554 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 172043051 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 172072703 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 172106433 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 172145420 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 172216614 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 172182294 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 172477418 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 173193222 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 173254251 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 173315387 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 173333441 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 173362787 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 173642211 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 173632394 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 173595447 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 173559145 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 174222799 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 174792921 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 174792429 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 174926062 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 174935343 0,0,6,0 0,0,2,0 0,1,53,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 175005377 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 175268415 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 175194224 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 175130550 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 175465836 0,0,0,6 0,0,0,2 0,0,0,50 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,10,0 0,0,10,0 -chr1 176330412 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 176693618 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 176701803 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 176693720 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 176708904 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 177128006 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 177300168 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 177323845 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 177353165 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 177367226 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 177346191 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 177584619 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 177727427 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 177727382 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 177795474 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 177829369 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 177926464 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 178081848 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 178139776 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 178390740 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 178425324 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 178390758 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 178425354 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 178507631 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 178666006 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 179115979 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 179152522 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 179180249 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 179287998 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 180292499 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 180293054 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 180621204 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 180839080 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 180907474 0,0,6,0 0,0,2,0 0,0,54,0 0,0,5,1 0,0,3,9 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 181054432 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 181094875 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 181117148 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 181123054 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 181176152 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 181344069 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 181357536 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,4,0,6 0,10,0,0 -chr1 181368254 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 181451224 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 181472314 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 181514348 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 181496816 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 181777879 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 181781037 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 181763742 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 181780245 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 181785647 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 181802704 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 181866251 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 182147851 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 182190577 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 182287593 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 182948295 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 182929890 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 183043953 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 183031209 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 183333914 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 183375807 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 183438499 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 183544624 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 184100353 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 184169557 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 184220028 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 184253953 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 184312280 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 184323349 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 184344220 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 184353242 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 184372622 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 184407861 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 184610722 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 184593295 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 184579816 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 24,0,2,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 184554540 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 185142755 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 188690446 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 190814967 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 191311697 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 191333495 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 191485547 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 194913266 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 195061366 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 195244313 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 195286499 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 195360639 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 195427566 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 195564179 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 195894107 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 196157333 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 1,0,0,9 0,0,0,10 -chr1 196155898 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 196528777 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 196969962 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 196970938 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 196970141 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 198837752 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 198811371 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 198789434 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 199083440 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 199108980 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 199109616 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 199145056 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 199234301 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr1 199226044 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 199213038 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 199348088 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 199289314 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 199382566 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 199451435 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 199458533 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 199462892 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 199557764 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 199549003 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 199558814 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 199603550 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 199603547 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 199603544 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 199622245 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 199619080 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 199647278 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 199720477 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 200017005 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 200018603 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 200045828 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 200102616 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 200111787 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 200201209 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 200225274 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 200246950 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr1 200358732 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 200373736 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 200384390 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 200384405 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 200553758 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 200554397 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 200516565 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 200553890 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 200554532 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,10,0,0 0,10,0,0 -chr1 200536660 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 200553989 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 200554625 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 200567654 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 200676492 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 200798601 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 200670501 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 200798574 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 200832651 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 200991132 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 200972047 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 201116896 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 201182234 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 201201217 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 201256588 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr1 201401603 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr1 201407247 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 201421026 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 201415255 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 201453531 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 201583474 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 201732787 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 201936069 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 201945204 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 201969105 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 201942941 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 201957031 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr1 202009640 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 202065347 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 202105647 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 202396351 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 202500706 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 202495447 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 202464792 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 202645806 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 202646763 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 202699785 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 202684954 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 202678369 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 202663919 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 202778560 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 203190584 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 203211116 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 203221663 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 203293709 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 203301548 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 203306241 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 203335695 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 203399592 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 203383463 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 203397945 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 203464483 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 203507752 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 203541992 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 203574964 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 203759283 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 203764753 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 203828025 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 203900292 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 203895380 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 204034493 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 204085795 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 204068384 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 204164984 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 204158886 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 204171557 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 204163323 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 204157574 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 204409794 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 204494178 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 204716202 0,6,0,0 0,2,0,0 0,54,0,0 0,0,6,0 0,0,12,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 204733305 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 204825160 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 204839506 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 204969990 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 204971133 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 205076660 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr1 205106493 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,10,0,0 0,10,0,0 -chr1 205153971 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 17,0,3,0 8,0,4,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 205179157 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 205174590 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 205207070 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 205262020 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 205262839 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 205290802 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 205294748 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 205312255 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 205311205 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 205338184 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 205384541 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 205706669 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 205709967 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 205713658 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 205706606 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 205709922 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 205714281 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 205999655 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 205992192 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 205997530 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 206007772 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 205992231 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 205997118 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 205999634 0,0,6,0 0,0,2,0 0,0,54,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 206025600 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 206139053 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 206336790 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 206286031 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 206271725 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 207851912 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 207872612 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 207863090 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 207915838 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 208003357 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 208036477 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 208070797 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 208082355 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 208395841 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 208588966 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 208914284 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 209159640 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 208923269 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 208923992 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 209159913 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 208923503 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 209529163 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 209611392 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 209914317 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 210275323 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 210186655 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 210306833 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 210341043 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 210650392 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 210673070 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 211047720 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 211098675 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 211127952 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 211212908 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 211291375 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 212236702 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 212237818 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 212554808 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 212630996 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 212862088 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 212903697 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 213475024 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 213819102 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 213860073 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 214658545 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 214486734 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 214439818 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 214313096 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 214128428 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 214078006 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 214022839 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 213880668 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 214658527 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 214486710 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 214439800 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 214759160 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 215859931 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 215871376 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 216586783 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 218167768 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 218168380 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 218246116 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 218223273 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 218208825 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 218343457 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 218376837 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 218445961 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 218412655 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 218821035 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 218893087 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 219001761 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 219121244 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 219942483 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 220787787 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 220772018 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 220803247 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 1,0,9,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 220801347 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 220890805 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 220903983 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,3,7,0 0,0,10,0 0,0,10,0 -chr1 220909900 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 221234887 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 221463370 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 221967181 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 222020753 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr1 222057196 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 222052872 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 222046731 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 222411831 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 222558137 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 222487574 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 222550849 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 222620227 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 222652493 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 223676464 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 223658988 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 223752707 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 224043573 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 224131825 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 224113615 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 224143247 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 224141932 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 224176258 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 224195453 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 224191893 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 224239748 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 224409063 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 224480097 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 224646635 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 224634460 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 224903007 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 225144405 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 225236415 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 225571472 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 225328241 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 225259344 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 225367114 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 225285723 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 225987249 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 226002537 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 226070523 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,0,0,20 0,0,0,10 0,0,0,6 0,0,0,8 0,10,0,0 0,10,0,0 -chr1 226178595 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 226351952 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr1 226362576 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 226660492 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 226649162 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 226669207 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 226662862 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 226712519 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 227499930 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 227634227 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 227686504 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 227651513 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 227732777 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 227848327 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 228448452 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 228559351 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 228861937 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 228889411 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 228912738 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 228906634 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 228997626 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 228997626 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 229160664 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 229111323 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 229443789 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 229474745 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 229744940 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 229896781 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 229896493 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 229969512 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 230663522 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 230630900 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 231180561 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 231869061 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 232511542 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 232576731 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 232631528 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 233390948 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 233485687 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 233476402 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 233572344 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 233610074 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 233734111 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 233813680 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 234036323 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 233988899 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 233971530 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 233927113 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 234272079 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 234254015 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 234408454 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 234712404 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 234772686 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 234773536 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 234825508 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 234806734 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 234794488 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 234950074 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 234987501 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 235059166 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 235093457 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 1,9,0,0 0,10,0,0 -chr1 235126942 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 236117460 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 238353199 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 239160663 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 239743540 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 239779661 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 239971466 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 240082283 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 240495282 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 241516211 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 241894773 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 241875905 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 242681634 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 242707876 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 243086058 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 243085494 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 244145553 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 244774457 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 244877284 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 244956875 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 245146275 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 245079689 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 245080862 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 245389665 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 245558775 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 245530757 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 245653836 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 245654877 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr1 245654046 6,0,0,0 2,0,0,0 54,0,0,0 0,0,6,0 0,0,12,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 245655120 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr1 245942191 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 246268462 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 246290888 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 246329570 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 246856410 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 246880304 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr1 247073813 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 247073180 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr1 247111131 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 247178309 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr1 247178420 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 273566 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 257242 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 476827 0,0,6,0 2,0,0,0 21,0,29,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr10 426259 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 393853 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 317186 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 872404 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 850945 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr10 1036748 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 1056747 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 1122296 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 1769343 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 1220979 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 3149015 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 3817149 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 4862875 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 5031466 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 5238261 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 5432848 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 5486467 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 5486383 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 9,0,0,1 -chr10 5531200 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 5723767 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 5821870 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 5878797 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 5969873 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 5969939 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 5988454 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 6003466 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 5988442 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 6003448 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 6035097 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 8,0,4,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 6035172 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 6195538 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 6303430 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 6580455 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 6510246 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 7258114 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 7662022 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 7648252 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 7667905 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 7658743 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 7799628 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 7862095 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 7881035 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 7881158 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 8091170 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 8140560 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 8137687 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 8145999 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 11348640 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 11824695 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 11948559 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 12083724 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 12163628 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 12179839 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 12231694 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr10 12259850 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 12873179 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 12910874 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 13209753 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 13257616 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 13280717 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 13257565 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,10,0,0 0,10,0,0 -chr10 13279727 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 13370457 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 13365710 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 13411728 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 13578851 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 13581936 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 13529318 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 13775933 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 13741395 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 14907513 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 14949108 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 15010032 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 15223559 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 15194938 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 15295037 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 15295856 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 15801696 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 15729001 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 15654311 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 15861026 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 16864058 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 17186516 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 17123102 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 17029286 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 16972462 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 3,0,3,0 0,0,8,0 1,0,7,0 0,0,6,0 0,0,10,0 0,0,8,0 -chr10 16918287 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 17231118 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 17726383 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 17796599 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 17961799 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 18162725 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 18282358 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 18332209 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 18868308 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 18868308 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 18868236 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 18868209 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 18868209 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 18868167 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 18865086 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,8,2,0 0,10,0,0 0,10,0,0 -chr10 18915024 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 20505938 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 21174216 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 21114708 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 21475408 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 22059841 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 22095213 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 22646910 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 22697534 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 22870834 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 23327284 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 23448368 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 24849097 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 24860775 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 24872315 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 24873407 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 24850751 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 24860877 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 24929856 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 24913646 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 24914603 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 25328465 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 25504907 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 26350530 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 26499355 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 26546844 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 26829890 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 27052806 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 27094249 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 27152228 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 27189768 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 27080711 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 27084612 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 27362168 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 27463870 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 27463786 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 27502076 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 27855767 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 28063662 0,0,6,0 0,0,2,0 0,0,54,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr10 28531152 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 28918751 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 28912377 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 29011012 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 29861512 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 29862298 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 29828074 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 29816207 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 29802885 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 29851484 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 29817666 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 29802795 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 30355095 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 30355929 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 30356670 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 30357531 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 30358305 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 30669199 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 30768128 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 31173947 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 32172421 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 32361666 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 32344590 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 32601034 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 33163804 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 33240931 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 33251588 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 33254992 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 33257167 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 33240599 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 33542333 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 33515362 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 33550661 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 33599630 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 33542600 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 34676934 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 1,0,19,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 35373790 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 35477374 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 35535875 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 35466805 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 35507837 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 35507870 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 35517198 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 35859096 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 35894981 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 35937017 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 38286368 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 42646463 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 42924528 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 42930145 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 42974200 0,0,6,0 0,0,2,0 0,0,54,0 6,0,0,0 11,0,1,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 43021489 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 43013556 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 43432124 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 44750114 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 44800355 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 45244077 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 45274639 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 46588568 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 48005930 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 48036524 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 48371872 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 48371893 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 49049119 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 49117724 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 49079336 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 49152600 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 49116166 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 49070845 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 49298311 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 49304040 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 49461056 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 49324542 0,0,6,0 0,0,2,0 0,0,54,0 6,0,0,0 12,0,0,0 26,0,0,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 49897796 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 50410843 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 50402722 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 50351041 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 50497818 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 50533165 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 50498621 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 50533494 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 50636560 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 50625245 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 51249174 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 51497939 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 51741075 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 52265867 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 52271744 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 52271690 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 52504512 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 53711936 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 53746552 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 55509121 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 57789557 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 57788374 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 59797723 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 60219198 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 60230085 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 60606712 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 60713149 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 60782093 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 60682648 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 61083566 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 61336074 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 61568744 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 61514982 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 61489625 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 61635576 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 61544033 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 61514558 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 62221755 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 62301358 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 63115857 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 63520629 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 63521667 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 63522582 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 63629541 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 63818212 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 64245659 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 64643432 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 64644731 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 64606191 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 67418498 0,4,0,2 0,2,0,0 0,41,0,13 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 69339027 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 69443825 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 69354910 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 69420912 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 69551324 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 69578146 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 69603907 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 69618883 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 69721896 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 69771547 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 69834510 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 69923330 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 70121208 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 70172306 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 70217713 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 70343247 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 70376380 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 70407381 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 70526970 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 70621419 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 70662563 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 70677308 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 70695470 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 70809666 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 70730611 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 70812312 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 70798393 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 70814665 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 70809681 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 70845714 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 70834762 0,0,0,6 0,2,0,0 0,23,0,29 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 70936707 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 71523601 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 71550895 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 71583635 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 71753686 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 71865169 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 71955752 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 71964527 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr10 72027887 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 72028721 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 72138438 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 72173329 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 72183703 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 72190591 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 72159884 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 72173923 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 72187843 0,6,0,0 0,2,0,0 0,54,0,0 0,3,0,3 0,5,0,7 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 72211641 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 72289229 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 72709666 0,0,6,0 0,0,2,0 0,0,50,0 6,0,0,0 12,0,0,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr10 72723591 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 72791831 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 73191641 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 73260972 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 73249322 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 73437395 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 73502269 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 73492829 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 73527103 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 73704601 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 73773250 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 74315523 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 74354040 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 74370995 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 74438002 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 74549836 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 74586407 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 74675886 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 74752846 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 74683783 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 74828037 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 74857461 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 74868052 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 74964431 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 74956441 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 75063788 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 75189488 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 75193343 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 75197642 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 75200211 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 75202634 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 75211866 0,4,0,0 0,0,0,0 0,44,0,0 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 75237855 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 75234614 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 75282972 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 75251484 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 75278345 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 75244948 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 75253848 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 75428094 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 75524113 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 75547864 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 75519867 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 75547903 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 75553662 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 75828289 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 76405439 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 76450536 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 76467685 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 76525492 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 76524498 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 76580346 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 76650723 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 76664507 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 78520185 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 78344770 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 79283277 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 79263765 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 79250983 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 79251706 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 79240942 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 79226240 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 79429867 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 79465286 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 80706981 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 80723260 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 80731932 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 80740881 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 80874965 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 81696316 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 81687778 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 81918935 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 81905594 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 82024848 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 82116519 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 82266008 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 1,0,25,0 0,0,20,0 0,0,12,0 0,0,8,0 1,0,9,0 0,0,10,0 0,0,10,0 -chr10 84108494 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 85899933 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 85952733 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 85961401 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 85964156 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,1,0,9 0,0,0,10 -chr10 85987307 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 85982072 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 85997439 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 85998682 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 86121163 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 86167566 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 87369738 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 88222076 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 88196062 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 88408420 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 88404547 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 88409677 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 88429244 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 88436917 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 88418476 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 88456307 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 88649611 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 88673345 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 88686496 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 88844265 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 88803093 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 89262955 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 89493309 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 89506561 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 90332893 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 90322797 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 90572710 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 90691111 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 90752837 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 90974848 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 91056344 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 91182961 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 91394846 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 91334151 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 91361665 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 91466273 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 91512521 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 92972719 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 93240960 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 93380078 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 93562925 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 93590420 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 93689712 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 93739286 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 93776419 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 93989598 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 93860856 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 94090510 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 94281572 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 94213556 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 94363305 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 94400161 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 94808066 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 94811151 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 94823702 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 94825590 6,0,0,0 1,1,0,0 51,3,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 94825638 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 95131130 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 95106448 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 95059872 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 95129653 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 95106529 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 95252907 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 95316578 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 95350464 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 10,0,0,0 -chr10 95370426 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 95405587 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 95527189 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 95995825 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 96023434 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 96058437 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 96091459 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 96271815 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 96474253 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 96697542 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 96997013 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 97147002 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 97184382 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 97133829 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 97086525 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 97182292 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 97101090 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 97182220 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 97091314 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 97133802 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 97148912 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 97386857 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 97361068 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 97377263 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 97356594 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 97430335 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 97615974 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 97615998 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 97807877 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 98068180 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 98099573 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 98172455 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 98126443 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 98326515 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 98459519 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 98376528 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 98935257 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 98809837 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 98792684 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 98768362 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 98752557 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 99013219 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 99150095 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 99134975 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 99121883 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 99116519 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 99180740 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 99201530 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 99201548 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 99201443 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 99205723 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 99203575 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 99322469 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 99333460 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 99361388 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 99390858 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 99427763 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 99488248 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 99488254 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,10,0,0 0,10,0,0 -chr10 99519440 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 99760935 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 99646731 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 99957996 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 99959133 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 100010710 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 100003454 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 100149881 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 100137018 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 100175699 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 100192960 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 100493703 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 101170510 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 101284811 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 101363553 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 101429479 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 101452382 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 101466139 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 101486054 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 101550139 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 101568689 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 101593551 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 101658887 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 101629586 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 101825824 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 101968844 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 101986608 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 102079816 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 102045964 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 102098023 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 102265940 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 102239768 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 102279519 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 102499629 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 102574471 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 102558895 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 102695190 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 102736572 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 102752303 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 102753544 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 102756363 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 102773688 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 102768801 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 102787175 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 102886570 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 102977234 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 103282068 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 103271613 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 103337067 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 103333266 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 103344481 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 103525630 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 103553495 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,1,0,11 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 103540748 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 25,0,1,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 103577695 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 103578835 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 103577668 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 103593266 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 103578922 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 103756316 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 103859703 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 103894025 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 103909218 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 103910749 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 104093925 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 104112395 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 104118163 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 104126041 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 104129653 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 104146800 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 104149165 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 104146044 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 104148239 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 104150150 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 104166662 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 104162284 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 104171224 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 104172731 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 104201147 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 104223336 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 104233997 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 104365033 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 104404886 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 104449155 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 104481910 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 104604054 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 104650405 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 105027075 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 105027825 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 105097178 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 105083690 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 105118240 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 105156531 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 6,0,4,0 -chr10 105172742 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 105177130 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 105190115 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 105195164 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 105208231 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 105205488 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 105334761 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 105418384 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 105667224 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 105748876 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 105827222 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 105809940 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 105802882 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 105785247 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 9,0,1,0 10,0,0,0 -chr10 105784039 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 105873713 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 105937144 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 105890743 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 106024693 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 106064461 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 106065199 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 106108304 0,6,0,0 0,2,0,0 0,54,0,0 0,0,0,6 0,0,0,12 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 106197511 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 106391648 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 106966770 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 108914100 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 108429469 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 108370225 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 108914145 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 108424800 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 108370291 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 111632195 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 111867158 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 111862596 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 111873974 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 112028982 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 112256844 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 112340814 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr10 112714556 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 113930322 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 113904387 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 114126186 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 114167632 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 114159391 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 114177001 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 114565111 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 114915424 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 115328419 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 115413607 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 115378713 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 115367233 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 115341984 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 115400207 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 115375879 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 115364656 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 115340398 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 115479163 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 115479103 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 115525604 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 115651610 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 115895300 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 115879698 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 115954548 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 115970441 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr10 116028532 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 116090434 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 116058253 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 116050427 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 116083013 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 116057594 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 116049978 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 116223693 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 116434068 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,1,0,7 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 116222746 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 116186062 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 116222737 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 116186044 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 116610560 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 116709516 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 116879127 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 118019024 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 118074564 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 118226184 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 118341349 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 1,0,9,0 0,0,10,0 -chr10 118414446 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 118429200 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 118754528 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 118946998 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 118959632 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 119019660 6,0,0,0 2,0,0,0 54,0,0,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr10 119758633 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 120343975 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 120503990 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 120822521 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 120800097 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 120872998 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 120923350 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 121191532 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 121329488 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 121326609 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 121421984 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 121555880 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 121576667 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 121602596 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 121642359 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 121652411 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 121675603 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 122270512 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 122612322 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 122635435 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 122654837 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,2,8,0 0,10,0,0 -chr10 123269658 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 123246181 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 123300963 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 123248066 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 123677426 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 123493327 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 123493228 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 123800029 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 123975939 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 123999058 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 123975885 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 123998602 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 123977372 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 123913450 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 123978889 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 124033428 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 124147429 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 124256902 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 124586451 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 124661215 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 124732824 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 124790073 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 124899470 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 125612154 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 125511620 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 125791907 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 126082386 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 126385218 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 126509910 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 126682042 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 126681970 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 127398402 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 127432345 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,2,10,0 0,1,7,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 127452692 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 127446098 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 127506191 0,0,6,0 0,0,2,0 0,9,43,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 127531694 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 127516938 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 128009065 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 127745317 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 127695868 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 127750144 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 128137727 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 129736039 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 129765981 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 129761647 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 129800614 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 129789955 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 131647241 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 131528509 0,0,6,0 0,0,0,0 0,0,40,0 6,0,0,0 12,0,0,0 26,0,0,0 0,0,20,0 0,0,10,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr10 131867631 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 133854264 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 133864357 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 133971311 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 133872590 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr10 134019368 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 134361368 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 134513896 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 134497583 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 134593097 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 134792135 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 134792948 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 134876410 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 134932246 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 134962938 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr10 134953396 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr10 134945776 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 134975321 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 135029549 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 135052469 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 135052528 0,4,0,0 0,2,0,0 0,54,0,0 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr10 135043926 0,0,0,6 0,0,0,0 0,0,0,48 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,0,8 0,0,10,0 -chr10 135195119 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr10 135219329 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 188224 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 199430 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 202689 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 234460 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 269489 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 284282 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 305005 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 365703 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 394239 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 410476 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 478627 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 490598 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,22,0,4 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 488070 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 522734 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 540077 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 543991 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 547925 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 545838 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 552590 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 603795 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 604919 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 604823 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 603570 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 611250 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 607599 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 611214 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 607575 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 678414 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 690640 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 716643 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 753922 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 778318 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 794123 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 791301 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 789880 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 812588 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 827321 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 855756 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 893030 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 859938 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 1423256 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 1541791 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 1814000 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 1818214 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 1912224 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 1912713 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 2110798 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 2147626 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 2143485 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 2146326 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 2143049 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 2146464 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 2142111 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 2248075 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 2380760 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 2398938 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 2393169 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 2390994 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 2385662 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 2549876 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 2549894 0,0,0,6 0,0,0,0 0,0,0,48 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 2886062 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 2906855 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 3017014 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 2995713 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 3025785 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 2995680 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 3015939 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 2984734 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 2998090 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,5,0,17 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 2979806 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 3080069 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 3067746 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 3071407 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 3617612 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 3637454 6,0,0,0 2,0,0,0 50,0,0,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 3641968 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 3645410 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 3757044 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 3722337 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 9,0,1,0 9,0,1,0 -chr11 3684346 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 3671175 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 3753803 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 3709211 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 3680504 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 3663908 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 3751491 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 3709247 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 3753737 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 3713088 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 3802894 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 4064338 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 4104588 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 4551186 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 4578473 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 4660511 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 4966086 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 5582405 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 5582402 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 5621380 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 5589013 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 5656945 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 5642859 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 5674221 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 6086238 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 6200888 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 6195574 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 6219357 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 6298030 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 6371461 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 6380471 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 6409069 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 6434303 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 6429121 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 6456588 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 6459931 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 6476753 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 6579978 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 6586523 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 6589020 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 6592358 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 6611448 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 6610517 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 6608924 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 6604411 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 6660206 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 6910277 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 7040221 0,0,6,0 0,0,0,0 38,0,16,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 7487302 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 7598780 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 7628658 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 7646307 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 7973475 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 8078637 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 8074815 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 8431010 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 8695934 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 8685216 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 8708262 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 8708943 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 8693869 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 8677061 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 8897513 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 8903860 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr11 8966351 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 9044914 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 9011804 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 9243191 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 9143997 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 9120904 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 9401233 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 9456562 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 9494359 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 9563593 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 9706319 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 9980729 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 9825125 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 9795081 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 9763298 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 10284653 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 10471567 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 10439702 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 10473740 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 10730830 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 10745973 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 10756808 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 10781212 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 10782128 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 10777122 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 11357337 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 11820320 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 11920466 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 11928529 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,17,7,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,10,0 0,0,10,0 -chr11 11942656 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,7,0,1 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 12199826 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 7,0,0,3 10,0,0,0 -chr11 12219207 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 12235024 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 12742511 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 7,0,1,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr11 13332563 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 13364801 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 13699871 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 14458958 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 14436800 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 14485882 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 14839437 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 14858736 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 14946963 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 15154109 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 15127308 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,2,6 -chr11 15217051 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 16164993 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 15951042 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 16829396 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 16781412 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 16767950 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,1,0,9 -chr11 17128648 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 17097433 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 17068016 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 17365476 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 17448305 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 17420947 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 17385036 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 17371239 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 17488605 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 17509564 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 17698073 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 17984763 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 17766443 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 18081442 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 18287143 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr11 18269961 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 18277081 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 18264789 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 18325779 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 18390864 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 18454523 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 18458689 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 18548410 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 18593002 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 18593743 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 18679079 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 18702328 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 18694957 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 18687805 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 18711731 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 18722193 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 18711408 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 19164408 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 19212508 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 19207862 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 19202948 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 19917843 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 20022285 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 20055718 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 20081820 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 19858028 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 19962346 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 20027243 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 20073817 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 20354719 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 20582437 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 20606173 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 20656121 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 22196403 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 22339087 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,0,10 0,0,0,10 -chr11 22603134 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 22603926 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 26441211 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 26621414 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 27033595 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 27341237 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 27328478 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 28072806 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 28268350 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 30473432 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 31434389 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 31778844 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 32406121 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 32374507 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 32579936 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 32906166 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 32910580 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 32911438 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 32912494 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 32913520 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 33004058 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 33006861 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 33050651 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 33327374 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 33688303 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 33837565 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 34074738 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 34067576 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 34100698 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 34112667 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 34175587 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 34142873 0,6,0,0 0,0,0,2 0,36,0,16 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,8,0,2 0,10,0,0 -chr11 34132868 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 34434256 3,0,0,3 2,0,0,0 28,0,0,24 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 34471654 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 34894359 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 34935617 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 34973181 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 35197488 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 35189526 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 35176332 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 35197497 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 35179269 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 35199838 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 35270485 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 35470284 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 35503666 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 35419753 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 36207400 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 36409987 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 36588340 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 43369594 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 43385332 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 43729053 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 44026249 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 44033373 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 44056039 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 44102987 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 44245643 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 44583230 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 44916351 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 45202408 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 45230579 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 45222441 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 45825770 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 45848206 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 45880566 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 45881307 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 45894415 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 45901030 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 45904598 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 45906433 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 45943606 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 45912313 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 46350917 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 46354043 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 46344745 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 46348105 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 46352750 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 46357673 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 46412988 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 46375670 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 46594149 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 46628396 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 46660183 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 46679709 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 46701559 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 46796469 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 46754389 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 46738905 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 46796478 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 46754416 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 46731450 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 46878021 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 46868428 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 46857333 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 46853168 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 46846122 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 47115779 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 47135220 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 47135169 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 47135196 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 47153395 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 47146123 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 47158754 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 47156595 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 47213416 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 47223645 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 47238642 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 47246796 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 47260535 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 47263614 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 47274056 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 47254281 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 47261049 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 47268042 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 47287688 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 47257137 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 47263073 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 47272032 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 47254125 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 47260616 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 47263701 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 47274167 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 47393218 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 47398396 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr11 47417056 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 47467054 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 47467132 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 47464886 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 47547884 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 47556120 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 47557270 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 47609180 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 47664165 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 47724435 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 47695586 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 47799947 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 47776175 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 48103211 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 48117819 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 49164780 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 49134911 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 49153098 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 56706099 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 56711482 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 56841871 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 56833047 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 56833719 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 56834406 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 56857505 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 56854409 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 56871177 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 56902744 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 56949624 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 56931870 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 57013360 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 57076555 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 57124233 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 57138522 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 57224025 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 57236792 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 57714925 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 57882632 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 58073906 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 58361119 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 59132588 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 59118232 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 59330515 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 59361309 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 59585287 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 59699639 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 59913579 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 59917853 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 59954946 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 59992421 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 60042177 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 60315124 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 60366704 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 60376799 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 60377573 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 60397545 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 60426865 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 60443816 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr11 60451784 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 60460133 0,0,6,0 0,0,0,0 2,0,28,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 60460853 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 60463640 6,0,0,0 2,0,0,0 54,0,0,0 0,0,6,0 0,0,12,0 0,0,26,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr11 60531945 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 60537974 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 60642428 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 60649189 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 60656101 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 60751182 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 60772503 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 60804845 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 60855691 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 60840441 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 60833059 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 60862012 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 60866675 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 60869578 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 60888528 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 61006381 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 61080168 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 61048544 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 61250079 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 61265251 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 61300895 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 61305223 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 61310149 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 61320129 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 61334837 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 61364743 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 61402229 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 61431708 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 61475899 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 61486420 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 61652899 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 61675856 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 61823024 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 62115454 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 62102821 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 62099341 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 62100025 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 62121394 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 62136495 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 62133046 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 62130184 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 62126612 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 62137839 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 62144690 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 62154674 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 62153010 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 62158887 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 62153900 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 62150122 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 62189987 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 62200888 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 62214854 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 62246182 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 62239586 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 62276350 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 62277442 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 62302936 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 62313418 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 62325618 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 62351427 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 62405128 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 62409327 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 62406029 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 62405197 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 62380326 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 62406978 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 62405990 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 62434101 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 62434869 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 62501271 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 62501310 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 62520182 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 62687914 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 62826494 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 62930596 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 63012982 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 63039656 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 5,13,0,0 12,0,0,0 7,1,0,0 0,10,0,0 10,0,0,0 10,0,0,0 -chr11 63082525 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 63160343 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 63274148 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 63205759 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 63277158 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 63342962 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 63422309 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 63436381 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 63500323 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 63689939 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 63717149 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 63727635 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 63743601 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 63747363 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 63743319 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 63747147 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 63748764 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 63753357 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 63759913 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 63783002 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 63787644 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 63808382 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 63810848 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 63813284 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 63823642 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 63838820 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 63841314 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 63842344 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 63844717 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 63865486 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 63876894 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 63886032 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 64080266 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 64091740 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 64124837 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 64209785 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 64175592 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 64154488 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 64154485 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 64209833 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 64175607 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 64154500 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 64266137 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 64251387 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 64279542 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 64276522 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 64300571 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 64291259 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 64293549 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 64300631 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 64290979 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 64325077 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 64320895 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 64314500 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 64334141 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 64328438 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 64334006 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 64329698 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 64364236 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 64361054 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 64359199 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 64355723 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 64398505 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 64378422 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 64436422 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 64434693 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 64431319 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 64429701 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 64425015 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 64420850 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 64454403 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 64483442 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 64559659 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 64581981 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 64577384 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 64608830 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 64620385 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 64635563 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,10,0 0,0,10,0 -chr11 64639414 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 64648564 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 64654994 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 64657209 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 64654852 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 64696610 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 64811797 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 64845137 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,2,18,0 0,3,9,0 0,3,5,0 0,0,10,0 0,10,0,0 0,10,0,0 -chr11 64867827 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 64880338 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 64881124 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 64903919 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 64913451 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 64935341 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 65060050 6,0,0,0 2,0,0,0 54,0,0,0 0,0,6,0 0,0,12,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr11 65062331 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 65072007 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 65063143 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 65097646 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 65119566 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 65119641 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 65137112 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 65137787 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 65131466 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 65123760 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 65170420 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 65186030 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 65238589 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 65236410 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 65238885 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 65237705 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 65243198 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 65374490 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 65380086 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 65386502 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 65394608 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 65406509 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 65411713 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 65411662 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 65420990 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 65442180 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 65486103 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 65500519 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 65536115 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 65544237 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 65580947 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 65740813 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 65759421 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 65785950 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,7,0,1 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 65790241 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 65807313 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 65808743 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 65818935 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 65819649 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 65858772 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 65857375 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 65866259 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 65893191 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 65946306 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 65948479 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 65962705 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 65995403 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 10,0,0,0 -chr11 65999893 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 65997335 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 1,0,9,0 0,0,10,0 -chr11 66000022 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 66015579 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 66021443 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 66047857 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 66063586 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 66090175 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 66123516 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 66148442 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 66149060 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 66149711 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 66245238 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 66232226 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 66224753 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 66223605 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 66217394 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 66214154 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 66212320 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 66368935 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 66395846 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 66392970 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 66375318 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 66373744 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 66563923 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 66572729 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 66803557 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 66807915 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 66816102 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 66825802 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 66831980 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 66876766 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 66924773 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 66924812 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 66925233 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 66929144 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 66956793 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 66959147 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 66965546 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 66962425 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 66982468 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 67014920 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 67021655 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 67019272 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 67016160 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 67044156 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 67043902 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 67134460 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 67153863 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 67156658 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 67168895 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 67556230 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 67566864 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 67573732 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 67594778 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 67594880 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 67934017 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 67947694 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 67963957 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 68098156 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 68208976 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 68339398 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 68308893 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 68339380 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 68308878 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 68284364 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 68453381 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 68460654 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 68533936 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 68530056 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 68596707 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 68611209 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 68820153 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 69197186 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 69298049 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 69727234 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 69850407 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 69872174 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 69850060 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 69872105 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 69931066 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 69933627 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 70829973 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 70824398 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 70871610 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 70926926 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 71384958 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 71413031 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 71406518 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 71402221 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 71402947 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 71403667 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 71404423 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 71397669 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 71394938 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 71482209 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 71499880 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 71618360 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 71620957 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 71624401 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 71823066 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 71690614 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 71980003 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 71974124 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 71968255 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 72101202 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 72092910 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 72086780 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 72099112 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 72091690 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 72082473 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 72205497 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 72217455 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,10,0,0 0,10,0,0 -chr11 72232189 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 72744297 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 72749839 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 72752146 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 72781028 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 72784157 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 73096161 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 73298231 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 73365550 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 73395059 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 73557176 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 73474395 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 73436975 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 73675009 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 73760415 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 73731699 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 74119511 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 74092038 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 74137825 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 74554560 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,7,3 0,0,9,1 -chr11 74588982 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 74661599 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 74838224 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 74955282 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 74960716 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 75117540 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 75186011 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 75350241 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 75529958 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 75749677 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 75740565 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 75846917 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 75861450 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 75931044 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,10,0,2 0,7,0,1 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 76408441 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 76510634 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 76657194 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 76744390 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 77011347 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 77079869 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 77260895 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 77307667 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 77468299 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 77489757 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 77588868 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 77615540 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 77609108 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 77612237 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 77854578 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 82248795 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 82371066 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 83487625 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 25,0,1,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 82860363 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 85042797 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 85053036 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 85089214 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 85085027 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 85098054 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 85116597 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 85284048 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 85392134 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 85411113 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 85372624 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 85634018 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 85774745 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 86060580 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 85829971 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 86197020 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 86340650 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 86691016 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 87710352 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 87667264 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 88026206 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 87940647 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 88564164 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,10,0,0 0,10,0,0 -chr11 88714944 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 89171070 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 89536148 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 92354508 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,25,0,1 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 92851832 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 93157333 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 93182548 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 93552530 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 93753281 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 93808654 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 93802728 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 93960059 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 94370421 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 94371396 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 94557366 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 95172154 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 95223507 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 95231384 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 95731957 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 100849589 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 101278590 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 101490102 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 101712121 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 101777502 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 101992824 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 102072379 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 102094392 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 102146792 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 102167374 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 102331250 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 103376131 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 103412805 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 103413750 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 104377982 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 104988322 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 105129047 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 105128984 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 105386446 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 105434969 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 106393955 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 106084600 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 106927772 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 107448375 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 107497561 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 107565137 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 107624917 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 107644468 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 107669303 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 107707401 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 107741409 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 107703596 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 107729788 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 107866980 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 107853594 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 108053102 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 108799686 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 109630024 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 110660021 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 110730297 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 110892000 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 110925583 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 111077493 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 2,0,18,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 111096903 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 111099991 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 111119374 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 111130473 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 111286326 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 111427218 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 111447207 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 111454214 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 111546420 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 111590748 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 111578114 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 112720262 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 112793961 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 112794060 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 113144824 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 113112680 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 113189842 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 113175179 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 113321886 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 113362695 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 113362584 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 113439862 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 113618133 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 113819862 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 114607365 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 116146061 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 116139128 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 116160344 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 116272199 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 116235321 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 116558657 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 116566644 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 116579337 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 116595078 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 116582153 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 116655864 0,0,6,0 0,0,2,0 0,0,54,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 116658459 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 116671213 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 116665625 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 116749757 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 116768157 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 116773209 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 117152753 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 116881614 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 116837437 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 116813238 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 116806757 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 117216280 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 117278190 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 117374849 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 117479069 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 117520986 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 117544066 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 117586576 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 117586576 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 117613166 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 117718492 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 117726565 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 117751024 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 117762476 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 117857725 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 117870630 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 117895888 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 117908289 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 10,0,0,0 10,0,0,0 -chr11 117910273 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 117968675 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 118000918 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 118003859 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 118007860 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 118020080 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 118269586 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 118270393 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 118275858 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 118354980 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 118393940 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 118431196 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 118426981 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 118423689 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 118464590 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 118476717 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 118487227 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 118502891 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr11 118510205 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 118532925 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 118549402 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 118550509 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 118555719 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 118559250 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 118564570 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 118649815 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 118661414 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 118690908 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 118687541 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 118711207 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 118711936 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 118715405 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 118721826 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 118717536 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 118733906 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 118749112 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 118734142 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 119054570 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 119054531 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 119053092 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 119498882 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 119680969 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 119804031 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 119827642 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 119854166 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 120207862 0,0,6,0 0,0,2,0 0,0,48,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 120336843 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 120462916 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 120501235 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 120504065 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 120521674 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 120536206 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 120845958 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 120898896 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 120931204 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 120962214 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 120982798 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 120997048 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 122153011 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 122229913 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 122261884 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 122357468 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 122436653 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 122434207 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 122449434 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 123014162 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 123102603 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 123282750 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr11 123319281 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 123499028 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 123517570 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 123685869 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 123988192 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 124005553 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 124023208 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 124127194 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 124133504 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 124128836 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 124270979 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 124266775 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 124294862 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 124296264 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 124455852 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 124477291 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 124785907 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 124835762 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 124977945 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 124988204 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 125053350 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 125055851 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 125153679 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 125270700 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 125274662 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 125392290 0,0,6,0 0,0,2,0 0,0,54,0 6,0,0,0 12,0,0,0 26,0,0,0 0,0,20,0 0,0,12,0 7,0,1,0 2,0,6,0 10,0,0,0 10,0,0,0 -chr11 125380922 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 125364791 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 125580880 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 125625817 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 125639298 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 125667748 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 125667886 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,9,3,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 125720538 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 127865665 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 128278557 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 128355785 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 128348300 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 128344650 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 128345508 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 128826420 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 129261501 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 129256612 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 129248036 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 129293748 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 129277489 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 129293757 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 129280753 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 129505178 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 129564949 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 129575237 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 129792083 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 129783628 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 129824675 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 129844462 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 130283129 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 131286747 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 131286729 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 132032261 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 131812384 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 133519955 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr11 133578839 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 133553761 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 133535161 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 133620622 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr11 133626331 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 133636222 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr11 133743752 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr11 133762741 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 148477 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 177368 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 217357 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 368515 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 313049 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 297775 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 275118 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 524344 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,8,0,2 0,10,0,0 -chr12 537509 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 793167 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 841532 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 864386 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 864980 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 868638 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 888129 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 893919 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 1007762 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 1169321 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 1619268 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 1813938 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,10,0 1,0,5,0 0,0,8,0 0,0,10,0 0,0,10,0 -chr12 1925680 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 2782619 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 2803560 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 2851596 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 2838142 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 2839033 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 2848175 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 2838424 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 2853616 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 2844142 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 2838646 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 2910475 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 2998004 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,8,0 0,0,10,0 -chr12 2990444 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 3019683 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 3019851 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 3562634 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 4253515 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 4316551 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 4413695 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 4532513 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 4591979 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 4664746 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 4789543 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 4790407 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 6100752 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 6051804 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 6005338 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 5973365 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 7,0,3,0 -chr12 5948721 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 6214658 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 6295334 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 6298460 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 6309698 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 6342882 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 6333906 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 6429697 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 6433130 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 6471843 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 6502325 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 6507242 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 6509361 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 6517019 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 6528154 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 6529218 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 6579993 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 6574770 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 6562708 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 6558310 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 6623757 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 6618398 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 6657627 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 6647383 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 6652799 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 6658543 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 6647245 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 6708826 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 6728286 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 6753364 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 6756815 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 6804948 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 6806522 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 6828764 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 6839654 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 6835221 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 6842690 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 6885290 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 6895305 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 6925289 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 6937122 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 6962162 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 6956592 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 7044672 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 7048120 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 7140364 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 7174529 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 7192922 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 7235445 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 7252461 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 7477415 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 7418785 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 7545090 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 7531886 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 7696625 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 7734051 0,0,0,6 0,0,0,2 0,19,0,35 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 7760078 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 7833528 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,18,0,2 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 7974441 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 8083785 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 8091920 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 8134158 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 8268629 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 8266116 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 8583108 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 8693385 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 8817614 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 8885258 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 8898106 0,6,0,0 0,2,0,0 0,52,0,2 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 8907787 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 8965553 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 8977736 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 8981832 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 9236398 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 9209203 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 9198600 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 9724835 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 9877209 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 10041099 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 10059513 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 10170468 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 10210660 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 10358596 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 10490516 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 10673516 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 10766907 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 10974163 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 11030177 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 11883351 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 11930171 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 12123803 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 12228293 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 12203130 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 12170956 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 12374472 3,0,3,0 0,0,2,0 0,0,54,0 6,0,0,0 12,0,0,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr12 12564173 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 12521646 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 12858334 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 12868205 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 13019638 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 13134859 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 13258018 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 13797832 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 13616118 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 14468821 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 14541881 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 14555740 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 14727255 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 14685353 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 14844969 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 14834751 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 14979062 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 14986814 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 15366996 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 15552803 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 15613621 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 15546038 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 15593348 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 15698405 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 15944226 0,0,6,0 0,0,2,0 0,0,54,0 2,0,4,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr12 18128858 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 19298162 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 19403645 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 20694699 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 20766060 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 20796636 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 21261322 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 21344748 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 21535874 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 21571161 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 21604676 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 21817512 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 21810548 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 21903837 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 21950473 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 21851647 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 21889988 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 22099684 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 22245909 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 22529036 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 22669730 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 23619921 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 23578708 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 23590582 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 25134305 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 25154366 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 25254043 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 26168340 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 26768900 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 26700644 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 26606047 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 26487760 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 26384489 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 26958242 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 27058361 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 27341998 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 27433390 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 27679282 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 27726679 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 27760559 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 27825040 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 28303569 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 2,0,8,0 -chr12 29355263 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 29802924 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 29560638 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 30697217 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 30759239 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 30779249 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 30754191 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 30765095 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 30754569 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 31129286 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 31141106 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 31147926 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 31135958 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 31146687 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 31706169 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 32151673 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 32411920 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 32655014 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 32764931 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 32764898 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 32762848 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 32798134 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 32922388 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 32940859 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 32922658 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 33451204 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 37553104 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 38046430 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 38021675 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 38284902 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 38372135 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 38728220 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 38958004 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 38982877 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 39034466 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 39624125 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 39705404 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 39639218 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 39709239 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr12 40824695 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 40799222 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 40993780 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 41121566 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 41126221 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 41152465 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 42435011 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 42453127 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 42475792 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 43716112 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 44081883 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 44517038 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 44571902 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 44604848 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 44878703 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 45468647 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 45915563 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 45916361 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 46396482 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 46431506 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 46423677 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 46437990 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 46424087 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 46417705 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 46476291 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 46473544 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 46467809 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 46477080 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 46474983 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 46468133 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 46537594 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 46646177 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 46674482 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 46665997 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 46662183 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 46658131 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 46655573 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 46675954 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 46666427 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 46662569 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 46658409 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 46655498 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 46814315 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 46825128 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 47027315 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 47376088 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 47373946 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 47463124 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 47456577 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 47451891 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 47463064 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 47456514 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 47452567 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 47503778 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 47507146 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 47519956 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 47516814 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 47510571 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 47594603 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 47604655 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 47648120 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 47658739 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 47661384 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 47683636 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 47787049 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 47809612 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 47865317 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 47949727 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 47977209 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 48004221 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 48006161 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 48010308 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 48011400 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 48204937 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 48224263 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 48234568 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 48237529 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 3,0,17,0 11,0,1,0 4,0,2,0 2,0,8,0 0,0,10,0 0,0,10,0 -chr12 48245624 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 48244834 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 48268602 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 48314014 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 48321966 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 48311477 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 48314599 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 48322677 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 48337201 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 48332174 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 48326992 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 48483158 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 48519059 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 48630961 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 48642094 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 48645152 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 48685308 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 48738894 0,0,6,0 0,0,2,0 0,0,52,0 6,0,0,0 12,0,0,0 0,0,24,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 48761165 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 48769984 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 48767427 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 48785615 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 48815886 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 48862016 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 49320847 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,8,0,0 0,10,0,0 -chr12 49358853 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 49384249 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 49404914 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 49421560 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 49605142 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 49680389 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 49732230 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 49798692 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 49871761 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 49922401 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 50022635 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 50045542 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 50035940 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 50140034 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 50154462 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 50568731 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 50571023 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 50593821 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 50600884 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 50691101 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 50734892 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 50737266 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 50865432 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 50852455 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 50852383 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,10,0 0,0,10,0 -chr12 50925633 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 50999257 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 51042376 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 51065585 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 51086076 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 51076972 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 51114121 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 51110756 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 51153509 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 51170956 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 51198031 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 51232936 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 51226513 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 51248372 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 51298254 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 51289328 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 51332154 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 51358253 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 51455621 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 51491834 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 51487883 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 51528612 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 51524182 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 51578906 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 51630885 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,0,10 0,0,0,10 -chr12 51698946 0,6,0,0 0,2,0,0 1,53,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 51735657 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 51739201 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 51739897 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 51740888 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 51742476 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 51734369 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 51738820 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 51739753 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 51740765 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 51741960 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 51734492 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 51739177 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 51739870 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 51740864 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 51742440 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 51755151 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 51745981 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 51783637 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 51798462 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 51851396 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 51877824 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 51875481 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 51872890 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 51894621 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 51907445 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 51893720 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 51949446 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 51950809 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 51966045 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 51966789 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 51973426 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 51983094 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 52001480 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 51988116 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 52062505 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 52063354 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 52104012 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 52105946 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 52126083 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 52167112 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 52164407 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 52162877 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 52162226 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 52186127 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 52186160 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 52349234 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr12 52402174 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 52394741 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 52680542 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 52708620 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 52709923 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 52862254 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 52964346 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 52973102 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 53054152 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 53087887 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 53083692 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 53079929 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 53177912 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 53197965 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 53211372 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 53230031 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 53256092 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 53325718 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 54317239 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 54362126 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 54381024 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 54377553 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 54373320 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 54401864 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 54406777 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 54480624 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 54503211 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 54519725 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 54619013 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 54632793 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 54635602 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 54651673 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 54672212 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 54768161 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 54774566 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 54780041 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 54781986 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 54792888 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 54811578 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 54816833 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 54819001 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 54834092 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 54840102 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 54858535 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 54851443 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 54845611 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 54861565 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 54851401 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 54845563 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 54886645 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 54886618 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 54914919 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 54916790 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 54947899 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 54953790 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 55008048 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 54998295 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 55035526 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 55029073 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 55112485 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 55103896 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 55098190 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 55133719 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 55168071 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 55153293 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 55262194 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 55320111 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 55609558 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 55633031 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 55726619 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 55718603 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 55708836 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 55771307 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 55772575 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 55786624 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 55779102 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 55836155 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 55842399 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 55853987 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 55858505 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 55861220 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 55865591 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 55874438 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr12 55878226 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 55882502 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 55886707 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 55892560 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 55905539 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 55912598 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 55916666 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,10,0,0 0,10,0,0 -chr12 55924239 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 55936525 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 56135622 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 56136649 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 56159209 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 56157304 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 56169479 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 56180476 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 56195209 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 56197140 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 56206896 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 56250149 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 56258091 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 56274101 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 56295729 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 56303897 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 56311054 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 56307730 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 56375868 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 56400902 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 56396227 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 56374820 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 56398276 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 56395917 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 56415423 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 56411966 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 56408102 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 56431092 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 56438767 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 56445458 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 56443711 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 56449671 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 56462887 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 56476546 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 56489901 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 56483330 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr12 56504106 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 57570075 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 57559015 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 58459700 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 61071226 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 61204594 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 61227099 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 62348139 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 62460154 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 62670005 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 62822419 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 62895975 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 63100254 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 63154336 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 63425711 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 63801153 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 63849823 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 63850561 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 63920004 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 64809017 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 64924599 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 64989977 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 65018146 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 65086372 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 65033505 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 65990000 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 66933348 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 67001598 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 67372104 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 67426448 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 67612859 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 67937831 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 67939061 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 68250503 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 68254669 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 68277773 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 68335287 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 68357094 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 68335581 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 68464826 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 68481679 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 68435461 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 69018561 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 69600430 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 69818068 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 70239693 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 70307826 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 70356741 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 70462629 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 70603215 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr12 70952969 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 70966902 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 73723222 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 74093719 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 74179878 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 75296394 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 75310505 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 75274613 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 75962603 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 75948108 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 76912780 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 77037245 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 77039998 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 77103579 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 78203732 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 78608104 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 79635030 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 79729443 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 80057142 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 81304843 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 83809876 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 83788459 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 83801848 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 83984716 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 83974247 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 84219231 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 86914331 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 87078032 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 87463674 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 88269760 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 88268551 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 88343158 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 88529181 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 88560199 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 88521063 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 89871957 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 89872575 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 90064091 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 90082616 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 91624835 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 91771842 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 91720497 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 92405550 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 93099388 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 93177246 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 93218910 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 93489392 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 93969689 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 2,8,0,0 0,10,0,0 -chr12 93975508 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 94127333 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 94128593 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 94055546 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 94392116 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 94631246 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 94783941 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 94861334 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 94884265 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 94904023 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 94947005 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 94919006 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 95165544 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr12 95207161 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 95609087 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 95671665 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 97433782 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 97433896 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 97465638 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 97517876 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 97519362 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 97552250 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 97566654 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 97604659 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 97566367 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 97598287 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 97643413 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 99001004 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 99013644 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 99200912 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 99253549 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 99337900 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 99860357 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 100015801 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 100127751 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 100209983 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 1,0,11,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 100239464 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 100262623 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 100284599 0,2,0,4 0,1,0,1 0,31,0,19 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr12 100552500 0,0,0,6 0,0,0,2 0,0,0,54 0,1,0,5 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 100577625 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 100552473 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 100577601 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 100550037 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 100571148 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 100632537 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 100707943 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 100679622 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 100995355 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 101113959 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr12 101784563 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 102558033 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 102586562 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 102610764 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 102633790 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 102673281 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 102758904 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 102706809 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 102855675 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 102902797 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 102982507 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 103013317 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 103784476 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 103967921 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 104055892 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 104117407 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 104988798 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 105264228 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 105350273 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 105599933 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 105650908 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 105572229 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 105602793 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 105650923 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 105732753 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 105889143 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 106461888 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 106560054 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 106535287 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 106622624 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 106669716 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 107113895 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 107166148 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr12 107436836 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 107479003 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 107450233 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 107443423 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 107486809 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 107566536 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 107723023 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 107814955 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 108014760 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 108089085 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 108119228 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 108149585 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 108168372 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 108180531 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 108380194 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 108423571 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 108446177 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 108493894 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 108513479 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 108720893 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 108710820 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 108720908 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 108710643 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 108777879 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 108918369 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 108873423 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 108883833 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 108947932 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 108979437 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 109114849 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 109214300 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 109261693 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 109265501 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 109248615 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 109261744 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 109265534 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 109308650 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 109367705 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 109375954 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 109414292 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 109468264 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 109562606 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 109536535 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 109564479 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 109554710 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 109572405 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 109802161 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 110215691 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 110264154 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 110285512 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 110370201 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 110440541 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 110410848 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 110375962 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 110615052 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 110650212 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 110667155 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 110678540 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,4,22,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 110714927 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 110941984 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 110996886 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 111063011 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,1,0,9 0,0,0,10 -chr12 111330711 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 111769992 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 111810060 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 111829287 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 111925200 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 111917551 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 111932645 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 112043716 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 112034349 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 112107618 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 112088102 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 112085186 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 112109096 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr12 112129709 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 112117984 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 112192026 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 112212388 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 112242664 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr12 112297059 0,6,0,0 0,2,0,0 0,54,0,0 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr12 112319545 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 112357622 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 112391514 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 112385550 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 112871100 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 112849330 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 113321716 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 113278156 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 113277742 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 113321716 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 113602145 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 113605020 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 113594034 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 115018869 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 114931117 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 114918744 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 114905516 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 114885624 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 115932528 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 115961374 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 116068354 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 116200152 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 116181225 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 116148914 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 116941884 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 116950160 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 117058406 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 117123498 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 118101575 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 118442348 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 118602453 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 118725493 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 118683182 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 118652818 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 118635783 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 118626634 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 118986994 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 119026098 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 119098023 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 119085101 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 119080055 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 119075952 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 119071831 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 119065119 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 119058715 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 119050068 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 119119012 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 119247219 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 119360381 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 119451182 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 119474717 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 119497822 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 119501740 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 119609617 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 119639134 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 119660832 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 119688525 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 119933044 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 119953779 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 119943217 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 120084701 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 10,0,0,0 10,0,0,0 -chr12 120106880 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 120151253 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr12 120193086 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 120167361 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 120196640 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 120171991 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 120196451 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 120175538 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 120196505 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 120175616 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 120269139 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 120240717 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 120339956 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 120340022 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 120455126 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 120416803 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 120363126 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 120471887 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 120432111 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 120366437 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 120563476 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 18,0,0,0 8,0,4,0 5,0,3,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr12 120576568 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 120695795 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 120769153 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 120825336 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 120881242 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 120923853 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 121223172 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 121243499 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 121257069 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 121267285 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 121311947 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 121282822 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 121411594 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 121391780 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 121378506 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 121323591 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 121405626 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 121391882 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 121378593 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 121569410 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 121569510 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 121752853 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 121779846 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 121780794 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 121852350 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 121852302 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 121905905 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 121908748 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 121911888 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 122000997 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 121991495 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 121980596 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 121991387 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 121980497 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 122029792 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 122030935 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 122064438 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 122047890 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 122041073 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 122037221 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 122244945 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 122211802 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 122391540 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 122374285 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 122365929 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 122445590 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 122516214 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 122656605 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 122670131 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 122705435 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 122743168 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 122763167 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 122801633 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 122850727 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 122993254 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 123481203 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 123436326 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 123407244 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 123392380 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 123382839 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 123376049 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 123481251 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 123436374 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 123405965 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 123392500 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 123382923 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 123865613 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 124036713 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 124017686 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 124007283 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 124063062 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr12 124178760 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 124400459 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 124703068 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 128008087 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 128132368 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 128124933 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 129213707 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 129214580 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 129399809 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 129413297 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 129507185 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 129463182 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 129857527 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 130005139 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 130056495 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 130189683 6,0,0,0 2,0,0,0 54,0,0,0 4,2,0,0 11,1,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 130778922 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 130828568 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 130889192 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 130901676 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 130964862 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 130966967 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 130980235 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 130992247 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 130992139 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 131032781 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 131042685 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 131071728 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 131078727 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 131100928 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 131112751 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 131128066 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 131190930 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 131201513 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 131248403 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 131706708 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 131706562 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr12 131767298 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 131762147 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 131743845 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 131729923 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 131725886 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 131711433 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 131801682 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,1,11 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 131821068 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 131903332 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr12 131891656 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 131882645 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 131873178 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr12 131959025 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 131938368 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr12 132097552 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 18651600 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 18922234 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 19133918 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr13 19202463 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 19661465 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 19695490 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 19876348 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 20110629 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 20070822 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 20163248 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 20294348 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 20272444 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 20455572 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 20447317 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 20640227 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 20975128 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 22676013 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 23131253 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 23088125 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 23347012 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 23363555 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 23723933 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 23769854 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 24160489 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 24164932 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 3,7,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 24179262 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 24246998 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 24316017 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 24351375 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 24356559 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 24642274 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 24721507 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 24792680 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 24773923 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 24792707 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 25042943 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 25241304 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 25690727 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 26157913 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 26231826 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 26743114 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 27053745 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 27032038 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 27264977 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 27392410 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 27542653 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 27506335 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 27744157 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 27857113 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 27789687 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 28184987 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 28970674 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 28996389 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 29755797 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 30093331 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 30224201 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 30393871 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 30625072 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 30616042 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 31247479 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 31503992 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 31651823 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 31697145 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 31710110 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 31734501 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 31834663 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 31876505 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 32124117 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 32213265 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 32526332 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 32533529 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 32598371 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 32577757 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 32582012 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 32598287 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 32579021 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 34947453 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 34948263 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 35280454 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 35803730 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 35913308 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 36337816 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 36422101 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 36498344 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 36505600 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 36576562 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 37060105 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 37218085 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 37135618 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 37109483 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 38330080 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 38350362 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 38444683 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 38511296 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 38519817 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 39161928 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,10,0,0 0,10,0,0 -chr13 40137851 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 40031773 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 40032730 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 40281689 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 40413261 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 40540734 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 40706076 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 40834262 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 41358074 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 41165018 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 41059782 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 41358137 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 41627853 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 41681106 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 41632224 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 41682797 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 42078820 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 42436230 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 42495768 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 42828161 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 43330949 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 43908669 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 44452033 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 44755621 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 44873292 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 44968412 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 45255740 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 45492692 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 45457815 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 45441377 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 45439710 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 45436043 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 45525931 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 45630690 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 46025592 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 46201012 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 47421738 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 47552024 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 47845602 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 47948960 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 48547464 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 48650752 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 48610942 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 48663205 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,10,0 0,0,10,0 -chr13 48750531 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 48940011 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 48955646 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 49000787 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 49027741 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 49102734 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 49177916 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 49484542 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 49484539 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 50417593 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 50724146 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 50851709 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 50867580 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 51056851 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 51246168 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 51430534 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 51411264 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 51591515 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 51537671 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 51895772 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 51946155 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 52130584 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 52317677 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 52316793 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 57196787 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 59482739 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 59246888 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 66375642 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 69579746 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 71045067 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 72216672 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 72225888 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 72244309 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 72267657 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 73318057 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 74953508 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 74798474 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 74758973 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 75093965 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 75295881 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 76467217 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 76479534 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 76751034 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 76705386 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 76658117 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 76616623 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 76554030 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 76527876 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 77089951 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 77089765 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 77233166 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 77390442 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 78111102 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 78088658 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 78838863 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 78816386 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 90899062 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,9,0,1 0,10,0,0 0,10,0,0 -chr13 93919194 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 94041134 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 94685023 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 94525736 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 95083518 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 95037923 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 95040614 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 95207982 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 95434110 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 95306514 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 96437483 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 97435747 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 97462536 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 97818433 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 97859666 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 97891049 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 97907479 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 97907482 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 98152752 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 98818134 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 98706115 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 99004597 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 4,0,0,4 -chr13 99415654 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 99659613 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 100113237 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 100085062 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 100113342 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 1,0,25,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 100085152 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 100734347 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 100540309 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 100508378 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 101048592 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 101173294 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 102079860 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 102099335 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 102216754 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 102284889 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 102317021 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 102503050 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 105943693 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 108333506 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 108505427 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 108657140 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 109633596 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 109628200 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 109620923 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr13 109612777 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 109888376 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 109912515 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 109930677 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 109942509 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 109956827 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,13,13,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 110066043 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 110151813 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 110092773 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 110166250 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 110660302 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 110733591 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 110726017 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr13 110793149 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,19,0,1 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 112221349 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 112508557 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 112544670 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 112564761 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 112747658 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr13 112779486 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 112790707 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 112820984 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 112820756 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 112841733 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr13 112867393 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 112898517 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 112921316 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 112921337 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 113008847 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 113047184 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 113131401 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 113183027 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 113204094 0,6,0,0 0,2,0,0 0,54,0,0 0,3,0,3 0,9,0,3 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 113325572 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 113357218 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 113811494 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 113792967 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr13 113769366 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr13 114070154 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr13 114088470 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 19781699 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 19854243 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 19893928 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 19942660 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 19929712 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 19923067 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 19921244 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 19918037 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 19911376 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,1,9,0 0,0,10,0 -chr14 19992645 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 19995162 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 19997265 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 20010349 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 20048773 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,2,16 0,0,3,9 0,0,0,8 0,0,8,2 0,0,0,10 0,0,0,10 -chr14 20122140 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr14 20179117 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 20308233 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 20528378 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 20528327 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 20534687 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 20558521 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 20559843 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 20569026 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 20612080 6,0,0,0 2,0,0,0 54,0,0,0 0,6,0,0 0,12,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,10,0,0 0,10,0,0 -chr14 20612752 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 20616232 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 20619984 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 20625064 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 20630166 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 20630832 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 20628683 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 20693205 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 20769006 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 20908475 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 20898949 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 20890757 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 21025635 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 21041176 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 21038647 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 22142718 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 22307183 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr14 22352341 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 22313083 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 22375911 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 22414131 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 22415008 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 22416225 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 22444412 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 22448552 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 22441379 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 22443950 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 22465840 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 22468339 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 22462170 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 22486706 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 22514112 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 22572578 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 22581883 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 22593610 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 22588131 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 22587432 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 22593221 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 22588272 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 22634035 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 22617280 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 22602087 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 22636740 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 22658056 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 22676981 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 22705422 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 22667133 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 22861235 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 22887673 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 22885973 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 22886560 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 22898584 0,3,0,1 0,0,0,0 0,22,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 22896568 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 22898707 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 22896709 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 22916321 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 22928731 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 22925555 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 22923679 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 22963893 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 22958980 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 22957339 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 22955184 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 22954211 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 23015086 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 23015307 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 23097778 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 23104197 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 23099383 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 23110326 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 23183208 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 23183517 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 23593178 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 23596061 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 23600041 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 23605644 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 23612709 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 23616253 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr14 23637291 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 23639129 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 23638231 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 23642770 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 23658909 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 23657453 0,0,6,0 0,0,2,0 0,0,54,0 0,6,0,0 0,12,0,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 23670639 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 23671743 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 23676381 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 23678468 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 23687057 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 23689314 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 23690644 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 23699318 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 23703919 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 23716198 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 23727803 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 23725458 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 23722909 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 23721141 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 23731708 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 23733888 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 23731389 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 23752475 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 23754619 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 23776304 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 23779541 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 23781019 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 23801385 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 23797418 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 23793323 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 23829939 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 23839887 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,2,0,8 -chr14 23843311 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 23854709 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 23855402 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 23870286 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 23864888 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 23858449 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 23878313 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 23875966 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 23909026 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 23911508 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 23915362 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 23967875 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 23970823 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 23971603 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 24045217 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 24113521 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 24172043 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 24351757 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 25987229 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 29202801 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 29116305 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 30177129 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 30414041 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 30451068 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 30452497 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 30434420 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 30688979 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 30653258 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 30644342 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 31138293 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 32139632 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 33313392 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 34078568 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 34144588 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 34252354 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 34331847 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 34303723 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 34339218 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 34315072 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 34300948 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 34585507 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 34634048 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 34943569 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 35347782 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 35262100 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 35166726 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 35299893 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 35216974 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 35144600 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 35850938 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 36223795 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 37793559 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,2,0,6 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 37794420 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 38634933 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 38600779 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 38698458 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 38716865 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 38887832 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 38887778 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 38865859 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 38859971 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 38970668 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 38940620 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 44543267 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 44607397 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 44675227 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 44706070 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 44771738 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 46190428 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 46574232 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 49135566 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 49144470 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,11,1,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 49265444 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 49316131 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 49368686 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 49332337 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 49736233 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 49654814 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 49859042 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 49877693 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 50159677 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 50150948 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 50201801 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 50358446 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 50302843 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 50293014 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 50293809 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 50294595 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 50289099 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 50260014 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 50308792 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 50296672 0,0,6,0 0,0,2,0 0,0,54,0 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 50293629 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 50294400 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 50291240 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 50274697 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 50313586 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 50296600 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 50293572 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 50294361 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 50295042 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 50274616 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 50440607 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 50453543 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 50448275 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 50630897 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 50559392 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 50781818 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 51256617 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 51538283 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 51590192 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 51563712 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 51550888 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 51804453 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 51811288 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 51977049 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 52244956 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 52321021 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 52640254 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 53488479 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 53487041 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 53977744 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 54238765 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 54311447 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 54545144 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 54518072 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 54550022 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 54523638 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 54480902 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 54681622 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 54707206 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 54948213 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 54973229 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 55153016 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 55208261 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 55164463 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 55214834 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 55169795 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 55216044 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 55171114 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 55824919 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 56153753 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 56340732 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 56816746 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 56927800 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 57674691 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 57675666 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 57541524 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 57784247 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 57866478 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 57855211 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 57945633 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 58182081 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 58182915 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 58174832 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 58182192 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 58183023 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 58862433 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 58905123 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 59263556 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 59143889 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 59822151 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 60045929 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 60250056 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 60515966 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 60517757 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 60993718 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 61264031 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 61318801 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 62487002 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 62920950 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 63504251 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 63530368 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 63557932 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 63592708 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 63627480 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 63663128 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 63678514 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 63739275 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 63750808 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 63759782 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 63513111 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 63531637 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 63559331 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 63599330 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 63638429 0,0,0,6 0,0,0,2 0,0,0,54 0,0,6,0 0,0,12,0 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 63663242 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 63682661 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 3,0,7,0 0,0,10,0 -chr14 63739422 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 63750892 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 63759836 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 63797131 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 63796936 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 63937297 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 63978756 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 64023538 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 64024492 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 64264114 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 64279556 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 64340098 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 64332068 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 64309724 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 64307577 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 64286560 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 64333054 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 64318901 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 64309233 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 64468644 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 64548839 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 64630229 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 65098040 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 65278848 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 66416454 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 66649629 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 66501744 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 66695944 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 66856827 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 66901453 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 66928828 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 67183451 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 67226710 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 67265683 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 67344062 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 67340721 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 67334197 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 67322702 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 67314694 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 67299277 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 67288957 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 68457504 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 68422025 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 68416578 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 68590440 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 68591241 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 68592018 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 68861216 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 68884466 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 69239917 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 69305106 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 69322690 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 69548036 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 69548015 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 69865655 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 70121395 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 70276522 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 70269247 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 70267001 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 70525134 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 70581677 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 70641771 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 71124942 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 71160538 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 20,0,0,0 9,0,1,0 4,0,0,0 0,0,2,0 0,0,10,0 0,0,10,0 -chr14 71221952 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 71260198 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 71274768 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 72054983 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 72495131 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 72492046 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 72492061 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr14 72512065 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 72514430 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 72619969 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 72648095 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 72734505 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 72788496 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 72795755 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 72801891 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 72829260 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 72813550 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 72813253 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 72818890 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 72813676 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 73055532 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 73031702 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 73106231 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 73128839 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 73249117 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 73250044 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 73259156 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 73416588 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 73457479 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 73481001 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 73477453 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 73492356 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 73498290 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 73497781 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 73509359 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr14 73608360 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 73637657 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 73797099 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 73829217 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 73945801 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 74029696 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 74147990 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,5,0,15 0,0,0,6 0,1,0,1 0,0,0,8 0,10,0,0 0,10,0,0 -chr14 74122458 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 74061590 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 74046314 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 74042565 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr14 74039182 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 74213115 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 74206495 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 74426360 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 74457825 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 74446228 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 74443065 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 74578845 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 74553555 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 74555352 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 74657582 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 74643109 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 74623581 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 74817331 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 75005751 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 75171053 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 75217669 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 75271328 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 75399916 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 75507715 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 75619652 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr14 75690966 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 75690570 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 75716910 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 76018212 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 76298923 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 76344151 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 76339531 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 76802652 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 76837270 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 76816556 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 76867222 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 76865278 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 76879491 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 76985838 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 77004205 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 77018738 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 77012157 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 77244082 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 77244267 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 77423309 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 78339789 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 79200002 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 80450487 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 80491804 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 80628697 0,0,0,6 0,0,0,2 0,2,0,52 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 80721630 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 80806798 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 81031210 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 87529108 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 87799387 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 87721718 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 87799384 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 87721712 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 87799408 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 87721733 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 87969292 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 87974213 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 88036960 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 88005164 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 88145460 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,1,9 0,0,0,10 -chr14 88145430 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr14 88145454 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 88408468 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 88377524 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 88698697 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 88698691 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 89499286 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 89525139 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 89720350 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 89799809 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 89840061 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 89852780 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 89822583 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 90225675 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 90114243 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 90436309 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 90706136 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 90740912 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,11,0,1 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 90712137 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 90760885 0,6,0,0 0,2,0,0 0,54,0,0 0,5,0,1 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 90998891 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 91172653 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 91117156 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 91473084 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 91413680 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 91535411 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 91629857 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 91679259 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 91697316 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,4,0,20 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 91990028 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,9,0,1 0,10,0,0 -chr14 92050068 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 92188086 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 92188860 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 92224068 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 92240749 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 92352489 0,0,0,6 0,0,0,2 0,0,0,54 0,6,0,0 0,12,0,0 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 92488054 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 92720259 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 92787564 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 92778932 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 93111285 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 93179764 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 5,0,3,0 0,0,10,0 -chr14 93242901 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 93464627 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 93490473 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 93475315 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 93573535 0,0,6,0 0,0,2,0 9,0,45,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 93596524 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 93651884 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 93712146 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 93782458 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 93826403 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 93850257 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 93840627 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 93915665 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 93979261 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 93999323 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 93999227 0,0,0,6 0,0,0,2 0,0,0,54 0,6,0,0 0,12,0,0 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 94099806 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 94105655 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 94151092 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 94306083 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 94652560 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 94635926 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 94757828 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 95011800 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,24,0,2 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 94979304 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 94969475 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 95205704 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,0,10 0,0,0,10 -chr14 95247886 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 95777315 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 95879317 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 95865688 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 95851550 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 95841801 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 95826641 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 95945010 2,0,4,0 0,0,2,0 2,0,52,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 1,0,9,0 0,0,10,0 -chr14 96067636 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 96369720 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 98793886 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 98710833 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 98711364 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 98711997 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 98710317 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 98710950 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 98711478 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 98712111 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 98936286 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 99188376 6,0,0,0 2,0,0,0 54,0,0,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 99227225 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 99262778 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 99445515 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 99475360 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 99443811 0,0,6,0 0,0,2,0 0,0,54,0 6,0,0,0 12,0,0,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 99473983 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 99673720 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 99685635 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 99829431 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 99829011 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 99865097 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 99873235 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 99882881 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 99917284 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 100263176 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 100270767 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 101448515 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 10,0,0,0 -chr14 101448554 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 101519359 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 101522604 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 101538740 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 101547036 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 101553261 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr14 101563852 0,6,0,0 0,2,0,0 0,48,0,4 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 101570450 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 101575790 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 101580030 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 101586210 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 101620019 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 101619929 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 101744719 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 101745625 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 101768634 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 101884726 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 101970386 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 101971286 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 102001295 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 102258314 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 102441661 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 102441604 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 102466166 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 102535798 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 102508131 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 102500663 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr14 102482671 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 102476138 1,0,5,0 2,0,0,0 48,0,2,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 102636483 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 102646172 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 102872019 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 103028032 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 103066257 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 103096259 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 103097222 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 103096960 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 103213520 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 103243151 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 103333472 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 103277936 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 103273838 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 103542568 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr14 103578194 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 104238978 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 104278263 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 104267391 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 104279324 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 104290643 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 104312373 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 104465171 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 104693211 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 104680938 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 104693193 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 104680923 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 104713926 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 104759142 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 104789891 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr14 104759274 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 104787364 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,7,1,0 0,10,0,0 0,10,0,0 0,8,0,2 -chr14 104914176 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 104928621 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr14 104998290 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr14 105007471 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 20400435 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 20414481 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 20479906 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 20512288 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 20550812 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 20558239 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 20600364 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 22773197 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 23167182 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 23152257 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 23520228 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 23491145 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 23476414 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 24344047 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 24357248 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 25937256 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 25844911 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 26184573 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 26167413 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 26097728 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 26062888 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 26042897 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 26032338 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 27181174 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 27822270 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 27799377 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 27783731 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 29010106 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 29140094 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 29117217 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 29451722 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 29583294 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 30810207 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 32118494 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 32232499 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 32338389 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 32317753 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 32338428 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 32317789 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 32337224 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 32317885 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 32334882 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 32317040 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 32427832 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 32443754 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 32438726 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 32869994 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 32986051 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 32966073 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 35177567 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 35177600 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 35177603 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 36378959 0,6,0,0 0,2,0,0 0,53,0,1 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 37331817 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 37662194 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 37668116 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 37672716 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 37806117 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 38019072 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 38078235 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 38112261 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 38183809 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 38263273 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 38292932 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 38344446 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 38381982 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 38377062 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 38373892 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 38370658 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 38419079 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 38415298 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 38445158 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 38487447 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 38497658 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 38633513 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 38653452 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 38731579 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 38731540 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 38831561 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 38846782 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 38847450 0,0,6,0 0,0,0,0 0,3,45,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 38893477 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 38924239 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 38935434 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 39035033 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 39152958 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 39100506 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 39296609 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 39263852 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 39412047 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 39554139 0,6,0,0 0,2,0,0 0,54,0,0 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr15 39581490 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 39592324 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 39586694 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 39583560 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 39591360 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 39584921 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 39616527 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 39610622 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 39606408 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 39597624 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 39648397 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 39653183 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 39897133 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 39902974 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 39904845 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 39920344 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 39924767 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 39927251 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 40167123 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 40159099 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 40149530 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 40230162 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 40223971 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 40287627 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 40241833 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 40315832 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 40408801 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 40469586 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 40439538 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 40489479 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 40473805 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 40521591 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 40497441 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 40627730 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 40815380 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 40810716 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 40808274 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 40952166 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 40856610 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 40832186 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 40825573 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 41134345 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 41095318 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 4,0,0,6 -chr15 41024957 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 41249091 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 41270472 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 41288835 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 41276813 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 41320430 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 41313088 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 41318338 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 41312807 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 41359146 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 41408659 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 41409529 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 41428402 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 41445700 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 41443532 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 41441227 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 41465340 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 41483986 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 41501449 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 41492787 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 41663010 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 41656339 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 41651255 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 41614546 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 41674902 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 41683914 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 41719956 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 41826176 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 41855531 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 41876351 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 41896828 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 41889263 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 41938290 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr15 41967715 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 41953901 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 42368672 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 42575877 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 42731631 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 42708313 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 42678253 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 42654447 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 42795061 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 43122847 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 43192501 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 43190641 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 43186458 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 43180263 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 43176784 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 43173678 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 43197366 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 43217420 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 43231373 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 43278333 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 43251421 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 43347064 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 43456198 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 43484944 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 43500676 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 43671698 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 43755737 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 45843446 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 45841173 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 45846144 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 45843771 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 45850437 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 45839326 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 45844259 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 45850527 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 45839827 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 45844432 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 45850443 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 45839332 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 45844268 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 45850578 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 46201374 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 46257586 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 46231029 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 46617197 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 46589552 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 46567918 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 46545322 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 46516559 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 46495044 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 46872943 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 46846827 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 46821455 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 47004391 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 47117244 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 47080426 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 47207457 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 47296746 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 47414929 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 48081659 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 47977700 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 48262150 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 48306545 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 48332114 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 48322249 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 48368988 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 48551173 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 48707708 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 48649481 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 49008564 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 49077042 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 49316373 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 49291987 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 49463359 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 49643630 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 49574595 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 49536922 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 49762772 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 49862227 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 49975985 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 50045857 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 50126240 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 50192101 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 50362303 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 50340557 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 50312154 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 50291343 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 50495700 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 50444176 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 50400892 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 50868553 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 50869225 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 51781672 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 51695439 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 53276368 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 53451437 6,0,0,0 2,0,0,0 54,0,0,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 3,0,9,0 0,0,6,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr15 53497578 0,0,6,0 0,0,2,0 0,0,54,0 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 53577741 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 53761938 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 53716802 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 53909468 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 54746306 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 54711531 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 54711237 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 55323006 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 55310728 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 55332841 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 55604217 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 55717211 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 55671587 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 55683803 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 55791486 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 56041588 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 56072254 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 56254434 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 56622042 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 56761705 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 56911338 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 56969025 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 57135182 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 57174283 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 57351844 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 57297497 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 57258025 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 57233091 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 57748428 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 58431939 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 58706785 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 58576972 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 58580520 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 58579480 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 60064461 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 60038161 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 60009121 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 59988596 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 60139819 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 60056607 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 60031467 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 60006706 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 59969874 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 60731594 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 60780683 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 60791427 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr15 60820198 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 60845880 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 60875504 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 60898833 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 61122960 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 61140459 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 61220559 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 61358512 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 61418073 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 61419694 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 61668016 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 62005217 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 62160385 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 62213999 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 62210949 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 62209206 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 62233211 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 62283700 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 62477070 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 62759555 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 62820470 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 62901822 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 62897220 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 62940809 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 1,0,7,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr15 63023919 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 63129458 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 63199224 0,6,0,0 0,2,0,0 0,54,0,0 0,0,0,6 0,0,0,12 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 63237186 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 63283762 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 63346126 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 63454705 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 63410863 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 63408919 1,0,5,0 0,0,2,0 18,0,34,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 63480282 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 63471293 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 63465375 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 63546491 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 63559631 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 63577374 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 63591939 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 63686570 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 63658897 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 64061668 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 64009269 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 64386324 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 64402891 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 64416477 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 64569128 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 64579712 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 64644096 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 64632437 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 64860582 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 65333956 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 65423519 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 65500777 6,0,0,0 2,0,0,0 54,0,0,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr15 65496388 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 65666249 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 65666282 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 65905577 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 65913219 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 66273459 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 66790970 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 67112473 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 67118352 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 67335763 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 67495399 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 67515557 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 67526278 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 67515101 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 67525712 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 68746920 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 68748258 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 68746404 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 68747688 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 68736496 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 68975304 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 69322186 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr15 69827819 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 70031182 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 69957596 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 69906072 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 70242677 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 70286197 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 70289253 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 70345312 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 70322085 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 70366787 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 70477769 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 70651542 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 70816242 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 70832196 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 71339741 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 71357571 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 71377986 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 71404351 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 71649576 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 71653090 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 71782230 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 71783787 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 71783790 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 71819712 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 71967115 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 72068073 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 72063473 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 72102459 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 72077637 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 72113915 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 72102504 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 72077673 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 72122418 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 72124348 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 72254999 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 72276785 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 72268643 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 72346175 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 72497056 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 72538170 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 72527994 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 72671018 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 72705316 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 72735254 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,7,3,0 0,0,10,0 -chr15 72802293 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 72878273 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 72881748 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 72902083 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,9,1,0 0,10,0,0 -chr15 72931489 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 72972569 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 72984587 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 73128000 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 73419262 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 73433215 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 73441757 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 73439366 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 73436057 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 73492250 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 73479454 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 73472049 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 73596748 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 73696858 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 73719345 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 73803664 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 73983470 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 74236132 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 74367316 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 75135589 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 75212577 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 75193903 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 75543685 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 76103669 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 76092508 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 76237022 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 76273916 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 76260310 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 76353781 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 76420555 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 76552748 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 76577465 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr15 76621884 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 76667791 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,7,0,3 0,10,0,0 -chr15 76708772 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 76876015 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 76971617 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 77015129 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 77014440 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 77078174 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 77169802 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 77110865 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 77083514 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 77390652 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 77535871 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 77536996 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 77542703 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 78050396 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 78252529 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 78642564 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 78953335 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 78975455 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 79011321 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 79022409 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 79214755 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 79349026 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 79372331 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 79379392 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 79385348 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 79379167 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 79380764 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 79403429 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 80123022 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 80123796 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 80243271 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 80306919 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 81023713 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 81010444 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 81526752 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 81477963 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 81489977 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 81587227 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 81726788 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 81723528 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 81724440 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 82318559 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 82373064 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 82481311 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 82948252 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 82965084 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 83002311 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 83142909 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 83146619 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 83207855 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 83239242 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 83262815 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 83457637 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 83427862 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 7,0,1,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 83482096 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 83923266 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 83924139 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 83924985 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 83925864 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 84026400 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 84079243 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 83877859 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 83923518 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 83924373 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 83925222 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 83926056 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 84054852 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 84080336 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 86480220 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 86224555 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 86479520 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 86221274 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 86470592 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 86811973 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 86821262 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 86974337 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 87257517 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 87244025 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 87537550 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 87556091 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 87625508 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 87644596 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 87673315 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 87669880 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 87665080 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 87824582 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 87919959 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 87936346 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 87951020 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 87977932 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 87975864 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 87972916 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 88047367 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 88082313 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 88150576 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 88145771 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 88233347 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 88411661 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 88412585 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 88432962 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 88428562 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 88600101 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 88783592 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 88817096 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 88884301 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 88973591 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 89104505 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 89155455 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 89221392 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 89224490 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 89229285 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 89234149 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 89237957 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 89254326 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 89256309 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 89262613 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 89280538 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 89289220 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 89294847 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 89286766 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 89293657 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 89301414 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 89305266 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 89362050 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 89349675 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 89570851 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 89626094 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 90439200 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 90738343 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 90816544 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 91297603 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 91353474 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 92642699 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 92784495 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 94678637 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 96314965 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 97273994 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr15 97295709 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 97579582 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 97495762 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 98688754 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr15 98510454 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 98411737 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 98848563 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 98931791 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 98927722 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr15 99245428 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 99331665 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 99383725 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 99409581 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 99423361 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 99592825 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 99535505 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr15 99536471 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr15 100007860 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr15 100033448 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 45518 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 53075 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 51655 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 73071 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 156462 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 179207 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 244539 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 254045 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 271778 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 20,0,0,0 12,0,0,0 6,0,0,0 6,0,0,0 0,0,10,0 0,0,10,0 -chr16 294409 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 279582 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 365222 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 390340 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 508992 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 564510 0,4,0,0 0,0,0,0 0,23,0,5 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 568898 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 564411 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 568814 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 617491 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 626280 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 637472 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 641848 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 645362 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 647122 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 651068 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 652833 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 660289 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 662516 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 666378 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 667915 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 679559 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 677417 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 687184 0,0,4,0 0,0,0,0 0,0,30,0 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 707100 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 711915 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 713908 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 719349 0,4,0,0 0,0,0,0 0,28,0,0 6,0,0,0 12,0,0,0 26,0,0,0 0,20,0,0 0,6,0,0 0,0,0,0 0,8,0,0 10,0,0,0 10,0,0,0 -chr16 721575 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 754138 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 760880 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 788804 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 18,0,0,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 1069352 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 1304306 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,24,0,0 0,20,0,0 0,10,0,0 0,6,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr16 1331462 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 1335841 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 1337948 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 1340932 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 1351925 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 1393200 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 1410425 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 1451457 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 1442832 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 1437683 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 1485465 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 1497038 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 1579701 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 1570819 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 1548086 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 1513955 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 1510008 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 1668350 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 1752376 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 1755179 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 1757604 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 1761298 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 1763109 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 1763789 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 1766132 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 1767828 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 7,0,1,0 8,0,0,0 -chr16 1777731 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 1809959 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 1817828 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 1931401 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 1937058 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 1953204 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 1964629 4,0,0,0 2,0,0,0 44,0,0,0 0,0,6,0 0,0,12,0 0,0,26,0 20,0,0,0 12,0,0,0 8,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 -chr16 1965878 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 1967752 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 1970430 0,6,0,0 0,0,0,0 0,30,0,0 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 1969309 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 1969069 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 1970029 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 1975979 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 2034766 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 2048767 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 2060553 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 2065853 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 2070195 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 2076314 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 2083931 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 2081509 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 2143174 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 2163247 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 2166164 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 2176801 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 2198274 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 2199599 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 2219577 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 2225517 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 2234554 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 2316275 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 2287872 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 2278072 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 2274414 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 2268371 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 2427171 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 2445430 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 2450873 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 2454057 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 2463999 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 2509729 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 2518270 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 2585840 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 2704250 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 2759068 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 2762003 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 2845813 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 2956187 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 2966787 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 2964579 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 3005723 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 3012889 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 3016686 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 3037539 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 3082065 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 3079406 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 3080042 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 3105395 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 3109739 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 3127591 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 3131076 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 3246365 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 3237049 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 3275200 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 3289841 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 3374584 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 3373472 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 3392080 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 3498361 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 3587973 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 3584472 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 3579409 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 3580171 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 3580987 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 3572353 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 3647269 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 7,0,1,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr16 3667523 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 3654284 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 3783501 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 3760649 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 3739656 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 3721274 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 3718241 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 3718961 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 3719618 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 4104168 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 4104924 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 3969148 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 4182309 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 4252649 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 4248245 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 4327004 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 4331377 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 4378573 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 4347261 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 4436962 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 4456403 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 4498137 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 4502607 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 4641997 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 4671641 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 4720026 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 4691512 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 4734933 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr16 4755755 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 4742478 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 4774068 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 4790556 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 4812879 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 4843015 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 4860289 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 4864797 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 4866896 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 4890867 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 5018942 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 5052509 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 5063255 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 8627137 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 8643912 0,0,6,0 0,0,2,0 1,0,53,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 2,0,8,0 0,0,10,0 -chr16 8777830 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 8803258 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 8924595 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 8903487 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 10181574 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 9851194 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 9770390 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 10474865 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 10677452 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 10770436 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 10906145 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 2,8,0,0 -chr16 10908635 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 10909373 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 10924601 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 11256824 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 11677422 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 11732023 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 11693195 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 11680861 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 11775750 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 11764952 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 11849092 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 12004387 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 12805079 0,0,0,4 0,0,0,0 0,0,0,44 0,0,1,5 0,0,3,9 0,0,26,0 0,0,0,20 0,0,0,10 0,0,0,4 0,0,0,10 0,0,10,0 0,0,10,0 -chr16 12666299 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 13935596 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 14247006 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 14248655 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 14262571 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 14663261 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 14674077 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 15036811 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 15087606 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 15063227 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 15637346 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 15627095 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 15618488 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 15601865 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 15695578 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 15783793 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 15751575 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 15720658 0,6,0,0 0,2,0,0 0,50,0,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 15824675 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 15754760 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 15720987 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 16049655 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 16088325 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 16126177 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 16142576 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,8,0,0 -chr16 16204924 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 16183778 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 16167117 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 16268461 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 16289202 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 17199590 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 17129120 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 18443346 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 18978263 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 19185710 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 19359635 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 19413090 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 19410988 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 19454822 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 19455914 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 19488291 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 19556467 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 19630200 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 19950802 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 20239152 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 20239257 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 20256207 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 4,0,8,0 1,0,5,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 20291654 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 20342814 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 20471087 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 20604042 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 20544309 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 20689040 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 20708308 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 20746211 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 20765046 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 20778859 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 21059373 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 21040922 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 20973253 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 20949908 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 20919112 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 20901690 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 20860280 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 21129007 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 21121077 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 21197065 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 21531520 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 21604180 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 21645429 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 21641771 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 21881616 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 22163532 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 22183687 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 22232455 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 22244911 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 22265931 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 22733516 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 22834141 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 23067942 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 23003763 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 23108340 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 23267688 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 23352396 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 23316873 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 23399522 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 23463433 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 23448332 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 23553784 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 23554666 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 23548892 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 23580085 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 23602832 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 23625201 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 23614142 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 23610186 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 23676112 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 24133608 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 24175783 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 24480819 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 24486244 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 24480909 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 24713388 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 24739064 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 24825576 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 24889394 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 24854406 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 24854373 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 25170772 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 27129020 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 27139301 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 27261022 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 27281728 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 27282508 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 27367622 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 27456654 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 27413646 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 27407083 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 27383150 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 27596742 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 27627742 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 27659702 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 27695827 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 28088685 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 28054116 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 28020354 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 28309443 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 28504534 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 28514409 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 28527586 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 28525650 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 29583156 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 29615862 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 29715722 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 29718223 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 29723969 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 29738558 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 29760564 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 29766129 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 29816778 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 29796243 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 29817765 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 29797179 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 29792228 0,0,0,6 0,0,0,2 0,0,0,54 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 29842034 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 29886860 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 29898083 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 29904220 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 29901687 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 29905188 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 29913230 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 29915425 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 29926007 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 29942837 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 29944280 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 29988704 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 30010002 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 30014127 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 30031171 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 30036904 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 30036949 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 30036934 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 30106012 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 30111815 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 30284007 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 30276825 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 30295303 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 30298334 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 30364165 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 30397966 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 30417902 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 30438702 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 30489857 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 30504411 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 30501956 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 30574191 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 30628827 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 30631571 0,0,0,6 0,0,0,2 0,0,0,54 0,0,1,5 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 30647820 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 30655129 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 30675465 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 30678199 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 30682287 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 30685308 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 30687543 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 30877568 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 30884626 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 30888179 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 30904950 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 30906933 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 30952900 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 31005485 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 31003417 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 31013546 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 31030036 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 31048967 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 31057968 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 31108884 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 31120456 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 31120483 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 31138179 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 31291253 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 31300669 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 31343363 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 31393265 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr16 31393393 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 31404601 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 31407559 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 31409345 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 31412572 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 45194954 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 45254479 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 45284569 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 45329164 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 45302086 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 45513793 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 45556178 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 45675051 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 45829408 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 46171764 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 46091235 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 46255132 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 46725130 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 46703064 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 46682594 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 46814183 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 46783958 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 46768515 6,0,0,0 2,0,0,0 54,0,0,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 46794646 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 46778410 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 46835839 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 46868756 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 46943049 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 46953836 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 47870881 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 48322271 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 48227637 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 48228408 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 48229215 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 48229941 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 48657621 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 48879654 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 48892172 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 48900971 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 48959689 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 48913423 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 49268874 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 49265327 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 49316952 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 49367664 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 49384983 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 52056901 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 52287583 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 52247977 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 52229263 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 53524039 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 53919218 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr16 54081188 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 54125873 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 54276568 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,10,0,0 0,10,0,0 -chr16 54417705 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 54465436 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 54867440 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 54999454 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 55042604 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 55058700 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 55093782 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 55217898 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 55420405 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 55429089 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 55459772 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 55471008 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 55491000 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 55526852 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 55561391 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 55617283 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 18,0,0,2 12,0,0,0 8,0,0,0 10,0,0,0 8,0,2,0 4,0,6,0 -chr16 55618027 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 55625647 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 55669395 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 55706912 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 55765173 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 55796377 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 55841872 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 55973551 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 55974253 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 56025498 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 56048368 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 56062457 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 56117457 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 56166321 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 2,0,18,0 0,0,10,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 56245483 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 56252197 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,8,2,0 0,10,0,0 -chr16 56245474 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 56251072 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 56275405 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 56317495 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 56343367 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 56348308 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 56361945 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 56356948 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 56555939 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 56530897 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 56507575 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 56479320 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 56594049 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 56631985 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 56707461 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 56845486 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 56872087 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 57097974 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 57108321 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 57172070 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 57141162 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 57128484 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 57112381 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 57263625 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 57299590 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 60380856 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 63590064 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 64978449 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 65141401 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 65144182 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 65170390 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 65200862 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 65213557 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,3,0,7 0,0,0,10 -chr16 65414633 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 65410014 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 65402164 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 65441979 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 65506748 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 65504273 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,11,0,9 0,6,0,6 0,6,0,2 0,1,0,7 0,0,0,10 0,0,0,10 -chr16 65500693 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 65526877 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 65532560 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 65554665 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 65558152 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 65600414 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 65748024 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 65754408 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 65755056 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 65758956 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 65780458 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 65776593 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 65786356 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 65792066 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 65794066 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 65801580 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 65830796 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 65828057 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 65822151 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 65844037 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 65848427 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 65862368 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 65874018 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 65878314 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 65894635 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 65886437 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 65941657 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 65973547 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 65986905 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 66028062 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 66036094 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 66074165 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 66137120 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 66202692 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 66220912 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 66250417 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 66251327 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 66249454 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 66253328 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 66257800 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 66276938 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 66321231 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 66416024 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 66418662 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 66423209 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 66420170 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 66468342 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 66470486 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 66472044 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr16 66473206 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 66474557 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 66500348 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 66518800 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 66521343 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 66534154 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 66546138 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 66541317 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 66571644 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 66567536 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 66583536 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 66665440 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 66713743 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 66758274 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 66713719 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 66714514 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 66713695 6,0,0,0 2,0,0,0 53,0,1,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 66714505 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 66824801 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 66822258 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 66847279 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 66866358 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 66887866 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 66901966 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 66937105 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 66962391 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 66963045 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 66954913 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 67273738 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 67283260 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 67393216 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 67415014 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 67701309 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 67706457 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 67701399 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 67731317 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 67758505 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 67779062 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 67892310 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 67926149 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 67932652 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 67976051 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 68053843 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 68268621 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 68309877 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 68304473 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 68390123 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 68509194 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 68531263 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 68861075 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 68847150 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 68920745 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 68917082 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 68921244 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 68956031 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 68989769 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 69058294 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 69064663 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 69069701 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 69105753 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 69089405 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 69120365 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 69145959 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 69155367 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 69161478 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr16 69269666 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 69256470 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 69255532 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 69373355 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 69290146 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 69685324 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 69652021 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 69583555 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 69565596 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 69546894 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 69512246 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 69495103 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 69474086 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 69465947 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 69452141 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 69429226 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 69421171 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 69754066 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 69656172 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 69950238 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 70128525 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 70167345 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 70220894 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 70225670 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 70270901 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 70244290 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 70345249 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 70508023 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 70608454 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 70665322 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 70682032 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 70690091 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 70695510 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 70699088 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 70742088 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 70724192 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 70711311 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 73095049 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 73071721 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 73053543 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 73252840 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 73223977 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 73270322 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 73542895 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 73503668 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 73706994 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 73705563 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 73798539 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 73815578 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 73826638 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 73825256 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 74055944 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 74208577 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 74191747 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 74245778 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 75789562 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 75953637 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 75888790 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 76416859 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 76691182 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 77803053 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 79212316 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 79615841 0,0,0,6 0,0,0,2 0,3,0,51 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 79634708 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 79635764 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 79652854 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 79652551 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 79687326 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 79806164 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 79770882 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 79942731 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 80377182 0,1,0,5 0,1,0,1 0,30,0,24 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 80499632 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 80527444 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 80590625 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 80626686 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 80739966 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 9,0,1,0 10,0,0,0 -chr16 82551842 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 82556873 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 82556270 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr16 82557071 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 82686766 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 82672991 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 82650502 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 82721432 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 82767114 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 82773330 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 82772233 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 82770580 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 82782640 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 82787400 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 82814058 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 83030321 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 83050443 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 83080495 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 83071103 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 83253009 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 83464158 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 83567560 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 83672497 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 84225049 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 84248517 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 84252820 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 84259293 6,0,0,0 2,0,0,0 54,0,0,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 84370899 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 85139585 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 85123483 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 0,0,10,0 -chr16 85170493 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 85974778 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 85925037 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 85994099 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 86005572 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 86235879 4,0,0,0 0,0,0,0 34,0,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 86281183 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 86346372 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 86300443 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 86430875 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 86517982 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 86609695 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 86609758 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 87121948 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 87192205 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 87217957 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 8,0,0,0 -chr16 87225028 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 87237372 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 87249248 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 87275433 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 87300472 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 87309105 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 87401354 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 87403716 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr16 87451065 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 87479087 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 87471127 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 87479060 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 87471100 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 87739857 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 87781406 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 87884706 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 88120318 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 88104479 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr16 88140644 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 88155561 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 88189302 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 88182661 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 88231289 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 88283217 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 88295045 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 88302863 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 88317452 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 88399279 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 88367187 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 88352534 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 88404866 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr16 88452293 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,21,0,5 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 88488952 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 88504536 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 88529227 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 88552970 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr16 88600290 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr16 88630300 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 131564 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 478215 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 387056 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 632524 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 673722 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 848896 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 907007 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 856078 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 929358 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 859712 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 1211972 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 1287193 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 1332587 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 1327578 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 1320543 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 1332938 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 1328737 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 1321324 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 1315772 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 1357026 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 1441334 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 1495667 6,0,0,0 2,0,0,0 52,0,0,0 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 10,0,0,0 10,0,0,0 -chr17 1490579 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 1497001 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 1527120 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 1510871 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 1506438 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 1501532 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 1602776 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 1621152 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 1678024 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 1722563 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 1738742 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 1891201 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 1893115 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 1918842 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 2171597 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr17 2184634 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 2174355 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 19,0,1,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 2214168 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 2244938 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 2238074 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 2524212 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 2942938 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 3317477 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 3393584 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 3378158 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 3486232 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 3460697 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 3508053 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 3505327 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 3519342 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 3538752 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 3538683 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 3611204 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 3605300 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 3595970 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 3574104 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 3574839 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 3575841 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 3663169 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 3719919 0,0,6,0 0,0,2,0 2,0,50,0 0,0,6,0 0,0,12,0 26,0,0,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 3732307 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 3754903 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 3800624 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 3793505 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 3787677 6,0,0,0 2,0,0,0 54,0,0,0 3,0,3,0 8,0,2,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 3803418 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 3795129 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 3791328 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 3778795 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 3797742 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 3791121 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 3780430 0,0,6,0 1,0,1,0 6,0,38,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 3973976 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 3946011 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 3927002 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr17 3914429 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 3902114 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 3869741 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 4007086 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 4034924 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 4028975 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 4157102 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 4298261 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 4380780 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 2,0,10,0 0,0,8,0 0,0,10,0 7,0,3,0 0,0,10,0 -chr17 4405338 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 4399412 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 4391578 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 4400203 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 4392516 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 4443073 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 4489512 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 4482944 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 4567305 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 4567986 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 4585332 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 4593387 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 4595920 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 4636213 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 4639307 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,1,19,0 0,0,8,0 0,0,6,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 4658583 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 4666189 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 4672994 0,6,0,0 0,2,0,0 0,52,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 4745197 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 4742953 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 4781909 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 4790841 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 4800004 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 4803918 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 4822609 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 4816982 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 4813714 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 4832519 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 4847920 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 4867537 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 4877580 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 4877011 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 4974407 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 4986146 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 5126526 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 5205643 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 5263637 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 5232963 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 5278956 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 5294888 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 5325358 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 5426072 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 5403350 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 5397553 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 5365731 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 5402726 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 5403704 0,0,0,6 0,0,0,0 0,0,41,11 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 5383543 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 5359545 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 5402600 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 5403587 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 5386021 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 5361846 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 5402429 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 5403446 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 5385925 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 5365788 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 5934431 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 6270960 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 6269820 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 6269535 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 6270939 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 6269805 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 6382062 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 6318509 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 6308707 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 6467033 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 6433835 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 6548050 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 6534977 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 6614739 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 6656892 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 6853848 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 6868165 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 6870618 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 6883843 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 6958246 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 7021085 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 7065625 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 7068085 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 7065607 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 7068067 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 7074152 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 7071146 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 7070317 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 7098692 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 7102651 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 7127320 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 7128571 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 7137549 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 7133741 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 7157505 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 7170590 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 7167717 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 7165478 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 7161363 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 7170542 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 7168023 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 7165421 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 7161324 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 7188638 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 7197081 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 7200225 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 7247397 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 7259884 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 7265360 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 7286822 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 7299416 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 7306565 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 7307186 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 7307762 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 7341055 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 7345960 0,6,0,0 0,2,0,0 0,54,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr17 7356293 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 7394991 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 7394880 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 7403281 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 7403727 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 7404172 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 7421520 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 7424198 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 7430791 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 7470582 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 7475775 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 7498171 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 7519221 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 7532874 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 7577180 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 7604886 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 7623438 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 7640671 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 7662413 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 7668013 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 7675534 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 7691258 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 7697094 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 7702192 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 7739501 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 7744742 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 7749668 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 7752458 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 7743173 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 7747017 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 7751004 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 7739387 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 7744389 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 7748022 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 7751738 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 7771413 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 7775836 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 7779119 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 7788618 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 7792609 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 7779122 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 7788624 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 7792612 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 7850609 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 7857201 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 7859880 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 7889292 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 7892521 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 7889403 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 7892548 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 7889412 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 7892443 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 7923897 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 7959047 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 7952517 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 7965834 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 7994095 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 7991787 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 7987352 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 7986394 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 8005695 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 8033682 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 8050668 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 8076057 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 8072905 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 8099604 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 8107018 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 8109087 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 8110890 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 8112850 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 8135480 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 8159212 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 8163391 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 8189802 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 8294845 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 8449003 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 8356652 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 8343417 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 8331493 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 8320978 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 8749767 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 8730644 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 9349140 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 9479512 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 9476964 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 9686577 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 9749042 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 9803276 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 9762096 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 9778235 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 10264212 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 10253593 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 10244716 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 10301527 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 10297217 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 10289326 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 10360279 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 10355988 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 10340306 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 10338700 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 10377338 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 10372785 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 10370766 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 10368510 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 10365474 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 10483002 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 10479465 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 10476703 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 10472706 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 10573854 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 11452173 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 11473599 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 11513645 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 11548466 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 11612551 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 11678913 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 2,0,8,0 10,0,0,0 -chr17 11738532 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr17 11806238 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 11773982 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 11835027 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 11973267 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 1,0,19,0 1,0,11,0 1,0,7,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 12588458 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 12607668 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 12847533 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 12838516 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 13444920 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 14036241 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 15175213 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 15148074 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr17 15550479 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 15819003 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 15846864 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 15990549 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 15942514 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 15914329 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 15901600 6,0,0,0 2,0,0,0 54,0,0,0 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 15876513 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 16186962 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 16270278 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 16411517 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 16919793 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 16987702 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 17005362 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 16919814 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 16990077 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 17005383 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 17046948 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 17068119 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 17059061 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 17068092 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 17091584 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 17321197 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 17339375 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 17353549 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 17680813 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 17663686 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 17661381 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 17659991 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 17680792 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 17663755 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 17661465 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 17657622 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 17751553 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 17705548 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 17710412 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 17868735 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 17942332 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 17970472 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 17982213 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 17986840 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 17994795 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 17998211 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 18001906 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 18011736 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 18028903 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 18076836 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 18080760 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 18084657 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 18086581 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 18098220 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 18095486 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 18091749 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 18089669 0,6,0,0 0,2,0,0 0,54,0,0 0,4,2,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 18152926 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 18136804 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 18160191 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 18161385 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 18192391 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 18173390 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 18184167 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 18571652 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 18588585 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 18608843 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 18711326 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr17 18804663 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 18863590 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 18815133 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,9,0,1 0,10,0,0 0,10,0,0 -chr17 18847737 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 18815474 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 19127109 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 19172621 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 19178061 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 19129695 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 19175898 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 19172651 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 19178079 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 19226817 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 19399504 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 19421254 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 19495601 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 19550620 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 19587319 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 19582906 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 19641380 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 19821529 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 19780197 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 20048590 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 20049757 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 20048608 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 20049802 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 20048374 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 20049466 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 20149939 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 20855140 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 21142343 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 21142373 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 22660303 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 22661232 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 23000030 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 23000024 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 23125523 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 23116727 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 23111307 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 23680387 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 23708937 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 23720884 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 23845237 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 23878401 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 7,0,1,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 23886177 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 23898942 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 23914622 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,11,1 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 23926667 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 23949765 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 23943897 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,10,0 0,0,10,0 -chr17 23936499 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 23963453 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 23991808 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 23988252 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 23971037 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 23966268 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 24027419 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 24034219 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 24048125 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 24055983 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 24065828 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 24086083 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 24092066 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 24100194 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 24207424 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,10,0 0,0,10,0 -chr17 24248672 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 24232993 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 24252417 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 24272842 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 24264033 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 24258131 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 24263764 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 24404574 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 24425244 0,6,0,0 0,2,0,0 0,54,0,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,10,0,0 0,10,0,0 -chr17 24802815 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 24893776 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 24917661 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 24923033 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 24923816 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 24927039 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 24933136 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 24926591 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 24960291 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 24964051 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 24968114 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 25023175 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 25572795 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 25564007 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 25639087 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 25676177 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 25783016 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 25843826 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 26144785 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 26186314 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 26209340 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 26243887 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 26255403 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 26307525 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,14,0,6 0,8,0,2 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 26349960 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr17 26551700 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 26687503 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 26694224 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 26725296 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 26565600 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 26688528 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 26703491 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 26670058 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 26872367 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 26882768 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 27231759 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 27493842 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 27559397 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 27552157 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 27550569 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 27645479 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 27714115 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 27820269 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 28111442 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 27989939 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 28291992 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 28367149 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 29606499 6,0,0,0 2,0,0,0 54,0,0,0 0,6,0,0 0,12,0,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr17 29672030 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 30293775 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 30313247 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 30342240 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 30350560 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 30340737 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 30349356 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 30355587 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 30470699 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 30470280 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 30478339 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 30488740 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 30505813 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr17 30521318 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 30609975 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 30615421 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 30773517 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 30792876 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 30927310 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 31001712 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 30959375 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 31008800 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 31092404 0,4,0,0 0,2,0,0 1,27,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 31101429 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 31115446 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 31195655 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 31215884 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 31229706 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 31332535 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 31365054 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 31609438 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 31916683 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 32017728 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 32038350 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 32374313 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 32420066 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 32690448 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 32677879 6,0,0,0 2,0,0,0 54,0,0,0 0,0,6,0 0,0,12,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 32652853 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 32542645 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 32707003 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 32679705 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 32666028 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 32544182 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 32706991 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 32679690 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 32671592 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 32544170 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 32708909 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 32684069 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 32674582 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 32561218 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 32857744 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 33030411 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 32987481 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 32974617 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 33011673 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 32987772 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 32954855 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 33178683 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 33167919 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 33752449 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 33748856 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 33742662 0,0,6,0 0,0,2,0 0,0,54,0 1,0,5,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 33805152 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 34126333 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 34127659 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 34131830 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 34135374 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 34145196 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 34196670 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 34251015 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 34328398 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 34549596 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 34482239 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 34593915 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 34585295 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 34587768 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 34626940 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 34684772 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 34833599 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 34818127 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 34819081 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 34819837 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 34872045 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 34900486 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 35015415 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 35016015 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 35043846 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 35068879 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 35079814 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 35083828 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 35120145 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 35127212 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 35135496 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 35140009 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 35153029 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 35156571 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 35175996 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 35175825 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 35198152 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 35202552 0,0,6,0 0,0,2,0 0,0,53,1 0,0,6,0 0,0,12,0 0,0,26,0 1,0,19,0 1,0,11,0 0,0,6,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 35176263 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 35175978 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 35175705 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 35322271 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 35322157 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 35314725 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 35396356 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 35405988 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 35425624 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 35463253 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 35439617 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 35432564 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr17 35442532 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 35433003 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 35494414 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 35507142 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 35504773 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 35573344 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 35577351 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 35598749 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 35603167 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 35704212 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 35752620 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 35863786 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 35897006 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 35887432 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 36040611 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 36113102 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 36110104 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 36164923 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 36159051 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 36176369 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 36207032 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 36276688 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr17 36272918 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 36290542 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 36335293 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 36368520 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 36725398 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 36776320 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 36805323 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 36834007 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 36831960 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 36876779 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 36873891 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 36890698 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 36886861 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 36898144 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 36914881 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 36912771 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 36913101 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 36928572 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 36937683 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 36934255 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 36978291 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 36992220 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 37021446 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 37019783 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 37031502 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 37125310 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 37142097 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 5,0,15,0 0,0,12,0 1,0,7,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr17 37134602 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 37144282 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 37138079 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 37144054 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 37141422 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 37134776 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr17 37167441 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 37220754 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 37228009 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 37245651 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 37251742 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 37257728 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 37319453 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 37302855 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 37281958 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 37315313 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 37302154 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 37379123 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 37513543 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 37507400 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 37523539 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 37520048 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 37533819 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 37583690 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 37575193 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 37565730 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 37598932 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 37598108 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 37628934 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 37617566 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 37695000 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 37710079 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 37753971 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 37739292 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 37722751 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 37739483 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 37728677 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 37896180 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 37919933 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 37946587 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 37949200 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 37960365 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 37968748 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 37971097 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 37972860 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 37979702 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 37990718 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr17 38016002 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 38020138 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 38071287 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 38077652 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 38075066 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 38085732 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 38090537 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 38094097 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 38097531 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 38101585 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 38125983 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 38108461 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 38184547 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 38200413 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 38201206 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 38226325 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 38217234 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 38255684 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 38257501 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 38258287 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 38360719 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr17 38396581 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 38418637 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 38424299 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 38434058 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 38451279 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 38451318 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 38451309 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 38469475 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 38482089 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 38832809 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 38924141 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 38932894 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 38946381 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 38966210 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 39094058 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 39094337 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 39094289 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 39188654 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 39262947 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 39247179 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 39281675 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 39315330 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 39310829 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 39439464 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 39447386 0,6,0,0 0,2,0,0 0,50,0,0 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr17 39503964 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 39508907 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 39521483 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 39513689 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 39583863 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 39603944 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 39627486 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 39644787 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 39643041 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 39649592 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 39643977 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 39640356 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 39692766 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 39690285 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 39684443 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 39754064 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 39784318 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 39818504 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 39813876 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 39811376 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 39807963 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 40162969 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 40205211 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr17 40211089 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 40300791 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 40286481 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 40348303 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 40467160 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 40535859 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 40582361 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 40583363 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 40602956 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 40677076 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 40837617 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 40911132 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 40908864 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 40886952 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 40872697 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 41266661 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 41447508 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 41416694 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 41424716 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 41457343 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr17 41451922 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 41429762 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 41604225 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 41605137 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 41467481 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 42059319 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 42206293 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 42201139 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 42308906 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 42367414 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 42641847 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 42716962 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 42735105 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 43093534 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 43165981 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 43177275 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 43251407 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 43248504 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 43243178 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 43256631 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 43271295 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 43279939 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 43280578 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 43357414 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 43385329 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 43408294 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 43483623 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 43508440 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 43612419 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 43962209 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 44010484 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 44030282 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 44040366 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 44160734 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 44222420 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 44202337 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 44325787 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr17 44362874 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 44470694 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 44478358 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 44598519 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 44649020 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 44656723 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 44749225 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 44745169 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 44844196 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 44938925 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 45043688 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 45137627 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 45150050 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 45250234 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 45271016 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 45272245 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 45406291 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 45503741 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 45508712 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 45511594 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 45503858 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 45508823 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 45511866 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 45541667 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 45548259 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 45600369 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 45631627 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 45626525 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 45620913 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 45618819 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 45711344 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 45788900 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 45792354 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,2,6,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 45812723 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 45894807 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 45906615 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 45901095 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 45912396 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 45917107 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 45955412 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 45961128 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 45971258 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 45974304 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 45981486 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 45983435 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 45987992 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 46093472 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 46105363 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 46108696 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 46119926 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 46177068 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 7,3,0,0 10,0,0,0 -chr17 46432069 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 46403158 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 46588128 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 46708267 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 47180102 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 49256020 0,0,6,0 0,0,2,0 1,0,53,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 49257013 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 50362513 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 50433227 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 50700328 0,6,0,0 0,2,0,0 0,54,0,0 0,0,0,6 0,0,0,12 0,26,0,0 0,19,0,1 0,11,0,1 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 51153145 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 51786330 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 51913145 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 52336626 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 52324412 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 52423527 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 52538280 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 52539210 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 52548496 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 52689857 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 53306059 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 53411666 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 53587831 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 53602261 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 53629493 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 53635607 0,0,6,0 0,0,2,0 1,0,53,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 53684679 6,0,0,0 2,0,0,0 54,0,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 53712745 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 53710213 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 53705133 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 53760238 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 53755366 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 53748829 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 53743054 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 53738766 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 53795760 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 53920441 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 53854754 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 53936821 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 53959170 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 53953503 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 53954432 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 53975255 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 53976155 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 54045784 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 54031429 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 54018321 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 53990187 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 54037473 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 54031762 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 54004333 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 54156419 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 54412364 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 54489027 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 54617251 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 54642209 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 54643007 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 54644931 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 54647052 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 54997868 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 55034727 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 55096032 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 55115267 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 55240962 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 55346813 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 55510985 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 55492155 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 55480463 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 55582219 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 55720725 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 55643559 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 55630516 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 55896211 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 56032827 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 56095620 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 56422335 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 56836776 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 56837925 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 56910856 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 56915521 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 57208687 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 57463621 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 57395114 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 57378695 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 57955352 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 58037250 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,5,5 -chr17 58095948 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 58109638 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 58120700 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 58123385 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 58167388 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 58142329 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 58865576 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 58915507 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 7,0,19,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 58922376 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 58961566 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 58973512 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 58961221 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 58973458 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 59032387 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 59119640 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 59124860 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,11,1,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 59121405 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 59137780 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 59135558 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 59187626 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 59240714 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 59256237 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 59252191 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 59261368 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 59304040 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 59304308 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 59311562 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 59327273 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 59326918 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 59362458 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 59360959 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 59626100 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 59906906 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 59929667 0,0,0,6 0,0,0,2 0,2,0,52 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 60012748 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 60483001 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 60594861 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 60651758 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 60964131 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 60956610 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr17 61388088 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 61729554 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 62230530 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 62307251 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 62457567 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 62615061 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 62572459 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 62505026 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 63146513 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 63280543 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 63318459 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 63345400 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 63386331 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 63281329 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 63320702 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 63374680 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 63763534 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 63780448 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 63928025 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 63934982 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 64059667 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 64432564 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 64390437 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 64552321 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 64525486 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 64492822 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 5,0,3,0 0,0,10,0 0,0,10,0 -chr17 64636408 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 64588859 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 64682462 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 64812453 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 64778417 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 65028014 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 67630599 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 68156546 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 68708845 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 68713334 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 68755063 6,0,0,0 2,0,0,0 54,0,0,0 5,0,1,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 69757088 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 69812976 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,9,0,1 -chr17 69867887 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 69865042 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 69878340 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 69880109 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 69947906 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 69954657 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 69948149 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 69982417 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 70053515 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 70096354 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 70100491 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 70206214 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 70269889 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 70279514 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 70357970 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 70353866 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 70373958 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 70370541 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 70438198 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 70443503 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 70454835 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 70467800 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 70459718 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 70546946 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 70601419 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,10,0 0,0,10,0 -chr17 70608394 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 70636698 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 70716282 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 70742828 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 70749371 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 70747782 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 70750521 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 70747554 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 70769594 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 70794051 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 70833679 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 70996488 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 70999402 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 71001552 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 71005913 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 71014068 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 71011079 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 71009936 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 71010476 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 71008816 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 71067033 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 71076690 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 71081652 0,0,0,4 0,0,0,0 0,0,0,42 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 71072083 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 71080710 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 71169325 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 71138326 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 71137031 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 71169331 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 71232426 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 71239514 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 71247740 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 71258511 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 71262834 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 71265195 0,6,0,0 0,2,0,0 0,52,0,0 0,0,0,6 0,0,0,12 0,24,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 71238111 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 71247662 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 71258421 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 71263396 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 71272734 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 71265898 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 71350692 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 71344060 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 71338776 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 71335753 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 71384147 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 71399839 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 71463562 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 71455959 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 71457180 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 71513045 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 71529367 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 71525476 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,6,4,0 0,6,4,0 -chr17 71519338 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 71548144 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 71584486 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 71587036 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 71609408 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 71609046 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 71647963 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 71645571 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 71669548 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 71815167 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 71787828 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 71861227 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 71819367 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 71894815 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 71908773 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 71906519 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 71904172 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 71976447 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 71985411 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 71981357 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 71989135 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 71984600 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 71980495 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 72036273 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 72136908 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 72133758 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 72234107 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 72228040 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 72252018 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 72389847 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 72456368 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,10,2 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr17 72712955 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 72721613 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 72713015 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 72721661 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 73630422 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 73625213 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 73641583 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 73646081 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 73678657 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 73713342 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,17,3,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 73866159 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 73886392 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 73911602 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 74206612 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 74206017 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 74329632 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 74314851 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 74311269 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 74483670 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 74479475 0,6,0,0 0,2,0,0 0,44,0,10 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 74502777 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 74555300 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 74588643 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 74592978 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 75319682 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 75325593 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 75598672 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 75539892 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 1,0,23,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 75533469 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 75653995 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 75683701 0,6,0,0 0,0,0,0 0,50,0,0 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 75693232 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 75696902 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 75701343 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 75707124 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 75769844 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 75779863 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 75792255 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 75779863 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 75811674 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 75836537 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,11,1 0,0,3,5 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 75876481 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 75932254 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,10,0,0 0,10,0,0 -chr17 75934017 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 75935061 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 75936078 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr17 75941405 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 75952171 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 75961521 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 75973544 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 76063974 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 76059342 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 76379878 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 76473537 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 76537914 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 76674084 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 76674861 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 76688334 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 76788203 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 76785173 0,6,0,0 0,2,0,0 0,54,0,0 0,5,0,1 0,11,0,1 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 76780766 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 76820363 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 76817829 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 76860937 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 76870634 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 76902838 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 77124742 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 77118863 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 77244207 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 77271334 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 77278512 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 77292456 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,8,0,2 0,10,0,0 -chr17 77411626 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 77420756 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 77439479 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 77451265 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 77456281 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 77485570 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 77508982 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 77547633 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 77568193 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 77576291 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 77583912 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 77587195 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 77605681 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 77605963 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 77612402 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 77647549 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 77643700 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 77639723 4,2,0,0 0,0,0,0 0,36,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 77637660 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 77636289 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 77634755 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 77632965 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 77630539 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 77790015 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 77800697 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 77802608 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 77868034 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 77913654 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 77966635 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 77984885 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 77992325 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 77995283 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 78015541 0,6,0,0 0,2,0,0 0,54,0,0 0,4,2,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 78020027 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr17 78134049 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr17 78138388 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 78215689 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 78270175 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 78300049 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr17 78381892 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr17 78508635 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 188079 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 336623 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 324953 0,0,0,6 0,0,0,2 0,0,0,44 0,6,0,0 0,12,0,0 0,0,0,22 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr18 570678 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 634957 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 684286 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 733273 6,0,0,0 2,0,0,0 54,0,0,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 2553849 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 2580049 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 2903327 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 2927908 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 2910823 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 3447494 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 3447554 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 3447587 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 3447647 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 3719338 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 3524486 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 3869543 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 3804151 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 3572246 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 5418323 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 5406239 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 5385619 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 5950107 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 6884836 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,2,0,24 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 6880518 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 7030235 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 7022163 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 6987865 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 6956281 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 6946728 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 6932217 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 8059910 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 8368340 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 8708613 0,6,0,0 0,2,0,0 0,54,0,0 0,0,0,6 0,0,0,12 0,26,0,0 0,20,0,0 0,12,0,0 0,6,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 8818926 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 9253817 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 9271034 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 9507201 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 9560248 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 9540118 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 9560215 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 9540088 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 10458488 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 10477609 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 10681319 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 11743839 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 11877003 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 12018898 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 12264094 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 12357104 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 12330214 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 12454899 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 12687316 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 12663421 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 12775840 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 12807325 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 12968817 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 13046399 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 13059829 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 13611219 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 13635242 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 13635497 6,0,0,0 2,0,0,0 50,0,2,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 13656646 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 16944848 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 16840453 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 16789183 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 17408376 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 17491096 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 17653477 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 18770887 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 18827780 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 18827435 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 19087751 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 19087841 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 19298524 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 19354238 0,0,0,6 0,0,0,2 0,0,0,54 0,4,0,2 0,4,0,8 0,26,0,0 0,19,0,1 0,3,0,9 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 19420296 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 19390395 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 19374430 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 19483107 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 19583490 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 19650441 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 19676371 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 19692782 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 19732732 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 19743179 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 19765131 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 19785654 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 19735183 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 19746720 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 19766206 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 19785738 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 19977088 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 19993753 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 19990072 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 19990891 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 19990243 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 19989889 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 20030135 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 20202325 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 20012140 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 20302892 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 21866392 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 22108672 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 22335168 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 22696477 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 23786117 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 26840986 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 26856460 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 26920646 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 26902863 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 26914074 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 26902962 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 26966542 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 26968717 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 27172288 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 27188677 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 27225086 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 27281874 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 27306291 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 27353853 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 27370362 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 27380071 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 27432540 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 27765345 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 27691824 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 27957518 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 28121273 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 28104192 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 28102525 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 29101223 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 29079222 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 29938019 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 30646036 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 30661609 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 30628204 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 30661606 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 31076465 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 31207513 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 31523195 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 31827159 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 31972772 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 32029222 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 32054018 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr18 32410455 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 32543192 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 32603275 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 33319508 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 37821791 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 37883497 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 41461090 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 41478068 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 41507662 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 41570452 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 41671714 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 41788471 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 41785157 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 41756463 6,0,0,0 2,0,0,0 54,0,0,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 41735062 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 41712382 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 41691831 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 41932162 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 41956446 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 42097001 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 42074099 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 42538578 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 42661933 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 42813497 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 42814253 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 42814997 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 42838658 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 42881332 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 43628983 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 44538732 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 44701936 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 44824524 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 45361958 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 45567690 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 45772745 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 45709955 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 45675461 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 45644742 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 45618003 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 46032140 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 46057506 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 46055547 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 46057226 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 46054628 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 46057250 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 46055398 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 46057536 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 46055565 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 46057250 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 46055398 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 46172483 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 46509970 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 46706134 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 46767243 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 46857134 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 48686677 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 49102452 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 9,0,1,0 10,0,0,0 -chr18 49279784 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 50109803 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 50416290 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 51279331 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 51279304 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 52444659 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 52536222 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 52575405 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 52756830 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 52501066 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 52575165 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 52742191 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 53171228 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 53389652 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 53381147 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 53425552 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 53510186 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 53470911 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 54397230 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 54398013 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 54342222 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 54532314 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 54562587 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 55048638 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 55136537 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 55173599 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 55515426 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 55257772 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 56190502 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 57372593 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 58006153 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 58092267 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 59185313 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 59218321 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 59374381 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 59407914 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 59610648 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 59753453 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 59796678 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 61662186 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 62390262 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 64501148 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 65557319 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 66011577 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 65939829 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 65842988 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 66143736 0,6,0,0 0,2,0,0 1,47,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,10,0 0,0,10,0 -chr18 68360159 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 68612399 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 69954006 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 70254766 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 70374573 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 71126551 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 71127505 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 71128393 0,0,0,6 0,0,0,2 0,0,0,54 0,0,6,0 0,0,12,0 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 71129350 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 72736009 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 72751046 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 72857790 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 72857937 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 72829826 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 72857781 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 73097140 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 75015509 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 75203282 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 75235061 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 75271974 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 75309871 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr18 75271776 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 75294597 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 75311963 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 75575534 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr18 75576386 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 75571422 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr18 75576110 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr18 75811795 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr18 75834739 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 232507 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 278893 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 258216 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 325365 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 449623 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 449812 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 487338 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 531731 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 580613 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 574459 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 594296 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 599908 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 645830 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 636853 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 697619 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 697427 0,4,0,0 0,0,0,0 0,38,0,0 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 708420 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 709176 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 755067 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 761606 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 757487 0,4,0,0 0,0,0,0 0,24,0,0 0,0,0,6 0,0,0,12 0,0,0,26 0,20,0,0 0,6,0,0 0,0,0,0 0,8,0,0 0,0,0,10 0,0,0,10 -chr19 781770 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 806788 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 812875 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 837189 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 851840 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 880771 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 923035 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 942974 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 964290 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 964272 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 977705 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 994090 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 1000407 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 1005634 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 1007990 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 1012831 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 1024281 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 1033970 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 1040916 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 1186103 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 1205990 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 1230103 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 1321789 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,0,0,20 0,0,0,8 0,0,0,6 0,0,0,10 0,10,0,0 0,10,0,0 -chr19 1352324 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 1372194 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 1369243 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 1383658 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 1404455 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 20,0,0,0 10,0,0,0 6,0,0,0 8,0,0,0 0,0,10,0 0,0,10,0 -chr19 1413054 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 1438240 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 1458335 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 1550475 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 1572959 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 1774624 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 1770120 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 1832003 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 1929698 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 1937630 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 2029219 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 2048088 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 2050281 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 2072821 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 2067265 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 2061762 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 2150936 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 2164907 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 2168908 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 2173537 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 2200361 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 2206213 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 2227068 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 2354141 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr19 2367605 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 2376479 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 2389211 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 2384932 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 2718642 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 2741594 0,0,6,0 0,0,2,0 24,0,30,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 2778674 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 2804377 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 2868276 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 2942847 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 3087460 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 3129997 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 3130693 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 3232214 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 3332997 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 3447775 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 3477375 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 3508319 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 3508394 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 3497366 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 3612958 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 3595164 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 3681056 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 3690037 0,0,0,6 0,0,0,0 0,0,0,48 0,6,0,0 0,12,0,0 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,8 0,10,0,0 0,10,0,0 -chr19 3698836 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 3711163 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 3703973 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 3718310 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 3734183 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 3730727 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 3915737 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 3910488 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 3933983 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 3930908 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 3984147 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 4105907 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 4122466 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 4126692 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 4182267 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 4235887 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 4262981 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 4317943 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 4360045 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 4381590 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 4393983 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 4397167 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 4450604 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 4480180 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 4474974 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 4489729 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 4499422 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 4810678 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 4998594 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 5082250 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 5088283 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 5224455 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 5195045 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 1,0,9,0 0,0,2,0 0,0,8,0 0,0,10,0 0,0,10,0 -chr19 5171274 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr19 5225313 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 5195000 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 5172196 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 5567482 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 5561067 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 5538731 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 5615147 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 5637492 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 5651845 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 5645556 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 5723844 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 5740349 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 5738689 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 5782570 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 5783212 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 5856018 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 5902475 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr19 5874906 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 5908948 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 5874293 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 5995263 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 5948188 0,0,4,0 0,0,0,0 0,0,38,0 6,0,0,0 12,0,0,0 0,0,22,0 0,0,20,0 0,0,10,0 0,0,8,0 0,0,10,0 10,0,0,0 0,0,10,0 -chr19 5961219 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 6098599 0,0,0,6 0,0,0,2 0,0,0,54 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 6181649 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 6173536 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 6263260 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 6326351 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 6338538 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 6331448 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 6403400 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 6446215 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 6446842 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 6621029 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 6658514 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 6637801 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 6683059 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 0,0,20,0 0,0,20,0 0,0,12,0 0,0,6,0 0,0,10,0 0,0,8,0 10,0,0,0 -chr19 6701002 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 6705924 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 6705107 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 6776325 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 6799069 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 6854948 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 6879216 0,6,0,0 0,2,0,0 0,54,0,0 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr19 7125735 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 7114209 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 7073919 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 7135619 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 7117336 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 7076385 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 7415247 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 7437848 0,0,0,6 0,0,0,2 0,1,0,53 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 7456765 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 7476858 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 7490527 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 7491334 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 7495914 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 7499739 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 7510873 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 7512919 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 7522289 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 7529788 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 7588772 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 7594753 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 7603697 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 7615508 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 7641139 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 7701014 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 7817500 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 7824028 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 7880653 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 7891314 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 7903756 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 7952028 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 8027061 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 8112915 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 8100149 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 8082886 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 8074462 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 8062455 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 8046067 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 8037120 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 8232990 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 8305271 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 8342016 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 8342186 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 8374307 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 8444555 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 8457151 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 8456527 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 8457259 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 8482573 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 8501423 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 8496427 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 8567978 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 8560394 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 8557121 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 9131891 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 9133082 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 9507889 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 9782742 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 9800546 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 9825870 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 9977777 6,0,0,0 2,0,0,0 52,0,0,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 9973244 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 9963715 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 9949314 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 9940368 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 9932341 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 9990561 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 10064299 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 10081916 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 10081691 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 10090623 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 10138292 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 4,0,22,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 10123080 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 10113722 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 10108781 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 10230145 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 10242874 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 10255836 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 10256939 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr19 10258706 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,8,0,0 0,10,0,0 -chr19 10258766 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 10264415 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 10287418 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 10306956 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 10305687 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 10333625 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 10325729 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 10375098 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 10431411 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 10461387 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 10518904 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 10532029 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,1,0,19 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 10540281 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 10603366 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr19 10643088 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 10655413 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 10654827 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 10660892 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 10684460 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 10748810 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 10791739 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 10748804 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,24,0,2 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 10791739 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 10806793 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 10891589 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 10955854 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr19 10958247 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 10966674 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 10991338 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 2,0,6,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr19 11004995 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,10,0 0,0,10,0 -chr19 11074386 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 11092071 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 11164685 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 11165342 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 11148410 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 11317270 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 11346530 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 11350391 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 11371908 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 11402551 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 11395653 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 11419513 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 11459225 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 11457485 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 11548364 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 12159081 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 12438636 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 12552938 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 12637549 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 12630071 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 12624024 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 12618486 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 12644664 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr19 12651515 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 12651635 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 12668061 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 12661786 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 12706378 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 12719250 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 12729558 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 12739216 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 12735152 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 12737789 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 12771781 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 12800702 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 12819130 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 12836920 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 12840983 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 12850599 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 12857220 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 12857835 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 12865466 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 12890146 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 12902296 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 12896530 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 12912092 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 12928763 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 12941606 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 13087453 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 13081622 0,0,6,0 0,0,2,0 0,0,54,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 13076862 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 13107777 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 13120860 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 13734178 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 13736762 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 13740858 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 13740523 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 13789732 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 13849257 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 13864679 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 13885387 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 13895577 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 13901940 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 13932123 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 13949827 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 13940638 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 13935490 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 14003744 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 14069229 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 14065484 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 14155365 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 14133407 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 14129819 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 14149398 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 14132475 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 14127939 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 14362884 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,10,0 0,10,0,0 -chr19 14362767 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 14360563 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 14384854 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 14381142 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 14423813 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 14443533 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 14430085 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 14444431 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 14450537 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 14451261 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 14487976 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 14666845 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 14723373 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 14723439 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 14813299 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 14982784 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 15080943 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 15084315 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 15094580 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 15087699 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 15158977 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 15156808 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 15152638 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 15149479 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 15146107 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 15137304 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 15244763 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 15236271 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 15227928 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 15211758 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 15332705 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 15398824 0,6,0,0 0,2,0,0 0,53,0,1 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr19 15394935 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 15447962 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 15441494 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 15509700 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 15621011 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 15645501 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 15668002 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 16060891 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 16157295 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 16199420 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 16408810 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 16376539 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 16474968 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 16504480 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 16493340 0,6,0,0 0,1,1,0 0,16,34,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 16527091 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 16654296 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 16766330 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 16818924 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 16841495 0,0,6,0 0,0,0,0 0,0,36,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 16850469 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 16961500 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 16900825 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 16876073 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 17034528 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 17021800 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,9,0,1 -chr19 17200674 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 17234676 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 17223412 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 17273069 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 17264478 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 17302295 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 17309468 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 17311298 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 17377129 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 17395316 0,0,0,6 0,0,0,2 0,0,0,52 0,6,0,0 0,12,0,0 0,0,0,26 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 17460681 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 17476322 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 17499128 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 17502646 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 17527720 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 17552640 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 17736253 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 17748478 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 17758437 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,10,0 0,0,10,0 -chr19 17814344 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 17803060 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 17844434 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 17853802 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 17908313 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 17981472 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 17980822 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 17982481 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 18134118 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 18165211 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 18198088 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 18190305 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 18191060 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 18229055 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 18229715 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 18358026 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 18368543 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 18404414 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 18403968 0,6,0,0 0,2,0,0 0,52,0,0 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr19 18407895 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 18430119 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 18505133 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 18562669 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 18566115 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 18588812 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 18714791 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 18747573 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 18743293 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 18761818 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 18757499 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 18822641 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 2,0,10,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 18829221 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 18878892 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 18877406 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 18882791 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr19 18871493 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,0,0,24 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 18896090 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,9,0,1 -chr19 18910266 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 18981883 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 18976382 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 19076726 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 19104240 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 19092642 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 19118901 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 19165803 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 19165881 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 19174368 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 19196853 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 19232881 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 19229900 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 19277752 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 19252016 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 19292692 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 19315740 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,7,3 10,0,0,0 10,0,0,0 -chr19 19466171 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 19474169 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 19499513 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 19507433 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 19513003 0,0,6,0 0,0,2,0 0,0,54,0 0,0,5,1 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 19542570 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 19598549 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 19596273 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 19610111 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 19606902 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 19605918 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 19628494 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 19626451 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 19619011 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 19651281 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 20997452 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 34798028 0,6,0,0 0,2,0,0 0,52,0,2 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 34885490 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 35004769 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 35626585 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 35627575 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 35628472 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 37637702 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 37769672 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 37805314 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 37787167 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 38046897 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 38149159 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 38156847 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 38280512 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 38300642 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 38355165 0,0,6,0 0,2,0,0 0,50,4,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 38398687 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 38393359 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 38683702 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 3,0,7,0 4,0,6,0 -chr19 38574207 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 38989629 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 39404330 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 39522705 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr19 39525037 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 39560494 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 39611201 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 39777259 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 39942638 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 40192852 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 40204255 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 40232250 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 40349040 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 40433140 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 40450006 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 40433128 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 40449685 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 40431789 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 40449223 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 40461487 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 40492636 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 40515612 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 40524144 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr19 40673121 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 40696208 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 40692697 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 40725261 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 40730144 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 40738326 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 40800839 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 40811904 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 40820215 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 40898879 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 40926632 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 40939677 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 40961328 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 40968012 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 40995131 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 40985785 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 41031030 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 41028266 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 41024505 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 41041519 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 41039894 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 41040196 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 41052534 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 41061884 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 41073145 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 41087370 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 41191025 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 9,0,15,0 0,0,20,0 1,0,11,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 41188098 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 41192124 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 41198918 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 41250659 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 41271950 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 41284004 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr19 41308455 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 41544910 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 41809713 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 42372834 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 42368894 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 42418413 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 42527486 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 42545905 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 42571406 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 42608686 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 42596786 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 43282483 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 43313148 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 43386622 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 43472618 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 43491518 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 43509230 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 43543264 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 43572788 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 43577257 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 43626049 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 43635371 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 43681617 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 43685097 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 43694899 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 43707880 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 43726295 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 43762584 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 43631143 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 43660336 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 43683166 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 43693223 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr19 43700032 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 43717292 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 43755668 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 43795190 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 43782567 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 43802856 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 43899676 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 43911478 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 43916645 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 43973247 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 44013811 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 44028365 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 44032308 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 44021051 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 0,0,26,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 44051622 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 44063216 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 44089965 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 44090052 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 44102591 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 44127470 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 44282792 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 44380573 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 44426141 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 44552178 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 44559262 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 44573890 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 44597737 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 44603586 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 44606994 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 44607654 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 44653947 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 44658575 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr19 44672273 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 44686564 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 44681914 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 44714802 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 44889133 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 45010781 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 45008431 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 45010862 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 45008533 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 45019070 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 45125305 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 45122203 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 45113305 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 45111958 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 45097863 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 45078524 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 45072023 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 45068770 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 45049420 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 45172150 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 45389913 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 45403735 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 45452927 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 45533878 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 45519868 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 45567870 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 45587316 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 45578093 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 45578795 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 45596530 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 45620771 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 45639620 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 45685493 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 45717199 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 45730410 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 45765513 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 45768304 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 45775157 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 45788767 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 45871312 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 45898103 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 45923171 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 45957337 0,6,0,0 0,2,0,0 0,52,0,0 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr19 45977786 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 45998878 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 46202055 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 46403738 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 46457463 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 46457496 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 46492121 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 46473992 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 46503504 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 46550650 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 46528922 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 46584443 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 46620785 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 46824026 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 46904514 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 47004776 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 47056711 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 47084749 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 47098579 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 47102516 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 47097950 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 47101197 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 47091275 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 47100275 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 47154881 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 47177787 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 47171722 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 47249900 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 47328384 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 47287550 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 47405807 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,8 0,0,0,10 -chr19 47438378 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 47428640 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 47483041 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 47486329 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 47486917 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 47487584 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 1,0,11,0 0,0,6,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 47489763 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 47493111 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 47622708 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 47603678 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 47598930 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 47718112 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 48394062 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 48613934 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 48659233 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 48722311 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 48731553 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 2,0,18,0 0,0,12,0 0,0,6,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 48748893 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 48741930 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 48788579 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 48789215 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 48803685 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 48822786 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr19 48819377 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 48863616 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 48852568 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 48943696 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 48928890 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 49115600 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 49162481 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 49192299 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 49262112 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 49302666 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 49304097 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 49523844 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 49524933 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 49628269 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 49853002 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 49954538 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 50004266 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 50009370 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 50008373 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 3,0,7,0 -chr19 50067047 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,25,0,1 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 50081295 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 50069517 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 50096319 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 50181588 0,6,0,0 0,2,0,0 0,48,6,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 50187470 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 50259167 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 50265916 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 50347626 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 50348331 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 50360245 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 50458419 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 50489458 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 50502669 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 50543166 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 50564033 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 50559204 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 50548216 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 50591648 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 50591294 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 50581251 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 50602295 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 50603984 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 50616422 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 50614205 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 50665918 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr19 50690006 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 50690197 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 50689391 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 50713080 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 50779822 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 50829483 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 50809761 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 50872440 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 50887849 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 50961610 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 50977377 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 50972941 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 50966753 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 50981078 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 50981756 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 50995605 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 51033653 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 51024244 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 51018495 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 51096381 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 51149020 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 51504334 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 51534704 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 51507625 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 51503326 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 51516952 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 51578930 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 51665096 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 51665828 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 51818830 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 51909091 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 51873594 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 51923864 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 51917968 0,0,0,4 0,0,0,2 0,0,0,38 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 51923864 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 51917971 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 51972380 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 52216856 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 52234642 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 52280163 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 52348120 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 52416979 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 52536187 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 52536889 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 52562231 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 52572204 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 52611999 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 52661088 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 52627504 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 52698546 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 52921164 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 52940697 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 52949939 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 53234329 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 53290555 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 53356453 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 53338627 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 53328133 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 53310944 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 53416804 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 53493149 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 53492566 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 53537710 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 53599922 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 53609543 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 53641521 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 53647983 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 53657420 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 53673593 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 53805868 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 53810968 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 53830806 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 53826094 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 53935247 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 53934551 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 53924116 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 53922211 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 53940900 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 53951413 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 53992263 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 54008794 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 54054667 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 54070703 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 54080543 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr19 54116324 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 54150021 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 54188102 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 54166040 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 54204949 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 54218621 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 54242918 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 54256874 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 54281510 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 54313067 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 54323964 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 54344138 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 54361269 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 54366760 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 3,0,7,0 -chr19 54405801 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 54504124 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 54530788 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 54555104 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 54538383 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 54569965 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 54644635 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 54654138 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 54657719 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 54663605 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 54686144 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr19 54719685 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 54734229 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,21,3,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 54751692 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 54830714 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 54858474 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 54864145 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 54899814 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 54957112 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 54937035 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 55004464 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 55013437 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 55025266 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 55030840 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 55049768 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 55060249 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 55057295 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 55073280 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 55077895 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 0,0,10,0 -chr19 55089406 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 55103724 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 55104519 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 55155784 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 55154688 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 55145131 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 55174179 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 55176045 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 55556207 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 55573760 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 55597800 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,0,0,20 0,0,0,10 0,0,0,6 0,0,0,10 0,10,0,0 0,10,0,0 -chr19 55604197 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 55623201 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 55675269 0,6,0,0 0,2,0,0 0,48,0,4 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 55675667 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 55707644 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 55825024 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 55909337 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 55985911 0,0,6,0 0,0,2,0 0,4,46,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 1,0,9,0 0,0,10,0 -chr19 55990134 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 56147712 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 56195526 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 56192901 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 56204264 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 56212353 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 56219278 0,6,0,0 0,2,0,0 0,54,0,0 0,0,0,6 0,0,0,12 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr19 56254915 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 56323573 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 56420222 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 56542073 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 56563630 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 56582379 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 56612470 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 56610356 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 2,0,22,0 12,0,8,0 8,0,4,0 7,0,1,0 0,0,8,0 0,0,10,0 0,0,10,0 -chr19 56686811 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 56724857 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 56726506 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 56715192 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 56725528 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 56825223 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 57072363 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 57068510 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 57197270 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 57385170 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 57410930 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 57516921 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 57600974 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 58264022 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 58265297 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 58771866 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 58831802 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 59005032 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 59005866 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 59077575 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 59095782 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 59136573 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 59194806 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 59253493 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 59291986 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 59290308 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 59309805 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 59317115 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 59324321 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 59341576 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 59350864 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 59351409 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 59359294 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 59382882 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 59396894 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 59415865 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 59515202 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 59514599 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 59558733 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 59638554 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 59632351 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 59657486 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 59659231 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 59710934 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 59777359 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 59797964 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 59799716 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 59837980 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 59835046 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 59840075 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 59837968 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 59835031 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 59840054 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 59866315 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 59976667 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 60006939 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 60091352 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 60091454 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 60112510 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 60139498 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 60139531 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 60185613 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 60186537 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 60241415 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 60282222 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 60285469 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 60284522 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 60290498 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 60299120 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 60360280 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 60365383 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 60381548 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 60402079 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 60389092 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 60431571 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 60480878 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 60507278 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 60509599 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 60545185 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 60550497 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 60581305 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 60604915 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 60734362 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 60805458 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 60824970 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 60825561 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 60862494 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 60941395 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 61021318 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 61064693 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 61108222 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 61173863 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 61427900 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 61424940 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 61587078 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 61588362 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 61728271 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,1,9 0,0,0,10 -chr19 61752230 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 61825085 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 62025994 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 62020999 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 62338978 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 62397147 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 62554859 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 62696538 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 62822663 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 62905173 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 62923695 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 62924733 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 62982751 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 63012127 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 63164715 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,19,0,1 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 63241286 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 63257123 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 63293394 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 63288006 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 63331137 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 63331926 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr19 63449965 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 63541676 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 63556194 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 63553579 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 63596262 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 63657522 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 63682890 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr19 63703544 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr19 63751711 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr19 63759309 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 223143 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 267052 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 1470718 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 1397199 0,6,0,0 0,2,0,0 0,54,0,0 0,5,1,0 0,7,3,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr2 1478972 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 1438932 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 1499735 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 3384593 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 3496704 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 3574571 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 3629889 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 3669322 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 6944569 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 7087740 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 8843868 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 8807829 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 8920204 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 9426091 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 9458389 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 9487547 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 9528989 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 9580831 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 9548035 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 9911959 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 10018924 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 10103790 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 10105836 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 10180985 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 10502092 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 10499289 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 10658468 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 10811636 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 10840801 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 10839877 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 10846293 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 11229615 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 11269260 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 11256114 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 11504073 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 11655440 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 11668565 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 11697884 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 11638387 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 11825414 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 11842598 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 11882272 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 15592196 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 15518784 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 1,0,7,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 15437317 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 15334465 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 15244371 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 15663535 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 15687651 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 16000255 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 16610429 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 17560192 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 17561719 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 17563024 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 17761630 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 17806186 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 17826210 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 17861794 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 1,0,7,0 -chr2 17976764 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 18631854 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 18629686 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 18629458 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 19965034 0,6,0,0 0,2,0,0 0,54,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,10,0,0 0,10,0,0 -chr2 20036830 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 19993769 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 20037808 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 19993760 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 20266024 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 20341982 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 20708725 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 20682450 0,6,0,0 0,2,0,0 0,54,0,0 0,0,0,6 0,0,0,12 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 20734315 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 21117389 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 21104226 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 21092880 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 24076088 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 24160574 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 24155993 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 24387058 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 24337972 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 24280625 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 24377542 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 24325230 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 24280033 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 24787438 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 24767867 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 24749785 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 24844644 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 24994727 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 24918692 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 24904433 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 24897206 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 25024100 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 25351907 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 25323043 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 25315553 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 25323519 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 25316787 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 26057150 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 26057861 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 26030693 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 26313301 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 26270033 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 26360525 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 26389843 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 26521286 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 26553860 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 26544836 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 26541322 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 26554053 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 26548937 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 26542200 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 26538260 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 26571367 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 26556577 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 26552622 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 26543536 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 26540457 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 26653947 0,6,0,0 0,2,0,0 0,54,0,0 0,5,0,1 0,12,0,0 0,26,0,0 0,20,0,0 0,9,0,3 0,5,0,3 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 26851505 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 26854820 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 27016424 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 27100617 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 27113548 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 27116782 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 27131164 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 27135619 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,11,0,1 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 27131116 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 27134963 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 27146599 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 27161554 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 27171298 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 27204914 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 27210685 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 27208656 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 27226662 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 27281772 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 27276858 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 27298576 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 27300784 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 27302616 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 27310177 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 27314856 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 27317705 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 27319854 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 27353130 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 27374992 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 27384153 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 27414308 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 27404967 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 27444757 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 27447663 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 27452285 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 27454493 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 27461459 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 27511095 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 27517969 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 27519828 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 27542170 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 27534251 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 27530108 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 27521762 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 27574646 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 27584123 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 27677096 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 27697820 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 27718868 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 27758637 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 27919583 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 28313630 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 28317744 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 28321196 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 28616782 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 28662171 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 28680364 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 28705533 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 28875616 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 28946416 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 29211994 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 29996548 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 29771269 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 29351590 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,3,7 0,0,9,1 -chr2 29303329 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 2,0,18,0 0,0,12,0 1,0,5,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 30602008 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 30987297 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 31337253 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 31477644 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 31445018 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 31423150 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 32117996 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 32205547 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 32272549 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 32380026 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 32815303 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 33026156 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 33322336 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 33380169 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 33213497 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 33341334 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 33439349 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 36579903 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 36797035 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 36983237 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 36935947 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 37150896 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 37141259 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 37108709 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 37084260 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 37062336 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 37312169 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 37326761 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 37326734 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 37366967 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 37440259 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 37726796 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 38032468 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 38151789 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 38683206 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 38649800 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 38830820 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 38942959 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 38934723 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 39135405 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 39271080 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 39345870 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 39849145 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 40220103 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr2 42137974 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 42381976 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 42410839 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 42524704 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 43784647 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 43824539 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 43870278 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 43908646 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 43932426 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 43955093 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 44054470 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 43986380 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 44282433 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 44282109 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 44311070 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 44381657 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 44407409 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 44407451 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 44407421 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 44786957 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 45086909 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 45557706 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 46085187 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 46427582 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 1,0,25,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 46457368 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 46673127 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 46839653 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 46840769 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 47087289 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 47141488 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 47242963 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 47547335 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 47916608 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 48426896 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 48541820 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 48672384 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 48727547 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 48774894 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 49063606 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 50134145 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 53797358 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 53797289 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 53895193 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 53988963 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 53968035 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 54692861 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 54711961 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr2 54726640 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 54746661 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 54710572 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 54723656 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 54735843 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 55055337 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 55298624 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 55333208 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 55320700 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 55430215 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 55376533 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 55679199 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 55768326 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 55727083 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 55951539 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 58246380 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 60860283 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 60874746 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 61025675 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 61154116 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 61486554 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 61365546 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 61316703 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 61271279 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 61579510 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 61563044 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 61953117 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 62586722 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 63059898 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 63136325 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 63518120 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 63685339 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 63967068 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 64046523 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 1,19,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 64001964 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 64176948 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 64716735 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 65070329 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 65097213 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 65163193 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 65415305 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 68219433 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 68467220 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 68606713 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 68855969 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 68951957 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 69151328 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 69439923 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 69476893 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 69974635 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 70041790 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 70168712 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 70256361 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 70296115 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 70340006 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 70357848 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 70533936 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 70759355 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 70753624 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 70759361 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 70901105 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 70897376 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 71013407 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 71040650 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 71062661 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 71151471 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 71229923 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 71503674 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 71509225 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 71633678 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 71670290 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 71736907 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 72228282 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 72215430 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 73139212 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 73193033 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 73169833 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 73169257 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 73305590 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 73333395 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 73631044 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 73654014 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 73847521 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 73939975 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 74007584 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 74225865 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 74294751 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 74336505 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 74320110 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 74345853 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 74331098 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 74313262 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 74451784 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 74448659 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 74446182 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 74502827 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 74513125 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 74506888 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 74511149 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 74507095 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 74510667 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 74536177 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 74538460 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 74545294 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 74542465 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 74543236 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 74562625 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 74563195 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 74555867 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 74572298 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 74578839 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 74595453 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 74605694 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 74600240 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 74609896 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 74607671 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 74611426 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 74630069 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 74615233 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 74636581 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 74637617 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 74656202 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 74738580 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 74948359 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 74961176 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 74970111 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 75134354 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 75783011 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 79107772 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 79938795 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 80670023 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 85215012 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 85431514 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 85424951 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 85451785 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 85482566 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 85475577 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 85622597 0,0,6,0 0,0,2,0 0,0,54,0 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 85636183 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 85631705 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 85681042 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 85680242 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 85704416 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 85744309 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 85776687 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 86170470 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 86155765 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 86133612 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 86123724 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 86110841 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 86199611 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 86217670 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 86291227 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 86537095 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 86555449 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 86565616 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 86586496 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 86701064 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 86871044 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr2 86870060 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 86942486 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 88208635 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 88259424 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 88609942 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 88673997 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 88655617 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 88809946 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,25,0,1 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 95082888 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 95151259 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 95182637 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 95179697 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 95305470 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 95308524 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,10,0,2 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 95316661 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 95404331 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 95440040 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 96159314 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 96174576 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 96283565 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 96300804 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 96326409 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 96321320 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 96316943 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 96313161 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 96306596 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 96381466 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 96398944 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 96737239 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 96856439 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 96856415 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 96871535 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 96882963 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 96893756 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 97115623 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 97641424 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 97715829 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 97722354 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 98102554 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 98219472 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 98295160 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 98363106 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 98646047 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 98815359 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 99088322 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 99275447 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 99361943 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 99377632 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 99421891 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 99389233 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 99445392 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 99417290 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 99385797 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 99576178 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 99576820 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 99551797 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 99991766 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 99576598 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 99570104 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 99537331 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 100273230 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr2 100376187 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 100908130 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 100958386 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 100978365 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 101249597 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 101260145 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 101998891 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 102155729 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 102217823 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 102321871 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 102379469 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 102424262 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 102486398 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 102515468 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 102684018 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 102780794 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 105224867 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 105225650 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 105291066 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 105255806 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 105864313 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 106060694 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 106826480 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 106789705 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 107991510 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 108287584 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 108364663 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 108468588 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 108658880 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 108764272 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 108787788 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 108912151 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 109700068 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 110293294 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 110238692 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,7,1,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 111116247 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 111437752 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 111597817 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 112330673 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 112292960 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 112259477 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 112421605 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 112495608 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 112560108 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 112656924 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 112994471 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 113042059 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 113121110 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 113133556 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 113213072 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 113480731 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 113549244 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 113606814 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,8,0,0 0,10,0,0 -chr2 113656978 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 113660118 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 113672794 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 113718603 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 114114979 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 114193320 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 116000003 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 118288838 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 2,0,8,0 0,0,10,0 -chr2 118423430 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 118570839 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 119456224 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 119631790 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 119631000 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 119737201 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 119728858 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 119842302 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 119911471 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 119915606 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 120113838 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 120420449 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 120552607 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 120760042 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 121442839 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 121458660 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 121711689 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 122229855 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 127580917 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 127531524 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 127544654 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 127524529 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 127536217 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 127544684 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 127524889 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 127537653 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 127522613 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 127533126 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 127544672 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 127524529 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 127536217 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 127580923 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 127533183 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 127673456 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 127762789 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 127894003 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 127979062 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 127970173 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 128128553 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 128199111 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 128187919 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 128244941 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 128348219 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 128484426 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 128424220 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 128583779 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 128646773 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 128792098 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 128742467 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 130813179 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 130820129 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 130846351 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 131072827 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 131236919 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 131237705 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 131238446 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 131512988 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 131405183 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 131515431 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 131527052 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 131954162 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 131956843 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 132005756 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 133119460 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 134812329 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 134915885 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 135337647 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 135474050 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 135587230 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 135637076 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 136119525 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 136189640 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 136243824 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 136291882 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 2,0,22,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 136272101 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 136340308 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 136417481 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 138444223 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 141728622 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 141463596 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 141324157 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 141015028 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 140918669 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 140827056 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 140748539 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 143629658 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 144481477 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 144898867 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 148392524 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 148942423 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 148943284 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 148944154 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 148986947 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 151036389 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 151846737 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 152010100 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 152033284 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 152700311 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 153283504 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 154043256 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 156890524 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 157147658 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 157873405 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr2 157995680 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 158364250 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 158303253 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 158878538 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 159196548 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 159228161 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 159185827 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 159227759 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr2 159245342 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 159715276 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 159739784 0,0,6,0 0,0,2,0 0,0,54,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 159763752 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 159793633 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 160003882 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 159937804 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 159889613 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 160469393 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 160418410 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 160384625 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 160609706 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 160551929 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 160627117 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 160584915 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 160764810 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 160702580 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 160882938 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 161800146 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 161982547 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 161988645 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 162589584 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 162782890 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 162846124 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 162921576 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 162965025 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 162936713 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 162988291 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 165308497 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 165480698 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 165719306 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 165694839 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 165662163 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 165878385 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 165938088 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 165878448 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 165939467 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 166329733 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 166510296 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 166453182 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 166612467 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 166607089 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 167468382 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 167468457 0,0,6,0 0,0,2,0 0,0,54,0 0,1,5,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 1,0,9,0 0,0,10,0 0,0,10,0 -chr2 168694514 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 169279843 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 169416097 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 169440841 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 169472709 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 169660400 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 169853855 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 169820940 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 169800713 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 169770313 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 169758635 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 169741285 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 169727241 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 169711648 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 170069308 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 170111196 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 2,0,8,0 0,0,10,0 -chr2 170195594 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 170314320 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 170384396 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 170900150 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 170969080 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 171066602 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 171412476 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 171530562 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 171611050 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 172013487 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 172119358 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 172374987 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 172573134 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 172659773 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 173053018 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 173070957 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 173534125 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 173587489 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 173609152 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 173561750 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 173599587 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 173764148 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 173776784 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 173939265 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 173938542 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 174819730 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 174977156 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 175032860 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 175154400 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 175332601 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 175330554 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 176552829 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 176656563 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 176689924 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 176704502 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 177788984 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 177993252 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 178123886 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 178125191 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 178393261 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 178587394 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 178253875 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 178645167 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,10,0 0,0,10,0 -chr2 178389876 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 178689297 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 178905978 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 178960101 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 178922214 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr2 178964129 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 179051344 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 179445152 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 179716598 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 180342588 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 181555038 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 182084727 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 182117735 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 182472049 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 182495153 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr2 182774474 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 182796895 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 183302900 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 183332276 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 183410975 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 183530474 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 183555808 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 1,0,7,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr2 183507775 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 183724581 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 187163337 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 187214514 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 187410290 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 188076718 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 189558647 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 189565887 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 189569149 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 189579919 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 189752484 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 189639408 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 189616139 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 190035492 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 190145833 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 190278007 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 190306176 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 190786016 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 191073123 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 191243428 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 191527775 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 191556672 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 191571207 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 191552826 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 191603958 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 191987577 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 192409223 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 192572076 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 196620448 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 196509717 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 196461370 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 196382720 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 196327416 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 197006325 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 196879578 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 196801116 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 197364308 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 197493019 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 197420149 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 197662952 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 197578875 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 197978047 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 197971485 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 198076222 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 198145054 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 198656864 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 198658052 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 198674295 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 199921976 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 200513089 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 201072002 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr2 201108016 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 201182103 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 201211258 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 201430779 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 201449955 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 201506909 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 201554329 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 201721981 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 201790688 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 201857794 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 201857977 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 201849809 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 201857884 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 201993420 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 201959307 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 201954135 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 202051471 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 202340263 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 202314754 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 202280903 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 202463778 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 202608308 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 202609127 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 202868739 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 203115292 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 203338579 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 203358959 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 203534312 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 203709043 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 203739156 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 203783937 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 203869783 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 203989982 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 204068258 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 204299860 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 204440967 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 205538128 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 205873677 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 205686496 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 205538269 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 206126316 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 206313526 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr2 206336716 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 206295541 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 206316323 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 206367751 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 206717065 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 207121281 6,0,0,0 2,0,0,0 50,0,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 10,0,0,0 10,0,0,0 -chr2 207182937 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 207339953 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 207364699 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 207696802 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 208128682 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 208197200 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 208549957 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 208697083 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 208702559 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 208814990 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 208873914 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 208858840 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 208909149 0,1,5,0 0,1,1,0 0,18,36,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 208927016 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 209062069 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 210278659 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 210273292 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 210253765 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 210302913 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 210592736 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 210596001 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 210867224 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 211014373 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 211179878 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 211249991 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 212252110 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 211960119 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 212238445 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 213622845 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 213948037 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 215340618 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 215584500 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 215559527 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 215522062 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 215598667 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 215570688 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 215548842 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 215885527 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 216004883 0,5,0,1 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 215993645 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 215981164 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 215967569 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 215957838 0,0,6,0 0,0,2,0 1,0,53,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr2 215952150 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 215943327 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 216001236 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 215982967 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 215979246 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr2 215959697 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 215952183 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 215938480 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 216001284 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 215983012 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 215979297 6,0,0,0 2,0,0,0 54,0,0,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 215959736 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr2 215952231 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 215938543 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 215998084 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 215983069 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 215979336 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 215959787 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 215953930 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 215948354 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 216631918 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 216673246 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,11,0,1 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 216700614 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 216856628 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 216988356 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 217008380 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 217072976 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 217252047 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 218465963 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 218404496 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 218737285 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 218801767 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 218839827 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 218845720 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 218917852 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 218848528 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 218917849 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 218940745 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 218962947 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 218975110 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 219002278 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 219007501 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 219119245 0,0,6,0 0,0,2,0 0,0,54,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 219047650 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 219156012 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 219229338 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 219222242 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 219241296 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 219237289 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 219252615 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 219265557 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr2 219270437 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 219311078 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 219311927 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 219320633 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 219355281 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr2 219387685 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 219401488 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 219433049 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 219465808 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 219565083 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 219603062 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 219600858 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 219592491 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 219576981 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 219575927 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 219628618 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 219650300 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 219736382 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 219746328 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 219751528 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 219755052 6,0,0,0 2,0,0,0 54,0,0,0 5,0,1,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 219780861 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 219791480 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 219786287 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 219795315 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 219804916 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 219807112 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 219808811 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 219810914 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 219821203 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 219855816 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 219875560 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 219872992 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,10,0,0 0,10,0,0 -chr2 219870258 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 219960068 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 219955064 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 219998654 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 220021129 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 220021774 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 220024718 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 220041575 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 220046540 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 220061519 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 220062669 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 220065143 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 220079674 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 220104771 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 220112492 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 220113377 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 220120899 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 220148060 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 220202348 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 220211198 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 220202357 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 220211731 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 222137234 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 222028515 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 221999476 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 222794307 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 222868601 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 222794271 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 222774948 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 222794283 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 222868574 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 223131696 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 223197337 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 223494264 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 223507576 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 224530508 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 224557885 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 224974588 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 225073359 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 227691655 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 227667233 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 227630403 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 227616077 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 227585184 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 227580527 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 227826553 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 227850452 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 227857193 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 227871646 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 227882200 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 227952189 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 228097736 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 228201434 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 228272388 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 228480205 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 228564069 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 229599020 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 230164644 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 230020478 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 230371926 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 230344532 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 230632245 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 230775645 6,0,0,0 2,0,0,0 54,0,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 230787980 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 230745125 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 230751166 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 230863423 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 231022108 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 231114961 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 231088134 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 231448683 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 231451022 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 231483147 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 231635530 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 231656649 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 231789624 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 231864312 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 232031234 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 232354063 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 232380536 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 232951956 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 232981313 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 232982781 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 233030626 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 233032088 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 233054467 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 233102972 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 233112749 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 233117347 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 233206829 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 233333441 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 233367859 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 233417364 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 233341686 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 233467853 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 233838409 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 233825275 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 233867645 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 234021507 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 234030683 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 234042833 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 234341239 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 234210231 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 234345719 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 234345932 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 234341236 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 234266752 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 234345737 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 234345911 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 234292331 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 234341293 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 234341780 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 234345833 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,19,0,1 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 234414121 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 234415168 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 234519364 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 234555193 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 235627040 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 236482228 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 236372899 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 236741061 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 236739636 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 237154534 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 237667491 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 237954865 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 237950428 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 237948293 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 237933532 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 237919911 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 237913934 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 237909706 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 237954784 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 237947993 0,0,6,0 0,0,2,0 0,0,52,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 237939375 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 237926773 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 237918075 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 237914417 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 237954433 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 237952448 0,0,0,6 0,0,0,2 0,0,0,54 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 237947918 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr2 237939306 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 237926725 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 237918006 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 237914330 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 237954364 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 1,0,11,0 5,0,3,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 237952340 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 237947849 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 237939234 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 237930761 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 237917949 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 237914264 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 237898196 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 238116014 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 238100889 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 238148801 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 238450657 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 238655159 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 238678123 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 238746983 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 238846499 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 238833357 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 238894096 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 238917965 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 9,0,1,0 -chr2 239763123 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 239721024 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 239698200 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 239653446 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 240602929 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 240727306 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 241141105 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 241112175 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 241070349 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 241113780 3,0,3,0 0,0,2,0 1,0,53,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 241100894 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 241163600 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 241180224 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 241175046 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 241182762 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 241186097 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 241479749 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 241483966 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 241687633 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 241728092 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 241714752 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 241703405 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 241748444 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 241788272 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 241798451 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 241852567 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 241843186 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 241826757 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 241817718 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 241961291 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 242044884 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr2 242079233 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr2 242087364 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 242084599 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr2 242273963 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr2 242332940 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr2 242405013 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 74192 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 205768 0,0,0,6 0,0,0,2 0,0,0,54 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr20 356085 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 373755 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 437136 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 694172 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 809890 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 896648 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 1109703 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 1229245 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 1234320 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 1242130 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 1241020 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 1,0,9,0 0,0,10,0 0,0,10,0 -chr20 1381201 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 1383771 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 1383648 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 1419938 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 1404819 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 1507270 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 1500628 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 1844001 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 1853507 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 1909586 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 2045634 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 2245785 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 2269086 6,0,0,0 2,0,0,0 54,0,0,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 2328341 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 2361214 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 2391286 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 2412474 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 2490537 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 2541863 0,6,0,0 0,2,0,0 0,54,0,0 0,3,0,3 0,2,0,8 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr20 2584582 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 2589457 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 2589394 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 2727102 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 2724978 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 2723245 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 2767848 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 2789151 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,0,0,26 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,7,0,3 0,10,0,0 -chr20 2793084 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 2788962 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 2791990 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 2795091 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 2953129 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 2946478 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 1,0,11,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 2964450 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 2974918 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 3038780 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 3095497 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 3094448 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 3131872 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 3119847 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 3162749 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 3159685 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 3157505 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 3244396 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 3477923 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 3507359 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr20 3491068 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 3532795 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 3603163 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 3600252 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 3635079 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 3631860 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 3626710 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 3623458 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 3621585 6,0,0,0 2,0,0,0 47,1,0,0 0,6,0,0 0,12,0,0 0,26,0,0 20,0,0,0 10,0,0,0 6,0,0,0 10,0,0,0 0,10,0,0 0,10,0,0 -chr20 3620839 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 3674603 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 3680351 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 3683159 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 3729431 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 3733243 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 3730720 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 3729641 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 3733527 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 3786365 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 3793198 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 3836601 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 3839313 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 4110545 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 4106020 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 4111278 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 4110939 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 4628040 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 4719164 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 4813427 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 4787966 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 5048265 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 5111058 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 5231364 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 5840300 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 5851984 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 5872271 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 5896588 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 5880802 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 5922218 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 5980823 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 5981417 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 5970154 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 5970865 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 6005918 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 7928394 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 8646440 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 8626322 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 9266702 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 9336572 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 9365792 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 9312927 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 9350009 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 9444143 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 9471355 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 10206359 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 10489353 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 10587288 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,9,0,1 -chr20 10574710 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 10568204 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 11847803 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 13093466 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 13711431 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 13713771 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 13745182 0,0,6,0 0,0,2,0 0,0,54,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr20 13778911 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 16441476 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 16201915 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 17156031 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 17385001 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 17427572 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 17423338 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 17571691 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 17558596 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 17549374 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 17653781 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 17898907 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 17970270 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 18091217 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 18234351 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 18439659 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 18477411 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 18742543 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 19610613 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 19951118 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 19980946 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 19976451 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 19964943 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 20098018 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 21260201 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 21294262 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 21440985 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 21637862 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 23350013 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 23420451 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 23615805 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 24878138 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 24898852 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 24952109 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 24942177 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 25010482 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 25004919 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 25010722 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 25141991 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 25200035 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 25212787 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 25252031 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 25248874 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 25353906 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 25426857 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 25404694 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 25405306 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 25391036 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 4,0,16,0 7,0,5,0 0,0,8,0 9,0,1,0 0,0,10,0 0,0,10,0 -chr20 29420171 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 29528200 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 29600691 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 29611097 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 29656863 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 29657184 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 29823123 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 29849959 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 29873083 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 29914104 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 29988923 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 30074210 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 30193061 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 30209356 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 30268078 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 30378295 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 30484817 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 30507682 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 30503765 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 30836272 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 30848740 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 30840386 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 30859295 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 30844203 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 30832878 0,0,6,0 0,0,2,0 0,0,54,0 6,0,0,0 12,0,0,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 30848671 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 31052734 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 31062504 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 31072024 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 20,0,0,0 12,0,0,0 7,0,1,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr20 31089163 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 31111436 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 31121390 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 31159248 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 31276661 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 31289235 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 31340320 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 31448305 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 31431035 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 31494930 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 31662586 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 31711382 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 31711749 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 31709466 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 31728986 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 31796685 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 31813464 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 32156903 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 32346953 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 32464063 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 32540738 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 32667511 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 32760942 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 32808931 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 32778808 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 32906300 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 32896937 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 32977723 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 32974822 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 32993198 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 33029481 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 33038375 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr20 33042234 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 33047821 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 33049866 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 33052279 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 33072751 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 33055080 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 33167010 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 33335647 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 33331254 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 33343500 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 33338262 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 33338994 0,0,6,0 0,0,0,0 0,0,52,0 6,0,0,0 12,0,0,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 33435308 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 33488797 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 33521141 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 33530631 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 33607417 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 33670038 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 33682296 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 33749878 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr20 33725708 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 33773078 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 33773171 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 33923062 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 34005344 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 34059718 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 34241633 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 34261192 0,0,6,0 0,0,2,0 1,0,53,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 34233648 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr20 34260937 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 34296181 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr20 34494173 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 34558730 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 34558757 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 34609904 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 34653230 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 34695381 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 34677091 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 34746239 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 34939784 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 34989009 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 35129905 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 35097099 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 35129953 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 35097135 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 35269176 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 35298482 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 35456072 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 35583183 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 35901931 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 36058756 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 36151580 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 36208628 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 36200131 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr20 36287525 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 36279284 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 36366096 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 36412712 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,10,0 0,0,10,0 -chr20 36435132 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 36583753 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 36620375 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 36787006 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 36790216 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 36817931 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 36951710 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 36980705 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 37014343 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 37065946 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 37092830 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 39185300 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 39227149 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 39231564 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 39225023 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 39227839 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 39234515 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 39412147 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 39419102 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 39555678 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 39519401 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 39488206 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 39483025 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 39483946 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 39474296 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 41251717 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 40740020 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 40182015 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 40147835 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 41576724 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 41595468 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 41629731 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 41630014 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 41675931 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 41764942 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 42068705 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 42128104 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 42127798 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 42177762 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 42178353 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 42259721 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 42417870 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 42491665 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 42476689 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 42542149 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 42574948 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 42698320 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 42684663 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 42818978 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 42972330 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 42994405 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 43017237 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 43062551 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 43177065 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 43366547 0,0,6,0 0,0,0,0 0,0,30,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 43355855 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 43410432 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 43428962 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 43436008 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 43472185 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 43482701 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 43531874 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 43607801 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 43746890 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 43837572 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 43874801 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 43897036 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 43903308 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,10,0 0,10,0,0 -chr20 43910656 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 43939135 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 43940155 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 43948840 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 43952652 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 43953689 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 43973410 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 43961046 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 43964357 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 44005207 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 44033321 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 44030030 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 44019639 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 44012037 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 44071983 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 44075443 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 44099338 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 44107081 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 44118539 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 44124443 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 44191032 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 44418624 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 44451240 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 44433468 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 44672543 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 44625504 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 44658359 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 44751186 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 44788968 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 45151373 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 45361020 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 45301081 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 45272892 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 45308391 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 45286417 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 45697536 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 45711224 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 45697572 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 45714582 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 45727379 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 45798996 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,9,0,1 0,10,0,0 -chr20 46795019 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 46707092 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 46700994 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 46686463 4,0,0,0 0,0,0,0 29,1,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 46677528 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 12,10,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 47021103 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 47038581 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 47060314 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 47078517 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 47125335 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 47144198 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 47167159 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 47271509 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,24,0,2 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 47286333 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 47320460 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 47321420 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 47307545 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 47532025 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 47589556 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 47561061 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 47895018 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 47958107 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 48179534 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 48175096 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 48241655 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 48629219 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 48658344 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 48652444 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 48642421 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 48926458 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 48986194 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 49060150 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 49054561 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 49747392 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 49707045 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 49663676 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 49838991 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 50148466 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 50134996 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 50210292 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 50215856 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 51631823 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 51628284 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 51994897 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 52208056 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 54012472 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 54381948 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 54407759 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 54466976 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 54526656 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 55274197 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 55211064 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 55338363 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 55377260 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 55521139 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 55570632 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 55573026 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 55623434 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 56159441 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 56452604 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 56476027 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 56676020 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 56918434 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 56918839 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 57001484 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 57005197 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 3,0,5,0 10,0,0,0 -chr20 57261474 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 57756263 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 57751618 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 57853641 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 57848835 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 57900483 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 57876951 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 57953125 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 57995920 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 58015201 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 59861222 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 59936845 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 60018601 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 60009144 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 60148269 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 60172615 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 60207674 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 60290313 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 60287728 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 60315847 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 60370943 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 60339200 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 60336810 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 60330492 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 60400905 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 60424048 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 60419414 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 11,1,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 60473436 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 60811028 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 60860109 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 60921752 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 60931565 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 60942427 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 60943807 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 60998674 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 60995854 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 61007818 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 60996332 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 60992910 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 61054639 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 61066042 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 61108169 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 61340984 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 61351824 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 61379992 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 61380726 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 61451722 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 61452586 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr20 61540445 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 61508551 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 61509130 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 61533146 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 61508734 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 61574168 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 61510222 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 61508905 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 61541406 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 61639073 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 61649081 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 61644081 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 61672581 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 61670209 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 61668207 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 61662933 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 61661849 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 61663495 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 61662027 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 61704883 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 61745674 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 61781673 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 61791352 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 61796638 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 61763723 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 61789957 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 61792612 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 61797303 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 61799261 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 61803696 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 61837145 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 61836977 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 61843838 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 61877671 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 61975530 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 61990993 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 61971172 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 61975581 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 61991718 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 62046198 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 62069290 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 62064960 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr20 62078869 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr20 62113159 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 62133748 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 62168714 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 62176040 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 62313061 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr20 62329218 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr20 62361978 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 9963843 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 9973248 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 14403209 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 16099319 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 16158508 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 17859806 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 18539420 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 18575303 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 21726303 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 25887103 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 25881970 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 26046331 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 26345243 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 26206027 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 1,0,9,0 0,0,10,0 -chr21 26345306 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 26206108 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 26316057 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 26199211 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 27135234 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 27259741 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 27260401 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 27218360 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 29281117 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 29247540 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 29225398 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 29330514 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 29330559 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 29361804 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 29620559 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 30233646 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 29893080 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 29988111 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 29885371 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 30460275 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 31175378 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 31546309 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 31459247 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 31421261 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 31961496 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 31986582 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 32253131 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 32573195 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 32751820 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 32876512 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 32989283 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 32951995 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 32936286 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 32972945 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 32947493 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 32933243 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 33039080 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 33039812 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 33088527 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 33540929 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 33590508 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 33721071 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 33828861 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 33811197 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 33833382 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 33854067 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 33882664 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 33872605 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 34049478 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 34113490 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 34091745 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 34169644 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 34436617 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 34743739 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 34812286 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 35003553 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 36339870 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 36339855 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 36366816 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,0,0,26 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr21 36494535 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 36519739 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 36582186 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,11,0,1 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 36633027 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 36663588 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 36693761 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 36709481 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 36755692 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 37025252 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 37230692 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 37231502 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 37048456 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 37361477 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 37420312 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 37459848 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 37460763 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 37522513 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 37790388 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 37780659 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 37806389 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 38008955 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 38593269 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 38739310 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 38677367 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 38697353 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 38677700 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 39606678 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 39541556 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 39503907 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 39492980 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 39490664 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 39587675 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 39526177 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 39496211 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 39493154 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 39490905 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 39686982 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 39954410 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 40095088 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 40631992 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 40472761 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 40379435 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 40356691 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 41535672 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 41569280 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 41632182 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 41670943 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 41695792 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 41744992 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 41762251 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 42039016 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 42034425 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 42035025 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 42147935 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 42164747 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 42150390 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 42133021 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 42202658 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 42182321 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 42198990 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 42285751 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 42286711 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 42381559 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 42402805 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 42420953 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 42383601 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 42406888 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 42518936 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 42581123 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 7,0,3,0 -chr21 42518960 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr21 42581165 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 42518966 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 42581168 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 42518975 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 42581171 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 42518903 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 26,0,0,0 1,0,19,0 0,0,12,0 1,0,7,0 2,0,8,0 0,0,10,0 0,0,10,0 -chr21 42581087 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 42608561 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 42656446 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 42673302 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 42706291 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 42736524 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 42725283 0,6,0,0 0,2,0,0 0,54,0,0 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr21 42775851 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 42852202 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 42992186 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 43062229 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 43025037 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 43047210 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 43054048 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 43062241 0,6,0,0 0,2,0,0 0,54,0,0 2,2,0,0 8,4,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 43053599 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 42981102 6,0,0,0 2,0,0,0 54,0,0,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 2,0,8,0 0,0,10,0 0,0,10,0 -chr21 43052213 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 43054021 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 43147791 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 43196479 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 43197361 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 43323076 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 43357137 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 43347084 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 43388691 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 43387680 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 43665962 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 43663421 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 43661113 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 43904054 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 43937548 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 44041948 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 44215093 0,0,6,0 0,0,2,0 0,0,54,0 6,0,0,0 12,0,0,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 44307962 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 44327542 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 44338440 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 44359681 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 44365335 0,6,0,0 0,2,0,0 3,51,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 44372644 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 44378016 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 44481212 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 44502903 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 44532702 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 44538177 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 44558290 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 44569494 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 18,0,0,0 20,0,0,0 10,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr21 44574511 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 44623442 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 44658317 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 44686032 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 44701681 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 44771808 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 44744214 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 44784206 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 44856946 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 44882323 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 44891448 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 44926199 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 45046090 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 45155112 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 45137860 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 45133806 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 45420185 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 45424696 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 45420278 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 10,0,0,0 10,0,0,0 -chr21 45424774 0,0,0,6 0,0,0,2 0,0,0,54 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 45420278 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 10,0,0,0 10,0,0,0 -chr21 45424774 0,0,0,6 0,0,0,2 0,0,0,54 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 45530126 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 45509879 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 45514253 0,6,0,0 0,2,0,0 0,54,0,0 1,5,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 45712957 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 45737887 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 45699926 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 45712672 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 45732762 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 45754489 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 45776195 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 46175153 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 46243292 0,6,0,0 0,2,0,0 0,37,0,1 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 46356712 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 46365420 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 46356703 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,8,0,12 0,5,0,1 0,4,0,0 0,5,0,3 0,10,0,0 0,10,0,0 -chr21 46365411 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 46355932 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 46362976 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 46396253 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 46471902 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 46451799 0,0,6,0 0,0,2,0 0,0,52,0 0,0,0,6 0,0,0,12 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 46528730 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 46524907 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr21 46516995 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 46509820 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 46499157 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 46489532 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 46541958 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 46591087 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 46626090 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr21 46641743 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 46670304 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 46676497 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr21 46686892 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr21 46892839 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 15668895 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 15829207 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 15962932 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 16002022 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 16002055 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 16042382 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 16043603 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 16450814 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 16463947 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 16589907 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 16606646 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 16602185 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 16948002 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 17432449 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 17408704 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 17499446 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 17510406 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 17502620 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 17798995 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 17753115 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 17724509 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 17811844 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 17825602 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 17872987 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 17891181 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 18087405 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 18131777 6,0,0,0 2,0,0,0 46,0,0,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 18188792 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr22 18156393 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 18263010 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 18330325 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 18349533 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 18346553 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 18340649 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 18429189 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 18457567 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 18474897 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 18484097 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 18480672 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 18494536 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 18508763 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 19084951 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 19090400 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 19114725 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 19149282 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 19130834 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 19239278 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 19266924 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 19270040 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 19250909 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 19269159 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 19497764 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 19483498 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 19435655 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 19413789 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr22 19471186 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 19618340 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 19660064 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 19658119 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 19661176 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 19675953 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 19681592 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 19684559 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 19715812 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 20129406 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 20130174 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 20295172 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 20319201 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 20327326 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 20378159 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 20473087 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 20607538 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 20649683 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 20643975 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 21222193 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 21811064 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 21833121 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 2,0,18,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 21945949 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 21986228 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 21945275 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 21985120 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 22285492 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 22366572 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 22436969 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 22452826 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 22455668 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 22509306 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 22547316 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 22556922 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 22556210 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 22706959 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 22785798 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 22796978 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 22817656 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 22845515 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 22897911 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 22909173 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 22913750 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 1,0,17,0 0,0,12,0 0,0,6,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 22958037 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 22950993 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 22957428 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 22946042 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 22952064 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 23028241 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 23091502 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 23166635 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 23226108 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr22 23269831 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 23318979 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 23485868 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 23454146 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 23953943 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 24077848 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 24895689 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 25036795 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 25168456 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 25189925 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 25190672 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 25236047 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 25225531 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 25218097 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 25267366 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 25338137 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 26623861 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 27468200 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 27512158 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 27521609 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 27863523 0,6,0,0 0,1,0,1 0,47,0,7 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 27951183 6,0,0,0 2,0,0,0 54,0,0,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 27984840 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 28024763 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 28017560 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 28034230 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 28039353 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 28082591 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 28067528 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 28056401 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 28080699 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 28067615 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 28056455 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 28245033 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 28287171 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 28400915 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 28400888 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 28400888 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 28399425 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 28399299 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 28468435 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 28532870 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 28519465 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr22 28733121 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 28745709 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 28746645 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 28735029 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 28745976 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 28748029 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 28992784 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 28990387 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 29012065 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 29020083 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 29078984 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 29066785 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 29060684 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 29099687 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 29106294 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 29135444 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 29154508 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 29187417 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 29218136 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 29310671 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,1,0,9 0,0,0,10 -chr22 29305128 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,6,0,2 0,10,0,0 0,10,0,0 -chr22 29341367 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 29373003 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 29596552 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 29619815 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 29660058 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 29815774 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 29817356 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 29823271 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 29815819 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 29817428 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 29824686 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 29815921 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 29817704 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 29824824 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 29866336 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 29862678 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 29999460 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 29986028 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 30015362 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 30126710 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 30188944 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 30169064 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 30299154 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 30332374 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 30339833 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 30272931 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 30328709 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 30339495 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 30342820 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 30347376 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 30427689 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 30541062 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 30541053 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 30569103 0,6,0,0 0,2,0,0 0,54,0,0 0,0,0,6 0,0,0,12 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr22 30619572 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 30769307 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 30977837 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 31084412 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 31119899 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 31211171 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 31595097 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 31244313 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 32376426 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 32108003 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 33793239 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 34014385 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 34060379 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 34113058 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 34134530 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,9,0,1 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 34143769 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 34277740 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 34487442 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 34487250 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 34953789 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 34983326 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 35048479 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 35038192 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 35027576 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 35022959 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 35019825 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 35014913 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 35227240 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 35250680 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 35313513 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr22 35591044 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 35655496 0,0,6,0 0,0,0,0 0,0,50,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 1,0,9,0 1,0,9,0 -chr22 35717577 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 35744700 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 35750637 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 35787613 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 35800624 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 35792131 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 35854306 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 35911386 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 36026918 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 36200520 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 36242026 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 36233787 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 36223095 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 36218437 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 36296257 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 36356097 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 36349306 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 36367091 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,8,0,2 -chr22 36374278 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 36391746 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 36427414 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 36481514 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 36481089 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 36480907 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 36541129 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 36549479 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 36559650 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 36651764 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 36657805 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 36685412 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 36795008 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 36807888 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 36815504 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 36812297 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 36860983 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 36871595 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 36849099 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 36950895 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 37026848 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 37153009 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 37153726 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 37231940 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 37221839 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 37212070 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 37408288 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 37413916 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 37454097 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 37467504 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 37505405 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 37548631 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 37717525 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 37778192 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 37859861 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 37951690 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 37951705 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 38040144 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 38100275 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 38141046 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 38152860 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 38152725 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 38248013 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 38255475 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 38491454 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 38745854 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 39090943 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 39132092 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 39135320 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 39144515 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 39145202 0,0,0,6 0,0,0,0 0,0,0,46 0,6,0,0 0,12,0,0 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 39137782 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 39407626 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 39594995 6,0,0,0 2,0,0,0 54,0,0,0 5,0,1,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 39587398 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 39851978 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 39875929 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,0,10 0,0,0,10 -chr22 39894716 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 39950982 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 39990625 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 39980351 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 40053293 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 40066062 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 40082351 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 40121784 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 40162860 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 40233927 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 40249819 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 40256817 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 40304758 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 40363730 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 40400947 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 40592926 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 40601506 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 40628946 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 40672390 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 40712037 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 40793176 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 40803465 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 40807937 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 40894683 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 41244073 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 41328735 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 41313520 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 41318012 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 41349789 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 41536814 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 41602940 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 41789799 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 41869085 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 41869085 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 41888806 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 41905615 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 41897829 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 41964807 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 41946467 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 41933533 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 42362353 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 42282192 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 42500136 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 42394455 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 42282135 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 42566157 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 42616697 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 42664325 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr22 42705102 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr22 42895870 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 43012692 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,16,0,4 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 43511323 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 43506908 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 43582929 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 43561092 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 43637082 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 43662527 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 43953306 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 43953228 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 43980433 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 43986571 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 43972432 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 44107224 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 44158061 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 44127099 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 44293311 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 44325151 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 44323269 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 44315840 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 44302534 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 44351591 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 44515046 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 45006418 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 45046925 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 45083249 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 45101195 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,11,0,1 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 45130028 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,10,0 0,0,10,0 -chr22 45238743 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 45184980 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 45171230 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr22 45159114 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 45139089 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 45447465 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 45466233 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 45886124 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 48577765 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 48555338 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 48687393 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 48701277 6,0,0,0 2,0,0,0 54,0,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 48865389 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 48870737 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 48923732 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 48975587 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 48989245 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 49013965 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 49006412 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 49000295 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 49031333 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 49028829 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 49026293 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 49045923 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 49067789 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 49063734 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 49061376 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 49199933 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 49223480 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 49229254 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 49251905 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr22 49249930 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 49247646 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 49245600 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 49241854 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 49240191 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 49232652 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 49291454 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 49288892 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 49304627 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 49307112 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 49316562 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 49334193 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr22 49334916 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 49361845 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 49357522 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr22 49354921 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 49411908 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr22 49410644 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 378428 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 411548 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 1390663 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 2836249 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 1,0,9,0 -chr3 3042955 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 3059663 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 3005137 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 3056915 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 3114668 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 3112110 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 3164817 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,5,3 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 4332964 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 4436786 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 4999834 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 5223871 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 7469433 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 7595936 6,0,0,0 2,0,0,0 54,0,0,0 0,6,0,0 0,12,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 8582306 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 8636583 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,0,10 0,0,0,10 -chr3 8784527 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 8958190 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 9069755 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 9027013 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 9002355 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 9064092 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 9009650 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 9002463 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 9666297 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 9718594 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 9706696 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 9689405 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 9720722 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 9751082 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 9756427 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 9761702 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 9751049 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 9756376 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 9760437 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 9766988 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 9767090 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 9767728 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 9767839 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 9767845 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 9767030 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 9779688 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 9808036 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 9802002 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 9806501 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 9829993 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 9851480 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 9858758 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 9909896 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 9925912 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 9934641 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 9934059 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 9946812 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 9957700 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 9957604 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 9962969 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 9963602 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 9964208 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 9993661 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 10081105 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 10113030 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 10081449 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 10113069 0,0,6,0 0,0,2,0 0,0,54,0 0,0,2,4 0,0,0,10 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 10226334 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 10265893 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 10277288 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 10332037 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 10466085 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 10392229 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 10375576 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr3 10355021 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 10392265 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 10367090 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 10832971 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 10942760 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 11034572 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 11045509 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 11349515 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 11719453 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 11855710 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 12170113 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 12433241 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 12519950 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 12586663 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 12625753 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 12602208 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 12820059 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 12832380 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 12833459 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 12834125 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 12856670 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 12938683 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 12924865 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 13396154 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 13388495 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 13358498 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 13343822 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 13336427 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 13520703 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 14129458 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 14147403 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 14474504 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 14675424 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 14699344 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 14731902 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 15039733 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 15059483 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 15090361 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 15091189 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 15267663 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 15347077 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 15273485 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 15493654 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 15470353 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 15487052 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 15617609 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 15579980 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 16229223 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 16510259 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 16386621 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 17031314 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 17183319 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 18411133 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 18366109 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 19550100 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 20117800 6,0,0,0 2,0,0,0 54,0,0,0 0,0,6,0 0,0,12,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 20200393 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 21681446 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 23516232 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 23909595 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 23981573 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 24160111 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 25445310 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 25799835 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 25736610 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 26726653 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 27434995 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 27736738 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 27734132 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 29885384 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 29756313 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 29756265 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 30661298 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 30850715 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 31633546 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 31649565 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 31678570 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 32384412 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr3 32561421 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 32742094 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 32890415 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 32970686 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 33068471 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 33089105 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 33030605 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 33130915 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 33400520 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 33409103 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 33882862 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 35808939 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 36738027 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 37036841 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 37111343 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 37131563 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 37082379 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 37305732 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 37451511 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr3 37525071 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 37758240 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 37981074 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 37992230 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 38014112 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 38027786 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 38078803 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 38113697 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 38128208 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 38133774 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 38153491 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 38142176 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 38157631 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 38282508 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 38292422 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 38322800 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 38332846 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 38417390 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 38495733 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 38520139 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 38777694 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 38745138 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 38738841 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 38714277 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 38966752 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 38888705 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 39085339 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 39123994 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 39131142 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 39145229 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 39153547 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,8,0,0 -chr3 39282002 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 39348937 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 39406037 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 39425195 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 40060656 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr3 40206694 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 40266951 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 40432565 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 40474429 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 41241474 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 41249921 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 41253102 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 41914984 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 41698073 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 42193347 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 42226363 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 42239999 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 42218989 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 42279963 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 42535759 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 42585438 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 42569773 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 42774710 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 42759505 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 42747053 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 42881277 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 42925314 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 43356864 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 43593546 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 43734266 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 44471802 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 44584832 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 44645698 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 44736811 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 44738726 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 44802965 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 44819399 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 44868331 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 44913288 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 44961723 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 45021793 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 45128877 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 45110107 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 45463461 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 45534412 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 45611855 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 45612566 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 45812803 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 45786792 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 45796587 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 45779437 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 45843887 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 45918364 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 45918382 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 45983186 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 45983903 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 45984629 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 45980921 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 45947579 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 45963553 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 46282121 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 46389814 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 46472441 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 46461846 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 46517198 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 46595631 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 46689842 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,19,0,1 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 46702102 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 46692834 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 46725684 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 46730958 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 46914365 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 2,0,8,0 0,0,10,0 0,0,10,0 -chr3 46919883 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 47073354 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 47054199 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 47283721 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 47291911 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 47253106 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 26,0,0,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 47353138 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 47424294 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 26,0,0,0 16,0,4,0 8,0,2,0 2,0,6,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr3 47428849 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 47437140 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 47435329 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 47430835 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 47512661 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr3 47687154 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 47607171 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 47858132 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 47864811 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr3 47866563 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 47862295 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 47865965 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 47938269 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 47887560 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 48182150 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 48190834 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 48240080 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 48311141 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 48437646 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 48434377 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,0,0,26 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 48431220 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 48451281 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 48470802 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 48476942 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 48463271 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 48476284 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 48480202 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 48485951 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 48548876 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 48575420 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 48605075 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 48604001 0,6,0,0 0,2,0,0 0,50,0,0 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr3 48600819 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 48598776 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 48596993 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 48593071 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 48588845 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 48586966 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 48582594 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 48579352 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 48622003 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 48613125 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 48645715 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 48642519 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 48667768 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 48664427 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 48660798 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 48655217 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 48698211 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 48694196 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 48702018 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 48891828 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 49002726 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 49017424 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 49003023 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 49018265 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 49027578 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 49028267 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 49034789 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 49035576 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 49039039 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 49089343 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 49043036 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 49112630 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 49131533 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 49128048 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 49124375 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 49121619 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 49142810 6,0,0,0 2,0,0,0 54,0,0,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 49138856 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 49136941 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 49135633 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 49134180 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 49185485 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr3 49188214 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 49269329 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 49337171 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 49296499 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 49323090 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 49296544 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 49375054 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 49431794 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 49438757 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 49637778 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 49675572 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 49676909 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 49692988 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 49695698 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 49699484 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 49698129 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 49696587 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 49711965 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 49715886 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 49728384 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 49730516 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 49731218 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 49736133 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 49734251 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 49734311 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 49739912 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 49745393 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 49816836 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 49825694 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 49823453 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 49822138 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 49860616 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 49842143 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 49871766 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 49915083 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 49915920 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 49909226 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 49907617 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 49924144 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 50070409 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 50089492 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 50172137 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 50195684 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 50200165 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 50206226 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 50269270 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 50305791 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 50309641 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 50312929 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 50330902 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 50344562 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 50344173 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 50344260 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 50344047 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 50355759 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 50354126 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 50360632 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 50365966 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 50371280 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 50396708 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 50388126 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 50378487 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 50583713 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 50620067 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 50652890 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 51639774 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 51646458 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 51654774 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 51671774 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 51712829 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 51726740 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 51946636 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 51943535 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 51954184 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,10,0,0 0,10,0,0 -chr3 51969725 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 51970083 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 51967189 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 51978583 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 51989894 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 51996368 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 52002996 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 52147259 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 52213825 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 52223173 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,1,19,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 52268877 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 52301516 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 52418626 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 52413538 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 52428942 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 52430745 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 52451315 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 52448979 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 52444697 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 52460912 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 52485559 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 52494875 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 52501052 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 52511078 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 52514067 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 52518972 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 52522258 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 52525206 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 52527883 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 52529964 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 52532497 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 52537967 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 52534126 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 52624484 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 52563916 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 52637977 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 52588130 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 52557189 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 52626582 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 52572477 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 52696394 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 52703304 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 52702701 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 52716784 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 52755260 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 52789429 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 52795458 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 52800841 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 52833455 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 52829000 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 52823101 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 52851995 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 53132786 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 53101656 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 53195288 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 53244054 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 53237168 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 53675431 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 53735951 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 53760938 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 53810334 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 53830722 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 53827175 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 53867875 0,0,6,0 0,0,2,0 0,0,54,0 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 53880385 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 56575675 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 56628504 0,6,0,0 0,2,0,0 0,54,0,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,10,0,0 0,10,0,0 -chr3 56656032 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 56810788 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 56738441 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 57208901 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 57503548 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 57520151 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 57607122 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 57822841 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 58058686 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 58070059 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 58084027 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 58087402 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 58103422 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 58110879 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 58131457 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 58235513 6,0,0,0 2,0,0,0 54,0,0,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 3,0,7,0 0,0,10,0 -chr3 58355812 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 58392697 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 58462213 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 58492566 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 58527408 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 58830156 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 59974804 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 62128804 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 62164498 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 62233793 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 62835468 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 62714443 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 62497206 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 62439090 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 62835543 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 62611564 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 62477316 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 62426126 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 63940758 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 63951069 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 63956824 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 63980074 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 64107688 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 64059954 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 64648309 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 64602566 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 64574075 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 64555033 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 64493956 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 65403523 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 65317130 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 65317757 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 65414012 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 65336641 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 66540525 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 66517145 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 66515451 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 67508955 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 69109569 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 69209732 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 69203450 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 70096711 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 70097008 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 71244403 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 71104437 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 71825742 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 73195907 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 73517620 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 73515871 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 73516510 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 74501213 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 74429950 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 77609385 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 77695144 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 77776675 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 87100530 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 87396201 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 89472880 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 89560989 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 95205299 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 95266075 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 99088290 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 99155988 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 99151389 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 99671740 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 99720516 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 99783007 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 101019567 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 101131422 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 101050552 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 101051548 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 101052451 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 101050725 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 101052165 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 101050012 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 101050867 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 101051851 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 101485154 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 101547187 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 101587862 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 101631413 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 101837225 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 101870531 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 102493039 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 102431064 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 14,0,12,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 102529215 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 102531893 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 102873681 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 102867189 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 102928132 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 103023353 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 103055275 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 103054499 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 103056943 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 103659354 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 106743199 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 106860550 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 109281628 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 109281778 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 109415549 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 109666219 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 109622684 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 109609857 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 109790906 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 109826034 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 109889558 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 110109578 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 110181178 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 110532123 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 112746773 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 112743815 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 112849129 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 112915630 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 113086541 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 113163781 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 113188504 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 113267960 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 113325228 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 113405922 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 113546803 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 113549198 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 113681020 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 113743381 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 114028726 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 114192863 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 114198441 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 114207130 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 114479679 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 114485039 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 114621611 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 114580953 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 114649666 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 114782975 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr3 114825183 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,8,0,2 -chr3 114986256 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 115046150 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 115150369 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 115255163 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 115207128 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 115269582 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 115373475 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 115497254 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 115540846 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 120131704 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 120104408 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 120431584 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 120583868 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 120603921 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 120615917 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 120616895 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 120617681 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 120670588 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 120705113 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 120799495 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 120830358 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 120850075 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 120942133 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 121016627 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 121016654 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 121394895 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 121611151 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 121907598 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 122440562 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 122620025 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 122721460 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 122678231 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 122634504 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 122833991 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 122901419 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 123030406 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 123123767 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 123203400 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 123310848 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 123463424 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 123611302 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 123668876 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 123759997 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 123746983 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 123773236 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 123995171 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 124008443 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 124130068 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 124117412 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 124113776 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 124332125 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 124554028 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 124504678 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 124486162 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 124935365 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 124909409 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 124858715 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 124941524 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 124935620 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 124909484 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 124858796 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 125148525 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 125171698 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 125548754 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 125635876 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 125697854 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 125868605 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 125914529 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 125936749 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 125943778 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 126043064 0,6,0,0 0,2,0,0 0,54,0,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 125998335 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 126125119 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 126322209 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 126784453 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 126754074 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 127269734 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 127210329 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 127224440 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 127269734 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 127210329 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 127210272 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 127355009 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 127314377 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 127617968 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 127635891 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 127663345 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 127673546 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 127663549 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 127699653 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 127751560 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 127934698 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 10,0,0,0 10,0,0,0 -chr3 128206739 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 128218489 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 128220039 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 128235487 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 128775204 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 128810376 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 128822689 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 128862677 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 128881574 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 128912135 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 129268519 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 129298846 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 129542816 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 129688488 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 129774827 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr3 129839362 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 129827171 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 130096904 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 130110578 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 130241354 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 130322935 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 130341978 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 130454438 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 130465523 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 130481274 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 130516925 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 130641319 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 130635501 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 130678249 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 130716006 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 130677976 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 130713925 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 130677862 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 130709250 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 130670938 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 130709220 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 130730587 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 130749003 0,0,4,0 0,0,0,0 0,0,36,0 6,0,0,0 12,0,0,0 26,0,0,0 0,0,20,0 0,0,8,0 0,0,6,0 0,0,8,0 10,0,0,0 10,0,0,0 -chr3 130787506 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 130775921 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 130772698 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 130767434 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 130761919 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 131029509 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 130872351 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 130872279 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 131946358 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 131917944 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 131887913 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 132165559 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 132217721 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 132445029 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 132925117 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 133529821 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 133652369 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 133692433 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 133729725 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 133806699 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 133802225 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 133870447 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 133873406 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 133905854 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 133887841 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 134601866 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 134956057 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 134967897 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 135041059 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 135130328 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 135144240 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 135563081 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 135560920 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 135738725 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 135708704 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 137303689 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 137303707 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 137463537 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 137805873 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 137644914 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 137542068 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 138211695 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 139200439 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 139226173 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 139288540 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 139264455 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 139364904 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 139364096 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 139506446 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,22,2 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 139636558 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 139673915 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 139738718 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 139823056 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 139908803 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 139856992 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 140554241 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr3 140571063 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 140741006 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 141622745 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 141764680 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 141884672 0,6,0,0 0,2,0,0 0,53,0,1 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 142731250 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 142940038 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 142980404 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 143127086 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 143634264 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 143558645 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 143769685 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 143762852 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 17,0,0,3 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 143715035 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 143671005 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 143905423 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 144040388 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 144322648 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 144323344 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 145033732 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 145174047 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 145191187 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 147277336 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 147401517 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 147722479 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 148591460 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 150028551 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 150065959 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 150285162 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 150341793 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 1,0,7,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 150363172 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 150387055 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 150857529 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 150721415 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 151168936 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 151881303 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 151963161 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 152142144 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 152323343 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 152385827 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 152568677 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 152588524 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 152494873 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 152637377 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 152638235 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 152941174 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 153014676 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 153500693 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 153648245 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 153656784 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 153656756 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 153645982 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 153633288 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 153615452 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 153656804 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 155524845 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 155629180 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 155628013 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 156342497 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 156784047 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 156694658 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 157034498 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 157716802 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 157657941 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 158245867 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 158350408 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 158466103 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 158643069 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 159306455 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 159298686 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 159798574 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 159859530 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 159869516 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 160022548 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 161086795 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 161566556 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 161625393 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 161726442 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 162265976 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 166269229 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 166215628 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 166388780 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 166389710 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 166390817 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 167030553 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr3 167031510 1,0,0,5 2,0,0,0 1,0,0,53 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 168665713 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 168729709 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 168993178 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 169228298 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 170316154 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 170302565 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 170968406 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 171012951 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 171048768 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 171435727 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,0,10 0,0,0,10 -chr3 171701599 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 171680856 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 171667703 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 172205808 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 172914431 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 172845502 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 173451961 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 173547710 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 173597716 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 173957544 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 173985250 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 174116845 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 175479646 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 175481553 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 180228259 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 180410969 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 180445004 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 180552515 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 180774947 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 180793198 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 180940731 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 181237078 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 181803388 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 181810568 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 182168579 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 182168681 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 184059760 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 184148048 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 184234486 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 184628443 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 184500522 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 184416573 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 184379982 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 184693104 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 184929256 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 184972972 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 184999401 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 185018503 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 185085239 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 185189740 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 185172197 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 185152398 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 185138408 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 185189120 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 185255814 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 185305302 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 185307142 0,6,0,0 0,2,0,0 0,54,0,0 0,0,0,6 0,0,0,12 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,0,0,10 -chr3 185342540 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 185365306 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 185368504 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 185379489 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 185379351 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 185383329 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 185388848 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 185393591 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 185458211 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 185477379 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 185491299 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 185478675 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 185500383 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 185517865 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 185521981 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 185523576 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 185525982 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 185528368 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 185521450 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 185522413 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 185524453 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 185527782 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 185521414 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 185522389 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 185524402 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 185527743 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 7,0,1,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 185542402 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 185545305 0,0,0,6 0,0,0,2 0,0,0,38 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 185557698 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 185554270 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 185547198 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 185582250 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 185583879 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 185587413 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 185773417 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 186435839 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 186393684 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 186644059 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 186697415 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 186728006 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 186799469 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 186887557 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 186889927 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 186857872 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 187281560 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 187498591 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 187468227 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 187365433 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 187472808 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 187388756 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 187480450 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 187452309 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 187739226 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 187757119 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 4,0,4,0 4,0,4,0 -chr3 187813699 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 187821224 6,0,0,0 2,0,0,0 49,0,5,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 187846811 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 187925581 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 187987747 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 188053577 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 188274697 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 188400282 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 188444084 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 188463066 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 188457171 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 188870755 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 188929691 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 188928869 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 189725161 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 190439258 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 191069078 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 191320911 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 191164491 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 191605369 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 192450574 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 192580679 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 194554619 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 194514631 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 194715339 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 194642904 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 194843520 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 194826643 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 194857703 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 1,0,7,0 0,0,10,0 -chr3 195543833 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 195544646 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 195561699 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 195562572 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 195649979 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 195627432 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 195819266 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 195825704 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 195868555 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 196428840 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 196535075 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 196494410 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 196974096 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 196963632 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 197093507 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 197106612 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 197093393 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 197078228 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 197271479 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 197438958 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,4,0,16 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 197453262 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 197538762 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 197573618 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 197698801 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 197683878 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 197772356 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 198016648 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 198096782 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 198097925 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 198163187 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 198227489 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 198217869 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 198234238 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 198351524 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 198276686 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr3 198316179 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 198723413 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 198911981 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 198905831 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr3 198886326 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr3 198989723 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 199070158 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 199102809 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr3 199210575 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,9,3,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 484255 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 505559 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 514408 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 609844 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 672850 2,0,0,0 0,0,0,0 20,0,0,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 745150 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 877223 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 865823 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 850925 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 835548 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 941816 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 944413 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 970905 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 986698 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 975074 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 1056832 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 1154888 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 1209251 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 1196073 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 5,0,5,0 3,0,7,0 -chr4 1199831 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 1196190 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 1322267 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 1337041 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 1363931 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 1683444 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 1690005 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 1716306 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 1773463 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 1772938 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 1778661 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 1808079 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 1790904 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 1872728 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 1926840 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 1950272 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 1888529 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 1959525 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 1955016 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 2053249 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 2222662 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 2308977 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 2276492 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 2245653 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 2631100 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 2666519 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 2803483 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 2866217 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 2886420 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 2853572 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 2876369 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 2853533 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 2876309 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 2899877 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 2934748 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 2921623 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 2913179 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 5,0,15,0 5,0,7,0 0,0,8,0 1,0,5,0 0,0,10,0 0,0,10,0 -chr4 3006961 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 8,0,18,0 1,0,19,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 3009954 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 3098916 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 3112083 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 3144516 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 3171354 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 3181459 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 3195029 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 3207191 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 3235454 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 3288604 0,6,0,0 0,2,0,0 0,54,0,0 0,3,0,1 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 3289504 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 3392207 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 25,0,1,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr4 3402290 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 3288415 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 3289309 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 3388608 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 2,0,8,0 -chr4 3402155 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 3385751 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 3399694 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 3411119 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 3416510 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 3445061 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 3491670 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 4258711 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 4327204 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 4462239 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 4473509 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 5104497 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 5750229 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 5675200 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 5628990 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 5764074 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 5805589 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 5854640 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 5889468 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 5892229 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 6026301 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 6138149 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 6330101 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 6434431 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 6386227 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 6400523 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 6663594 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 6762185 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 6877159 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 7057518 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 7908143 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 7831397 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr4 7816415 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 8288089 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 8346779 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr4 8449566 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 8427733 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 8528442 0,0,6,0 0,0,2,0 0,0,54,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr4 8634089 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 8667041 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 8671920 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 8672112 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 9607607 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 11010313 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 13224286 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 13180796 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 14618071 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 15247267 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 15223014 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 15427238 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 16113447 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 17195750 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 17234516 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 17441825 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 17519864 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 20134849 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 20207175 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 20461382 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 22126350 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 22003286 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 23435031 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 24181386 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 24463803 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 24637657 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 24867277 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 24972614 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 25007617 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 25282335 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 26041490 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 26041670 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 26041168 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 26092521 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 26364595 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 26633338 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 30333570 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 30334530 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 35843009 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 35751804 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 37325431 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 37525295 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 37699625 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 37768060 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 38366672 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 38583811 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 38676695 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 38781387 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 38781387 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 38759172 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 39001426 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 38969786 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 39085771 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 39134429 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 39141587 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 39250453 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 39820780 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 40046130 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 40129492 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 40471553 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 40587179 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 40957528 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 41335730 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 41368353 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 41640555 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 41767460 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 42323785 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 42182392 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 44375549 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 44413951 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 46002412 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 46729195 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 47232797 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 47254869 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 47534675 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 47374764 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 47292677 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 47646643 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 47732559 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 47768364 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 47841982 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 48185392 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 48287594 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 48264094 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 48246305 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 48202335 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 48601263 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 48688716 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 48747495 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 52558835 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 52556335 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 52590699 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 52630747 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 53424229 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 53926408 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 53706340 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 53952036 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 54059707 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 54037822 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 54661784 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 54828368 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 54841375 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 55288163 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 55299432 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 55671363 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 55663365 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 55653632 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 55907377 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 55972699 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 56017177 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 56431648 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 56451225 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 56532246 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 56859224 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 56939340 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 57028642 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 57216812 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 57472203 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 57555362 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 57584302 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 64863017 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 65884277 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 66039003 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 68131929 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 68182759 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 68302546 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 68467451 0,1,0,5 0,0,0,2 0,2,0,50 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 68878325 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 68867155 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 69851532 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 70012869 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 70496586 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 70744515 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 71059044 6,0,0,0 2,0,0,0 47,7,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 5,1,0,0 7,1,0,0 -chr4 71266991 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 71419104 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 71503757 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 71726817 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 71727801 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 71728956 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 71862953 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 72106977 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 72535053 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 72582237 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 72525226 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 72557550 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 72852930 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 2,0,18,0 3,0,7,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 73499512 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 73396932 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 74154110 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 74240352 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 74182868 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 74262083 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 74219702 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 74161976 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 74504166 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 74535238 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 74573289 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 74696360 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 75083104 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 75396815 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 75894921 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 76749820 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 76800043 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 76792858 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 77030186 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 77016805 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 77071423 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 77130985 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 77096235 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 77222411 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 77271444 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 77316085 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 77507515 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 77695788 0,6,0,0 0,2,0,0 0,52,0,2 0,6,0,0 0,12,0,0 0,25,0,1 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 78090107 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 78304621 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 79726518 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 80012944 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 81407044 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 81723325 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 82186301 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 82307354 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 82588351 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 83496733 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 83566764 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 83821030 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 83801215 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 83989097 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 83997172 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 83967749 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 83991709 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 84041003 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 84119140 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 84175410 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 84459561 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 84595756 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 84567831 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 84610409 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 85635877 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 85757749 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 85969332 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 85950339 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 85897185 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 85876480 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 85818439 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 87135343 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 87135016 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 87117807 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 87135823 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 87208020 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,3,0,7 0,7,0,3 -chr4 87204555 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 87968337 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 88248359 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 88255274 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 88275766 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 88458609 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 88575256 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 88635258 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 88951714 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 88985893 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 89183484 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 89271347 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,11,1 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 89418589 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 89616020 0,6,0,0 0,2,0,0 0,37,0,17 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 89795386 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 89826916 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 89887108 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 90046594 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 89868815 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 91035526 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 94225329 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 95348631 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 95439665 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 96289039 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,5,0,15 0,7,0,1 0,3,0,3 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 96356380 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 96309555 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 96981230 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 99561436 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 99560314 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 100356358 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 100451787 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 100560895 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 100698301 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 100731839 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 100751564 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 101041218 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 101620212 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 102203452 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 103161750 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 103447620 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 103733759 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 103756776 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 103775031 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 104025857 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 104235811 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 104293676 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 104798854 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 106527179 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 106539755 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 106754079 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 106870083 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 107080712 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 107334246 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 108841820 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 109043870 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 109072584 4,0,0,0 0,0,0,0 34,0,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 109130582 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 109308285 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 109762624 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 109883139 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 109967754 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 109985838 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 110604059 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 110661753 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 110680253 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 110838329 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 110905227 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 110956931 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 111008514 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 111011034 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 111101509 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 111121573 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 111191956 0,0,6,0 0,0,2,0 6,0,48,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 111617484 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 111688805 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 111761950 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 111761869 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 111761782 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 111759230 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 113567091 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 113571889 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 113572870 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 113655603 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 113760765 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 113790272 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr4 114396465 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 114471004 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 114505699 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 114398660 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 114471061 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 114513721 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 114653944 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 115119419 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 116217095 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 115988824 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 119382741 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 119435641 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 119957873 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 119879811 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 120198426 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 120408009 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 120747639 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 120639215 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 120666211 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 120747642 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 120639218 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 121961949 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 122186341 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 122521152 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 122813164 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 122964206 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 123008588 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 123065736 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 123328111 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 123350480 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 123403413 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 123422327 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 123472060 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 123485057 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 123502729 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 123570302 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 124058242 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 124075084 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 124542622 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 125851093 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 128784435 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,0,0,10 -chr4 128871294 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 128945727 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 129031714 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 129071378 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 129319199 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 129989741 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 130008544 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 130250200 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 139321334 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 140265902 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 140407597 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 140526801 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 140652411 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 141529878 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 142051933 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 143401163 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 144326476 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 144346812 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 144598308 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 144574233 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 144662121 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 144681055 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 145260332 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 146245113 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 146291293 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 146680524 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 146795769 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 146919980 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 147650517 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 147780933 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 148660503 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 148813596 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 148794976 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 149105671 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 149576113 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 149576941 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 149295405 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 151388250 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 152040698 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 151490599 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 152241174 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 152288788 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 152860089 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 152813492 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr4 153493176 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 153490721 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 153910343 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 154004306 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 154004261 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 154101373 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 154435917 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 154463393 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 154742788 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 154762306 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 154777133 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,10,0,0 0,10,0,0 -chr4 154844574 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 154845795 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 155475510 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 155473741 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr4 155461175 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 155400184 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 155681291 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 155710318 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 155938588 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 155968519 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 156837568 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 156977409 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 157083007 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 158284539 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 26,0,0,0 2,0,18,0 0,0,12,0 2,0,6,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 158482001 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 158477089 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 158462060 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 158503481 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 159378142 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 159785724 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 159831018 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 159859837 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 160472333 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 160487395 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 160496741 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 162526598 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 164269593 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 164686236 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 166181517 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 166229155 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 166458495 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 166482401 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 167165943 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 167240087 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr4 169464323 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 169425684 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 169382051 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 169669995 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 170061551 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 170314165 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 170837822 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 170849860 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 170889542 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 172972357 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 174197793 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 174459836 0,2,0,4 0,0,0,2 0,53,0,1 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 174531169 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 175679693 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 175834961 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 175801754 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 177295708 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 177326862 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 177300155 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 177330573 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 177379367 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 178493929 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 178598476 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 184073114 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 184663396 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 184833322 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 184852786 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 185375950 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 185249400 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 185789226 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 185892181 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 185942091 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 185921382 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 186177900 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 186303181 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 186515850 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 186557769 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr4 186561712 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 186662663 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 186785064 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 186807676 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 186781447 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 186782359 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 187234968 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 187325124 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 187363362 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 187416171 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 187442262 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr4 187692402 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr4 189161624 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr4 189249987 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr4 191184901 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 214918 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 235156 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 258887 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 475942 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 541549 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 528074 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 690684 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 731032 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 942259 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 918614 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 931501 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 954539 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 1088514 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 1132601 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 1118484 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 1254828 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 1272068 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 1288690 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 1347981 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 1325374 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 1392115 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 2,0,8,0 0,0,10,0 0,0,10,0 -chr5 1496305 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 1454068 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 1527723 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 1851803 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 1932894 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 2801718 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 2805507 0,6,0,0 0,2,0,0 0,35,13,0 0,6,0,0 0,12,0,0 0,26,0,0 0,18,2,0 0,10,0,0 0,6,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 3652965 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 5199262 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 5285582 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 5371273 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 6678725 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr5 6655593 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 6796926 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 6807962 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 7826164 0,6,0,0 0,2,0,0 0,54,0,0 0,5,1,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 7904107 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 7931132 4,0,2,0 2,0,0,0 44,0,8,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 7945966 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 9243423 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 9116090 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 9682328 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 10303473 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 10339553 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 10455665 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 10479504 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 10514457 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 11417959 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 11135954 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 13997535 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 13955245 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,1,11,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 13924783 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 13883718 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 13862238 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 13829610 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 13790435 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 13761438 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 14416933 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 14440678 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 14514162 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 14535711 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 14560306 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 14743369 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 14769922 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 16506261 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 16527935 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 19607564 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 21838182 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 23545847 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 24523956 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 31303397 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 31341139 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 31570141 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 31588745 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 8,2,0,0 10,0,0,0 -chr5 32073201 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 32109810 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 32113453 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 32307698 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 32265964 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 32451048 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 32400080 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 33493190 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 33917141 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 33650138 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 33999863 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 33983221 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 34043682 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 34078978 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 34069293 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 34947606 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 34981662 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 35048853 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 35664365 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 35733593 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 35829044 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 35677464 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 35909392 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr5 35946306 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,2,0,8 0,0,0,10 0,0,0,10 -chr5 35991580 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 36085072 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 36173280 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 36207537 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 10,0,2,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 36247767 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 36287333 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 36715567 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 37006799 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 37062132 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 37100559 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 37218667 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 37216862 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 37205129 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 37189723 0,6,0,0 0,2,0,0 0,54,0,0 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr5 37156117 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 37378495 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 37338680 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 37386042 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 37339202 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 37552399 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 38386428 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 38467078 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 38460896 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 38499743 0,6,0,0 0,2,0,0 0,53,0,1 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr5 38499773 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 38532390 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 38921317 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 38969075 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 39003062 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 38980830 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 39347007 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 39418797 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 39413110 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 40764278 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 40807646 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 40877451 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 41197565 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 41418007 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 41767605 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 41970100 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 42724807 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 42754965 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 43316459 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,8,0,2 -chr5 43424306 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 43542038 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 43591711 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 43659929 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 43695086 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 44424522 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 44846938 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 50091301 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 50719324 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 52229846 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 52387693 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 52404846 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 52815233 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 52815681 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 53787562 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 3,0,23,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 1,0,9,0 -chr5 54356321 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,24,0,2 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 54439415 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 54445840 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 54564976 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 54606504 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 54659348 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 54742151 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 55029490 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 55117045 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 55146696 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 55237818 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 55295061 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 55502295 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 55443212 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 56210635 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 56213760 0,0,0,6 0,0,0,2 0,4,0,50 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 56225165 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 56260403 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 56562824 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 56813943 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 57790368 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 57786349 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 60018593 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 60234063 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 61722480 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 61847079 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 64072647 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 64349793 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 64573752 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 64853060 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 64911163 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 64942599 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 64926144 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 65035908 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 65124166 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 65369969 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 65355928 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 65476008 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 65506563 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 65509170 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 67612532 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 68425880 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 68448047 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 68509133 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 68593803 0,0,0,6 0,0,0,2 0,0,0,54 0,6,0,0 0,12,0,0 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 68698093 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 68745788 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 68725032 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 68751580 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 68866300 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 69398657 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 69402259 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 70302021 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 70386990 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 70828916 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 70855873 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 70934134 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 71447333 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 71557764 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 71689971 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 71792305 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 71793064 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 71775697 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 72182898 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 72463292 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 72830317 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 72884418 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 72910684 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 73967127 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 74016871 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 74092524 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 74077734 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 74100849 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 74114589 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 74686110 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 74842785 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 74842728 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 74710943 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 75463514 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 75632974 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 76000270 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 76027052 0,0,6,0 0,0,2,0 2,0,52,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 76164461 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 76207003 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 76384358 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 76743277 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 76663031 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 76657209 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 76753410 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 76738990 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 76660636 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 76753473 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 76968586 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 77513164 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 77445360 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 77841383 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 78217224 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 78217401 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 78373869 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 78358088 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 78415325 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 78644068 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 79013565 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 79399581 0,0,6,0 1,0,1,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr5 79776965 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 79986359 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 80006682 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 80374463 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 80532973 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 80586621 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 80640594 0,6,0,0 0,2,0,0 1,51,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 80676595 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 81495991 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 82684718 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 82825403 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 7,0,5,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 82973141 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 85950994 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 86742808 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 89737290 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 89805768 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 89850772 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 92949866 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 94301628 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 94068992 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 94886935 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 94916747 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 95017517 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 95141728 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 95275330 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 95784898 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 96091164 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 96127527 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 96102962 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 96057349 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 96108849 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 96102764 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 96091104 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 96126719 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,22,2,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 96164885 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 96152018 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 96241163 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 96256768 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 96355413 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 96355287 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 96388188 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 96544615 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 98262325 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 98227122 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 100219880 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 101655166 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 101822088 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 102370415 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 102392662 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 102371238 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 102370442 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 102229810 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 102373361 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 102500366 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 102543725 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 102639795 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 106744970 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 108549885 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 109093027 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 109183430 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 110111852 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 110468351 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 110870946 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 111598239 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 112118525 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 112231118 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 112851906 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 112448804 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 112417381 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 112467852 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 112431682 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 112390928 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 112797949 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 112890363 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 112930860 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 113850669 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 114497640 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 114601501 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,1,0,11 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 114632555 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 115170093 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 115351528 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 115379320 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 118308162 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 118510528 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 118541837 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 118610732 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 118872820 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 118997891 6,0,0,0 0,0,0,0 27,0,0,25 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 121384235 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 121516094 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 121808264 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 121815030 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 9,11,0,0 0,12,0,0 0,8,0,0 10,0,0,0 0,10,0,0 0,10,0,0 -chr5 122363556 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 122762754 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 122741089 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 122954031 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 122937101 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 124108188 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 125841309 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 125940764 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 125967223 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 125999670 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 126184513 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 126241940 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 126781280 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 126811152 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 126888405 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 127021295 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 127448154 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 127900009 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 127742433 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 127720949 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 127698798 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 127676355 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 127639648 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 128458388 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 128892216 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 129271913 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 130885002 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 130825552 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 130792528 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 131072818 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 131035617 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 131160505 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 131041352 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 131036310 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 131352486 0,0,6,0 0,0,2,0 0,0,54,0 6,0,0,0 12,0,0,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 131323160 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 131338364 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 131424346 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 131580864 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 131567694 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 131573955 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 131559045 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 131635755 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 131685912 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 131742034 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 131824262 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 131848039 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 131951230 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 131979611 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 131952423 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 132001718 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 132038061 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 132066497 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 132127966 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 132124461 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 132125444 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 132127912 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 132124838 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 132187816 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 132237297 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 132260309 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 132251493 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 132433967 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 132456302 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 132613080 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 133354708 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 133506678 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 133502623 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 133530824 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 133735218 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 133915751 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 133929965 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 134024841 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 134050384 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 134072339 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 134104935 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 134154069 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 134218546 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 134259967 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 134372489 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 134395088 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 134733674 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 134733638 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 134733662 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 134942306 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 135216405 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 135311031 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 137084158 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 136985696 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 137258141 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 137374602 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 137447740 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 137534635 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 137528583 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 137523184 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 137535686 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 137530248 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 137525411 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 137546190 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 137550905 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 137553310 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 137692090 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 137693222 0,0,6,0 0,0,2,0 0,0,54,0 1,0,3,0 6,0,4,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 137708471 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 137710304 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 137781102 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 137790831 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 137808866 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 137872292 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 137930604 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 137920156 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 138251119 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 138297422 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 138314839 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 138682978 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 138744196 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 138741669 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 138742838 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 138792216 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 138841060 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 138960170 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 139173204 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 139202228 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 139212287 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 139212275 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 139695698 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 139805641 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 139795932 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 139761907 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 139844915 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 139869821 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 139897946 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 139805524 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 139846750 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 139895138 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 139902024 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 139910653 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 139920159 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 139920505 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 139920851 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 140003360 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 140007046 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 140033084 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 140036533 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 140055327 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 140216204 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 140217119 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 140242337 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 140243309 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 140244023 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 140286796 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 140287630 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 140288464 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 140369688 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 140455338 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 140456208 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 140456919 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 140511003 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 140511834 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 140678979 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 140870903 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 140836692 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 140837526 6,0,0,0 2,0,0,0 54,0,0,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 140838252 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 140870840 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 140934810 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 140942114 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 140887427 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 140984988 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 141000034 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 141039390 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 141031473 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 141019611 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 141015416 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 141213891 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 141294060 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 141315038 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 141315842 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 141316892 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 141305206 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 141338174 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 141362917 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 141674079 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 141674841 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 142272986 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 142567064 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 142669946 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 143522127 6,0,0,0 2,0,0,0 54,0,0,0 0,0,6,0 0,0,12,0 0,0,26,0 1,0,19,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 143833513 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 145232397 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 145360017 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 145444199 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 145511674 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 145482325 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 145593261 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 145618347 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 145699381 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 145807162 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 145829319 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 145863238 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 145823341 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 145839627 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 146057830 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 146060838 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 145949931 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 145949829 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 2,0,20,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 146761309 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 147020997 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 146996001 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 147266256 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 147485499 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 147754601 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 147776752 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 147758833 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 147776845 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 147869352 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 1,0,25,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 147869664 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 147869232 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 147869550 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 148187346 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 148400405 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 148368672 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 148560174 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 148607588 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 3,0,7,0 0,0,10,0 -chr5 148667324 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 148692479 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 148722547 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 148728077 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 148734341 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 148981677 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 149190636 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 149199821 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 149294408 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 149227516 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 149338086 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 149437070 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 149419496 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 149495315 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 149492597 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 149479863 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 149543304 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 149559104 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 149564674 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 149611754 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 149582881 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 149610503 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 149727640 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 149734402 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 149735852 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 149739098 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 149723887 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 149734462 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 149735927 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 149747705 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 149758165 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 149881102 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 149899884 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 149913072 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 150008777 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 150009599 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 150036489 0,6,0,0 0,2,0,0 0,54,0,0 0,3,0,3 0,10,0,2 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 150053873 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 150113396 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 150386682 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 150416594 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 150558756 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 150619664 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 150707149 0,0,0,6 0,2,0,0 0,30,0,20 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 150824297 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 150912966 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 150894182 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 150881569 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 150869851 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 151029456 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 151160554 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 151211256 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 153036752 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 153129995 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 153371046 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 153746075 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 153813157 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 153835564 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 154153716 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 154163486 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 154150127 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 154159666 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 154190573 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 154296914 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 154276799 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 154262308 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 154251025 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 156314053 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 156308081 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 156389376 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 156522095 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 156522875 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 156599710 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 156702597 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 156879455 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 156852721 0,0,6,0 0,0,2,0 0,0,49,3 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 9,0,1,0 8,0,0,0 -chr5 157091107 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 157114727 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 158073708 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 158518456 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 158682851 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 159276625 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 159396307 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 159598208 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 159613284 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,25,0,1 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 159709003 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 159767155 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 159783914 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 159991799 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 159963602 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 160690526 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 160690649 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 161061285 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 161501806 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 161512706 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 162816631 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 162842927 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 162842876 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 167768122 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 167783476 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 167814941 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 167855005 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,4,6,0 0,0,10,0 0,0,10,0 -chr5 167928413 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 168242851 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 168132496 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 168081890 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 168032781 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 168950656 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 169014016 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 169071781 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 169400667 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 169438587 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 169745000 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 170082387 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 5,0,11,0 9,0,3,0 5,0,3,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 170255658 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 170542954 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 170671097 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 170780037 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 171236068 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 171466271 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 171415277 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 171571521 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 171713561 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 172130491 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 172256630 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 172450019 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 172504163 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 172594382 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 172682992 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 173304685 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 174088967 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 175327613 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 175319699 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 175649823 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 175654728 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 175710337 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 175710337 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 175726087 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 175744916 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 175752432 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 175866458 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 175989176 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 176016420 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 176238201 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 176250768 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 176247996 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 176243475 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 176240782 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 176268271 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 176449215 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 176451989 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 176457160 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 176451363 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 176455001 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 176569398 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 176570481 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 176571423 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 176611426 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 176653641 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 176654388 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 176551511 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 176570112 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 176571075 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 176598080 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 176648523 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 176654112 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 176654868 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 176666048 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 176697062 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 176727110 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 176745874 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 176756654 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 176764668 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 176763632 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 176786473 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 176800357 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 176793628 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 176815725 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 176818814 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 176818314 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 176820143 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 176818194 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 176843694 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 176843718 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 176850200 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 176876367 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 176872995 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 176954924 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 177352414 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 177480021 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 177481344 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 177505731 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 177509385 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 177591069 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 177582172 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 177629967 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 177606027 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 177972037 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 178354146 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 178351113 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,10,0 0,0,10,0 -chr5 178346033 0,0,6,0 0,0,0,0 0,0,42,0 6,0,0,0 12,0,0,0 26,0,0,0 0,0,20,0 0,0,12,0 0,0,6,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr5 178438513 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 178703498 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 178567304 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 178497421 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 178487652 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 178703708 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 178513725 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 178919636 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 178928978 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr5 179065429 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 179153729 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 179158683 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 179158683 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 179183648 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 179218345 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 179197287 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 179197221 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 179252834 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 179238081 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 179224909 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 179223722 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 179250997 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 179234734 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 179223269 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 179337874 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 179488051 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 179461711 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 179624422 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 179640072 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 179684446 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 179662184 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 179951031 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 179989390 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr5 179983598 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 179979913 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,8,2 0,0,10,0 0,0,10,0 -chr5 179990350 0,6,0,0 0,0,0,0 0,45,0,1 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 179988555 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 179981296 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 179976071 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 180151746 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 180152433 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 180268274 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 180407846 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 180563168 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr5 180583866 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 180584136 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr5 180599155 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr5 180619979 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 293220 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 577996 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 501528 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 601566 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 1905110 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 2638034 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 2729597 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr6 2841309 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 2904442 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 3022119 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 3051076 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 3074307 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 3243438 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 3672815 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 4019839 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 4076080 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 4880995 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 5314027 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 5951929 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 6141087 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 7127245 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,8,0,2 0,10,0,0 -chr6 7191984 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 7127167 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 7191885 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 7194161 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 7341984 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 7504587 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 7520670 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 7551281 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 7834026 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 8358820 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 10512836 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 10518341 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 10506741 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 10512788 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 10637412 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 10664975 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 10694667 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 10817222 6,0,0,0 2,0,0,0 54,0,0,0 0,0,6,0 0,0,12,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 10910275 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 11002190 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 11063396 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr6 11321562 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 11293854 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 11876551 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 12269950 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 13429168 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 13578404 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 13728527 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 13900130 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 15560291 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 15621455 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 15631279 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 16238832 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 16254892 4,0,2,0 2,0,0,0 23,0,31,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr6 16403234 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 16435251 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 16435908 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 17391032 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 17622113 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 17773454 6,0,0,0 2,0,0,0 50,0,4,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 17745811 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 17737331 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 17724903 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 18230492 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 18274489 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 18372100 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 18507825 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 20232770 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 20595001 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 21309457 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 24410243 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 24597654 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 24562408 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 24537265 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 24631012 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,9,0,1 0,10,0,0 0,10,0,0 -chr6 24631069 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 24704546 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 24680865 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 24774952 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,8 -chr6 24775503 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 24889770 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 25834491 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 25881519 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 25921190 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 26021601 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 26125786 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 26139904 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 26151552 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 26201384 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 26199211 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 26216210 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 26292017 0,6,0,0 0,2,0,0 0,54,0,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 26305445 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 26313151 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 26333742 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 26358530 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 26393466 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 26478713 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 26493490 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 26567713 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 26576522 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 26613343 6,0,0,0 2,0,0,0 54,0,0,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 26617357 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 27209177 0,0,6,0 0,0,2,0 0,0,54,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr6 27323510 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 27327717 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 27890452 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 27941147 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 27942956 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 27968543 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 28161991 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 28225260 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 28327398 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 28321108 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 28359956 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 28377350 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 28403222 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 28605299 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 28995779 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 29249616 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 29537633 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 29538473 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 29685046 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 29689007 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 29681416 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 29685064 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 29732986 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 29735148 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 29735364 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 1,7,0,0 5,5,0,0 -chr6 29733022 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 29735259 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 29748428 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 29749301 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 29801258 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 29800983 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 29800839 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 30020038 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 30417862 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 30417964 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 30566132 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 30631444 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 30628332 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 30637609 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 30637867 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 30661094 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,7,0,1 -chr6 30661040 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 30680412 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 30679013 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 30702677 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 1,0,9,0 -chr6 30725394 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 30725706 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 30732430 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 30729096 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 30760958 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 30761702 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 30765154 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 30778555 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 30799529 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 30817065 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 30805849 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 30968111 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 30972841 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 30967200 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 30972480 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 30974790 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 30991588 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 30995930 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 31000145 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 31007473 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 31607060 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 31621950 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 31634169 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr6 31649404 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 31658140 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 31656907 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 31692113 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 31701800 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 31703853 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 31706438 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 31710544 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 31712013 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 31725061 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 31717966 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 31716020 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 31739803 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 31738265 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 31756065 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 31768846 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 31783664 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 31799917 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 31800776 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 31803427 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 31819969 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 31835906 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 31819694 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 31835891 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 31819685 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 31835663 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 31838272 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 31845439 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 31842364 0,6,0,0 0,2,0,0 0,54,0,0 0,5,0,1 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 31870823 0,0,6,0 0,0,2,0 0,0,54,0 0,0,5,1 0,0,9,3 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 31867709 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 31857653 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 31854835 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 31891920 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 31892778 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 31937787 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 31935521 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 31946607 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 31940618 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 31968201 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 31962435 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 31972128 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 31962791 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 31955897 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 32009672 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 32021065 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 32023801 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 32027135 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 32030512 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 32036039 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 32038276 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 32041706 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 32044234 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 32047132 0,0,0,6 0,0,0,2 0,0,0,54 0,6,0,0 0,12,0,0 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 32046567 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 32048266 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 32054667 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 32203955 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 32195625 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 32192824 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 32205115 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 32226493 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 32238681 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 32243693 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,9,0,1 0,10,0,0 0,10,0,0 -chr6 32254305 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 32259468 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 32259943 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 32264490 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 32268229 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 32293844 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 32288906 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 32279562 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 32277052 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 32273238 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 32597664 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 32717258 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 33479818 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 33481317 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 33489572 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 33488319 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 33491013 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 33493048 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 33492528 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 33514594 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 33653343 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 33735277 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 33746507 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 33754265 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 26,0,0,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 33759065 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 33764478 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,0,0,20 0,1,0,11 0,1,0,7 0,9,0,1 0,10,0,0 0,10,0,0 -chr6 33770705 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 33803870 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 33798651 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 33848491 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 34167658 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 34319243 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 34602087 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 34772239 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 34910053 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 34939817 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 34947446 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 35060889 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 35129919 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 35159249 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 35194184 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 35320472 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 35367151 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 35386393 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 35397129 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 35501663 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 35531892 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 35542019 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 35587548 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 35579346 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 35673145 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 35814174 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 35871002 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 36030954 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 36036810 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 36151632 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 36207032 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 36286150 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 36306211 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 36377887 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 36447140 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 36550791 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 36593579 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 36760018 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 36828815 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 36932404 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 36992280 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 37038789 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 37039677 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 37084699 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 37098025 0,0,6,0 0,0,2,0 4,0,50,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 37290982 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 37367074 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 37522158 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 37548205 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 37559040 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 38656000 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 38758604 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 38879034 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 38928513 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 38946250 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 38962712 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 38989625 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 39021261 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 39124606 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 39154916 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 39270484 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 39267173 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 39380373 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 39394823 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 39715427 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 39436206 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 39989518 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 39982457 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 40001476 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 40001440 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr6 40507679 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 40508579 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 41109677 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 41106207 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 41144578 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 41156569 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 41229628 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 41237286 0,6,0,0 0,2,0,0 0,41,0,13 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 41304450 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 41358403 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 41417625 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 41663067 0,4,0,0 0,0,0,0 0,1,0,35 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 41641557 0,6,0,0 0,2,0,0 0,54,0,0 4,2,0,0 2,10,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 41667017 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 41663070 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 41721852 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr6 41760455 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 41818089 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 41847584 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 41846940 0,0,0,4 0,0,0,0 0,17,0,29 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 41861921 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 41881649 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 41882294 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 41985025 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 42017263 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 42127144 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 42270338 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 42284615 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 42344520 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 42341499 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 42335393 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 42308561 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 42708542 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 42749575 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 42780108 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 42932924 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 43000996 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 43013525 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 43050725 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 43043177 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 43083222 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 43082232 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 43084871 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 43093031 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 43095062 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 43128395 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 43125725 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 43122634 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 43118809 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 43114305 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 43133924 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 43146084 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 43146096 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 43204829 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 43208264 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 43219242 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 43236528 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 43206333 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 43217966 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 43235609 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 43206045 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 43214974 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 43221031 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 43204793 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 43208222 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 43217930 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 43235567 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 43251664 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 43260452 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 43262753 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 43271808 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 43276491 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 43280555 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 43289207 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 43292150 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 43301804 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 43329325 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 43374317 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 43378030 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 43374299 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 43378015 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 43383380 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 43417890 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 43514391 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 43520997 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 43523408 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 43584488 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 43588892 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 43596121 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 43658061 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 43686400 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 43690200 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 43712316 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 43751295 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 44189723 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 44216790 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 44230526 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 44307140 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 44337490 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 44361962 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 44387113 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 44382033 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 44379940 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 44376891 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 44498404 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 45096308 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 45498642 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 45404121 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 45622600 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 45513702 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 46091226 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 46298859 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 46738129 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 46786318 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 46959963 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 46942658 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 47081542 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 47362130 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 47308509 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 47681936 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 47789654 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 47790722 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 49527254 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 49688197 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 49927714 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 50791153 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,6,2,0 0,10,0,0 -chr6 50913701 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 52042226 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 52025989 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 52005891 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 51907012 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr6 51840666 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 51727628 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 51592079 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 52037779 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 52018783 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 51995568 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 51884634 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 51828791 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 51719536 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 52255488 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 52249954 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 52240693 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 52376666 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 52508545 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 52649898 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 52870698 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 52986583 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 53106951 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 53101616 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 53517309 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 53473095 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 53892348 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 54281523 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 54899205 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 55486927 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 55728355 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 56604650 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 57097610 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 57169217 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 64468300 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 66261846 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 69814916 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 70128032 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 70694567 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 70908653 0,0,0,6 0,0,0,2 0,0,0,54 0,6,0,0 0,12,0,0 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 70943150 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 71041154 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 70999128 0,0,0,6 0,0,0,2 0,0,0,54 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 71302780 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 71624443 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 71624434 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 72068338 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 73871784 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 74007992 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 74130124 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 74174488 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 74218370 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 74232672 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 74249056 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 74246223 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 74284575 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 74463886 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 74533256 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 74576603 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 75954811 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 75912566 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 75896612 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 75882290 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 75855549 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 75903880 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 75890490 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 75869110 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 76007635 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 76129326 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 76437150 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 76632977 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 76675024 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 76697463 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 79827157 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 79757388 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 79970033 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 80280087 0,6,0,0 0,2,0,0 0,51,0,3 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 80688189 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 80794336 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 80969633 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 82516382 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 82990575 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 82971384 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 83788981 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 83896655 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 83926339 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 83935731 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 84118526 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr6 85529027 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 86233607 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 86260303 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 86310196 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,3,0,9 0,3,0,5 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 86310055 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 86403547 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 86381598 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 88184745 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 88183152 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 88274930 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 88285135 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 88387856 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 88442316 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 88910710 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 88910440 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 88911403 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 89671384 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 89919523 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 89945393 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 90556760 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 90528131 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 90516887 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 90495486 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 90477215 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 90465412 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 90459105 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 90453864 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 90445163 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 90439829 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 90422260 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 90416638 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 90699153 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 91313772 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 94177569 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 97093242 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 97445802 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 97668775 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 97818015 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 97727677 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 99453982 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 99938302 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 100064816 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 100116009 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 100497669 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 101003982 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 100948380 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 101353351 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 101197267 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 101418729 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 102354338 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 102618556 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 102413920 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 102623037 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 105325816 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 105680138 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 105923544 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 106650272 0,6,0,0 0,2,0,0 0,54,0,0 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr6 106660255 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 106659457 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 106660288 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 106847629 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 107099466 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 107177429 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 107210259 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 107886931 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 107961435 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 108334443 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 108502359 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 108604629 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 108722982 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 109428389 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 109574733 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 109864011 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 109870510 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 109881879 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 109878333 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 109875046 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 109873173 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 110155027 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 110253122 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 110407599 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 110533374 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 110647682 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 110820719 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 110836333 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 110884521 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 110870586 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 111049227 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 111320868 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 111600682 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 111646931 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 111815787 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 111737884 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 111987435 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 112135827 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 112147775 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 112122282 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 112124213 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 112488937 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 112527239 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 112615439 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 112583529 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 112567138 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 112537370 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 112615421 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 112583511 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 112567120 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,3,0,7 0,7,0,3 -chr6 112537340 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 114490685 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 116487877 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 116370343 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 116706465 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 116707284 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 116861212 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 116943503 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 117055553 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 117088635 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 117129892 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 117256681 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 117221103 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 117353346 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 117356823 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 117700317 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 117815811 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 117784590 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 117747754 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 117947769 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 118003068 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 118003203 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 118694877 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,14,0,4 0,10,0,2 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 118919682 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 119286682 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 119379709 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 119379634 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 119556663 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 121654935 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 122786434 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 123143181 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr6 123426548 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 125582996 0,6,0,0 0,2,0,0 2,52,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr6 126114911 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 126122614 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 126252399 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 126291520 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 126375812 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 127652833 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 127878543 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 127879155 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 127953057 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 128547298 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 128336519 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 129517440 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 129678647 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 129803670 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 129844238 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 129868181 6,0,0,0 2,0,0,0 54,0,0,0 5,0,1,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 129979114 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 130467279 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 130467324 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 130507561 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 131271662 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 131230303 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 131644490 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 131983466 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 131961466 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 131990867 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 131965096 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 131952315 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 132103090 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 132242858 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 132764219 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 132866322 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 132951981 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 133055332 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 133097177 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 133115403 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 133142134 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 133819457 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 133819403 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 133810970 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 11,0,1,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 134252384 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 134537367 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 134533137 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 135417521 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 135329232 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 135561855 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 136554512 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 136632429 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 136722695 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 137019147 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 136955392 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 137188061 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 137285466 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 137364423 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 137517837 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 137508486 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 137566475 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 138238625 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 138242051 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 139136663 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 139216980 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 139292916 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 139529391 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 139539824 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 139605556 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 139736261 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 142529128 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 143801452 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 143874375 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 144128290 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 144223318 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 144549883 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 144800522 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 144845076 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 144873919 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 144911539 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 145114775 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 145202046 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 146295961 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 147568865 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 147687830 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 148836952 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 148911165 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 149772488 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 149929333 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 149985944 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 149957973 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 150109270 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 150205814 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 150252349 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 150308280 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 150383984 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 151096555 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 151202981 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 151228858 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 151376619 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 151808381 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 151948881 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 152171079 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 152517777 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 152504147 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 152680977 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 152656496 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 152630910 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 152596761 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 152569103 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 152512376 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 152502959 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 152847791 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 152813901 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 152791119 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 152761472 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 152750140 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 152721290 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 152702071 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 152688888 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 152680935 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 152656436 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 152632099 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 152596677 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 152569025 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 152512325 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 152502920 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 152847677 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 152816485 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 152791047 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 152762581 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 152750044 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 152725145 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr6 152699671 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 152687962 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 152681067 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 152656520 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 152630943 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 152594961 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 152569130 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 152512415 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 152502980 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 153337796 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 153365260 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 154452849 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 154575663 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 154804202 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 155136826 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 155193884 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 155492859 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,19,0,1 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr6 155507571 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 155606893 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 155610893 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 155648076 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 155806106 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 157883647 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 158013938 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 158269652 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 158400316 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 158415617 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 158425154 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 158455855 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 158820833 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 158839804 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 158822176 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 158877616 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 158969458 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,0,10 0,0,0,10 -chr6 159066642 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 159125709 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 159108403 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 159381757 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 159380260 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr6 160025964 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 160103151 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 160121574 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 160121076 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 160142195 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 160161494 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 160248907 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 160374055 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 160389409 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 160402553 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 160414398 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 160425036 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 160445827 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 160475004 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 160463347 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr6 160499571 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 160689705 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 160783820 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 160987347 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 160942119 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 160926177 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 161048785 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 161333067 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 161434015 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 161333100 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 161434045 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 161490294 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 162603648 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 162395139 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 163155222 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 163904620 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 163876021 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 163904593 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 165752190 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 165666588 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 166491883 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 166834386 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 166763996 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 166832035 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 166764044 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 167264569 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 167470218 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 167490697 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 167629516 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 167641378 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 168032803 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 168091428 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 168185640 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr6 168186172 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr6 168204381 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,2,0,18 0,5,0,5 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr6 168750798 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 169390852 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr6 169857830 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 169847314 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 169915381 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 170439307 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr6 170434299 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr6 170434923 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr6 170539365 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 507302 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 736004 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 770121 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 848184 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 864018 0,0,6,0 0,0,2,0 0,0,54,0 2,0,4,0 6,0,6,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 879485 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 993307 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 1161650 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 1561430 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 1553983 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 2228897 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 2020773 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 2245729 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 2256045 0,0,6,0 0,0,2,0 0,0,48,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 2284436 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 2263633 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 2375708 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 2438962 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 2439895 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 2532407 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 2549967 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 2547622 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 2544432 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 2578371 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 2601061 0,0,6,0 0,0,2,0 0,0,54,0 6,0,0,0 12,0,0,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 2653383 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 2706800 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 2718723 0,0,0,4 0,0,0,0 0,0,0,36 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 2737571 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 2950511 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 2943334 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 2923536 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 3957169 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 3980680 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 4119453 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 4155454 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 4214397 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 4251912 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 4765694 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 4884136 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 4821550 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 4806431 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 5234291 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 5234279 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 5511655 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 5534716 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 5599453 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 5747207 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 5722917 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 5767201 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 5735666 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 5629240 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 5965215 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 5934459 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 6024114 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 6032911 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 6171942 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 6408518 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 6430988 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 6588391 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 6830891 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 7521975 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 7424032 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 7612102 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 8092501 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 10944965 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 15391706 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,16,0,4 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 15632945 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 16651665 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 16692144 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 16807476 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 17336217 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 19715135 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 20369855 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 20415815 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 20734532 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 21435953 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 21436781 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 21914398 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr7 21909243 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 23131258 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 23129950 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 23180283 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 23266233 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 23260317 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 23274103 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 23319794 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 23512393 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 23741846 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 23741747 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 24656688 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 24723466 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 24877900 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 24840679 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 24878117 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 24848551 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 24898526 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 24867885 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 24810495 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 25148449 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 25233045 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 26191397 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 26203826 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 26371207 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 27100735 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 27114081 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 27114783 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 27114165 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 27114855 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 27149567 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 27162379 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 27169844 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 27189046 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 27249576 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 27252470 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 27802321 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 27833905 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 28501141 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 28725000 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 28815466 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 29118954 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 29399834 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 29950250 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 30032608 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 30067074 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 30452363 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 30622151 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 30688141 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 30758309 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 30784650 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 30846903 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 30918253 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 30977324 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 31111009 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 31885308 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 31822199 6,0,0,0 2,0,0,0 23,0,27,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 32565400 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 32963866 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 33023699 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 33183709 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 33540177 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 33279235 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 33158851 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 33511659 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 34064213 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 34690748 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 34784669 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 1,0,0,9 -chr7 34951845 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 35254958 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 36160662 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 36290822 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 36363394 0,0,0,6 0,0,0,2 0,0,0,54 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 36405388 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 36429994 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 36627846 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 36884165 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 37217542 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 37856862 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 37903147 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 38637464 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 38400258 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 38778732 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 38778693 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 39692797 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr7 40084958 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 40003660 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 40100510 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 40140541 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 42229334 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 42029642 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 41970472 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 41971261 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 41971969 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 41972599 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 43367083 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 43450922 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 43462482 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 43560759 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 1,0,7,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr7 43809858 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 43954851 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 44065106 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 44063911 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 44071105 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 44086071 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 44110840 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 44114189 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 44118795 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 44123853 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 44145651 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 44156188 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 44151293 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 44156176 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 44151281 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 44156155 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 44151834 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 44248350 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 44290318 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 44226307 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 44226767 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 44248446 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 44248754 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 44290273 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 44226190 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 44246866 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 44249423 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 44226337 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 44537902 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 44521968 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 44528310 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 44519623 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 44577684 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 44572158 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 44585749 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 44681305 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 44706381 0,6,0,0 0,2,0,0 0,54,0,0 6,0,0,0 12,0,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 44763229 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 44767580 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 44771630 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 44762612 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 44764199 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 44769528 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 44772763 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 44840650 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 44891169 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 44982764 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 44976850 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 44971784 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 45044484 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 45044388 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 45080444 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 45109549 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 45115025 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 45110823 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 45107733 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 45663929 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 45692238 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 45720038 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 45927221 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 45927041 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 45921048 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 47406534 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 47375037 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 47352335 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 47298961 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 47937267 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 47908576 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 47863907 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 47845740 0,0,6,0 2,0,0,0 23,0,29,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 47835646 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 47806885 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 48034977 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 48108065 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 49786249 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 50573120 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 50709809 0,0,6,0 0,0,2,0 0,0,54,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr7 50640582 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 50654428 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 50630679 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 51120359 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 51060425 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 55191964 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 55189293 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 55181887 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 55200586 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 55240528 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 55466486 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 56030162 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 56097919 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 56113609 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 56108262 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 56116834 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 64001151 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 65081845 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 65184807 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 65194484 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 65740765 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 66047421 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 66096676 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 26,0,0,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 66152469 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 68702716 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 69869121 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 70438512 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 70814947 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,6 0,0,0,10 -chr7 72036904 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 72359412 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 72360444 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 72355820 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 72370840 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 72365274 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 72392662 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 72529352 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 72530114 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 72515209 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 72592251 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 72622965 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 72659665 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 72646548 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 72659674 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 72647993 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 72723516 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 72761346 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 72789534 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 72883923 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 72917426 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 73112159 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 73115906 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 73112174 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 73115921 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 73112189 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,1,0,25 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 73115936 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 73159447 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 73247050 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 73247511 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 73292340 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 73369845 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 73406166 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 73441493 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 73390967 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,19,0,1 0,12,0,0 0,8,0,0 0,8,0,0 0,10,0,0 0,10,0,0 -chr7 73409641 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 73560412 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 73590423 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 73757451 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 73757472 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 73757478 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 73826335 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 74117076 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 74186889 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 74202265 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 75030186 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 75022766 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 75006638 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 75355405 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 75421267 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 75452862 4,0,0,0 0,0,0,0 40,0,0,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 75463754 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 75532204 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 75867717 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 75857595 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 75909291 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 75950281 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 75947903 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 75950392 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 75978187 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 76093273 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 76747766 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 76666790 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 76864287 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 76779389 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 77094297 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 77163821 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 77217053 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 77246205 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 77988840 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 77602419 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 79684577 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 80277928 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 81224466 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 81169841 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 81432890 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 83478512 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 84548783 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 84467054 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 86253992 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 86392838 6,0,0,0 2,0,0,0 53,1,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 86360236 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 86653207 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 86816338 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 86858919 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 86917261 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 86889435 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 86920247 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 86898712 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 86870488 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 86911010 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 86876500 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 87034100 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 86988117 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 87245103 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 87402347 0,0,6,0 0,0,0,0 0,0,54,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr7 87618522 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 87575492 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 87635425 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 87598570 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 87677254 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 89627077 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 89712719 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 89772013 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 89822424 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 89880364 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 90451408 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 91484292 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 91550551 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 91564322 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 91601584 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 91681989 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 91680633 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 91969328 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 91999702 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 92682903 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 92675902 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 92770795 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 92954226 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 93354546 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 93872101 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 93877066 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 93887878 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 93892887 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 93895069 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 94018672 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 94587997 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 94755903 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 94879613 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 94995374 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 94995350 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 95055031 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 95499980 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 95656587 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 95588469 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 96489596 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 97200982 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 97321848 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 97608770 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 97671349 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 97773699 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 98086971 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 98287070 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 98339042 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 98365723 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 98384127 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 98391960 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 98400312 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr7 98411791 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 98419827 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 98440744 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 98447785 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 98483411 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 98496222 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 98476089 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 98780021 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 98828406 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 98870768 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 98860638 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 98855588 0,0,5,1 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 98895685 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 98935616 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 98955817 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 99058154 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 99146319 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 99202757 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 99279723 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 99327762 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 99328161 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 99365103 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 99459847 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 99499525 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 99506865 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 99524868 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 99534190 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 99531637 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 99534912 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 99531358 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 99528647 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 99540896 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 99549480 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 99543928 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 99593407 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 99591324 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 99595753 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 99611893 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 99636366 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 99640278 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 99809646 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 99834856 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 99840586 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 99865676 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 99866357 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 99867152 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 99871092 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 99929216 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 99991224 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 100017633 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 100028347 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 100028563 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 100040768 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 100048383 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 100077056 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 100066562 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 100090600 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 100112108 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 100123792 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 100121797 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 100120136 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 100118657 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 100257909 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 100255341 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 100239118 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 100295446 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 100303453 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 100311183 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 100321851 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 100325796 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 100478919 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 100560567 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 100604679 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 100602427 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 100646311 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 100641625 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 100636842 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 100662713 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 100745142 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 101346222 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 101703379 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 101600523 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 101627145 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 101631877 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 101657656 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr7 101874240 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 101893344 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 101896082 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 101903654 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 102020533 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 102311965 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 102503072 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 102547397 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 102727134 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 102740652 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 102839221 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 102838169 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 102820740 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 102818183 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 103089125 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 103039480 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 103017485 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 102993178 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 102972939 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 102949750 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 102913905 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 103615954 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 104517758 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 104535047 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 104538200 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 104560482 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 104560766 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 104890386 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 104994880 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 105696166 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 106310751 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 106610091 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 106800341 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 106631299 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 106676091 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 107005055 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 107101888 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 107123679 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 107221480 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 107199764 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 107345706 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 107403449 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 107389355 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 107383262 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 107359887 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 107535386 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 107507332 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 107493467 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 107662291 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 107621714 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 107930179 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 110914601 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 111889162 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 112202589 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 113345745 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 114089364 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 114079560 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 115369291 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 115677492 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 115933416 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 116127466 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 116198865 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 116320297 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 116565786 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 116557802 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 116747887 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 3,0,23,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 116854747 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 116967570 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 117238249 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 117162357 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 117663396 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 120215956 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 120398029 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 120553170 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 120722909 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 120756992 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 121404080 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 121487151 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 121520235 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 122125125 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 122422210 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 122556216 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 122907110 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 123056487 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 123296073 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,0,10 0,0,0,10 -chr7 124174285 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 124254568 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 127009468 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 127010263 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 127025754 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 127038394 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 127356527 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 127456069 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 127456948 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 127457761 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 127750823 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 127831008 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 127824272 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 127828355 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 127823915 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr7 127828118 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 127823975 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 128142953 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 128194906 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 128201100 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 128267416 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 128270855 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 128276094 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 128278586 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 128281301 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 128285699 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 128375522 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 128482027 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 128407318 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 128589933 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 128616546 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 128638048 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 128827392 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 128883662 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 129154338 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 129453326 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 129547838 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 129643123 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 129704925 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 129732951 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 129786719 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 129808919 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 129831708 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 129922583 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 130014733 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 130813936 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 130846662 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 131843053 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 131843863 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 131558925 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 131516706 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 131483864 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 131468411 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 131843581 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 131843056 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 131843881 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 132641236 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 132965369 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 133342988 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 133536846 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 133786958 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 133867256 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 134285784 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 134295318 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 134295916 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 134503096 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 134533365 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,23,0,3 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 134522269 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 134590457 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 134729604 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 134923187 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 134936223 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 134958099 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 135043449 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 135027707 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 136563323 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 136933175 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 136798844 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 137241056 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 137440706 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 137860622 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 137919227 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 138090986 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 138057244 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 138362064 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 138409244 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 138500459 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 138601621 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 138740992 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 139299647 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 139303957 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 139384118 0,0,6,0 0,0,2,0 0,0,54,0 6,0,0,0 12,0,0,0 1,0,25,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 139470913 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 139442926 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 139695032 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 139691528 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 139803112 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 139948376 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 139915970 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 139869605 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 140041060 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 140140685 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 140947546 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 141071378 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 141183481 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 142273410 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 142276185 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 142278432 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 142284449 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 142281393 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 142337345 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 142332955 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 142368682 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 142349684 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 142629995 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 142693400 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 142701479 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 142728644 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 142753846 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,0,10 0,0,0,10 -chr7 142766070 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 6,0,2,0 10,0,0,0 -chr7 142788906 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 142790336 6,0,0,0 2,0,0,0 52,0,0,0 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 142805567 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 142801450 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 142851039 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 142885468 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 143048099 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 143050827 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 143187067 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 143263984 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 143288617 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 143402839 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 143438211 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 143706876 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 146449050 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 147475583 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 147711888 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 148118460 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 148145251 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 148154626 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 148356384 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 148440217 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 148523770 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 148578203 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 148581908 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 148783605 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 149664973 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 149668517 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 149699575 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 149700337 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 149900427 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 149956116 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 150120157 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 150184968 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 150185802 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 150279651 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 150275724 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 150279840 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 150275865 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 150338224 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 150351194 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 150361661 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 150363690 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 150369222 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 150380627 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 150390022 0,4,0,0 0,0,0,0 0,42,0,0 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 150400036 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 150403500 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 150406598 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 150404849 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 150406673 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 150445395 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr7 150466281 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 150471514 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 150477075 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 150509295 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 150551979 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 150546183 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 150552003 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 150543997 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 150563235 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 150569513 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 150570859 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 150567750 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 151109308 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 150900685 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 151431169 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 151639918 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 151482291 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 152148439 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 154720988 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 154721303 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 155291999 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 156249177 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 156438048 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 156454649 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 156660433 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 156733981 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 2,0,6,0 0,0,10,0 -chr7 157802375 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 157623805 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr7 157056923 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 157652605 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 157089510 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr7 157677948 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 157168180 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 158171646 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 158143844 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr7 158279155 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr7 158221009 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 184680 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 391441 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 1793645 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 1834020 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 1864979 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 1986293 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 2007992 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 2034150 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 6259720 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 6290103 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 6487927 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 6577570 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 6901460 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 7717013 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 8271262 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 8271943 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 8272681 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 8222994 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 8213454 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 8214108 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 9035932 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 9451024 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 9475260 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 9646606 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 10102802 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 10433620 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 11211744 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 11319435 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 11643892 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 11678145 0,6,0,0 0,2,0,0 0,54,0,0 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 11733443 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 11740628 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 12639007 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 12987799 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 13004688 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 13401675 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 13992433 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 15552631 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 16022434 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 16929399 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 17136683 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 17272934 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 17211177 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 17446382 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 17445332 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 17460190 0,6,0,0 0,2,0,0 0,54,0,0 0,5,0,1 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 17586292 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 17623620 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 17548803 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 17576989 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 17617590 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 17547721 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 17964182 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 18301901 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,9,0,1 0,9,0,1 -chr8 18534487 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 18534487 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 19259065 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 19310478 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 19726630 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 19841315 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 20082715 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 20051500 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 20118223 0,0,6,0 0,0,2,0 0,0,54,0 6,0,0,0 12,0,0,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr8 21825426 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 21959720 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 21983649 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 22042424 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 22040998 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 22037222 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 22033257 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 22042331 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 22040875 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 22037117 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 22033955 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 22054089 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 22068042 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 22078878 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 22093869 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 22110799 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 22090581 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 22110208 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 22090512 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 22109038 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 22123138 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 22160684 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 22163931 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 11,0,1,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 22221483 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 22323501 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 22388428 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 22454128 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 22477955 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,4,0,6 0,0,0,10 -chr8 22485858 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 22503081 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 22502776 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 22498477 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 22519556 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 22527937 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 22530916 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 22603959 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 22604676 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 22918075 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 22920777 0,5,0,1 0,2,0,0 0,50,0,0 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 22930873 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 3,0,5,0 -chr8 22940671 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 22940641 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 23059324 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 23116161 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 23105351 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 23169992 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 23281706 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 23215570 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 23350653 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 23764816 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 24257035 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 24389850 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 24829052 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 25238799 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 25286079 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 25322297 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 25349673 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 25416841 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 25801348 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 26207154 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 26537673 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 26566724 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 26684079 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 26684079 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 27207552 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 27201408 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 27346877 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 27356396 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 27343557 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 27352750 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 27371892 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 27376734 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 27414396 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 27457209 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 27517828 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 27572266 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 27584508 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 27572398 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 27661614 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 27734024 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 27818251 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 28043082 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 28252589 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 28266035 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 28370267 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 28441120 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 28629795 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 28630749 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 28631544 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 28707340 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 28964489 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 29263356 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 29250595 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 30141187 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 30362171 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 30481377 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 30670075 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 31009078 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 30973659 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 31118753 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 32719101 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 32737383 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 32572985 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 32625195 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 33465476 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 33489362 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 33535724 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 35545189 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 35703582 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 37721067 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 37742294 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 37806659 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 37811948 2,0,4,0 0,0,2,0 19,0,31,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 37816919 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 37821604 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 37851792 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 37851759 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 38083083 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 38125365 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 38124906 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 38153631 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 38217014 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 38324408 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 38266174 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 38252548 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 38294698 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 38434057 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 38401287 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 38392576 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 38390479 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 38396236 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 38391534 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 38404672 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 38394950 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 38390605 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 38404624 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 38394914 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 38390938 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 38489140 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 38796624 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 38807852 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 38964660 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 38973775 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 39066754 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 39654120 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 39726387 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 41280210 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 41518549 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 41595642 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 41690905 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 41673245 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 41669347 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 41661331 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 41645164 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 41703987 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 41678260 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 41671376 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 41666922 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 41649336 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 41638209 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 41951392 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 42141774 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 42164224 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 42152817 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 42159539 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 42281929 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 42302665 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 42352450 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 42381550 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 42520847 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 42706666 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 42730413 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 42836131 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 42976409 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 43078079 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,10,0,0 0,10,0,0 -chr8 48369118 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 48787887 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 49037287 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 49045650 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 49125049 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 21,0,0,3 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 49995453 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 52908790 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 53247203 0,0,0,6 0,0,0,2 17,0,0,35 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 53236596 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 53640320 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 53720875 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 54847122 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 54847251 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 55021820 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 55212528 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 56848806 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 56886031 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 57074589 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 57391199 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 57516816 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 59521107 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 59572202 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 59734688 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 59664574 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 0,0,26,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 59913334 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 62374949 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 62721915 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 62593212 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 62759174 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 64092652 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 65691370 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 66688192 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 66801714 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 67211901 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 67211907 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 67209917 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 67514972 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 67543066 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 67709537 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 67879181 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 67958616 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 68136762 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 68190816 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 68352237 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 68286277 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 68497459 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 69112983 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 69184386 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 69596743 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 70695922 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,9,1,0 0,10,0,0 -chr8 70812845 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 70747791 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 71144438 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 71133631 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 71736640 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 72285958 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 72285982 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 73097731 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 74011071 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 74012109 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 74099748 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 74367093 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 74372113 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 75051169 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 75390030 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 75436684 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 76060792 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 76635225 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 80711632 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 80840198 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 80839994 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 81104966 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 81745307 0,6,0,0 0,2,0,0 0,54,0,0 0,0,0,6 0,0,0,12 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 82533472 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 82833027 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 82877890 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 86226232 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,2,0,6 -chr8 86380803 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 87145373 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 87231534 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 87462114 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 87560289 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 87636310 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr8 87660456 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 89123040 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 90871590 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 91052685 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 91164025 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 92099917 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 92475672 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 93086591 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 93052159 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 93073097 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 93041657 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 94874634 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 95255609 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 7,0,3,0 3,0,5,0 -chr8 95233502 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 95485605 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 95610499 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 95608582 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 95570231 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 95849907 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 95919908 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 95953339 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 95963089 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 96106556 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 96329114 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 97321056 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 97916447 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 98726042 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 98795113 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 99170538 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 99198444 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 99218125 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 99237637 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 100217107 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 100356495 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 100657119 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 100865736 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 100917007 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 100952951 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 100229330 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 100584277 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 100801931 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 100902805 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 100949862 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 101147660 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 101222089 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 101223019 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 101232786 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 101314905 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 101345532 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 101604109 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 101791027 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 102281414 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 103306318 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 103393826 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 103367768 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 103362879 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 103346551 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 103732741 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 103731747 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 104144401 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 104411407 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 104481872 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 105012738 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 105333221 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 105509522 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 107787807 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 107821752 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 107851301 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,10,0 0,0,10,0 -chr8 109316411 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 110169457 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 110371325 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 110724306 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 110656542 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 110657337 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 110656356 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 110657052 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 111049551 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 113766908 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 113655028 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 113488131 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 113377260 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 113318716 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 113731711 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 113632184 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 113422976 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 113325824 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 114360018 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 113731711 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 113632184 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 113422976 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 113345105 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 116685298 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 116686351 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 116495651 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 117807474 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 117948068 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 118228398 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 118610085 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 119192236 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 118888750 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 120014689 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 120185281 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 120682866 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 120719860 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 120663897 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 120883368 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 120864889 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 120934612 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 1,0,19,0 0,0,12,0 0,0,8,0 0,0,10,0 2,0,8,0 3,0,7,0 -chr8 121083015 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 121288493 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 121329085 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 121378966 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 121450799 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 121597517 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 121623316 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 124096964 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 124215600 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr8 124264286 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 124313098 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 124451378 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 124420806 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 124622358 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 124779896 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 124889778 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 125057334 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 125094929 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 125141972 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 125152969 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 125201209 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 125628457 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 125637184 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 125635057 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 126059203 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 126149053 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 126126062 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 126512473 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 126517799 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 127638471 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 128820110 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 130834157 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 131439532 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 131198329 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 131142332 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 131949303 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 131861948 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 133255736 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 133719442 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 133896162 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 133951198 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 133980289 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 134030255 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 134095160 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 134176550 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 134141544 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 134272605 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 134330188 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 134546290 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 135690176 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 135683673 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 136624099 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 139332419 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 139214151 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 139862375 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 139784745 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 139683584 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 140699936 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 141439458 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 140991630 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 141638767 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 141626861 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 141879745 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 141780273 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 142245480 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 142271899 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 142297503 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 142298160 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 142504350 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 143410212 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 143813817 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 143843526 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr8 143996142 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 143991831 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 144311608 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 144403973 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 144430028 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 144478971 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 144469551 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 144691536 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 144692232 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 144628882 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 1,0,11,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 144728937 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 144761406 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 144769515 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 144803734 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 144873555 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 144967819 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 144964753 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 144965070 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 144991322 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 145083341 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 145096381 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 145083167 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 145083353 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 145082087 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 145137861 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 145167725 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 145207297 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 145210739 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 145212188 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 145222041 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 145230458 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 145233033 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 145265074 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 145266434 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 145459051 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 145505838 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 145552105 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 145550626 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 145554479 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 145555285 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 145587425 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 145597245 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 145594131 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 145590515 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 145610281 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 145612028 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 145609087 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 145620986 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 145636568 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 145633039 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 145632315 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 145630368 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 145660350 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 145663731 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 145668216 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 145670437 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 145671139 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 145701193 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 145705635 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 145706582 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 145717193 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 145720310 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 145719100 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 145725069 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 145743865 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr8 145744618 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr8 145988237 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr8 145999133 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr8 146127454 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr8 146128474 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 302121 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 366263 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 394983 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 424906 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 11,0,9,0 0,0,12,0 0,0,8,0 3,0,7,0 0,0,10,0 0,0,10,0 -chr9 453547 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 734544 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 734586 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 967109 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 2048386 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 2105878 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,10,0 0,0,10,0 -chr9 2063292 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 11,0,1,0 18,0,4,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 2109472 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 2634979 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 2629914 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 2638278 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 2824101 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 3336750 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 3336750 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 3238179 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 4108116 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 3927084 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 4107885 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 4108695 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 3846150 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 4573125 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 4652468 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 4653221 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 4709223 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 5034463 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 5068416 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 5154247 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 5453042 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 5553190 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 5747427 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 5762733 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 5820985 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 5795154 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 6245988 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 6318883 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 6411127 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 6635379 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 6582930 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 6523133 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 6974355 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 7118134 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 8511392 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 8476114 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 8331786 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 8518673 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 8475775 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 8474277 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 8309849 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 12688498 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 14136787 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 15189897 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 15413075 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 15464031 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 15464229 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 15735559 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 16542559 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 16409596 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 17492554 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 18652060 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 19040131 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 19068285 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 19280829 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 19331108 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 9,0,1,0 -chr9 19399169 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 19506241 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 20754949 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 20902903 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 20968363 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 21177038 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 21340352 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 21357922 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 21844752 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 21964820 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 26876152 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 26913341 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 26968206 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 27159536 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 27187485 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr9 27274763 0,6,0,0 0,2,0,0 0,54,0,0 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 27540693 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 32411024 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 32490891 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 32449398 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 32774682 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 33016521 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 33061773 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 33106067 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 33256064 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 33318664 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 33334161 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 33432941 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 33459613 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 33457776 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 0,0,26,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 33459526 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 33457698 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 33455821 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,19,1,0 0,10,2,0 0,6,2,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 33453132 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 33907217 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 33931830 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 4,0,6,0 0,0,10,0 -chr9 33913022 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 34083313 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 34329073 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 34371030 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 34370991 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 34391078 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 34496758 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 34554730 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 34625780 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 34636707 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 34639059 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 34649800 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 34647117 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 34652626 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 34961643 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 35032332 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 35052296 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 35047384 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 35068283 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 35065006 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 35082629 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 35084220 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 35081464 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 35082286 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 35080205 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 35091137 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 35095952 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 35300728 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 35386892 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 35393510 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 35548529 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 35608021 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 35600744 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr9 35650797 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 35666077 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 35679712 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 35674287 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 35674251 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 35713951 0,0,6,0 0,0,2,0 0,0,54,0 6,0,0,0 12,0,0,0 0,0,26,0 12,0,6,0 2,0,10,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 35709126 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 35706520 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 35702043 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 35697769 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 35694376 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 35689072 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 35726120 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 35731031 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 35728047 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 35790060 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 35796488 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 35800448 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 35800039 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 35832672 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 35835977 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 35896428 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 36092175 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 36137811 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 36160135 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 36161068 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 36181134 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 36201669 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 36217314 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 36207519 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 36332358 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 36334858 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 36664878 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 36913468 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 37416634 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 37430793 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 37431732 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 37479324 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 37682734 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 37725599 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 37734963 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 37735929 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 37752027 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 37770766 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 37844909 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 37964689 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 38403335 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 39168353 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 39139966 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 39092543 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 39068428 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 39348404 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 39349265 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 39350222 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 39351137 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 70269856 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 70342064 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 70585608 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 70739672 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 70840554 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 71025892 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 71044747 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 71026081 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 71054137 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 71188471 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 71321250 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 71321811 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 71256974 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 71936290 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 72148975 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 72647833 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 72415473 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 72341349 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 72647764 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 72415416 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 72341271 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 72342072 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 72423783 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 72341181 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 72342000 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 72423711 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 72341142 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 72341952 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 73549959 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 73516897 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 73679598 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 73679739 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 74030484 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 74544903 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 74963277 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 76447394 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 76632549 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 76587195 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 76543257 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 76803388 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 77695980 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 77986203 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 78824804 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 78825506 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 79032965 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 79100319 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 79136763 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 79017746 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 79078090 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 79120004 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 79175781 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 79233715 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 80109639 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 80111216 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 81523487 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 83458747 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 83416598 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 83392548 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 84809301 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 85194413 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 85052768 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 85473999 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 85468733 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,11,0,1 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 85707817 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 85658492 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 85782974 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 85774944 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 85776413 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 86104433 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 86475510 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 86507092 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 86528315 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 86528318 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 86760117 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 86556750 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 86826151 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 87391587 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 87782142 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 87882266 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 87840332 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 88157762 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 88114200 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 89409773 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 89452129 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 89486345 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 89510992 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 89511895 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 89535836 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 89774051 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 90267339 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 90806394 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 90875951 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 91124470 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 91151723 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 91193377 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 91183524 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 91184286 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 92415617 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 92679851 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 93211955 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 93559406 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 93533176 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 93526244 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 93526934 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 93834583 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 94073126 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 94052326 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 94414671 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 94319833 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 94472034 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 94436570 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 94520749 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 94521406 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 94524839 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 94521262 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 94778470 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr9 94813345 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 94877915 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 94915120 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 95120637 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 95334308 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 95460312 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 95755156 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 95899470 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 95900466 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 95890296 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 95900349 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 96247174 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 96395785 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 96408995 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 96937461 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 97284111 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 97278256 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 97255715 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 97282089 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 97261792 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 97251297 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 98104188 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 98147426 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 98194526 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 98366913 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 98565225 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 99111540 0,0,6,0 0,0,2,0 1,0,51,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr9 99122295 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 99162195 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 99230592 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 99262859 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 99348338 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 99429638 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 99404846 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 99473224 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 99712178 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 99740190 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 99800733 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 99902216 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 99897050 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 99930326 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 100023178 0,0,0,6 0,0,0,2 0,0,0,42 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 100001601 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 100113296 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 100586963 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 100570314 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 100637373 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr9 100805570 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 100837203 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 100856698 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 100870750 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 100951285 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 101646799 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 101665826 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 101818481 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 102066948 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 102028257 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 102151397 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 102131310 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 102244416 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 103111480 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 103164836 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 103337643 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 103359612 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 103539917 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 103396703 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 105901781 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 106496538 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 106497522 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 106705775 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 106639192 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 106629190 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 106620913 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 106604240 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 106590552 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 107150533 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 107406580 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 107523717 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 108774210 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 109108744 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 109289807 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 109289242 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 110657284 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 110657959 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 110702428 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 110681644 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 110792874 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 110893039 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 111060282 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 111010060 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 110976706 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 111250918 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 111208643 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 111725905 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 111958481 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 112003341 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 112743857 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 113329874 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 113388234 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 113560824 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 113504295 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 113560188 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 113502094 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 113724961 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 113926401 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 114077982 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 114206126 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 114461567 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 114606954 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 114845013 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 114846360 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 115078684 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 115093599 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 115133163 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 115156436 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 115193691 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 115212164 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 115225501 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 115264298 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 115316611 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 115399003 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 115316587 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 115309625 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 115397068 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 115397068 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 115897391 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 115894699 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 116039765 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 116069619 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 116092345 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 116111489 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 116183355 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 116179279 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 116169789 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 116147998 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 116139395 0,0,6,0 0,0,2,0 0,0,52,0 6,0,0,0 12,0,0,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 2,0,8,0 0,0,10,0 0,0,10,0 -chr9 116306431 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 116228389 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 116390005 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 116706225 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 116888136 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 116888916 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 116884856 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 116875920 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 116861921 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 116848595 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 116833691 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 117203382 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chr9 118037672 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 118154855 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 118289526 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 119016670 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 118665833 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 118289535 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 121040801 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 122320552 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 122250095 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 122210485 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 122370487 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 122273952 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 122222040 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 122206208 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 122590245 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 122566946 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 122623039 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 122664098 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 122671972 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 122707175 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 122822236 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 122778839 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 122898596 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 122942820 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 122960115 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 122985430 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 123120539 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 123134696 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 123128637 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 123158213 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 123562107 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 7,0,13,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr9 123578420 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 123565649 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 123962087 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 124019387 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 124063569 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 124180672 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 124180597 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 124194641 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 124464688 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 124622688 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 124661016 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 124651823 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 124713977 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 124721671 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 124812603 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 124975828 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 124938239 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 125571646 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 125242567 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 125385325 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 125816102 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 125834660 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 126149916 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,8,0,2 0,10,0,0 -chr9 126302248 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 126295213 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 126345921 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 126579379 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 126603735 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 126656349 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 126663545 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 126730322 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 126683994 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 126797109 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 127043176 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 127041416 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 127109572 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr9 127139349 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 127156811 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 127286655 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 127286637 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 127270160 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 127246695 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 128286093 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,26,0,0 0,18,2,0 0,10,2,0 0,6,2,0 0,1,7,0 0,0,10,0 0,0,10,0 -chr9 128498479 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 128998703 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 128910338 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 128896008 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 129146382 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 129189367 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 129204775 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 129237222 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 129247153 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 129263323 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 129298129 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 129319001 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 129308958 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 129327253 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 129311099 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 129309267 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 129468346 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 129462132 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,24,0,2 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 129478841 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 129515945 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 129528483 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 129535505 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 129536457 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 129551616 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 129547154 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 129576157 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 129551496 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 129547043 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 129540997 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 129606441 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 129606637 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 129631873 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 129620321 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 129670167 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 129714622 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 129738697 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 129746922 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 129868717 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 129865697 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 129907909 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 129903294 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 129909275 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 129925829 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 129952361 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 129987873 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 129971538 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 130021201 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 130020818 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 130070546 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 130062815 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 130123736 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 130127271 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 130147318 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 130157550 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 130226330 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 130261736 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 130296681 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 130290026 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 130317667 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 130341724 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 130327504 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 130379048 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 130386531 0,0,0,6 0,0,0,2 0,0,0,54 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 130407212 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,7,0,3 -chr9 130414223 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 130428508 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 130458736 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 130437849 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 130507609 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 130515478 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 130521823 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 130523368 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 130554890 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 130537476 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 130608063 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 130625856 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 130637703 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 130709888 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,6,0,4 -chr9 130710887 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 130729290 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 130743556 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 130748500 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 130759084 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 130785066 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 130795446 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 130801809 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 130807474 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 130824504 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 130842721 6,0,0,0 2,0,0,0 54,0,0,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr9 130862696 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 130883276 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 130903994 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 130898226 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 131436180 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 131439930 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 131444085 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 131522827 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 131605474 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 131624775 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 131630319 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 131670290 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 131677452 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 131894422 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 132317508 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 132479539 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 132497482 0,6,0,0 0,2,0,0 0,51,0,1 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 132559104 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 132738171 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 132737354 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 132758752 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 132795182 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 132906863 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 132934242 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 132942497 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 132992854 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 133009633 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 133015871 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 133039522 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 133062617 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,9,0,1 0,10,0,0 -chr9 133063250 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 4,2,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 133063874 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 133095859 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 133126372 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 133371355 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 133383679 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 133371624 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 133383685 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 133372706 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 133384640 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr9 133942713 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 134063314 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 134106227 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 134148474 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 134130004 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 134267292 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 26,0,0,0 19,0,1,0 10,0,2,0 2,0,6,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 134263407 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 134363989 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 134535124 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 134517691 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 134483615 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 134535346 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 134512116 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 134543772 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 134544819 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 134688528 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 134794061 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 134767827 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 134761887 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 134896225 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 134919677 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 134930387 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 134974843 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 134969020 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 134965499 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 134974034 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 134967744 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 134963952 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 135190412 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 135203293 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 135200817 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 135208039 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 135208798 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 135220414 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 135255453 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 135267336 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 135280920 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 135295398 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr9 135310239 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 135278101 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 135294315 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 135300727 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 135313001 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 135287604 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 135299823 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 135310491 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 135320334 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 135331254 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 135326984 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 135402057 6,0,0,0 2,0,0,0 54,0,0,0 0,0,0,6 4,0,0,8 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 135416207 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 135429783 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 135491452 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 135506594 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 135589007 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 135573883 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chr9 135549265 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chr9 135661029 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 135631006 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 135908393 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 135903247 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 135891020 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 136012867 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 136453411 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 136760366 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 136788434 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 137121867 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 137531447 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 137533605 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 137728372 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 137796763 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 137816547 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 137852596 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr9 137853370 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 137854177 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 137854867 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 137846840 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 137977623 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 138048038 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 138231459 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 138232394 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 138256530 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 138243073 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 138351210 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 138370625 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 138385343 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 138382005 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 138409108 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 138401781 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 138397899 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 138423330 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 138418942 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 138437483 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 138538047 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 138532964 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 138528925 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 138523314 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 138520810 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 138513263 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 138511030 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 138511702 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 138691328 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 138688080 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 138805682 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 138820939 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 3,0,17,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 138868285 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 138870063 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 138872026 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 138877616 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 138922369 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 138940093 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 138959599 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 138968182 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 139010025 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 139038439 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 139030011 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 139024316 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 139022775 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 139068156 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 139064718 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 139065183 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 139063109 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 139093265 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 139114078 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 139122759 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 139126389 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 139171176 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 139163332 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 139181740 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 139177493 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 139202760 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 139199338 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 139203436 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 139213883 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 139226840 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 139230197 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 139250557 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 139257544 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 10,0,0,0 10,0,0,0 -chr9 139259800 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 139443560 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 139448312 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 139450994 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 139449366 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 139451021 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chr9 139463874 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 139537028 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 139498981 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chr9 139476251 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 139578821 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 139597316 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 139628640 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 139757798 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chr9 139813118 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chr9 139848672 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 1431302 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 2803892 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 2,0,10,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 2881248 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 2943204 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 3009011 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 5831479 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 7187550 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 8551666 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 8462401 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 9616239 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 9693910 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 10022240 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 10045572 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 10066853 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 10134750 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 10410564 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 11043027 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 11084647 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 11182720 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 11688889 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 11690975 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 11693585 0,0,6,0 0,0,2,0 0,0,54,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,9,1,0 0,10,0,0 0,10,0,0 -chrX 12611561 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 12644455 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 12747562 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 12748792 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 13663332 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 13686403 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 13691831 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 13701022 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 13713705 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 13937167 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 14658411 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 14825194 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 15176875 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 15176978 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 15259639 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 15283225 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 15318236 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 15519809 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 15592394 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 15710672 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 7,0,5,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 16052402 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 16598693 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 16685259 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 16785672 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 16953204 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 17061930 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 16982924 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 17620425 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 17660298 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 17677533 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 18123380 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 18252955 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 18169306 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 18532585 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 18581570 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 18658224 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 18882418 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 18852503 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 18833810 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 18951969 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 18931035 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 18941923 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 18918913 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 18936063 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 18951960 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 18930984 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 19286961 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 19299033 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 19536063 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 19623674 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 19470182 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 19878827 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 19953006 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 19939079 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 20100901 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 21491290 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 21773360 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 21784847 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 21906021 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 22106346 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 22201680 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 23307940 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 23634694 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 23633881 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 23983030 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 24426915 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 24518074 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 24644924 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 24663514 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 24754485 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 29324452 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 30146777 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 30164124 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 30170323 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 30236329 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 30236968 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 30646602 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 30648727 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 31132108 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 31137603 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 31075463 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 31407131 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 31110793 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 31607594 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 31276668 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 31101631 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 31555882 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 31134695 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 31062225 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 10,0,0,0 10,0,0,0 -chrX 31075370 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 32493880 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 32274076 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 31555813 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 31134623 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 31062186 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 35731152 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 35903779 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 36072646 6,0,0,0 2,0,0,0 54,0,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 10,0,0,0 10,0,0,0 -chrX 37471877 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 37543229 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 37735240 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 37864647 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 37898718 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 38020894 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 38032150 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 38418463 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 39822112 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 39807941 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 39798171 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 40381220 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 40426851 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 40403725 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 40910324 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 40940836 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 40969320 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 41090439 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 41380855 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 41264646 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 43488078 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 43539956 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 44286178 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 44813962 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 44834994 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 46426890 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 46376022 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 46769100 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 46888884 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 46930455 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 46957374 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 46970630 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 46977431 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 46986538 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 47307607 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 47314238 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 47374135 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 47371231 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 47383492 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 47659628 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 47660942 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 48096495 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 48129760 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 48203094 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 48260553 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 48260598 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,10,0,0 -chrX 48253200 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 48302320 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 48343733 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 48549737 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 48558935 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 48566486 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 48578848 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 48645152 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 48647311 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 48646933 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 48647313 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 48656389 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 48732286 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 48783603 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 48772801 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 48809045 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 48816593 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 48821345 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 48922609 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 48935128 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 48969435 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 48955352 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 48952029 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 48992649 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 49025437 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 49733136 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 49742212 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 50111373 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,10,0,0 0,10,0,0 -chrX 50367190 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 50358068 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 51661481 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 52843074 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 52994170 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 53270736 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 53260619 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 53247516 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 53300694 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 53458767 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 53455528 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 53448683 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 53424295 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 53474242 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 53475777 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 53475548 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 53659446 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 53636121 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 53628735 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 53620637 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 53612470 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 53602706 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 53596039 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 53592735 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 53582555 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 53577797 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 54045406 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 54177177 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 54376699 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 54291859 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 54280170 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 54241763 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 54336144 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 54292651 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 54245240 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 54513916 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 54492008 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 54595115 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 54852978 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 54858510 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 54967680 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chrX 54999397 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 55058023 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 55052378 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 55134521 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 55796582 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 56327610 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 57491686 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 62792134 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 63327155 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 63328031 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 63328877 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 63329798 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 63360992 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 63405177 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 64055725 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 64661200 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 65307149 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 65343798 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 65331669 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 65391666 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 65739285 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 67233464 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 67855912 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 67976245 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 69164541 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 68753132 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 68753084 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 69172076 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 69340952 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 69412685 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,7,0,3 0,10,0,0 -chrX 69417368 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 69435753 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chrX 69542857 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 69564020 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 69586748 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 69636582 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 69636489 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 69742086 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 69742080 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 70065149 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 70204740 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 70248050 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 70256594 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,0,0,10 -chrX 70262042 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 70266355 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 70273221 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 70284564 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 70303944 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 70306288 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 70386730 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 70430828 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 70440055 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 70514384 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 70530804 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 70594818 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 70515464 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 70538264 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 70669889 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 70704317 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 70701211 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 70749458 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 71438513 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 71850384 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 71757460 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 71982559 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 73667903 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 74205913 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 74436401 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 75309866 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 76758841 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 76762571 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 76999620 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 77155103 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 77184771 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 77267113 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 78509302 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 79951625 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 79861666 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 79835192 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 83259086 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 84245543 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 85169176 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 85957748 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 86767397 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 92814608 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 96058197 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 95826839 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 96489926 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 96026727 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 99548974 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 99549712 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 99438034 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 99778341 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 99808519 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 99827732 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 99965638 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 99991807 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 100003891 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 100183716 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 100251137 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 100383470 0,0,6,0 0,0,2,0 0,0,54,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chrX 100392714 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 100434514 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 100516853 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 100497804 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 100542395 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 100554253 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 0,0,10,0 0,0,10,0 -chrX 100797787 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 100798882 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 101459691 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 101465351 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 101856999 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 101858106 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 102204765 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 102220208 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 102416012 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 102519318 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 102817888 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 102860693 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 102927291 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 102967154 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 103382215 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 104897818 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 105902881 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 105969996 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 106116025 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 106197555 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 106770820 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 106844527 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 106971133 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 107056770 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 107035399 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 107187955 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 107221304 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 107261219 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 107267025 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 107335366 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 107317029 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 107300796 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 107294568 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 107287116 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 107318413 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 107305556 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 107295335 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 107289466 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 107707846 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 107728740 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 107750203 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 107816008 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 107710430 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 107731805 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 107754129 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 107817492 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 107710913 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 107732905 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 107756130 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 108595115 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 108522923 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 108811257 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 108812699 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 108774014 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 109889628 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 110292924 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 110381507 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 110540119 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 110540227 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 110540264 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 111081932 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 111042675 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 111800964 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 111921778 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 114151595 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 114788132 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 117410787 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 117424924 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 117602750 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,0,0,10 0,0,0,10 -chrX 117633671 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 117694647 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 117776175 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 117993275 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 118032275 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 117993353 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 118035570 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 118600613 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 118668068 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 118647362 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 118869510 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 118889352 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 118937949 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 118948139 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 119322263 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 119397415 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 119561663 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 119561648 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 119626241 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 122287619 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 122444402 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 122378975 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 122665026 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 122595509 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 122575685 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 122848066 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 123022778 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 123052230 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 123017713 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 123048234 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 123857638 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 123484916 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 123443308 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 123345199 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 123346165 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 128453619 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 128522217 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 128551826 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 128528998 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 128708301 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 128722911 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 128754786 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 128882198 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 128887972 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 129000934 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 129127262 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 129109157 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 129127304 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 129133750 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 129334587 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 129664780 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 129631699 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 130045537 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 130050302 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 130238670 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 130235832 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 131029926 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 131031309 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 131041742 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 132376589 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 132947111 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 133527784 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 133809153 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 134013579 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 134254028 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 134508852 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 134541683 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 134920288 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 134907953 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 135116846 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 135232688 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 135302146 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 135401858 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 135458616 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 135591744 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 136478791 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 137542792 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 138461056 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 138526109 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 138736648 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 138684665 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 138736630 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 138684644 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 138641568 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 146825758 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 147551234 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 147844940 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 147847638 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 148372201 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 148498299 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 148851445 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 149533797 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 149650749 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 149735193 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 149712856 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 150324155 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 150619164 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 150658804 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 150662990 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 150843086 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 150878980 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 151283603 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 151568394 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 151571983 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 151636857 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 151781825 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 152363665 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 152381287 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 152423906 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 152461063 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 152455067 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 152475630 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 152568897 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 152589243 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 152612844 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 152644044 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 152644701 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 152690280 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 152692266 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 152693548 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 152696744 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 152702702 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 152706770 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 152708466 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 152716379 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 152724249 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 152722547 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 152723141 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 152790894 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 152788504 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 152786480 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 152783977 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 152781519 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 152789122 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 152786982 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 152785414 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 152782662 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 26,0,0,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 152840120 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 152862277 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 152883353 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 152878613 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 152876465 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 152871320 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 152870298 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 152936666 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 152931846 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 152935088 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 152936956 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 152950990 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 152949447 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 153063056 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 153077508 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 153169924 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 153204814 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 153241466 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 153239133 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 153234455 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 153232602 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 153230541 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 153281441 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 153293458 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 153315242 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 153320337 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 153327361 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 153347032 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 153349171 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 153350398 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 153359891 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 153389862 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 153415885 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrX 153415039 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 153445425 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 153581504 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 153648494 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 153686812 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 153903881 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrX 153788030 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrX 154146561 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrX 154375254 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrY 1367522 0,0,0,6 0,0,0,2 0,0,0,54 0,0,0,6 0,0,0,12 0,0,0,26 0,0,0,20 0,0,0,12 0,0,0,8 0,0,0,10 0,0,0,10 0,0,0,10 -chrY 1504474 6,0,0,0 2,0,0,0 54,0,0,0 6,0,0,0 12,0,0,0 26,0,0,0 20,0,0,0 12,0,0,0 8,0,0,0 10,0,0,0 10,0,0,0 10,0,0,0 -chrY 1545016 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 -chrY 2149165 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrY 57745883 0,0,6,0 0,0,2,0 0,0,54,0 0,0,6,0 0,0,12,0 0,0,26,0 0,0,20,0 0,0,12,0 0,0,8,0 0,0,10,0 0,0,10,0 0,0,10,0 -chrY 57752237 0,6,0,0 0,2,0,0 0,54,0,0 0,6,0,0 0,12,0,0 0,26,0,0 0,20,0,0 0,12,0,0 0,8,0,0 0,10,0,0 0,10,0,0 0,10,0,0 diff --git a/example/example.nex b/example/example.nex deleted file mode 100644 index e3d323efd..000000000 --- a/example/example.nex +++ /dev/null @@ -1,9 +0,0 @@ -#nexus - -begin sets; - charset part1 = 1-999\3 2-999\3; - charset part2 = 3-999\3; - charset part3 = 1000-1998; - - charpartition mine = HKY:part1, GTR+G:part2, GTR+G: part3; -end; diff --git a/example/example.phy b/example/example.phy deleted file mode 100644 index cbf0eb3a9..000000000 --- a/example/example.phy +++ /dev/null @@ -1,18 +0,0 @@ -17 1998 -LngfishAu CTCCCACACCCCAGGAACCAGCAGTGATTAACATTGAGCATAAGCGAAGCTTGACTCAGCCACCTCGGGCCGGTAAACCTCGTGCAGCCACCGCGGTTATACGAAGGACCCGATTGATGTCTAGGCGTAAAGGTGATTAATAGACTAATTAGAGTTAAAACCCCATCCAGCCGCGCATCCATAAAATCTAGACTACAACTACTTTCACGAAAGCTAAGATACAAACTGGGATTAGAT-CC-ACTTGCTCAGCCATAAACTTTGACTACTAAAAGGTCCGCCAGTACTACGAGGGCCAGCTTAAAACCCAAAGGACTTGCGGTGCCTACCCACCTAGAGGAGCCTGTTCTAGAACCGATAATCCACGTTAAACCTCACCCTTCTTGCCCCGTCTATATACCACCGTCGCCAGCTTACCCCGGGGTGAAATAAGCACAATTGTCAACCAAAAACGTCAGGTCGAGGTGTAGCGAATGAAGCGGAAGAATGGGCTACATTTTCTAAAGAATGAAAGACTAATGAAAAAGTCAGGGTGGATTTAGCAGTAAGAAAAACCAAGAATATTTCTGAAATTGGCCATGAGGGCGCACACACCGCCCGTCACTCTCCTCAAACTAAGAGGAGGCAAGTCGTAACATGGTAAGCGTACCGGAAGTCCTTGGAATTCAAATGTAGCTAAGAAGCACCTCCCTTACACCGAGGGCACATTGCAAAATCATTTGCTAAACTGCTAGCCTACAACACTATAATACCCAATAAACCATTTAACAGAGTATGGGCGACAGAAGTAGCGCCAAGTACCGCAAGGAAATGAATTAAGCCCAACAAAGTAGAGATATAAACTGTACCTTTTGCATCATGGTCTAGCAAGTCCCTGGGAAAGAGTGCTAAGTCAACCCCCGAAACTAGGCGAGCTACTTCGAGACAAGAGCCAACCCGTCCCTGTGGCAAAAGGGTGGGAAGATCTCCAAGTAGGGGTGACAGACCTAACGAGCCTAGTTATAGCTGGTTGCTCGGAAAGAATATAGTTCAACTTTAAACCCAACTAAGTAGGTTTAAAATATATTTAAAAGAGGGACAGCTCTTTTAAAAGGACACAACCTTAAAAATTGAAGATCATACGAATAAAGTGGCCTAAAAGCAGCCACCGTAGAGCGTACAGCTCAAGTCCTACAAATAATGAACTCAATCAACCCGAAAACTACTGGCTAACTTATAAAATATAAATAATGCTAGAATTAGAACAAGGGCCTTCTGCATAGGTGTAAACGGACATTGATAATTACGACACGAAGCTCATAAAACCAAGACCAAATCAACAATCAACACCACACAGTAATGCACGGAAAGGTTAAACAATGGAAGGAACTCGGCAACAAACCCCCCCTGTTTACCAAAAACATCGCCTCCTGCAAATATTAGAGTCCCGCCTGCCCTGTGACATTTCAACGGCCGCGGTATTTGACCGTGCGAAGGTAGGTAATCACTGTCTTAATAAAGACCTGTATGAATGGCCACGAGGGTTCAACTGTCTCCCCCATTTTACCAGTGAAATTGATCTCCGTGCAGAAGCGGGCATAAAACCAAAGACGAGAAGCCCTATGGAGCTTAAAACTGAAGTAGCTTTTAAAGCTAATAGCAAACTTGGTTGGGGCGACCGCGGAGAAAAAAAAATCCTCCGCAACAAGGGGACAGCCCAAAAAACAAAGATCCAGATAGATCAACGAACCAAGTTACCCTAGGGTAACAGCGCAACCTTTCTAAGAGTCCATATCGACGAAAGGGCTTACGACCTCGATGTTGGATCAGGACACCTAGTGGTGCAGCCGCTACTAAGGGTTTGTTTGTTCAACAATTAAATCCTACGTGATCTGAGTTCAGCAATCCAGGTCAGTTTCTATCTATGAT-TTTCTAGTACAAAGGACCGAAAAGTAGAGGAAGCCAAACTATCTCACCCACCCAAATTAACTAAAAATGGGGGCTATCTCCCAAGACGGA -LngfishSA CAACCACACCCCAGGAAACAGCAGTAATTAATCTTAGGCATAAGTGAAACTTGACCTAGTTATTAAAAATCGGCCAATCTCGTGCAGCCGCCGCGGTTATACGAGAGATTTTATTGATAAATTGGCGTATAGGTGATTAGAATACTTATTAAAATTTAACTTTAGCCAAGCTGCGCTTCCGCAAAATCATTATTAAATTATTCCTCACGAAAGCCAAGAAACAAACTAGGATTAGATCCCTACTTGCTTGGCTATAAACTATAGTTTTTAATCAACTCGCCAGGACTACTAGCACAAGCTAAAAACTCAAAGGACTTGCGGTGCCTACCCACCTAGAGGAGCCTGTCCTAAAACCGATAATCCACGTTTTACCTAACCCTTTTTGCCCAGCCTATATACCGCCGTCGCCAGCCAACCCCGGAGAAATATAGGCAAAATTACTAGTTAAATACGTCAGGTCGAGGTGTAGCATATGAAGTGGAAGGATGGGCTACATTTTCTGTAGAATGAATAGCAAATGAAAAAGCTGGGGTGGATTTAGCAGTAAAGAAAAATCATAATATTCCTGAAATTGGCCATGAGGGCGCACACACCGCCCGTCACTCTCCTCAAATATAGAGGAGGCAAGTCGTAACATGGTAAGTGTACCGGAAGGTGGCTTGGAACAAATGTAGCTAAGAAGCACCTCCCTTACGCTGAGGAAAGGCTGCAAAGCCATTTGCAAGTTTACCAGCCCATTACACTGTAATATTTTATAAACCATTTTTATTAGTATCGGCGAGAGAAAAAGCACTAAGTACCGTAAGGGAATTGAAAAAGCCAAAAAAAGCAAAGATTAATCCTGTACCTTTTGCATCATGGTCTAGCAAGATAACGGGAAAAAGAATTAAGTTAGCCCCCGAAACTAAACGAGCTACTTTGGGGCAAGAGCAAACCCTTCCATGTGGCAAAATGGTGGGATGACCCCCTAGTAGAGGTGAAAAGCCAACCGAGTTTAGAGATAGCTGGTTACTCGAAAAGAATATAGTTCATCTCTGGTTCAAAGACTTTTCAACTAGGAGATAATTAAAGGGGGGACAGCCCCTTTAATAGGATACATCCTTTAAAGAGGATAATAAAACTAATTTAGTGGCCTAAAAGCAGTCACCTTAGAGCGTAAAGCTCAAATTCCATAAATTTTATAACTAAAGATTCCCAAATTTATCGGTAAACTTATAAATTATAAATAATGCTAGAATGAGAACAAGAACTTTCTACACAAGTGTTAACGGACACTGACTGTTATGATAATTATCCTTTTATAACAAGAACATATAAATTAACAACTCAACACAGAAGTGTATAGAAAGGTTAAAAGATTGAAGGAACTCGGCAACAAGCCTCGCCTGTTTACCAAAAACATCGCCTTTTGTTCAAATAAAAGTACTGCCTGCCCTGTGACATTTCAACGGCCGCGGTATTTGACCGTGCGAAGGTAGGTAATCACTGTCTCAATTGGGACCTGTATGAATGGCAACGAGGGCTTGACTGTCTCCTTTATTCAACCAGTGAAATTGAGCTCTGTACAAAAGCAGAAATATTTACAAAGACGAGAAGCCCTGTGGAGCTTAAGACTAAAATAACAAAGCGAGCCCTTGTTAAATTTGGTTGGGGTGACCGCGGAGAAAAACTAAACCTCCGTAATAAGAGGACAGCTCTAAAAATAATTGATCCAGGAGATCATTGAACCAAGTTACCCCAGGGTAACAGCGCAACTCCCCTAAGAGCCCCAATCGACGGGGAGGTTTACGACCTCGATGTTGGATCAGGACACCTGATGGTGCAGCCGCTATCAAGGGTTTGTTTGTTCAACAATTAAATCCTACGTGATCTGAGTTCAGAAATCCAGGTCAGTTTCTATCTATGCTTTTCTTAGTACAAAGGACCAGAAAAGACGGGAAGTTTTCATATCCGACCTATTTAATTAATATAAAAATAGGCCAAAAACAGAAGATATGC -LngfishAf CAACCACACCCCAGGACACAGCAGTAATTAAAATTGGACATAAGTGTAACTTGATCCAGCCATTAAAAGTTGGCCAACCTCGTGCAGCCGCCGCGGTTACACGAGGAACTTAATTGATGCCTCGGCGTATAGATGATTAGAGAACTTTCTAAAATCAAATATTGGCCCTGCTGCGCGCTCGCAAACTCAAAATTAAATACATCCTCATGAAAGTCAGGAAACAAACTAGGATTAGATCCCTACTTGCCTGACCCTAAACTATGACTCTTAATAAGCCCGCCAGAACTACAAGCCCAAGCTTAAAACCCAAAGGACTTGCGGTGCCTACCCACCTAGAGGAGCCTGTTCTAGAACCGATAATCCACGTTTTACCCAACCTTCCCTAGCCAGCCTATATACCGCCGTCGCCAGCCAACCCCCGGAGACTATTGGCAGAATAGTACATCTAGCACGTCAGGTCGAGGTGTAGCACATGAGAAGGAAGAATGGGCTACATTTTCTGTAGAAAGGACAATCCATGAAAGGATTCTGCTGGATTTAGTAGTAAGAGAAAATAAGAATATTTCTGAAGCCGGCCATGAGGGCGCACACACCGCCCGTCACTCTCCTCAAATTAAGAGGAGGCAAGTCGTAACATGGTAAGTGTACCGGAAGGTGACTTGGTTCAAATGTGGCTAAGAAGCACCCCCCTTACACTGAGGACACACTGCAAAGTCATTTACTAAATGGTAAGCCTTCAGTAATTTTATACTTAGTAAACCATTTACTCTAGTATTGGAGAAAGAAAACGCATAAAGTACCGCAAGGGAACTGAATAAGTTTTAAAAAGCAAAGACTAACACTGTACCTTTTGCATCATGGTCTAGCTAGTCGAAGGGAGAAAGAATTTAGTCCACCCCCGAAACTAGGCGAGCTACTCCGAGACAAGGGCCAACTCGTCCATGTGGCAAAATGGTGAGAAGAGCTCCGAGTAGCGGTGAAAAGCCAAACGAGCCTAGAGATAGCTGGTTGCGCGGAAAGAATCTAGTTCTACCCTAAATCTAACCCCGTAAATTTAGAGGCTACTCAAAGGGGGGACAGCCCCTTTGTGAGGACACAACCTCAACAAACGATGATTAATCAAATTAAGTGGCCTAAAAGCAGCCACCAAAGAGCGTATAGCTCCCCCTCCATCAATTCAATAAACAAATAATCCACTTCGTATCGGCTGACTTATACATTATAAAAAATGCTAGAATGAGAACAAGATCTTTCTACATAGGTGTTAACAGATACTGACAATTATGATATGAACCCTGTCATAACAAGACCCTACACAATATCAATTCTACACTGAAGTGTGTGGAAAAATTAAGGGGGGGAAGGAATTCGGCAACTGGCCTCGCCTGTTTACCAAAAACATCGCCTCCTGCCAAAATAGGAGTACTGCCTGCCCTGTGACCTTTAACTGGCCGCGGTATTTGACCGTGCGAAGGTAGGTAATCACTGTCTC-TTAGGGACCTGTATGAATGGCCACGAGGGTCCAACTGTCTCCTCCCCCAGATTAGTGAAATTGATCTCCGTTCAAAAGCGGATATTTTTTCAAAGACGAGAAGCCCTGTGGAGCTTAAAAACAAAATAACTTTAAGTTTTGTTATTAAATTCGGTTGGGGCGACCACGGAGTATAAAAAACCCTCCGCAATAAGAAGACACTTCTCAAACTAATTGACCCAGTCGAGCAATGAACCAAGTTACCCCAGGGTAACAGCGCAACCCCTTTAAGAGTCCCCATCGACGAGGGGGTTTACGACCTCGATGTTGGATCAGGGTACCTGGTGGTGCAGCCGCTACCAAGGGTTTGTTTGTTCAACAATTAAATCCTACGTGATCTGAGTTCAGCAATCCAGGTCAGTTTCTATCTATGTTTTTTCTAGTACAAAGGACTGAAAAAGGGGGGTAATAAAAATATCCCACCCAACTAATTTATATAAAAGTGGGGACCCCACGGGAGAAACAC -Frog AAATTTGGTCCTGTGATTCAGCAGTGATAAACATTGAACATGAGCGAAGCTCGATTCAGTTATAAAGAGTTGGTCAATCTCGTGCAGCCGCCGCGGTTATACGAGAAACTCAATTGATATTTTGGCGTAAACGTGATTAAGAACCCAACTAGAGTCAAACTCCAACCAAGCTGCGCTTTCGTAAGAACACGAAACAATACACTCTCACGACCGCTAGGAAACAAACTGGGATTAGATCCCCACTTGCCTAGCCATAAACTTTGACTTACGAAAAATCCGCCAGAACTACGAGCCTAAGCTTAAAACCCAAAGGACTTGCGGTGCTCACCCACCTAGAGGAGCCTGTTCTGTAATCGATACCCCTCGCTAAACCTCACCCTTCTTGCCCCGCCTATATACCACCGTCGCCAGCCCACCTCGGAGATTCTTAGGCTTAATGATTTCATCAACACGTCAGGTCAAGGTGTAGCATATGAAGTGGGAGAATGGGCTACATTTTCTTTAGAATGAAAGATTCATGAAAGATCGAGGGCGGATTTAGCAGTAAAGAGAAACAAGAGAGTTTCTTAAAACGGCCCTGGAGGCGCACACACCGCCCGTCACCCTCTTCTATAAAAGAAGAGGCAAGTCGTAGACCACTGAGCCAGCCGGAAGGTGGCTTGGATCAAATATAGCTAACAAGCCTTTCGCTTACACCGAAACAATATTTAAACATTACTTTCCAAAAACCTAGCATCCATAACTCATATCTCTATTAAACCATTAAATTTAGTATAGGCGATAGAACAATAGCTAAGTACCGTAAGGAAATGAAATAAGCAACAAAAAGCAGAGAACTTACCTGTACCTTTTGCATAATGGTCTAGCCAGTCATCAAGAAAACGAATTCAGTTGACACCCGAAACTAAGCGATCTACTCCGAGACATGAGCAAACCCGTCTCTGTGGCAAAAGAGTGGGAAGATCTCCGAGTAGGGGTGTACAGACCAAAGAGCCTAGTGATAGCTGGTTGCTCAGAAAGAATATAGTTCTACCCTAAAACTAAGTAAAAAGACTTAGGATTTATTCAATCAGGGTACAGCCTGATTGAAAGGATACAACCTATAATACTGAAGATTATAAGAAGTCAGTGGCCTAAAAGCAGCCACCTGAGAGCGTAAAGCTCACTCACCTTTAATTAGTAAACTAACTAACCCCAAAAATACTGGCTATTCTATAAACTATAGCTTATGCTAGAACTAGAATGTGTAGTTCTCATGTAAGTGTAATCGAATACTGATAATTACGTCCCTGAGCAATAACAAACAAGACCATGCACTTTACCAATCTAACACAAGAACATTCGGAAAGATTAAAAGACGGAAGGAACTCGGCAATAAACCCCGCCTGTTTACCAAAAACATCGCCTCTTGCTTAAATAAGAGTCCAGCCTGCCCAGTGACATGTCAACGGCCGCGGTATCTGACCGTGCAAAGGTAGGTAATCACTGTCTTAATAAGAACTGGTATGAACGGCCACGAAGGTTCAACTGTCTCCTGCATCCAATCCATTAAACTGACCTCCGTGCAGAGGCGGGGATAGAACCAAGAACGAGAAGCCCTATGGAGCTTTAAAAGTAACTAGAAATAACAATTAACAGAAACTTCGGTTGGGGCGACCACGGAGAATAAAAAATCCTCCTTGAAAAGAACACCATTCTAAGAACAATTGATCCA-TCGATCAACGAACCAAGTTACCCTAGGGTAACAGCGCAACCATTTCAAAAGTTCCTATCGACAAATGGGTTTACGACCTCGATGTTGGATCAGGGCACCCAGTGGTGCAGCCGCTACTAAAGGTTCGTTTGTTCAACGATTAAGCCCTACGTGATCTGAGTTCAGTAATCCAGGTCAGTTTCTATCTATGTTTTTTCTAGTACAAAGGACCGAAAAAATGAGGAAGTTTTAATAACTCTCTCTATCAAGTCAACTAAAGATAGAACATACTCCCCAAGATGGT -Turtle CTTCCACACCCCAGGACTCAGCAGTGATAAAAATTAAGCATAAGCGAAGCTTGACTTAGTCACAATGAGCTGGTAAATCTCGTGCAGCCACCGCGGTTACACAAGAAGCCCAACTAACGACAAGGCGTAAAAGTGATTAAATACCCATTTAAGGTGAACTACTTACTTCGCTGCGCAAAAGTACACAGAAAATAAAGACTATTCCCACGATCGCTAAAACACAAACTGGGATTAGATCCCCACTTGCTTAGCCCTAAACCTAGATTTTTACAAAATCCGCCAGAATTACGAGCAAAAGCTTAAAACTCTAAGGACTTGCGGTGCTCACCCACCTAGAGGAGCCTGTTCTATAATCGATAACCCACGATCTACCTCACCTCTCTTGCCCAGCCTATATACCACCGTCGCCAGCTTACCCCGGGATACAATAAGCAAGATAAAACCATTAACAAGTCAGGTCAAGGTGTAGCTAACTGAGATGGAGAATGGGCTACATTTTCTGAAATAAGGAAAGGACATGAAATAGTCCAGTAGGATTTAGCAGTAAACTGGGAACAGAGAGCCAATTAAACCGGTCCTGAGGTGGCACACACCGCCCGTCACCCTCATCAAAATAAGATGAGGCAAGTCGTAACAAGGTAAGTGCACCGGAAGTTAACTTGGACAAAATATAGCTTAAAAGCATTCAGCTTACACCTGAAAGATGTTTAAATACTATTTCAATTAAATCTAGCCCACAATCACCAAAAACCAACTAAAACATTTACCTAAGTATAGGTGATAGAATAGGAGCAATGTACCGCAAGGGAAGATAATAAGCAACAAAAAGCAAAGATTAACCCTATACCTCTTGCATCATGATTTAACCAGCACTTAAGAAAGAGAACTAAGTTAAACCCCGAAACCAAGTGAGCTACTTAAAGGCATGGCTAAATCCGTCTCTGTGGCAAAAGAGTGGAAAGACCTATAAGTAGAAGTGAAAAGCCTATCGAACTTGGTGATAGCTGGTTGCTCATAAAGAATGTAGTTCAACCTTAAACATCCCAAAAGAAATTTAAGATATATTCAATCGGGGTACAGCCCAATTGAAAGGACACAACCTAAAATGGAGAAACACCAAATTACTCCGTAGCCTTAAAGCAGCCACCATAGAGCGTAAAGCCCACTATATGTAAATACTAAATAAAATTTACCCCAATATACTGAGCCATTCTACCCTATAGAACCAATGCTAAAATGAGAACAAGAAAACTTCACGCGCCA-TTTAATAGAACTGATTATTACAATTAATATACAACAACACTAAAACATATAACACTGTTAACCCGACACAGGAGCGCAAAGAAAGATTAAAATCCGAAAGGAACTAGGCAAAAGAACCCGACTGTTTACCAAAAACATAGCCCCTAGCAACAATTGGGGTAATGCCTGCCCAGTGACTGTTAAACGGCCGCGGTATCCGACCGTGCAAAGGTAGGTAATCACTGTCTTAATAAAGACTAGAATGAATGGCAACGAGGTTCTACCTGTCTCTTACAGATAATCAGTGAAATTGGTCTCCGTGCAAAAGCGAGGATAATCCTAAAGACGAGAAGCCCTGTGGAACTTTAAACTAAAACACTAAGGATTTATGATAGTATATTCGGTTGGGGCGACCTCGGAGTAAAGCACAACCTCCGAAAATAGACTACAACTCAAAGGCTAAAAGATCCAATAGATCAACGAACTAAGCTACCCCAGGGTAACAGCGCAACCCATCCTAGAGCCCTTATCG-CGATGGGGTTTACGACCTCGATGTTGGATCAGGACACCTGATGGTGAAACCGCTATCAAGGGTTCGTTTGTTCAAC-ATTAAATCCTACGTGATCTGAGTTCAGCAATCCAGGTCGGTTTCTATCTATATCTTTTCTAGTACAAAGGACCGAAAAGACAGGGTAATTAAAAAGCCTTACCTTATTAAGACAACTAAAAAAAATATAAACCAACTTCAAAAAT -Sphenodon CTCCCACACCCCAGGACACAGCAGTGATTAATATTAAGCATAAGTGAAACTTGACTTAGTTAAGAACGGCCGGTCAATTTCGTGCAGCCACCGCGGTTAAACGATAGGCCGAAGTAAGGCCAAGGCGTAAAAGTAACTAAACCCCCTTCTAAACCCAAGAAAAAACTAAGATGAGTTGTAAAACCTCTGAAGATAAGTAAAATCTTACTAAAATTAAGGGTCAAACTGGGATTAGATCCCCACTTGCTTAATCCTAAACATCGACTAATACAAGGTTCGCCCGAACTACCAGCAAAAGCTAGAAACCCTAAAGACTTGCGGTGCCCAACCCCCTAGAGGAGCCTGTTCTATAATTGATGATCCGCAATAAACCTCACCTTTTTCGCCCAGCCTATATACCGCCGTCGCCAGTCTACCTTGAAGAACTATAGGTCAAACAGAACCGCTAATACGTCAGGTCAAGGTGCAGCCAATAAAATGGAAGAATGGGCTACATTCCCACGGGAAATAAAAGTAAATGAAAAATAACAGGTGGATTTAGTAGTAAACTAGAACCATAATATCAGTTAAAAAGGCTCTGGAGCGGTACACACCGCCCGTCACCCTCCTATAAACCAAAGGAGGCAAGTCGTAACACGGTAAGCATACTGGAAAGTGGCTTGGACAAAATGTAGCTTATAAGCCCTCAGCCTACACCTGAACAATGTCCACCTACCATTTGACCTTAAACTAGCCCCTACCCGATAATTACCTCCCCAAACATTTACCTAAGTATAGGAGATAGAAACGGAGCTACGTACCGCAAGGGAAGTTACCAAGTTAAATAAAGCAAAGATAGACCCTGTACCTTTTGAATAATGGTTTAACTAGTCAACAAGTAAAAGAGCTAAGCTTTTCCCCGAAATCAAGTGAGCTACTTATAAGCGAGAAATAATTCGGCTCTGTGGCAAAAGAGCGAAAAGACTAATAAGTAGAGGCGAAACACCTACCGAACATGAAGATAGCTGGTTACTTATAAA-AATCTAGTTCTACCTTAACCTAGAGAAATGAAGTTTAAGAGATATTTAATAGGGGTACAGCCCTATTAAAAGGAAACAGCCTATACAAGAGGAGAATTACACCAAACCGTAGCCTTAAAGCAGCCACCAAATAGCGTAAAGCTAATTACACCAACACCAACCTTTTAACCAACCTAAACACAATAAGTCATACTATATAATATAATTAATGTTAAAATGAGAACAAGAAATTTCTGTGCATCCGCACAGACTAACCTACTGGTCTTACATAATTATTACACAACGAACAATATTAATACTGTTAACCCAACACAGGCATGCACGGAAAGATTAAACTCACGAAGGAACTCGGCAACGGGCCCCGACTGTTTACCAAAAACATAACCTTTAGCTAATATTAAAGCGCCTCCTGCCCAGTGAAAATTAAACGGCCGCGGTATTCGACCGTGCAAAGGTAGGTAATCAATGTCTCAATGAAGACTAGTATGAACGGAAACGAGGGCCCAACTGTCTCCTGGCGAAAATCAGTGAAATTGATCCTTGTGCAAAAGCAAGGATAAAACCAAAGACGATAAGCCCCGTGGAG-ATAAATATATGACAAGGAATAAAATCAAGACCCCCTTTGGCTGGGGCGGCCTCGGAATAAAAAAAAACTTCCGAAAATAGACAACAAGTCAAAAATAACTTGACCCAATAGATTATTGAACCAAGTTACCCCAGGGTAACAGCGCCACCCCTTCGAGAGCCCATATCGACAAGGGAGATTACGACCTCGATGTTGGATCAGGACACCTAGTGGTGCAACCGCTACTAAGGGTTCGTTTGTTCAACGATTACATCCATCGTGATCTGAGTTCAGCAATCCAGGTCGGTTTCTATCTATGTATTTCCCAGTACAAAGGATCGAAACAGTAGGGTAACCGCAAAGCCCTGCCCTATTAAACAAAATAAAAATGGGATCCCCCACCCTAAACGGC -Lizard CTTCCACACCCAAGGCATCAGCAGTGATAAACATTAAGCATAAGCGAAGCTTGACTTAGTTATTAAGGGCCGGTAAACCTCGTGCAGCCACCGCGGTTATACGAGGGGCCCAAGCAGCGACTCGGCGTAAATGTGGCCAAAACCAACATAAAAACTAAACAATAGCCTAACCGAAACACAGGAAATGCAAACGTAACGTAATTCCCACGAAAACTAAGAAACAAACTAGGATTAGATCCCTACTTGCTTAGTCGTTAATACGATATTACACTAAATCCGCCAGAACTACGAGCGAAAGCTTAAAACTCAAAGGACTTGCGGTGCTCACCGACTTAGAGGAGCCTGTCCTATAATCGATACTCCACGCTAAACCTCACCATCTTTGCCCAGCCTATATACCGCCGTCGTCAACCTACCTCAGAGAAAAATAAGTACAAAAGTAAAACTAAAACGTCAGGTCAAGGTGTAGCTAATAGAATGGGAGGATGGGCTACATTTTTTAAAACACGGCATGGTCATGAAATTCTACCGGAGGATTTAATAGTAAACTAACAAGAAAAAAGTATTTAAACACGCTCTGGAGCGCGCCACACCGCCCGTCACCCTCATCTATACAAGATGAGG-AAGTCGTAACATGGTAAGCGCACTGGAAAGTGGCTTGGACAAAAAGTAGCTTATAAGCATTCAACTTACAATTGAAAAATGTAAACATCCTATTTGCTAAACCCCTAGCCCCACTTCACCAAATTTAACACAAACCATTTGAGA--GTAAAGGCGATTAAACAGGAGCAACGTACCGCAAGGAAAATGACCTAGCTAAATAAAGCAGAGATTTACCCTGTACCTATTGCATCATGGTCCAGCAAGAAACACAGACACGGCGCCCAGCTGTGCCCCGAAATCAAGTGAGCTACCCTAGAGCATGGGTTCACCCGTCCCTGTAGCAAAAGGGTGGGGAGACTTCAAGGTAGCGGTGAAAAGCCTACCGAACTTGCTGATAGCTGGTTGCCTGCAAAGAACCTAGTTCAGCCTTAAATCAAGTAAAAACTATTTAAGACTTAATCATTGGGGGTACAGCCCCAATGAAGGGATACAGCCCGAAGTAAAGCG-AT-ATAATACA--AGTAGCCTTAAAGCAGCCATC-ACATGCGTACAGCACATAC-AAAAAATTACACAACACAAAATCCTTAAACATCTCAGGCCAATCTATAAAATATAGCTAATGCTAGAACTAGAACAAGACATCTCTACGCACAACTGTAAATCAACAGAAAAACTCTGATTAACACATACACATCTAATAATAAATTAACTGTTAATCCGACACAGGGGTGCCAAGAAAGACTCACAGTTAGAAGGAACTCGGCAAAATATCCCAACTGTTTACCAAAAACATAGCCTTTAGCGATTATTAGAGTGACGCCTGCCCAGTGAACATTTAACGGCCGCGGTATCCAACCGTGCAAAGGTAGGTAATCACTGTCCCAATAGGGACCAGTATGAATGGCAATGAGGATAAACCTGTCTCCTTTAACAAATCAGTGAAACTGATCTCAGTACAAAAGCTGGTATAAACCCAAAGACGAGAAGCCCTGTGGAGCTTTAATTTAGCATAGCAAACTCAGCCAAAAAAACTTTAAGTTGGGGCGACTTCGGAAATAAACCAAACTTCCGAGCAAAGACTACAAGTCAAAGTAAAATTGACCCAGTAGACAACCGAACCAAGTTACCCCAGGGTAACAGCGCAACTTCTTCAAGAGTCCCTATCGACAAGAAGGTTTACGTCCTCGAT----G--CAGG-CACCC--TGGTGCAGCCGCTATTAAAGGTTCGTTTGTTCAACGATTAAATCCTACGTGATCTGAGTTCAGCAATCCAGGTCGGTTTCTATCTATGTTTTCTTTAGTACAAAGGACCAAGAAAACAGGAACGTCAGCACGTCCTAACAAAAGGACACAACTAAAGCCAACAACCATAACCGGAGATCGT -Crocodile CTCCCACACCCCAGGCCACAGCAGTAGTTAATATTAGGCATAAGCGAAGCCTGACCTAGTAAGGAAGGGCCGGTTAATCTCGTGCAGCGACCGCGGTTATACGACAGACCCAAATAATGATACGGCGTAAAGACGACTATATTCCCTACCTAGGGAAGAATAACCCCAGGCTGAGCCATAGGAATAACATATTCAAAACAACTCTCGTGAAAGCTAGGACATAAACTAAGATTAGATCCTTACTTACCTAGCTGTAACACAATAATCAAACCTAATTCGCCAAAACTACGAGCAATAGCTTAAAACTCAAAGGACTTGCGGCACTTACCCCCCTAGAGGAGCCTGTCCTATAATCGACAGTACACGTTACACCCGACCCCTTTAGCCCAGTCTGTATACCGCCGTCGCAAGCCCGTCCCAGGGAAACACGCGCGCAACAGTCGAGCTAACACGTCAGGTCAAGGTGCAGCCAACAAGGTGGAAGGATGGGCTACATTTTCTGTAGAAACGGAGAGCCATGAAAAGGACTGAGCCGATTTAGCAGTAAACTGGGAAAGAATACCTAGTTAAGTCGGTAACGAAGTGGTACACACCGCCGGTCACCTCCTCGAAAACAAGATGGGGAAAGTCGTAACAAGGTAAGCGTACCGGAAGGTGACTTGGACAAAATGTAGCTATTAAGCATTCAGTTTACACCTGAAAAATGCCCATCGACCATTTAACCCATATCTAGCCCACCTCCTTCAACTGACCCCCAAAACATTTAATTTAGTATTGGCGAAAGAAATGGCGCAAAGTACCGCAAGGAAAAATAATAAGTAAAACACAGCAAAGACCAACCCTCTACCTTTCGCATCATGGTTTAGCAAACCAACTGGAAAAAGAATTAAGTACACACCCGAAACTAGGTGAGCTACTAACTAGCAAGAGCTAACCCCCCTCTGTGGCAAAAGAGCGGGAAGACTACTTAGTAGAAGTGAAAAGCCTACCGAACCTAGTGATAGCTGGCTGCTTGAAAAGAATCTAGTTCCACTGTAAATCAGATAAGGAAGATTTTCAAGCTATTTAATAGAGGTACAGCTCTATTAATAGGACTCAACCTCCACTTAAGATCCATCCCATCGGACTGTGGCCT-AAAGCAGCCACCACAAAGCGTAAAGCTTAACTCCAAAAAATACCAAAACAAACGAACCTAATCTAACCAAGCCATCCTACACCCTAGAAATTATGCTAAAATGAGAATAAGACACTTTCTTGCGTCAGCTTACATGAATAGATTATTACAGCCTTCCTACCC-ACAAAAAACAAGAAGACCACTGTTAACCCAACACAGGAACGCACGGAAAGGCTAAACCTTGAAAGGAACTCGGCAAAAGATTCCGACTGTTTACCAAAAACACAGCCCCTAGCCCCCATTAGGGTGAT-CCTGCCCAATGATAATTGAATGGCCGCGGTATATAACCGTGCGAAGGTA-GTAAT-AC-GTTCTAATAAGGAC-AGTATGAACGGCAACGAGAATCTAACTGTCTCCTGCAAGCAACCAATGAAATTGATCTCTGTGCAAAAGCAGGAATGACCCCACAGACGAGAAGCCCTGTGAAACTTTAACACAGGACAACAACCCACAACCAAAACCCATTTGGTTGGGGTGACCCTAAAACAAAAAAAAACTTTTAAGACAAGACCACACCTCAAAGACTATTAGATCCGACAGATCCACGAACTAAGCTACTCCAGGGTAACAGCGCAACCCCTTCAAGAGCCCCTATCGACAAGGGGGTTTACGACCTCGATGTTGGATCAGGACACCCATTGGTGTAACCGCTATTAATGGTTCGTTTGTTCAACGATTAAAGCCTACGTGATCTGAGTTCAGTAATCCAGGTCGGTTTCTATCTATGCTCTTCCTAGTACAAAGGACCGGGGAAACAAGGCAGCCACCGTACCTTACCTAATTAACGTAACTAAAAATAGGATACACTATCTCAAAAAGA -Bird CTACCACACCCCAGGACTCAGCAGTAATTAACCTTAAGCATAAGTGTAACTTGACTTAGCCACAAAGGGTTGGTAAATCTTGTGCAGCCACCGCGGTCATACAAGAAACCCAATCAATGCTACGGCGTAAAGGTGGCCAATTTGCACCCTAAGATTAAAATGCAACCAAGCTGAGCCTAAGAAACCCCAAATCCAAGTTAATTCCCACGAAAGCTAGGACCCAAACTGGGATTAGATCCCCACTTGCCTAGCCCTAAATCTAGATTCCCACACAATCCGCCTGAACTACGAGCACAAGCTTAAAACTCTAAGGACTTGCGGTGCCCACCCACCTAGAGGAGCCTGTTCTATAATCGATAATCCACGATTCACCCAACCCCCCTTGCCCAGCCTACATACCGCCGTCGCCAGCCCACCTCTAAGAACAATGAGCTCAATAGCCTCGCTAATAAGACAGGTCAAGGTATAGCCTATGGGGTGGGAGAATGGGCTACATTTTCTAGAACAACGAAAAAGAGTGAAACGCCCTTGGAGGATTTAGCAGTAAAGTGAGATCATACCCCCACTTAAGACGGCTCTGAGGCAGTACATACCGCCCGTCACCCTCTTCAAAATAAGACGAGGCAAGTCGTAACAAGGTAAGTGTACCGGAAGGTGACTTAGACAAGGCGTAGCTATCAAGCATTCAGCTTACACCTGAAAGATACCAACAGGTCGCCTGCCCCCCCTCTAGCCCACATACCTTAACTATCCTCCAAAACATTAATCCCAGTATAGGCGATAGAAACGGCGCAACGTACCGCAAGGGAAGATAATAAGCAAAAAACAGCAAAGACCAACCCTGTACCTTTTGCATCATGATTTAGCAAGAAACCAAGAAAGTGAGCTAAGTTGCCTCCCGAAACCAAGCGAGCTACTTGCGAGCAAGAGCGAACCCGTCTCTGTTGCAAAAGAGCGGGATGACTTGCCAGTAGAGGTGAAAAGCCTACCGAGCTGGGTGATAGCTGGTTACCTGCAAAGAATCTAGTTCCCCCTTAACCTACTTGAGAACGGGTTAAGAGCAATTCGATGGGGGTACAGCTCCATCGAAAGAACACAACCTCCTCCAGCGATAATCACCCCCGCACTGTGGCCTTCAAGCAGCCACCAAAAGGCGTAAAGCTCCCTCTTAAAAAATCTAAACCCTATTGACCCCTAACAAAGCAGGTTAACCTATGCAATAGAATCAATGCTAAAATGAGAATCTGACATCCTCCGGCGTAAACTTACATTAATACATTATTACAGACAACTTCCCACACTAAAAGCACGTATTCCATCTGTAAGCCAACCCAGGAGCGCCAAGGATGATTAAAACCTAGAAGGAACTCGGCAAAAAGACCCGACTGTTTCCCAAAAACATAGCCTTCAGCTAACATTGAAGTGATGCCTGCCCAGTGACAATTCAACGGCCGCGGTATCCAACCGTGCGAAGGTAGGCAATCAATGTCCCAATTGAGACTTGTATGAATGGCAACGAGGTCTTAACTGTCTCCTGTAGGTAATCTATGAAATTAGTATCCGTGCAAAAACGAGAATGTGAACAAAGACGAGAAGCCCTGTGGAACTTTAATACAACACCACTGGGTCCACCCAAAACCCCTTCGGTTGGGGCGACCTTGGAGAAAAAAAAATCCTCCAAACCAAGACAACTCCTCAAAGACCACCAGACCCAATAGAGCAATGGACCAAGCTACCCCAGGGTAACAGCGCAACTCCTCCAAGAGCCCATATCGACAAGGAGGTTTACGACCTCGATGTTGGATCAGGACACCTAATGGTGCAACCGCTATTAAGGGTTCGTTTGTTCAACGATTAAATCCTACGTGATCTGAGTTCAGCAATCCAGGTCGGTTTCTATCTATGCTCCTCCTAGTACAAAGGACCGGAGAAGTGGGGAAACCACGACACCCAACCTTAACAATACAACTCAAGCTCCCCCACCCGATCCTAGAAGGC -Human CTACCACACCCCAGGAAACAGCAGTGATTAACCTTTAGCATAAACGAAGTTTAACTAAGCTATAAAGGGTTGGTCAATTTCGTGCAGCCACCGCGGTCACACGATTAACCCAATCAATGAAGCGGCGTAAAGGTGTTTTGACCCTCCCATAAAGCTAAAACTCACCTGAGTTGAACTCCAGTAAAATTACGAAAAAAATCTGACACACAATAGCTAAGACCCAAACTGGGATTAGATCCCCACTTGCTTAGCCCTAAACCTCAACTAACACAAAGCTCGCCAGCACTACGAGCCACAGCTTAAAACTCAAAGGACCTGCGGTGCTTATCCCTCTAGAGGAGCCTGTTCTGTAATCGATAAACCCCGATCAACCTCACCCCTCTTGCTCAGCCTATATACCGCCATCTTCAGCAAACCCTGAGGCTACATAAGCGCAAGTACCACGTAAAGACGTTAGGTCAAGGTGTAGCCCATGAGGTGGCAGAATGGGCTACATTTTCTGAAAACTCGATAGCCTATGAAAAAGGGTCGGTGGATTTAGCAGTAAACTAAGAGTAGAGTGCTAGTTAACAGGGCCCTGAAGCGGTACACACCGCCCGTCACCCTCCTCAAACTAAGAGGAGACAAGTCGTAACATGGTAAGTGTACTGGAAAGTGACTTGGACCAGATGTAGCTAACAAGCACCCAACTTACACTTAGGAGATTTCTTAACACCGCTCGAGCTAAACCTAGCCCAAACCATCCACCTAGACCCCAAACCATTCAATAAAGTATAGGCGATAGAAGCGGCGCAATGTACCGCAAGGGAAGATAACAAGCATAATATAGCAAGGACTAACCCCATACCTTCTGCATAATGAATTAACTAGAAACTTTGAAGGAGAGCCAAGCAAGACCCCGAAACCAGACGAGCTACCTAAGAACAAGAGCACACCCGTCTATGTAGCAAAATAGTGGGAAGATTTATAGGTAGAGGCGACAAACCTACCGAGCCTGGTGATAGCTGGTTGTCCAAGATGAATCTAGTTCAACTTTAAATCATCCCCTTGTAATTTAACTGTTAGTCCAAAGAGGAACAGCTCTTTGGACAGGAAAAAACCTTGTAGAGAGAAAAATTTAAACCCATAGTAGCCTAAAAGCAGCCACCAAAGAGCGTCAAGCTCAACACAAAAAATCCCAAAATATAAGAACCCTCCACCCAATTGACCAATCTATCCCCTATAGCTAATGTTAGTATAAGAACATGAAATTCTCGCATAAGCCTGATTAAAAACTGACAATTACAGCATATCTAATCAACCAAAAGTCTTATTACCCCTGTCAACCCAACACAGGCATGCTTGGAAAGGTTAAAAAAAGAAAGGAACTCGGCAACTTACCCCGCCTGTTTACCAAAAACATCACCTCTAGCATCAATTAGAGCACCGCCTGCCCAGTGACCATTTAACGGCCGCGGTACCCAACCGTGCAAAGGTAGATAATCACTGTTCCAATAGGGACCTGTATGAATGGCCACGAGGGTTCAGCTGTCTCTTACTTTTAACCAGTGAAATTGACCTCCGTGAAGAGGCGGGCATAACACAGAAGACGAGAAGCCCTATGGAGCTTTAAAACAACCCACCCACAGGTCCTAACCAAACCTTCGGTTGGGGCGACCTCGGAGCAGAACCCAACCTCCGAGCAAGACTCACCAGTCAAAGGAAAATTGATCCAATAGACCAACGGAACAAGTTACCCTAGGGTAACAGCGCAACCTATTCTAGAGTCCATATCAACAATAGGGTTTACGACCTCGATGTTGGATCAGGACACCCGATGGTGCAGCCGCTATTAAAGGTTCGTTTGTTCAACGATTAAATCCTACGTGATCTGAGTTCAGTAATCCAGGTCGGTTTCTATCTACCTTCCTCCCTGTACAAAGGACAAGAGAAATAAGGTATTCACAAAGCCTTCCCCCGTAATATCATCTCAATATATACCCACCCACCCAAGAAGGT -Seal CCACCACACCCCAGGATACAGCAGTAATAAAAATTAAGCATGAACGAAGTTTGACTAAGCTATAAAGGGTTGGTAAATTTCGTGCAGCCACCGCGGTCATACGATTAACCCAACTAATGGCCCGGCGTAAAGGTGTTAAGACAACCCACTAAAGCTAAAACCTAACCAAGCCGAGCTACCGTAAAATCACGAAAACAATTCTGTGCACGATAGCTAAGATCCAAACTGGGATTAGATCCCCACTTGCTTAGCCCTAAACATAAATTCATACAAAATTCGCCAGAACTACTAGCAACAGCTTAAAACTCAAAGGACTTGCGGTGCTTACCCCTCTAGAGGAGCCTGTTCTGTAATCGATAAACCCCGATAAACCTCACCTTCCTTGCTCAGTCTATATACCGCCATCTTCAGCAAACCCTTAGGAACAATAAGCACAATAACTACATAAAAAAGTTAGGTCAAGGTGTAACCTATGGAATGGGAGAATGGGCTACATTTTCTGAACAATCGAAAGTTTATGAAAACAAACTGGTGGATTTAGTAGTAAGCTAAGAATAGAGAGCTAGCTAACCGGGCCATGAAGCAGCACACACCGCCCGTCACCCTCCTCAAGCTAAGAGGAGATAAGTCGTAACAAGGTAAGCATACTGGAAAGTGGCTTGGACCAAATGTAGCTAACAAGCGTCTGGCTTACACCCAGAAGATTTCACCCAACCACTTGAACTAAAGCTAGCCCAATACAACAACTAAAGACACAAAACATTCATTAAAGTATAGGAGATAGAATTGGAGCTACGTACCGCAAGGGAAGATGTAAAGTAAAAAATAGCAAAGATTACCCCTCTACCTTTTGCATAATGAGTTAGCTAGAAACTTAAAAAGAGAACTAAGCAAGCCCCCGAAACCAGACGAGCTACCTACGAACACGGATGAACTCATCTATGTGGCAAAATAGTGAGAAGATTTGCAGGTAGAGGTGAAAAGCCTAACGAGCCTGGTGATAGCTGGTTACCCAGAATGAATTTAGTTCAACTTTAAACCATTTTAATGTAACTTAAAATATAATCTAAAAAGGTACAGCTTTTTAGATAGGATACAACCTTACTTAGAGAACATAAATAGACCATAGTAGCCTAAAAGCAGCCATCAAAGAGCGTAAAGCTCAACATACATAATACCAAGACTCAACAACCCTACGTACTACTGGTCAATCTATTAATTATAGACAATGCTAATATGAGAACAAGACTTTTCTGCATAAACTTAAAACGGAACTGATAGTTACAACATAAAAAACTAACCAATAATACTATCAAAATTGTTAAGCCAACACAGGAATGCACGGAAAGATTAAAAGAAGAAAGGAACTCGGCAACAAACCCCGCCTGTTTACCAAAAACATCACCTCCAGCATTAATTGGAGCACTGCCTGCCCAGTGACTATTAAACGGCCGCGGTATCCGACCGTGCAAAGGTAGATAATCATTGTTCTAATAAGGACTTGTATGAACGGCCACGAGGGTTTAACTGTCTCTTACTTCCAATCAGTGAAATTGACCTCCGTGAAGAGGCGGGAATAAAATAAAAGACGAGAAGCCCTATGGAGCTTTAAACAGATCTCCCAACAGGGAATAATCTACAATTAGGTTGGGGTGACCTCGGAGAACAAAACAACCTCCGAGTGAGACAAACCAGTCAAAGGCCAATTGATCCAAAAGATCAACGGAACAAGTTACCCTAGGGTAACAGCGCAACCTGTTTGAGAGTCCATATCGACAATAGGGTTTACGACCTCGATGTTGGATCAGGACACCTAATGGTGCAGCAGCTATTAAGGGTTCGTTTGTTCAACGATTAAATCCTACGTGATCTGAGTTCAGTAATCCAGGTCGGTTTCTATCTATTTTCCTCCCAGTACAAAGGACAAGAGAAACAAGGCACTCAACAGGCCTTAAGACATGATATAATCTCAATATCTAATCCCATGTCCAAGAAAGT -Cow CTACCACACCCCAGGAAACAGCAGTGACAAAAATTAAGCATAAACGAAGTTTGACTAAGTTATAAAGGGTTGGTAAATCTCGTGCAGCCACCGCGGTCATACGATTAACCCAACTAACGGAGTGGCGTAAAAGTGTTAAGCCCATACCATAGGGTTAAATTCTAACTAAGCTGAGCCATGATAAAATGACGAAAACAAGCCGACGCACTATAGCTAAGACCCAAACTGGGATTAGATCCCCACTTGCTTAGCCCTAAACACAGATTACAACAAAATTCGCCAGTACTACTAGCAACAGCTTAAAACTCAAAGGACTTGCGGTGCTTATCCTTCTAGAGGAGCCTGTTCTATAATCGATAAACCCCGATAAACCTCACCATTCTTGCTCAGTCTATATACCGCCATCTTCAGCAAACCCTAAGGAAAAATAAGCGTAATTAGTACATAAAAACGTTAGGTCAAGGTGTAACCTATGAAATGGGAGAATGGGCTACATTCTCTAGAGAATCGAAAGTATATGAAAAATAACCGGAGGATTTAGCAGTAAACTAAGAATAGAGTGCTAGTTAATTAGGCCATGAAGCAGCACACACCGCCCGTCACCCTCCTCAAACCCAGAGGAGACAAGTCGTAACAAGGTAAGCATACTGGAAAGTGGCTTGGATCAAGTATAGCTAACAAGCATCCAGTTTACACCTAGAAGACTTTTCATTAATATCTGAACTAGACCTAGCCCAAGCCTTCGACTAAAGGAACAAAACATTCCCTAAAGTATAGGAGATAGAATAGGCGCTAAGTACCGCAAGGGAAGATATAAAGTATAAAAAAGCAAAGATTACCCCTGTACCTTTTGCATAATGAATTAACTAGTAACTTAAAAAATGAATTTAGCAAGCGCCCGAAACCAGACGAGCTACTCACAAACACGAACTAACTCATCTATGTGGCAAAATAGTGAGAAGATTTGTAAGTAGAGGTGACATGCCTAACGAGCCTGGTGATAGCTGGTTGTCCAAAAAGAATCTAGTTCAGCTTTAAAGAACCCCACTGTAGTTTAAAAGTTAGTCTAAAAAGGTACAGCCTTTTAGAACGGATACAACCTTGACTAGAGAAATTTAACATACCATAGTAGCCTAAAAGCAGCCATCAAAGAGCGTAAAGCTCAACACAATAGATTCCAAAAAATGATAACCCTACCCAATACTGACTAATCTATTTAGAATAGATAATGTTAATATGAGAACAAGAATTTTCTGCATAAGTCTATGCCTGATCTGACCACTACAGTATAAAAAATCCAACAAAAACATTATTGATTCTGTTAACCCAACACAGGAGTGCATGGAAAGATTAAAAGAAGAAAGGAACTCGGCAACAAACCCCGCCTGTTTACCAAAAACATCACCTCCAGCATTCATTGGAGCATTGCCTGCCCAGTGACACTTTAACGGCCGCGGTATCCGACCGTGCAAAGGTAGATAATCATTGTTCTAATAAGGACTTGTATGAATGGCCACGAGGGTTTTACTGTCTCTTACTTCCAATCAGTGAAATTGACCTCCGTGAAGAGGCGGGAATGCACAAAAAGACGAGAAGCCCTATGGAGCTTTAAAAGAGATTACCATTAAGGAATAAATCTCCATTCGGTTGGGGTGACCTCGGAGAATAAAAAATCCTCCGAGCGAGACCCACAAGTCAAATACTCATTGATCCAAAAGATCAACGGAACAAGTTACCCTAGGGTAACAGCGCAACCTATTCAAGAGTCCATATCGACAATAGGGTTTACGACCTCGATGTTGGATCAGGACACCTGATGGTGCAACCGCTATCAAAGGTTCGTTTGTTCAACGATTAAATCCTACGTGATCTGAGTTCAGTAATCCAGGTCGGTTTCTATCTATTTTTCTCCCAGTACAAAGGACAAGAGAAATAAGGAATTTAAAAAGCCTTAAGACACAATAACATCTCAAGACACAAAACCCTGCCCTAGAAGGT -Whale CTACCACGCCCCAGGACACAGCAGTGATAAAAATTAAGCATAAACGAAGTTCGACTAAGTCATAAAGGGTTGGTAAACTTCGTGCAGCCACCGCGGTCATACGATCGACCCAATTAATGAAGCGGCGTAAAGGTGTTAAGACCACATGATAAAGTCAAACCTTAATTAAGCTGAGCCCTAATAAGCCTACGAAAAAAAATCTGCACACGACAGCTAAGATCCAAACTGGGATTAGATCCCCACTTGCTTAGTCGTAAACCCCAATCACAACAAGATTCGCCAGTACTACTAGCAACAGCCTAAAACTCAAAGGACTTGCGGTGCCTACCCATCTAGAGGAGCCTGTTCTGTAACCGATAAACCCCGATCAACCTCACCACCCTTGCTCAGTCTATATACCGCCATCTTCAGCAAACCCTAAGGGAGAATAAGCATAACCACTACATAAAAACGTTAGGTCAAGGTGTAACCCATGGGTTGGGAGAATGGGCTACATTTTCTAGAACATCGAAAGTTTATGAAAAAAAACTGGAGGATTTAGTAGTAAATCAAGAGCAGAGTGCTGATTAATAAGGCCATGAGGCAGCACACACCGCCCGTCACCCTCCTCAAGTTCAGAGGAGACAAGTCGTAACAAGGTAAGCATACCGGAAGGTGGCTTGGAACAAGTATAGCTAACAAGCATGTAGTTTACACCTAGAAGATTCCAGCCCTATATCTGAACTAGCCCTAGCCCCACCTCCCACCTTACACAATAAAACATTATCCAAAGTATAGGAGATAGAATAGGCGCTATGTACCGTAAGGAAAGATATAAAGTAATAAAAAGCAAAGCTTACCACTGTACCTTTTGCATAATGACTTAACTAGTAAATTAGAAAGAGACCTAAGTAAATACCCGAAACCAGACGAGCTACTTATGAGCACGAACGAACTCATCTATGTGGCAAAATAGTGAGAAGACTTATAAGTAGAGGTGAAAAGCCTAACGAGCCTGGTGATAGCTGGTTGTCCCGAAAGAATCTAGTTCAACATTAAAAAACCTTAACGTATTTTAACTGTTAATCTAAAAAGGTACAGCTTTTTAGAATGGGTACAACCTTGACTAGAGAAATCAAACAAAACATAGTTGCCTAAAAGCAGCCATCAAAGAGCGTCAAGCTCGACACTTTTAATTCCAATAAGTAACAACCCTACCTACTATTGACTAATCTATAAAATATAGATACTGTTAATATGAGAACAAGATTTTTCTGCACAAGCTTATAACTGAACTGATAATTACAGCATAAATAACCCAACACAAATTTTATTAAATCTGTTAACCCAACACAGGCGTGCATGGAAAGATTAAAAAAAGAAAGGAACTCGGCAACAAACCCCGCCTGTTTACCAAAAACATCACCTCTAGCATAAATTAGAGCACTGCCTGCCCGGTGACATTTAAACGGCCGCGGTATCCGACCGTGCAAAGGTAGATAATCACTGTTCTATTAGGGACTTGTATGAATGGCCACGAGGGTTTTACTGTCTCTTACTTTTAATCAGTGAAATTGACCTCCGTGAAGAGGCGGAGATAACAAAAAAGACGAGAAGCCCTATGGAGCTTCAAAAAAACCTACCACCAAGGGATAACCTTATATTCGGTTGGGGTGACCTCGGAGTACAAAAAACCCTCCGAGTGAGGCCCACTAGCCAAAGACATATTGATCCAATCGATCAACGGAACAAGTTACCCTAGGGTAACAGCGCAACCTATTCTAGAGTCCATATCGACAATAGGGTTTACGACCTCGATGTTGGATCAGGACACCTAATGGTGCAGCTGCTATTAAGGGTTCGTTTGTTCAACGATTAAATCCTACGTGATCTGAGTTCAGTAATCCAGGTCGGTTTCTATCTATTTTTCTCCCAGTACAAAGGACAAGAGAAATAAGGAATTCAAAAAGCCTTCAAACATAACCTAGTCTCAATACGCAAAAACCTGCCCAAGACGGT -Mouse CTACCACACCCCAGGACTCAGCAGTGATAAATATTAAGCATAAACGAAGTTTGACTAAGTTATACAGGGTTGGTAAATTTCGTGCAGCCACCGCGGTCATACGATTAACCCAACTAATATCTTGGCGTAAAAGTGTCAATAAATAAATATAGAATTAAAATCCAACTTATATGATTCATTGTAAACTAACGAAAAGCTTTATATACACGACAGCTAAGACCCAAACTGGGATTAGATCCCCACTTGCTTAGCCATAAACCTAAATTAATACAAAATTTGCCAGAACTACTAGCCATAGCTTAAAACTCAAAGGACTTGCGGTACTTATCCATCTAGAGGAGCCTGTTCTATAATCGATAAACCCCGCTCTACCTCACCTCTCTTGCTCAGCCTATATACCGCCATCTTCAGCAAACCCTAAGGTATTATAAGCAAAAGAACAACATAAAAACGTTAGGTCAAGGTGTAGCCAATGAAATGGGAGAATGGGC-ACATTTTCTAAAGAACCTATACCTTATGAAAAAAGGACGGAGGATTTAGTAGTAAATTAAGAATAGAGAGCTAATTAATTGAGCAATGAAGTAGCACACACCGCCCGTCACCCTCCTCAAATTAAGAGGAGATAAGTCGTAACAAGGTAAGCATACTGGAAAGTGGCTTGGATCATATGTAGCTATTAAGCATCTGGCCTACACCCAGAAGATTTTGACCAAACACTCGAACTAATCCTAGCCCAGCCTAACAAATTACTATTCAAAACATTCTAAAAAGTATTGGAGAAAGAACAGGAGCTATGTACCGCAAGGGAAGATATAAAGTAAGAACAAGCAAAGATTAAACCTGTACCTTTTGCATAATGAACTAACTAGAATTCTAATAAAAGAATTCAGCAGAACCCCGAAACCAAACGAGCTACCTAAAAACATGAATCAACTCGTCTATGTGGCAAAATAGTGAGAAGATTTTTAGGTAGAGGTGAAAAGCCTAACGAGCTTGGTGATAGCTGGTTACCCAAAAAGAATTTAGTTCAATTTTAAACAATCAAAAAGTAATTTAGATTATAGCCAAAAGAGGGACAGCTCTTCTGGACGGAAAAAACCTTTAATAGTGATTAACAAAAAACCATTGTAGCCTAAAAGCAGCCACCAAAGAGCGTCAAGCTCAACAAAATTAATTCCATATTTACAAACTCCTAACTAAAATTGGTTAATCTATACTTTATAGACACTGTTAGTATGAGAACAAGACAATTCTACATACGCGTAACTCGGAATTGTTAGTTATCAGATAGGCCACACTATAATAATCCTATAACTCCTGTTAACCCAACACCGGAATGCCAGGAAAGATCCAAAAAGAAAAGGAACTCGGCAAAGAACCCCGCCTGTTTACCAAAAACATCACCTCTAGCATTAATTAGAGCACTGCCTGCCCAGTGACAATTTAACGGCCGCGGTATCCGACCGTGCAAAGGTAGATAATCACTGTTCCATTAGGGACTAGCATGAACGGCAACGAGGGTCCAACTGTCTCTTATCTTTAATCAGTGAAATTGACCTCAGTGAAGAGGCTGAAATATAATAAAAGACGAGAAGCCCTATGGAGCTTAAATCTAATTTACCTAATGGCCCAAATATAGTATTCGGTTGGGGTGACCTCGGAGAATAAAAAATCCTCCGAATGTAGACTACAAGTCAAAGAAATATTGACCCAGATGATCAACGGACCAAGTTACCCTAGGGTAACAGCGCAACCTATTTAAGAGTTCATATCGACAATAGGGTTTACGACCTCGATGTTGGATCAGGACACCCAATGGTGTAGAAGCTATTAATGGTTCGTTTGTTCAACGATTAAATCCTACGTGATCTGAGTTCAGCAATCCAGGTCGGTTTCTATCTATTTTTCTCCCAGTACAAAGGACAAGAGAAATAGAGACTTACAAAAGCTCTCAACTATTATAAAATCTAAAAATACGTACCCTCTCCTAGAGAAGT -Rat CTACCACACCCCAGGACTCAGCAGTGATAAATATTAAGCATGAACGAAGTTTGACTAAGCTATACAGGGTTGGTAAATTTCGTGCAGCCACCGCGGTCATACGATTAACCCAACTAATATTTTGGCGTAAAAGTGCCAATAAATCTCAATAGAATTAAAATCCAACTTATATGATTCATTGTAAGCCAACGAAAAACTTTATATGCACGATAGCTAAGACCCAAACTGGGATTAGATCCCCACTTGCTTAGCCCTAAACCTTAATTAATACAAAATTTGCCAGAACTACTAGCTACAGCTTAAAACTCAAAGGACTTGCGGTACTTATCCATCTAGAGGAGCCTGTTCTATAATCGATAAACCCCGTTCTACCTTACCCTTCTCGCTCAGCCTATATACCGCCATCTTCAGCAAACCCTAAGGCACTATAAGCACAAGAACAACATAAAAACGTTAGGTCAAGGTGTAGCCAATGAAGCGGAAGAATGGGCTACATTTTCTAGAGAACCGAAACCTTATGAAAAAAGGACGGAGGATTTAGTAGTAAATTAAGAATAGAGAGCTAATTAATAGAGCAATGAAGTAGCACACACCGCCCGTCACCCTCCTCAATACAAGAGGAGATAAGTCGTAACAAGGTAAGCATACTGGAAAGTGGCTTGGATCACATGTAGCTAACAAGCATCTGGCCTACACCCAGAAGAATTTAAAAAAACACTTGAACTAACCCTAGCCCACACCAACCAACTACCACCTAAAACATTTCAAAAAGTATTGGAGAAAGAATAAGAGCTAAGTACCGCAAGGGAAGATATAAAGTAAAAACAAGCAAAGATTAAACCTGTACCTTTTGCATAATGAATTAACTAGAACCTTAAAAAAAGAATTAAGCAAGACCCCGAAACCAAACGAGCTACCTAAAAACATGAATCAACCCGTCTATGTAGCAAAATAGTGGGAAGATTTTTAGGTAGAGGTGAAAAGCCTATCGAGCTTGGTGATAGCTGGTTGCCCAAAAAGAATTTAGTTCAAACTTTAAGAATCAAAATGTAACTTAAAATATAGCCAAAAGAGGGACAGCTCTTTAGGACGGAAAAAACCTTAAATAGTGAACAACTACAAACCATTGTAGCTTAAAAGCAGCCATCAAAGAGCGTAAGCCACATCACCACTAATTCCACAACCTCAAAATCCAAATTCAAATTGGCTAATCTATGTCCTAGTGATACTGTTAATATGTGAACAAGACAATCCAGCACAAGTGCTAACCGGAATTGTTAATTATTGAATAGGCAACCCAACAAAGAATCTATCCCTATCGTTAGCCCAACACAGGCGTGCTTGGAAAGTTTAAAAAAGTAAAGGAACTCGGCAACGAACCCCGCCTGTTTACCAAAAACATCTCCTCTAGCATAAATTAGTGCATCGCCTGCCCAGTGACAATTCCACGGCCGCGGTATCCGACCGTGCAAAGGTAGATAATCACTGTTCCATTAGGGACTAGAATGAATGGCAACGAGGGTCCAACCGTCTCTTACTTGCAATCAGTGAAATTGACCTCAGTGAAGGGGCGGACTCATAATAAAAGACGAGAAGCCCTATGGAGCTTTAATCAATATAACCTAATGGGCGAAAAAAATTATTCGGTTGGGGTGACCTCGGAGAATAAAAAATCCTCCGAATGTAACCTGTCCGACCCAGCAATATTGACCCAATTGATCAACGGACCAAGTTACCCTAGGGTAACAGCGCGACCTATTTAAGAGTTCATATCGACAATAGGGTTTACGACCTCGATGTTGGATCAGGACACCCAATGGTGCAGAAGCTATTAATGGTTCGTTTGTTCAACGATTAAATCCTACGTGATCTAAGTCCGGCAATCCAGGTCGGTTTCTATCTATTTTTCTCCCAGTACAAAGGACAAGAGAAATGGAGACAACCAACTAGTTCCAACCATTAGAAAAACTTAAAATATGTAATAAATCCTTAGACAAT -Platypus CCTCCACACCCCAGGACACAGCAGTAATAGAAATTAGTCATAAACGCAGTTTGAACAAGTCATCAAGAGTCGGTAAATTTCGTGCAGCCACCGCGGTCATACGATTGACTCAACTAACAATAAGGTGTAAAAGTGTTTAAAATTAAACATAAGATTAAAGTAGAACTAAACTGAGTCATAGTAAAGCTACGAAAAGCAATTGATACACGATAGCTAAGGTACAAACTGGGATTAGATCCCCACTTGCTTAGCCCTAAACTCAAGTTTAAACAAAACTCACCAGAACTACTAGCAACAGCTTAAAACTCAAAGGACTTGCGGTGCTTACCCCTCTAGAGGAGCCTGTTCTATAATCGATAAACCCCGATACACCTCACCTCTTTTGCCCTGTCTATATACCGCCATCGTCAGCCAACCCTAAGGAACAATAGGCGTAATCATTTCATAAAAACGTTAGGTCAAGGTGTAGCCTATAAGATGGAAAAATGGGCTACATTTTCTAGAACATCGAAAAATCATGAAAGAGTATTGGAGGATTTAGTAGTAAGCCAAGAATAGAGAGCTGACTAACTGGGCAATGAAGCAGCACACACCGCCCGTCACCCTCCTCATCCTAAGAGGAGATAAGTCGTAACAAGGTAAGCATACCGGAAGGTGGCTTGGATCAAATGTAGCTACAAAGCACTCAGCTTACACCTGAAAGATATTTTACAATCATTTGAGCCAACTCTAGCCCAAATAACTTAATCAAATACTAAAACATTCGCCCTAGTATAGGAGATAGAAGAGGAGCCTTGTACTGTGAAGGAAAATATAAAGCACAAAAAAGCCAGGATTTAACCCGTACCTTTTGCATAATGGTTTAGCTAGAACTTATAACAAAGAATTTAATTAAATCCCGAAACTAGATGAGCTACTATCGAGCATGAATCAACCCGTCTATGTTGCAAAATAGTGGGATGACTTTATAGTAGAGGTGAAAAATCAACCGGACCTAGTGATAGCTGGTTAGCCAAAAAGAATTTAGTTCAACAATAAGTTAATTAACCATAACTTATAAGTTATTCATAAGAGGGTCAGCCCTTATGAAAGGAAACAACCTCTAATAGAGATTTATTCTTTTACATAGTAGCCTAAAAGCAGCCATCAAAAAGCGTAAAGCTTAAACTTCTTAATCCCTTCTCTTAACTACCCTAAATAATATTGCTTAATCTATGCCCCATAGATAATGCTAAAATAAGAAACCAATTATTCTGCACTAGCTTAAACGGAGACTAATAATTACAGCATAATCTAAATATTAATAGAATTATTTTAACTGTTAACCCGACACAGGAGTGCATGGAAAGATTAAAAGGAGAAAGGAACTCGGCAAAGGATTTCGCCTGTTTACCAAAAACATCGCCTCTAGCATAAATTAGAGTCCTGCCTGCCCAGTGATTATTAAACGGCCGCGGTATCCGACCGTGCAAAGGTAGATAATCATTGTCTCATTAGAGACTAGTATGAATGGCGACGAAAATCCAACTGTCTCTTACTCCCAATCAGTGAAATTGCCCTCCGTGCAGAGACGGGGATAACACCAAAGACGAGAAGCCCTGTGGAGCTTTAAATTCTTTACACCCAAAAGCTCAATAAGAATTTTGGTTGGGGTGACCTCGGAGTACAACAAAACCTCTGAATGATAACTACAAGTTTAAAGCAAATAGACCCAAATGATCAAAGGACCAAGTTACCCCAGGGTAACAGCGCAACCTATTCAAGAGTTCATATCGACAATAGGGTTTACGACCTCGATGTTGGATCAGGACACCAAATGGTGCAGCCGCTATTAATGGTTCGTTTGTTCAACGATTAAATCCTACGTGATCTGAGTTCAGTAATCCAGGTCGGTTTCTATCTATGTTTCTCCTAGTCGAAAGGACCAGAGAAATCAGGAACTTAAAAGAACTCCAACTAAAATTTCATCTCAATGCGTTACCTTACTTCCTAGACGGT -Opossum CTTCCACACCCCAGGAGACAGCAGTGATTAAAATTAAGCATAAACGAAGTTTGACTAAGTCATTTAGGGTTGGTCAATTTCGTGCAGCCACCGCGGTCATACGATTAACCCAATTAATAATAAGGCGTAAAGGTGTTTAGTAATACAAATAAAGTTAATAATTAACTAAACTGCGTTCTAGTAAAATAATAAAAAAACACCGATACACGAAAACTAAGACACAAACTGGGATTAGATCCCCACTTGCTTAGTAATAAACTAAAATTTAAACAAAATTCGCCAGAACTACTAGCAATTGCTTAAAACTCAAAGGACTTGCGGTGCCCACCCACCTAGAGGAGCCTGTTCTATAATCGATAAACCCCGATAAACCAGACCTATCTTGCCCAGCCTATATACCGCCATCGTCAGCTAACCTTTAAGAATTATAAGCAAAATCAAAACATAAAAACGTTAGGTCAAGGTGTAGCATATGATAAGGAAGAATGGGCTACATTCTCTAGAGCATCGAATCAATATGAAAAAATGCTGGAGGATTTAGTAGTAAATTAAGAATAGAGAGCTAATTAATTAGGCAATAGGGCGGCACACACCGCCCGTCACCCTCCTCAACCTAAGAGGAGAAAAGTCGTAACACGGTAAGTGTACTGGAAAGTGACTTGGATCAAATGTAGCTGTAAAGCATTTAGTTTACACCTAAAAGATTTTCTAATACCATTTGAACTAACCACAGCCCAAATCAATCAAATATATTTTAAACCATTTTACCTAGTATAGGTGATAGAAAAGGAGCTATGTACCGCAAGGGAAAATATATAGTAATTAAAAGCAAAGATTAACTCTGTACCTTTTGCATAATGATTTAGCCAGTCCACGGAAAAAAGAATTTGCCCGACTCCCGAAATTAAGTGAGCTACTATAAGACATGAACCAACTCATCTATGTAGCAAAATAGTGAGAAGATTTTATAGTAGAAGTGAAAAACCTATCGAACTTAATGATAGCTGGTTATCCAAAAAGAATTTAGTTCAACTTTAAGCTAGCACACAATAACTTAAAAGTTAGTCAAAGAAGGGACAACTTCTTTGACAGTATACAAACTACATTAGAGATAATTAATACCACATCGTTGCTTAAAAGCAGCCATCAAAGAGCGTAAAGCTCAAACCATTTAATACCATAAAACTAAAACCCTAAATACTATTGATGATTCTATGTATTATAGATAATGCTAAAATTAGAATAAGACCGTTCTGCACAAGCCTAAATAACGACTAATAGTTACAAAATAATACATTCATCAACAGCCTTATACAATTTGTTAATCCAACACAGGTGTGCAAGGAAAGATATAAAAGAAAAAGGAACTCGGCAATGAACCCCGCCTGTTTACCAAAAACATCACCTCTAGCATTAATTAGAGCACTGCCTGCCCAGTGAAAATTTAACGGCCGCGGTATCCGACCGTGCAAAGGTAGATAATCACTGTCTCAATAGGGACTTGTATGAATGGCAACGAGGGTTCAACTGTCTCTTTTTCTTAATCAATGAAATTGACCTCCGTGCAGAGGCGGGTATATTAATAAAGACGAGAAGCCCTGTGGAGCTTAAGAATAACTACACCCTAGGGAATAATTATTATTTTGGTTGGGGTGACCTCGGAGAACAAAAAAACCTCCGAATGTAGATAACTAATCCAAGGCAAATTGACCCAAATGATCAACGGAACAAGTTACCCCAGGGTAACAGCGCAACCTATTTAAGAGCCCATATCGAAAATAGGGTTTACGACCTCGATGTTGGATCAGGACACCTAATGGTGCAACCGCTATTAAAGGTTCGTTTGTTCAACGATTAAATCCTACGTGATCTGAGTTCAGAAATCCAGGTCGGTTTCTATCTATATTTCTCCCAGTCGAAAGGACCAGAGAAATAGGGAAATTATCATGCCCTCATAAATAAATATATCTAAAAATTTAAATTTATCCTCTAGATGAC diff --git a/example/models.nex b/example/models.nex deleted file mode 100644 index 380042476..000000000 --- a/example/models.nex +++ /dev/null @@ -1,955 +0,0 @@ -#nexus - -begin models; - -[ --------------------------------------------------------- - EX2 mixture model of Le, Lartillot & Gascuel (2008) - --------------------------------------------------------- ] - -[ Exposed component ] -model ExpEX2 = -0.526738 -0.483150 0.505837 -0.658902 0.051052 3.902456 -2.051872 2.214326 0.961103 0.129989 -1.280002 2.039552 1.301786 0.399061 0.456521 -1.306565 0.137928 0.285806 3.100403 0.033946 2.514377 -1.370782 0.363365 1.820100 0.885317 0.886564 0.320746 0.303966 -0.540809 2.288922 4.949307 0.700890 2.172284 3.755421 0.270957 0.401311 -0.171986 0.237023 0.337226 0.018315 1.037046 0.212032 0.084442 0.012279 0.317239 -0.430511 0.670514 0.158937 0.021949 1.702066 1.261113 0.110508 0.052946 0.869247 8.675343 -0.697731 3.881079 1.677194 0.105450 0.146263 2.570254 0.730337 0.279865 0.598289 0.338782 0.313102 -1.043937 0.656943 0.539827 0.066925 1.846562 1.973592 0.188160 0.158136 0.519993 9.483497 14.176858 1.013268 -0.265209 0.097443 0.182522 0.026918 3.002586 0.080193 0.023999 0.084663 2.047163 2.193062 4.802817 0.044792 3.261401 -1.270693 0.166534 0.068692 0.228829 0.156216 0.362501 0.214847 0.148900 0.323141 0.071992 0.343919 0.195470 0.099252 0.087020 -4.826665 0.751947 4.412265 0.975564 5.294149 1.033459 0.382235 1.970857 0.993310 0.190509 0.389101 0.592156 0.557254 0.668834 1.223981 -2.131819 0.584329 2.133604 0.368887 2.067387 1.013613 0.511390 0.174527 0.580960 2.563630 0.522334 1.147459 2.960091 0.244420 0.413148 7.384701 -0.143081 0.475590 0.061094 0.042618 1.603125 0.210329 0.048276 0.186382 0.961546 0.208313 1.130724 0.052858 1.328785 5.210001 0.045945 0.316078 0.144393 -0.208643 0.196271 0.599369 0.121313 3.842632 0.158470 0.064648 0.039280 8.230282 0.517123 0.713426 0.084962 0.812142 23.228875 0.043249 0.405310 0.234217 4.903887 -2.544463 0.313443 0.172264 0.073705 4.207648 0.497398 0.484620 0.132496 0.329895 23.711178 3.466991 0.348362 4.136445 1.199764 0.368231 0.266531 3.184874 0.252132 0.459187 - -0.088367 0.078147 0.047163 0.087976 0.004517 0.058526 0.128039 0.056993 0.024856 0.025277 0.045202 0.094639 0.012338 0.016158 0.060124 0.055346 0.051290 0.006771 0.021554 0.036718; - -[ Buried component ] -model BurEX2 = -0.338649 -0.201335 0.981635 -0.283859 0.247537 6.505182 -2.640244 0.904730 1.353325 0.312005 -0.543136 4.570308 2.439639 0.682052 0.216787 -0.748479 0.917979 0.804756 10.030310 0.024055 8.670112 -2.700465 0.539246 0.810739 0.810727 0.701320 0.330139 0.636675 -0.237686 3.175221 6.308043 1.540002 0.469875 8.675492 0.750683 0.183743 -0.044209 0.099241 0.162644 0.020816 0.166986 0.082745 0.030581 0.005017 0.075820 -0.124047 0.314159 0.088243 0.017526 0.449241 0.641784 0.073392 0.017752 0.277023 2.383760 -0.433721 17.781822 2.851914 0.459939 0.117548 6.815411 3.482941 0.484653 1.247888 0.161658 0.219757 -0.497479 0.448773 0.380964 0.057176 0.815999 2.089412 0.291379 0.054491 0.307450 2.817174 4.759683 1.082403 -0.093991 0.055530 0.098936 0.026160 0.662517 0.091948 0.022760 0.034431 0.675645 0.521416 1.672365 0.077917 1.296869 -0.986621 0.356417 0.214521 0.246129 0.164228 0.654039 0.295079 0.179095 0.428213 0.037671 0.170780 0.347219 0.074086 0.057233 -5.925588 0.979993 4.725421 1.158990 5.111992 1.120931 0.737456 2.279470 0.886126 0.051057 0.089611 0.925355 0.275366 0.274582 1.151114 -1.958501 0.630713 2.007592 0.289641 2.284140 0.787821 0.539892 0.097432 0.467489 0.644041 0.202812 1.401676 1.340732 0.103118 0.601281 8.190534 -0.068357 0.784449 0.109073 0.085810 0.457880 0.297731 0.155877 0.157418 0.708743 0.054134 0.374568 0.115777 0.477495 2.362999 0.047127 0.209085 0.097054 -0.084768 0.312038 0.615093 0.202611 0.788164 0.293543 0.137306 0.035497 4.938330 0.101803 0.180086 0.280737 0.264540 8.142914 0.059308 0.264401 0.133054 2.905674 -1.387752 0.140091 0.112176 0.058637 1.575057 0.203946 0.239406 0.044011 0.085226 6.427279 1.035942 0.244336 1.033583 0.278010 0.213475 0.079878 1.592560 0.081135 0.108383 - -0.123119 0.019475 0.019852 0.018583 0.018711 0.017275 0.018723 0.050388 0.016402 0.119697 0.161399 0.012776 0.035838 0.057019 0.030913 0.043472 0.049935 0.012600 0.039929 0.133894; - -[ main definition of EX2 with fixed component rates ] -model EX2 =MIX{BurEX2:0.672020808818762,ExpEX2:1.6413466609931}; - - -[ --------------------------------------------------------- - EX3 mixture model of Le, Lartillot & Gascuel (2008) - --------------------------------------------------------- ] - -[ Buried component ] -model BurEX3 = -0.352598 -0.216996 1.087422 -0.292440 0.323465 7.797086 -2.610812 0.913640 1.460331 0.344397 -0.510610 5.128748 2.811070 0.773241 0.220223 -0.753729 1.090823 0.956820 12.012282 0.021022 10.123412 -2.838061 0.595013 0.884971 0.922298 0.707214 0.351856 0.713974 -0.239679 3.625577 7.108377 1.826237 0.481109 10.246488 0.839852 0.219310 -0.051496 0.102940 0.168735 0.024207 0.162795 0.087881 0.036973 0.004515 0.079975 -0.119849 0.316151 0.091984 0.018800 0.422679 0.648064 0.075035 0.016317 0.282195 2.225363 -0.443183 20.766910 3.194817 0.568138 0.132784 7.478955 4.176123 0.551523 1.415394 0.163276 0.207613 -0.460570 0.458210 0.398615 0.059146 0.765112 2.134261 0.313124 0.053192 0.340474 2.609469 4.476961 1.014674 -0.089411 0.056698 0.104720 0.027913 0.630095 0.094857 0.023275 0.034031 0.691151 0.491179 1.606618 0.077868 1.226530 -0.993370 0.419898 0.217106 0.273526 0.181230 0.729534 0.311152 0.192454 0.483200 0.040002 0.170402 0.376998 0.075002 0.057218 -6.108406 1.066008 5.182562 1.216396 5.236005 1.159086 0.763810 2.404073 0.924395 0.048875 0.084247 0.923997 0.260340 0.260617 1.208454 -1.992855 0.687262 2.181095 0.312299 2.276505 0.829879 0.551397 0.101409 0.480998 0.610331 0.198919 1.407257 1.292634 0.096955 0.648250 8.527249 -0.063159 0.855332 0.134012 0.099769 0.468450 0.329372 0.136731 0.169991 0.745868 0.056715 0.377293 0.137955 0.463394 2.343596 0.058650 0.211406 0.085948 -0.078057 0.341493 0.655744 0.241264 0.762740 0.302096 0.142491 0.040257 5.226086 0.092084 0.180292 0.311130 0.249838 8.141649 0.062812 0.267992 0.128044 3.047417 -1.339724 0.144916 0.125078 0.062854 1.481083 0.194081 0.225389 0.043663 0.090575 5.973306 0.993888 0.222252 0.964622 0.262045 0.207448 0.083450 1.544911 0.078358 0.105286 - -0.123992 0.016529 0.017595 0.015784 0.019325 0.015552 0.015939 0.049573 0.014540 0.126555 0.167605 0.011083 0.037438 0.058363 0.028849 0.042324 0.049207 0.011962 0.037833 0.139953; - -[ Intermediate component ] -model IntEX3 = -0.489239 -0.466919 0.536794 -0.601908 0.069474 4.603441 -2.430552 1.807414 0.997223 0.166431 -1.101971 2.081359 1.299123 0.508086 0.393348 -1.227777 0.215899 0.345545 3.579383 0.046861 3.113235 -1.873072 0.390054 1.528288 0.941969 0.867139 0.349219 0.406414 -0.519003 1.930915 5.003737 0.781887 1.630085 3.567804 0.324903 0.315383 -0.158722 0.180317 0.295816 0.013254 0.642786 0.179498 0.090830 0.013181 0.209208 -0.345026 0.503290 0.138767 0.024393 1.107569 1.027755 0.123806 0.048549 0.592981 5.439892 -0.610178 4.322929 1.524318 0.121994 0.181609 2.674484 0.792405 0.276766 0.591509 0.301836 0.294950 -0.949957 0.472702 0.502710 0.091008 1.283305 1.905885 0.242081 0.140301 0.378459 6.259505 9.391081 1.074513 -0.247271 0.069820 0.161809 0.028611 2.065479 0.077874 0.025753 0.065388 1.541097 1.306479 3.015722 0.048689 2.243101 -1.334722 0.170174 0.099375 0.211869 0.163190 0.349495 0.155436 0.186099 0.300496 0.065625 0.265961 0.162529 0.088677 0.083754 -5.316955 0.699036 4.526191 1.143652 5.249370 0.970695 0.438792 2.366185 0.939629 0.138819 0.275119 0.532771 0.521510 0.547761 1.187779 -1.963809 0.535034 2.034583 0.383040 2.012437 0.891145 0.531018 0.180104 0.467342 1.861944 0.395319 1.071879 2.340268 0.183984 0.400373 7.243848 -0.145693 0.378596 0.046601 0.048388 1.074147 0.174525 0.063777 0.168836 0.822524 0.110645 0.677913 0.062047 0.796395 3.502387 0.046950 0.290501 0.107097 -0.195764 0.149382 0.534652 0.105996 2.446201 0.150150 0.071967 0.031908 6.198893 0.299207 0.413150 0.090874 0.492692 15.039152 0.044765 0.328289 0.175204 3.125850 -2.227504 0.220361 0.150316 0.066496 3.112801 0.393451 0.444469 0.108811 0.224352 15.532696 2.152640 0.302279 2.658339 0.738053 0.322254 0.197018 2.507055 0.175763 0.276642 - -0.086346 0.080808 0.041727 0.064440 0.006654 0.052795 0.092110 0.048527 0.028831 0.040497 0.071679 0.079687 0.018007 0.025901 0.052632 0.052778 0.056138 0.010733 0.034744 0.054964; - -[ Highly exposed component ] -model HExEX3 = -0.557500 -0.467024 0.508965 -0.660464 0.044039 3.386724 -1.332582 3.667491 1.440486 0.185886 -1.402485 2.156104 1.297398 0.333117 0.789370 -1.259192 0.111162 0.245837 2.707953 0.058650 2.098300 -0.934526 0.393780 2.196372 0.868249 1.336358 0.322363 0.252359 -0.518929 3.157422 5.392488 0.748008 3.827563 4.517669 0.284167 0.634601 -0.279723 0.407537 0.535113 0.054030 3.345087 0.427624 0.148200 0.015686 0.658979 -0.715094 1.182387 0.270883 0.035162 3.520931 2.366650 0.172395 0.100089 1.779380 18.830270 -0.694526 3.728628 1.747648 0.083685 0.100399 2.477205 0.623294 0.280977 0.694965 0.569776 0.493141 -1.338414 1.261833 0.818216 0.054313 3.918703 2.383718 0.219943 0.228757 0.867786 19.605444 31.431195 1.089056 -0.295523 0.190129 0.263800 0.044853 5.266468 0.120909 0.042178 0.194665 3.494314 5.825792 11.527190 0.044361 6.237844 -1.085021 0.168461 0.041147 0.203765 0.185173 0.353420 0.218194 0.120292 0.375260 0.116875 0.705493 0.190747 0.139085 0.108823 -4.090024 0.852803 4.335615 0.829194 6.499129 1.095446 0.336922 1.733724 1.144100 0.413986 0.878828 0.631498 0.730416 1.167593 1.195720 -2.318400 0.650016 2.351068 0.385247 1.883085 1.167877 0.532167 0.187062 0.796107 4.825759 0.838744 1.268311 4.445757 0.381760 0.419944 7.677284 -0.134371 1.021826 0.151293 0.065183 3.716538 0.530580 0.077516 0.396559 1.324147 0.443432 3.290145 0.064651 4.411035 13.056874 0.056705 0.534908 0.408415 -0.212989 0.424870 1.115762 0.268883 8.874037 0.255572 0.125866 0.107717 14.436023 1.292209 1.491799 0.104026 2.063744 49.760746 0.057618 0.756357 0.396791 12.032322 -3.112666 0.544010 0.214411 0.125541 5.301703 0.868794 0.839508 0.215758 0.533676 46.074660 7.301056 0.557248 9.151909 2.634769 0.523205 0.564572 4.519860 0.456880 0.670812 - -0.094155 0.070537 0.052200 0.112406 0.002213 0.062733 0.165272 0.062302 0.019853 0.011154 0.019829 0.108860 0.006503 0.006873 0.070091 0.057931 0.046183 0.002449 0.008629 0.019827; - -[ main definition of EX3 with fixed component rates ] -model EX3 = MIX{BurEX3:0.427672756793791,IntEX3:0.837595938019774,HExEX3:1.51863631431518}; - -[ --------------------------------------------------------- - EHO mixture model of Le, Lartillot & Gascuel (2008) - --------------------------------------------------------- ] - -[ extended component ] -model ExtEHO = -0.221750 -0.256487 0.595368 -0.447755 0.112310 7.769815 -4.893140 0.929131 1.061884 0.164472 -0.542660 2.886791 1.927072 0.497273 0.133291 -0.549459 0.290798 0.518264 5.393249 0.003776 4.326528 -5.411319 0.302948 0.907713 0.961651 1.249183 0.173873 0.316780 -0.283752 2.760038 5.159285 0.978418 0.737799 5.086066 0.421812 0.209276 -0.026683 0.053027 0.166715 0.016491 0.151942 0.055934 0.026726 0.001780 0.098605 -0.226816 0.251641 0.062256 0.015837 0.763554 0.537705 0.042909 0.032938 0.321607 3.217159 -0.235513 6.017300 2.543177 0.223507 0.023575 3.432847 1.211039 0.160545 0.671045 0.082221 0.106179 -0.992834 0.351969 0.415447 0.041511 1.271632 1.700679 0.111984 0.117596 0.326393 3.329162 7.496635 0.519821 -0.191967 0.041219 0.090517 0.014810 1.004694 0.042779 0.011177 0.040989 0.641267 0.813011 2.233318 0.023173 1.863238 -1.876507 0.395175 0.362650 0.550534 0.174031 0.731229 0.412907 0.205341 0.381717 0.011597 0.315127 0.393303 0.135360 0.043846 -6.066032 1.083228 5.612711 1.035540 4.263932 1.429211 0.766802 2.266299 1.074108 0.047896 0.147065 0.683291 0.352118 0.382422 1.462674 -1.827471 0.645132 1.883173 0.287521 1.395928 1.013709 0.781080 0.055140 0.512000 0.588357 0.142327 1.256445 1.435179 0.079647 0.417388 6.092548 -0.101419 0.452274 0.065206 0.034173 0.592031 0.164037 0.049674 0.183473 0.741383 0.069289 0.429275 0.050856 0.545447 2.178510 0.022770 0.304839 0.111242 -0.091914 0.112094 0.451176 0.108762 1.183567 0.132194 0.042952 0.030418 4.373360 0.122828 0.186938 0.096667 0.344096 8.276255 0.053251 0.325231 0.135310 2.597897 -1.970427 0.119016 0.091863 0.041044 1.750822 0.222903 0.225961 0.053387 0.123318 6.815243 1.427658 0.124284 1.427074 0.341263 0.127045 0.076658 1.052442 0.073165 0.101733 - -0.062087 0.053435 0.023743 0.032063 0.013132 0.034151 0.061042 0.030664 0.022696 0.104732 0.099541 0.054991 0.022312 0.045996 0.025392 0.045673 0.072789 0.012691 0.043790 0.139079; - -[ Helix component ] -model HelEHO = -0.346476 -0.374362 0.664870 -0.557349 0.079157 3.710526 -3.192474 1.027228 0.891196 0.006722 -0.776545 1.902860 1.561002 0.517360 0.112028 -0.841893 0.158406 0.443065 3.792847 0.000006 2.320685 -4.037113 0.661209 1.866962 1.144918 1.465540 0.511489 0.573208 -0.394225 2.123760 5.845902 0.737868 1.084909 3.960964 0.270146 0.380762 -0.111350 0.099645 0.233216 0.005627 0.839533 0.089484 0.019520 0.021251 0.132153 -0.193017 0.307622 0.115495 0.009651 1.136538 0.584189 0.039838 0.048105 0.485901 4.915707 -0.481682 3.827872 1.926308 0.163314 0.021755 2.487895 0.768919 0.327002 0.534206 0.147053 0.136159 -0.610432 0.344033 0.452639 0.035659 1.624032 1.146169 0.103241 0.171164 0.364836 6.260678 7.738615 0.549401 -0.147278 0.035167 0.106276 0.018468 1.864906 0.047207 0.010268 0.086543 1.244539 0.927331 3.243633 0.016265 2.326533 -1.090575 0.181605 0.093658 0.386490 0.097655 0.462559 0.290152 0.568098 0.458437 0.043237 0.207460 0.198291 0.061027 0.067592 -6.243684 0.836138 5.633664 0.952131 6.398291 1.267404 0.430602 5.463144 1.088326 0.102127 0.193860 0.707365 0.438507 0.470620 1.534272 -2.847158 0.566364 2.984732 0.347047 3.711971 1.083181 0.495700 0.500029 0.642773 1.698955 0.402699 1.111399 2.483456 0.231119 0.685164 8.832473 -0.090983 0.369015 0.085583 0.046821 0.950521 0.183299 0.040785 0.391093 0.950288 0.075780 0.624335 0.041505 0.980672 3.915972 0.053806 0.299723 0.100663 -0.152848 0.170981 0.594708 0.106099 2.051641 0.121416 0.047614 0.064377 8.167042 0.195540 0.352598 0.069186 0.465779 15.178886 0.058255 0.405459 0.201603 4.035822 -2.140511 0.136453 0.145376 0.046174 4.011687 0.191618 0.192292 0.202844 0.174981 14.460840 2.175028 0.136317 2.393838 0.659302 0.418505 0.180248 3.585329 0.175143 0.281722 - -0.121953 0.076798 0.032215 0.066765 0.006842 0.061304 0.131841 0.026596 0.020392 0.047287 0.087919 0.084679 0.020970 0.024145 0.025871 0.042103 0.038715 0.008346 0.023841 0.051421; - -[ Other component ] -model OthEHO = -0.529263 -0.379476 0.612335 -0.516691 0.067732 4.012914 -3.774890 1.615176 0.888663 0.165810 -1.312262 2.913667 1.533683 0.442262 0.337571 -1.403437 0.154460 0.333334 3.815893 0.015567 3.743866 -1.272402 0.389317 1.243222 0.661976 0.554904 0.332656 0.319770 -0.558733 2.816641 4.803000 0.761339 1.223662 4.889028 0.323617 0.300981 -0.124057 0.155080 0.219635 0.019097 0.560959 0.100743 0.038076 0.005599 0.184752 -0.340362 0.580087 0.119838 0.015948 1.192857 1.156516 0.083154 0.031031 0.646292 7.873544 -0.706732 5.734632 1.847806 0.128114 0.050896 3.616626 1.131071 0.283950 0.643558 0.179831 0.224320 -1.056749 0.665355 0.399943 0.053900 1.893946 2.299714 0.168079 0.085094 0.556024 8.136055 14.213193 0.931689 -0.233961 0.079465 0.130295 0.016768 1.902244 0.077611 0.012655 0.048906 1.403178 1.581816 4.275863 0.036062 2.888633 -1.518830 0.252482 0.049484 0.171011 0.108909 0.501196 0.346600 0.058913 0.299924 0.073007 0.297573 0.249478 0.091619 0.068920 -5.595735 0.861017 3.749627 0.987083 4.952776 1.045071 0.463265 1.190738 0.897478 0.131753 0.265701 0.607097 0.399537 0.408758 0.993614 -2.157458 0.613623 1.733380 0.361861 2.145775 1.011592 0.523086 0.091023 0.450662 1.492403 0.408418 1.143233 2.378569 0.131777 0.381007 7.574340 -0.151895 0.544292 0.060182 0.043433 1.259614 0.228038 0.045082 0.134804 0.748147 0.134416 0.979277 0.038787 0.908253 4.850762 0.052415 0.249753 0.114232 -0.219509 0.243507 0.580103 0.130214 2.325021 0.196580 0.079660 0.037482 6.907609 0.299245 0.552917 0.067894 0.685250 19.404995 0.047839 0.323207 0.183044 4.704884 -3.049976 0.278740 0.134120 0.055382 4.149385 0.500946 0.435957 0.067170 0.214393 22.435652 2.883298 0.323886 3.369448 0.722571 0.315978 0.152899 2.423398 0.186495 0.303833 - -0.076458 0.052393 0.055429 0.088634 0.007473 0.040671 0.080952 0.100192 0.025439 0.031730 0.053100 0.070835 0.014039 0.023159 0.087111 0.063636 0.055346 0.007033 0.023779 0.042590; - -[ main definition of EHO with fixed component rates ] -model EHO = MIX{ExtEHO:0.720274356,HelEHO:0.976798797,OthEHO:0.783109376}; - - -[ --------------------------------------------------------- - UL2 mixture model of Le, Lartillot & Gascuel (2008) - --------------------------------------------------------- ] - -model M1_UL2 = -0.267149 -0.211944 0.816250 -0.156648 0.336150 3.110967 -2.402535 1.001114 1.287205 0.467161 -0.301870 3.168646 1.844180 0.571540 0.394361 -0.503678 1.529332 0.788530 3.920399 0.234553 8.502278 -3.124853 0.171548 0.220006 0.250690 0.766651 0.174653 0.399019 -0.139279 1.597241 5.622886 2.146897 0.349557 8.097306 1.211287 0.044878 -0.037158 0.139068 0.189483 0.049336 0.147864 0.122799 0.153664 0.006928 0.085276 -0.108752 0.387538 0.092568 0.035815 0.399254 0.617370 0.225586 0.018972 0.202328 2.343778 -0.255267 15.176345 1.030178 0.196011 0.396427 3.731061 2.642525 0.142626 0.878376 0.319044 0.422741 -0.430988 0.522887 0.351960 0.102916 0.683070 2.247889 0.621957 0.070803 0.228871 2.780325 4.767336 1.450453 -0.088392 0.116382 0.114044 0.066251 0.668683 0.133418 0.075116 0.039034 0.780377 0.488538 1.586897 0.143427 1.211385 -1.303487 0.178064 0.192016 0.065259 0.315140 0.406966 0.144065 0.135536 0.273070 0.087171 0.298010 0.087701 0.165232 0.104423 -7.472990 0.579607 3.004054 0.854304 5.789930 0.930019 0.709540 2.018826 0.527351 0.051443 0.070322 0.432286 0.281917 0.286341 0.473611 -2.276542 0.392852 1.332166 0.193248 2.577504 0.541748 0.690939 0.052900 0.272814 0.634227 0.224553 0.795413 1.360016 0.120449 0.745729 6.088861 -0.048841 0.673695 0.076107 0.073261 0.377566 0.284556 0.284138 0.130136 0.649073 0.047797 0.324911 0.148403 0.390301 2.189403 0.122493 0.131225 0.080727 -0.073190 0.425791 0.503951 0.250485 0.577049 0.306036 0.198368 0.024991 3.987606 0.083215 0.127898 0.372637 0.179514 7.784255 0.089874 0.175724 0.117177 2.629196 -1.351002 0.175990 0.120675 0.105544 1.491339 0.203270 0.463186 0.055506 0.065132 6.411609 1.020423 0.337618 1.047308 0.272790 0.407545 0.079844 1.634833 0.077263 0.083195 - -0.122413 0.017757 0.020209 0.012086 0.018894 0.014525 0.009897 0.045663 0.020120 0.124002 0.168915 0.011684 0.037631 0.063612 0.023347 0.039268 0.046707 0.015603 0.050968 0.136701; - - -model M2_UL2 = -0.557363 -0.539068 0.465628 -0.696831 0.032997 3.879799 -1.480953 4.566841 1.777582 0.310752 -1.402193 1.920868 1.276554 0.327085 0.972350 -1.335667 0.096752 0.255510 2.685052 0.088385 2.281328 -1.056193 0.423348 2.171283 0.933450 1.398738 0.369406 0.334900 -0.729300 2.712485 5.461073 0.679965 5.202985 4.012284 0.282038 0.585359 -0.267035 0.493033 0.523699 0.023230 2.563394 0.459103 0.176281 0.010013 0.551901 -0.700687 0.932999 0.206875 0.025161 3.939537 1.918986 0.154733 0.085684 1.446302 8.189198 -0.736759 3.603558 1.676442 0.070721 0.292188 2.403019 0.611829 0.307607 0.675279 0.627044 0.410941 -1.505101 0.819561 0.736222 0.089302 4.462071 2.539203 0.250970 0.204790 0.654198 11.105816 15.171688 1.258549 -0.541573 0.185468 0.343735 0.042217 5.958046 0.156533 0.064557 0.188906 3.891682 3.152154 5.098336 0.088022 4.518197 -1.155460 0.142408 0.044854 0.175385 0.123605 0.316005 0.157783 0.157894 0.347393 0.047328 0.344717 0.153954 0.054635 0.108793 -3.823040 0.733964 4.846938 0.890611 7.416660 0.987912 0.343107 2.296896 1.193558 0.368432 0.667347 0.535051 0.754875 1.469714 1.242760 -1.897039 0.590040 2.371940 0.347041 1.619173 1.025240 0.479587 0.210934 0.728868 5.106169 0.726618 1.152768 3.985684 0.433442 0.358997 9.007029 -0.296375 0.833840 0.091310 0.080326 5.217767 0.363445 0.078944 0.378088 1.571919 0.351013 2.139511 0.098671 2.796573 6.102504 0.023698 0.665667 0.292919 -0.297444 0.206563 0.871576 0.173621 11.803422 0.181973 0.110832 0.073892 12.757344 1.161331 1.646025 0.101481 1.732368 29.335598 0.037045 0.706902 0.346859 5.666524 -2.765737 0.415803 0.194725 0.093474 5.264577 0.734884 0.683342 0.156374 0.517626 26.038986 3.741256 0.457775 5.253478 1.999427 0.297563 0.344932 4.012753 0.385172 0.870088 - -0.087622 0.083588 0.048847 0.098882 0.002815 0.062809 0.143166 0.055391 0.023310 0.015495 0.032465 0.102135 0.009511 0.008409 0.069323 0.057733 0.051876 0.003945 0.014462 0.028216; - -model UL2 = MIX{M1_UL2:0.581348617,M2_UL2:1.465482789}; - - -[ --------------------------------------------------------- - UL3 mixture model of Le, Lartillot & Gascuel (2008) - --------------------------------------------------------- ] - -model Q1_UL3 = -0.514865 -0.774348 0.583403 -0.854291 0.046141 2.011233 -1.019817 5.652322 2.260587 0.057603 -1.095968 1.696154 1.296536 0.417322 0.967032 -1.054599 0.084924 0.368384 3.592374 0.063073 1.885301 -3.510012 0.797055 1.759631 1.421695 2.627911 0.743770 0.772359 -0.694799 2.596186 4.214186 0.654590 6.673533 3.664595 0.294967 0.608220 -0.344837 0.543739 0.965435 0.062495 2.500862 0.452448 0.155720 0.083334 0.905291 -0.593987 0.857922 0.351903 0.045358 3.290242 1.421539 0.109100 0.230693 1.595696 5.042430 -0.708843 2.012940 1.662582 0.106190 0.329149 2.268825 0.579185 0.365374 0.696286 0.701896 0.398546 -0.990080 0.754111 0.910436 0.143464 3.570847 1.708803 0.181804 0.706982 0.789517 8.138995 13.390024 1.137779 -0.085639 0.012721 0.098898 0.018361 2.148695 0.012425 0.009316 0.135782 0.921964 1.006572 2.479349 0.014715 1.418875 -0.655013 0.150052 0.120388 0.698261 0.254951 0.353826 0.250818 0.715043 0.329691 0.170251 0.827093 0.187804 0.178490 0.048299 -2.863328 0.657706 3.761619 0.619692 9.817007 0.810603 0.344050 6.758412 0.997214 0.414623 0.625678 0.555290 0.647617 0.392859 0.929152 -1.373936 0.392433 2.711122 0.237865 2.460302 0.701472 0.319136 0.607889 0.728133 3.705396 0.412346 0.953939 2.446017 0.054119 0.279699 9.934970 -0.247598 0.514750 0.144529 0.157484 5.383077 0.199950 0.045688 0.790171 1.116595 0.243053 1.738186 0.070214 3.427855 3.275850 0.007577 0.583988 0.205721 -0.090644 0.046952 0.326197 0.089450 7.475195 0.018555 0.020706 0.016617 3.728614 0.404819 0.617948 0.029889 0.956437 47.933104 0.050416 0.181180 0.070113 5.242459 -2.093798 0.323334 0.307076 0.101486 8.553531 0.473023 0.410909 0.459941 0.568017 13.906640 1.778101 0.426825 2.763369 0.570421 0.311278 0.389524 2.915452 0.252168 0.268516 - -0.104307 0.092553 0.043722 0.085643 0.003218 0.074342 0.163928 0.024243 0.022216 0.016012 0.038591 0.105577 0.011434 0.016126 0.018057 0.061232 0.061373 0.004086 0.020876 0.032465; - -model Q2_UL3 = -1.709484 -0.184309 0.860448 -0.660851 0.182073 4.471383 -4.554487 2.843438 1.801073 1.068728 -3.425703 6.092362 2.868388 0.790473 0.794773 -4.278840 0.359055 0.585031 4.176143 0.121031 6.860012 -0.625715 1.054231 1.222442 0.492366 1.418419 0.796035 0.643251 -1.089116 6.396197 8.965630 1.915247 2.033352 11.058341 0.768162 0.523196 -0.024545 0.023433 0.014686 0.002204 0.628823 0.008720 0.008363 0.002485 0.046726 -0.150945 0.140520 0.002514 0.000212 1.903535 0.384413 0.015127 0.010251 0.210723 5.066207 -1.751314 12.981698 3.641808 0.278298 0.036599 7.677610 2.744099 0.612733 1.686490 0.042380 0.023858 -0.475876 0.364580 0.063143 0.001486 3.890832 0.754732 0.041044 0.024222 0.236955 5.752463 12.019762 0.229898 -0.142125 0.051255 0.006503 0.000593 5.397699 0.064190 0.006871 0.015588 0.424840 1.005341 5.458275 0.021422 1.779060 -5.433246 1.051312 0.012611 0.027267 0.635181 1.765792 0.849429 0.023324 0.610884 0.000184 0.037705 0.604166 0.001415 0.003197 -6.267113 1.750009 5.986041 1.411952 5.482009 1.923966 0.595886 0.943724 1.786620 0.043381 0.066093 0.813893 0.053557 0.199095 1.723045 -6.389458 1.828974 2.044599 1.561907 2.083626 2.070125 1.210529 0.217976 1.192222 0.515450 0.199809 2.020941 1.238100 0.150760 1.727569 9.882473 -0.281689 1.180712 0.000006 0.017218 3.696424 0.146508 0.068518 0.222418 0.497727 0.199828 1.849405 0.001429 1.394852 2.473491 0.016401 0.288550 0.190290 -0.302638 0.475135 0.196905 0.067615 6.355457 0.576342 0.232832 0.059485 4.525509 0.571811 1.194578 0.006674 0.467694 8.107893 0.024556 0.394389 0.441794 4.067825 -11.333027 0.298555 0.053673 0.009846 5.743238 0.296166 0.413471 0.120393 0.105418 9.130937 2.674960 0.165290 4.417978 1.811161 0.492985 0.042803 3.284174 0.844277 2.327679 - -0.044015 0.021591 0.056258 0.102405 0.003260 0.018409 0.041364 0.168549 0.015843 0.064277 0.118096 0.036061 0.027358 0.036695 0.124914 0.047807 0.022696 0.005866 0.018644 0.025892; - - -model Q3_UL3 = -0.063622 -0.118948 0.528684 -0.065502 0.142677 12.092355 -2.010382 0.302352 1.127688 0.014546 -0.169022 2.026184 1.256016 0.417582 0.170493 -0.172876 0.453837 0.454428 1.882165 0.045799 4.705997 -5.254550 0.174422 0.364886 0.192790 0.891120 0.148450 0.195211 -0.090586 1.258840 5.523808 0.313487 0.211550 4.734918 0.466811 0.096529 -0.034911 0.065167 0.222440 0.023060 0.132230 0.122571 0.075521 0.003942 0.065261 -0.146425 0.219004 0.136129 0.028165 0.448432 0.795591 0.146014 0.016718 0.240024 2.387089 -0.041117 11.082325 0.783756 0.049843 0.039616 1.828161 0.649991 0.069199 0.271006 0.094864 0.140698 -0.599734 0.230551 0.595641 0.059404 0.699534 2.765355 0.391569 0.089210 0.206188 3.020110 2.806927 0.516762 -0.148889 0.145244 0.408811 0.089283 0.724422 0.260910 0.101509 0.101882 1.508086 0.693424 0.709933 0.061880 1.887041 -0.378131 0.225548 0.181924 0.038283 0.146379 0.511097 0.151769 0.166424 0.386101 0.186116 0.753595 0.182723 0.420131 0.341199 -8.340091 0.495564 3.010756 0.463573 5.601734 0.985082 0.415256 2.532014 0.720035 0.067860 0.121784 0.279698 0.626080 0.788724 0.890779 -1.932342 0.358779 1.069003 0.093122 2.028674 0.637861 0.597230 0.019551 0.211054 0.870341 0.381670 0.461083 2.131453 0.255120 0.604567 3.450887 -0.031419 0.378744 0.085588 0.008303 0.277628 0.277906 0.122038 0.055246 0.420382 0.021973 0.127345 0.027776 0.139098 3.077241 0.163299 0.177114 0.062650 -0.106283 0.366786 1.453278 0.404793 0.753053 0.475024 0.273992 0.055936 7.367304 0.094629 0.126746 0.148716 0.369726 5.251757 0.232549 0.676796 0.247828 2.910495 -1.104848 0.069287 0.110149 0.084224 1.280832 0.175361 0.342585 0.047507 0.038768 8.415916 1.577573 0.054532 1.537983 0.409619 0.309028 0.094413 1.483411 0.060147 0.076595 - -0.134055 0.044392 0.020730 0.020801 0.021008 0.024509 0.028587 0.029069 0.028138 0.105826 0.117458 0.049732 0.026120 0.038984 0.016306 0.038369 0.055334 0.017276 0.039905 0.143398; - -model UL3 = MIX{Q1_UL3:0.484340397,Q2_UL3:0.492780514,Q3_UL3:1.15597274}; - - -[ --------------------------------------------------------- - EX_EHO mixture model of Le & Gascuel (2010) - --------------------------------------------------------- ] - - -model BUR_EXT = -0.228492 -0.165543 0.916344 -0.238509 0.258514 8.498064 -3.374029 1.037434 1.667702 0.332072 -0.344742 4.971495 2.471912 0.654950 0.130301 -0.417921 1.039226 0.875808 13.073209 0.040759 9.834742 -4.248714 0.411876 0.585570 0.748848 0.908311 0.221633 0.593504 -0.182762 3.872065 6.999812 1.719470 0.493863 8.695395 0.749303 0.137367 -0.011705 0.090751 0.149898 0.021996 0.077693 0.043664 0.013820 0.001527 0.073342 -0.133793 0.286232 0.065118 0.015540 0.456304 0.546974 0.052641 0.024196 0.226460 2.160734 -0.249141 17.756919 3.385483 0.343780 0.093875 6.677050 2.745017 0.295602 1.481997 0.100576 0.167406 -0.641194 0.342577 0.427146 0.059345 0.867233 2.306480 0.218260 0.058613 0.358032 2.187901 5.151337 0.750049 -0.118366 0.068606 0.102572 0.009357 0.633943 0.033356 0.012944 0.024474 0.497973 0.534407 1.581972 0.063281 1.329239 -1.561052 0.483968 0.385170 0.261437 0.310131 0.913924 0.355871 0.175520 0.512823 0.019789 0.295416 0.348527 0.104569 0.059641 -5.891807 1.320618 5.737159 1.074011 4.702782 1.389531 0.878480 2.178078 1.111068 0.033343 0.094349 1.035903 0.327901 0.292022 1.344678 -2.059884 0.976165 2.166428 0.369522 1.951862 0.815145 0.575774 0.060834 0.558388 0.422299 0.153549 1.793263 1.268126 0.085468 0.780914 9.031309 -0.081683 0.814216 0.057557 0.055146 0.450959 0.191881 0.109420 0.144367 0.651978 0.068649 0.345622 0.169527 0.387902 1.883741 0.023466 0.309129 0.111568 -0.052650 0.248907 0.570101 0.180267 0.701260 0.253975 0.061388 0.025465 4.206114 0.083799 0.147600 0.226848 0.254720 6.549427 0.027521 0.283138 0.141408 2.561108 -1.355342 0.137437 0.104597 0.051387 1.203830 0.218892 0.194527 0.031054 0.088935 4.577473 1.003647 0.153722 0.883283 0.242657 0.191295 0.068785 0.990922 0.056276 0.078264 - -0.087158 0.015906 0.012970 0.012566 0.020325 0.013301 0.013777 0.039603 0.014597 0.161107 0.147775 0.011033 0.031334 0.064281 0.013322 0.035417 0.048583 0.012672 0.045210 0.199064; - - -model BUR_HEL = -0.317211 -0.209784 1.120865 -0.315205 0.301050 7.439896 -2.214446 0.884449 1.356293 0.110768 -0.465495 4.319791 2.843187 1.082540 0.215988 -0.668735 0.901135 0.986572 11.245156 0.009874 7.561773 -3.614157 0.568883 0.972660 1.036117 0.894733 0.409083 0.780808 -0.249929 3.138701 7.344935 1.747672 0.379845 9.559763 0.842239 0.146008 -0.059633 0.103290 0.206475 0.017492 0.286194 0.123433 0.037593 0.010910 0.071273 -0.096230 0.285199 0.113728 0.015874 0.439724 0.547078 0.063675 0.021607 0.303531 2.097349 -0.380075 15.783354 2.780107 0.569108 0.093004 6.179905 3.209588 0.413960 1.002075 0.185911 0.185249 -0.371379 0.411553 0.398602 0.076761 0.727245 1.665645 0.249045 0.068128 0.256194 2.940308 3.649539 0.972247 -0.075616 0.043519 0.096446 0.041118 0.636688 0.102460 0.039991 0.041269 0.839126 0.376556 1.551814 0.064774 1.173962 -1.100574 0.385197 0.319458 0.353000 0.112549 0.805706 0.369483 0.482895 0.520098 0.058167 0.144341 0.361488 0.074069 0.057968 -6.832958 0.955160 5.296628 1.265211 6.144756 1.315182 0.902504 3.903795 0.862633 0.072343 0.080478 0.979654 0.330305 0.328917 1.924898 -2.223205 0.445571 2.461831 0.299635 2.943208 0.830637 0.621903 0.184055 0.468356 0.911139 0.208091 1.343261 1.515339 0.158763 0.915879 9.298787 -0.062541 0.806724 0.110928 0.132125 0.414525 0.388313 0.191952 0.271274 0.909529 0.025790 0.343842 0.099137 0.543577 2.467147 0.044938 0.215329 0.087955 -0.082948 0.329591 0.693402 0.286594 0.866329 0.259566 0.167425 0.049038 6.332054 0.093136 0.177755 0.275998 0.261754 8.344684 0.088981 0.335859 0.137177 3.125017 -1.390479 0.142986 0.175068 0.106294 1.687293 0.159520 0.297915 0.080925 0.085103 6.414688 0.953785 0.240157 1.097345 0.264988 0.373870 0.144230 2.572837 0.089110 0.115941 - -0.158060 0.021566 0.016487 0.014079 0.016937 0.020232 0.023096 0.032822 0.014618 0.114447 0.198900 0.014668 0.042840 0.053434 0.015640 0.037275 0.043095 0.012211 0.036330 0.113263; - -model BUR_OTH = -0.406682 -0.246649 0.848592 -0.364260 0.198690 4.535840 -3.292044 0.837291 1.295138 0.420726 -0.735862 4.205085 2.062501 0.427451 0.259335 -0.954795 0.673046 0.671062 8.395674 0.048284 8.922739 -1.958847 0.573207 0.632317 0.572264 0.486274 0.345345 0.650009 -0.312042 2.699661 4.969855 1.181781 0.551188 7.620453 0.701108 0.195346 -0.071000 0.127041 0.184028 0.030240 0.180591 0.065984 0.039235 0.005033 0.098525 -0.142298 0.338853 0.086876 0.026095 0.484427 0.867777 0.087780 0.017129 0.309774 3.477136 -0.624622 18.390649 2.748646 0.442886 0.238266 6.993941 3.906971 0.652336 1.365814 0.219252 0.288480 -0.610604 0.581287 0.382156 0.048508 0.963147 2.672887 0.384585 0.051334 0.386066 3.752286 6.858529 1.524446 -0.124670 0.047666 0.102656 0.031532 0.699124 0.129867 0.004923 0.039185 0.701690 0.643782 2.019473 0.104308 1.568249 -1.126387 0.321347 0.107738 0.137858 0.150346 0.601413 0.310374 0.073794 0.332910 0.056230 0.208204 0.368816 0.078902 0.062410 -5.908551 0.834735 3.611589 0.969189 4.765870 0.881934 0.528944 1.439305 0.746876 0.060111 0.114374 0.784754 0.235963 0.219009 0.710100 -1.856381 0.574277 1.573584 0.223054 2.038789 0.763848 0.461329 0.076195 0.396095 0.701247 0.249302 1.091322 1.282643 0.070553 0.419070 6.616977 -0.069294 0.654056 0.127255 0.078896 0.517561 0.188732 0.125541 0.104279 0.547504 0.066927 0.454998 0.056498 0.425274 2.668838 0.050943 0.151483 0.062698 -0.128158 0.354167 0.640140 0.182565 0.793990 0.368725 0.157796 0.037084 4.307140 0.140691 0.241076 0.323966 0.293629 9.711414 0.060323 0.207489 0.111492 2.857446 -1.982761 0.158227 0.115545 0.051117 2.065903 0.338262 0.258245 0.045770 0.089942 10.113118 1.382024 0.431385 1.456614 0.295718 0.273919 0.066465 1.668063 0.113899 0.144981 - -0.102123 0.021199 0.032404 0.032350 0.018985 0.017469 0.017625 0.089270 0.021090 0.083642 0.123866 0.012720 0.029789 0.055399 0.072705 0.061298 0.061705 0.013496 0.039682 0.093184; - -model EXP_EXT= -0.464716 -0.597009 0.420578 -1.010693 0.048553 5.944290 -3.915828 2.088244 0.878468 0.236108 -1.156023 1.882317 1.435926 0.338823 0.482742 -1.131098 0.127150 0.346338 3.317186 0.061060 2.724696 -4.638659 0.351041 1.379174 1.216518 1.396050 0.199361 0.353970 -0.657615 2.215990 4.150252 0.717363 1.853969 3.768864 0.347165 0.313421 -0.078558 0.127092 0.347281 0.032361 0.605448 0.171553 0.104678 0.010608 0.309418 -0.516672 0.510585 0.105529 0.039188 1.808273 1.017577 0.112010 0.044661 0.772131 5.693102 -0.519389 3.571104 1.844049 0.109305 0.103105 2.232749 0.653339 0.195325 0.547017 0.219311 0.253086 -1.658261 0.640712 0.558751 0.063591 1.694880 2.088441 0.194697 0.291701 0.321392 6.220456 12.392618 0.862547 -0.426071 0.064894 0.132019 0.034872 2.076573 0.085745 0.026972 0.099963 1.388250 1.765294 3.859637 0.032198 3.134107 -3.082729 0.250470 0.232578 0.376163 0.290522 0.502379 0.240501 0.302007 0.283950 0.013574 0.606936 0.248475 0.226716 0.058246 -7.012884 0.866957 5.008997 0.814153 4.758346 1.192080 0.595351 2.514269 0.993487 0.135167 0.349525 0.542021 0.512591 0.744682 1.258172 -2.037755 0.446367 1.618299 0.203392 1.177421 0.840646 0.583757 0.071515 0.466886 1.503883 0.260405 0.934230 2.245607 0.123552 0.258896 4.504833 -0.171334 0.385971 0.087717 0.019596 1.015512 0.127027 0.037725 0.217844 0.822780 0.095756 0.777332 0.039952 0.977419 3.217291 0.015240 0.301259 0.102153 -0.194998 0.091803 0.433021 0.086495 3.074882 0.111578 0.041481 0.048438 4.904785 0.336528 0.411742 0.087476 0.640594 14.126821 0.061656 0.338111 0.129249 2.902137 -2.811391 0.216605 0.127240 0.061503 2.320268 0.390874 0.450783 0.132513 0.234279 12.181354 2.539512 0.233848 3.363159 0.717467 0.138035 0.159602 1.615372 0.132268 0.186175 - -0.043140 0.090761 0.034408 0.052848 0.006370 0.053817 0.107749 0.024812 0.029498 0.049134 0.050167 0.098127 0.013722 0.025841 0.037395 0.056505 0.094326 0.012045 0.039238 0.080099; - -model EXP_HEL = -0.434227 -0.551823 0.569806 -0.698268 0.056291 3.064314 -2.026002 2.379205 1.077282 0.016649 -0.986617 1.606282 1.331570 0.426399 0.409724 -1.005936 0.120122 0.390888 2.999742 0.021217 1.881156 -3.221202 0.736168 2.269617 1.272893 1.771711 0.622430 0.656603 -0.515574 2.032567 5.484997 0.666491 2.985549 3.380526 0.265244 0.557878 -0.200810 0.241566 0.441585 0.009830 1.541200 0.198621 0.069562 0.043838 0.339616 -0.328669 0.583849 0.178015 0.022077 2.045404 1.046125 0.089148 0.104708 0.875298 8.628242 -0.598864 3.090263 1.682415 0.113637 0.207957 2.085253 0.582536 0.376534 0.554395 0.371883 0.290692 -0.799278 0.528354 0.704087 0.062290 2.303849 1.507620 0.173293 0.356580 0.492228 10.028453 12.162732 0.867109 -0.256227 0.083117 0.192262 0.030759 4.328951 0.078062 0.022890 0.181917 2.406824 2.014776 4.856941 0.041675 3.521229 -1.118844 0.147481 0.061969 0.323498 0.171678 0.387521 0.237715 0.641036 0.433529 0.069102 0.359935 0.164055 0.063832 0.126592 -5.069051 0.749554 5.245486 0.840686 7.114530 1.177802 0.382956 6.139836 1.086779 0.194824 0.424579 0.655759 0.682174 0.753148 1.355810 -2.949741 0.623328 3.248881 0.406219 3.345739 1.214278 0.538553 0.867954 0.747654 3.316346 0.754081 1.193593 3.516479 0.366653 0.622665 7.975653 -0.115446 0.394156 0.090971 0.055309 1.947845 0.185912 0.046886 0.451084 1.173014 0.277029 1.078778 0.054622 1.516237 5.813526 0.071865 0.359167 0.106921 -0.205680 0.197878 0.678775 0.118188 4.183184 0.139485 0.059999 0.051336 10.200670 0.507328 0.721921 0.086974 0.741023 24.191458 0.046460 0.489820 0.247367 4.904042 -2.494211 0.280293 0.235248 0.083648 5.509932 0.429196 0.409105 0.447130 0.351675 23.404006 3.840750 0.300727 4.126659 1.483049 0.675560 0.336101 4.426709 0.309940 0.588217 - -0.115826 0.094038 0.037357 0.085821 0.003363 0.073078 0.167709 0.025416 0.021634 0.024147 0.050238 0.106612 0.013318 0.013330 0.029895 0.044902 0.037901 0.006460 0.018548 0.030407; - -model EXP_OTH = -0.603175 -0.478745 0.562615 -0.608325 0.056553 3.755571 -2.371839 2.480665 0.889513 0.170707 -1.551117 2.685995 1.462350 0.424139 0.669728 -1.624084 0.129505 0.314826 3.404205 0.049823 3.375473 -0.987777 0.356744 1.294077 0.640234 0.583980 0.331879 0.304731 -0.667236 2.788429 4.719171 0.731257 1.872668 4.612209 0.316233 0.320454 -0.186911 0.269245 0.318538 0.028464 0.987958 0.242926 0.090427 0.007312 0.327205 -0.527992 0.844027 0.167295 0.021423 1.623589 1.636879 0.135662 0.044560 0.939347 10.338048 -0.842575 5.076266 1.736167 0.106076 0.132985 3.365869 0.969736 0.270931 0.669196 0.356829 0.352830 -1.296147 0.863599 0.469732 0.075018 1.832599 2.642602 0.217378 0.107935 0.624941 10.670411 17.593544 1.247987 -0.325034 0.135328 0.192352 0.021631 2.731423 0.103263 0.027708 0.060740 2.148472 2.344767 5.497995 0.057563 3.278627 -1.670091 0.235642 0.042844 0.164518 0.112539 0.479958 0.326780 0.057540 0.291899 0.110067 0.380466 0.240061 0.109541 0.083760 -5.098150 0.831455 3.661924 0.978777 4.500240 1.064732 0.455496 1.095629 0.915898 0.226713 0.405000 0.608323 0.525496 0.593321 1.035726 -2.174502 0.630453 1.791747 0.396219 1.681712 1.083797 0.556968 0.100584 0.457070 2.361119 0.543612 1.211816 2.987220 0.198957 0.368383 7.505908 -0.203719 0.615713 0.044203 0.046952 1.745090 0.303876 0.050920 0.155176 0.920001 0.165182 1.385828 0.055323 1.274920 5.896599 0.059081 0.303111 0.156402 -0.271220 0.253084 0.643377 0.142691 3.763228 0.209729 0.093004 0.035856 8.167503 0.490579 0.894778 0.077103 1.029700 26.210400 0.045876 0.373529 0.218567 5.726440 -3.470639 0.410713 0.180011 0.081584 4.323431 0.751254 0.686467 0.086874 0.318032 29.800262 3.856040 0.482930 4.862267 1.182403 0.390522 0.268937 2.836818 0.229423 0.453335 - -0.071716 0.058979 0.060316 0.101089 0.005039 0.044673 0.093349 0.105394 0.026228 0.020220 0.037831 0.081647 0.010677 0.015875 0.090566 0.065046 0.054453 0.005546 0.019924 0.031432; - - -model EX_EHO = MIX{BUR_EXT:0.761816796788931,BUR_HEL:0.744425646802117,BUR_OTH:0.532457759429489,EXP_EXT:1.5639387472863,EXP_HEL:2.06403411829438,EXP_OTH:1.43336795177594}; - - -[ --------------------------------------------------------- - LG4M mixture model of Le, Dang & Gascuel (2012) - --------------------------------------------------------- ] - -model LG4M1 = - 0.269343 - 0.254612 0.150988 - 0.236821 0.031863 0.659648 - 2.506547 0.938594 0.975736 0.175533 - 0.359080 0.348288 0.697708 0.086573 0.095967 - 0.304674 0.156000 0.377704 0.449140 0.064706 4.342595 - 1.692015 0.286638 0.565095 0.380358 0.617945 0.202058 0.264342 - 0.251974 0.921633 1.267609 0.309692 0.390429 2.344059 0.217750 0.104842 - 1.085220 0.325624 0.818658 0.037814 1.144150 0.534567 0.222793 0.062682 0.567431 - 0.676353 0.602366 0.217027 0.007533 1.595775 0.671143 0.158424 0.070463 0.764255 8.226528 - 0.179155 0.971338 1.343718 0.133744 0.122468 0.983857 0.994128 0.220916 0.410581 0.387487 0.181110 - 1.636817 0.515217 0.670461 0.071252 1.534848 5.288642 0.255628 0.094198 0.257229 25.667158 6.819689 1.591212 - 0.235498 0.123932 0.099793 0.030425 0.897279 0.112229 0.022529 0.047488 0.762914 1.344259 0.865691 0.038921 2.030833 - 1.265605 0.040163 0.173354 0.027579 0.259961 0.580374 0.088041 0.145595 0.143676 0.298859 1.020117 0.000714 0.190019 0.093964 - 5.368405 0.470952 5.267140 0.780505 4.986071 0.890554 0.377949 1.755515 0.786352 0.527246 0.667783 0.659948 0.731921 0.837669 1.355630 - 1.539394 0.326789 1.688169 0.283738 1.389282 0.329821 0.231770 0.117017 0.449977 3.531600 0.721586 0.497588 2.691697 0.152088 0.698040 16.321298 - 0.140944 0.375611 0.025163 0.002757 0.801456 0.257253 0.103678 0.132995 0.345834 0.377156 0.839647 0.176970 0.505682 1.670170 0.091298 0.210096 0.013165 - 0.199836 0.146857 0.806275 0.234246 1.436970 0.319669 0.010076 0.036859 3.503317 0.598632 0.738969 0.154436 0.579000 4.245524 0.074524 0.454195 0.232913 1.178490 - 9.435529 0.285934 0.395670 0.130890 6.097263 0.516259 0.503665 0.222960 0.149143 13.666175 2.988174 0.162725 5.973826 0.843416 0.597394 0.701149 4.680002 0.300085 0.416262 - -0.082276 0.055172 0.043853 0.053484 0.018957 0.028152 0.046679 0.157817 0.033297 0.028284 0.054284 0.025275 0.023665 0.041874 0.063071 0.066501 0.065424 0.023837 0.038633 0.049465; - -model LG4M2 = -0.133720 - 0.337212 0.749052 - 0.110918 0.105087 4.773487 - 3.993460 0.188305 1.590332 0.304942 - 0.412075 2.585774 1.906884 0.438367 0.242076 - 0.435295 0.198278 0.296366 7.470333 0.008443 3.295515 - 7.837540 0.164607 0.431724 0.153850 1.799716 0.269744 0.242866 - 0.203872 2.130334 9.374479 1.080878 0.152458 12.299133 0.279589 0.089714 - 0.039718 0.024553 0.135254 0.014979 0.147498 0.033964 0.005585 0.007248 0.022746 - 0.075784 0.080091 0.084971 0.014128 0.308347 0.500836 0.022833 0.022999 0.161270 1.511682 - 0.177662 10.373708 1.036721 0.038303 0.043030 2.181033 0.321165 0.103050 0.459502 0.021215 0.078395 - 0.420784 0.192765 0.329545 0.008331 0.883142 1.403324 0.168673 0.160728 0.612573 1.520889 7.763266 0.307903 - 0.071268 0.019652 0.088753 0.013547 0.566609 0.071878 0.020050 0.041022 0.625361 0.382806 1.763059 0.044644 1.551911 - 0.959127 1.496585 0.377794 0.332010 0.318192 1.386970 0.915904 0.224255 2.611479 0.029351 0.068250 1.542356 0.047525 0.182715 - 11.721512 0.359408 2.399158 0.219464 9.104192 0.767563 0.235229 3.621219 0.971955 0.033780 0.043035 0.236929 0.319964 0.124977 0.840651 - 2.847068 0.218463 1.855386 0.109808 4.347048 0.765848 0.164569 0.312024 0.231569 0.356327 0.159597 0.403210 1.135162 0.106903 0.269190 9.816481 - 0.030203 0.387292 0.118878 0.067287 0.190240 0.122113 0.007023 0.137411 0.585141 0.020634 0.228824 0.000122 0.474862 3.135128 0.030313 0.093830 0.119152 - 0.067183 0.130101 0.348730 0.061798 0.301198 0.095382 0.095764 0.044628 2.107384 0.046105 0.100117 0.017073 0.192383 8.367641 0.000937 0.137416 0.044722 4.179782 - 0.679398 0.041567 0.092408 0.023701 1.271187 0.115566 0.055277 0.086988 0.060779 8.235167 0.609420 0.061764 0.581962 0.184187 0.080246 0.098033 1.438350 0.023439 0.039124 - -0.120900 0.036460 0.026510 0.040410 0.015980 0.021132 0.025191 0.036369 0.015884 0.111029 0.162852 0.024820 0.028023 0.074058 0.012065 0.041963 0.039072 0.012666 0.040478 0.114137; - -model LG4M3 = -0.421017 - 0.316236 0.693340 - 0.285984 0.059926 6.158219 - 4.034031 1.357707 0.708088 0.063669 - 0.886972 2.791622 1.701830 0.484347 0.414286 - 0.760525 0.233051 0.378723 4.032667 0.081977 4.940411 - 0.754103 0.402894 2.227443 1.102689 0.416576 0.459376 0.508409 - 0.571422 2.319453 5.579973 0.885376 1.439275 4.101979 0.576745 0.428799 - 0.162152 0.085229 0.095692 0.006129 0.490937 0.104843 0.045514 0.004705 0.098934 - 0.308006 0.287051 0.056994 0.007102 0.958988 0.578990 0.067119 0.024403 0.342983 3.805528 - 0.390161 7.663209 1.663641 0.105129 0.135029 3.364474 0.652618 0.457702 0.823674 0.129858 0.145630 - 1.042298 0.364551 0.293222 0.037983 1.486520 1.681752 0.192414 0.070498 0.222626 4.529623 4.781730 0.665308 - 0.362476 0.073439 0.129245 0.020078 1.992483 0.114549 0.023272 0.064490 1.491794 1.113437 2.132006 0.041677 1.928654 - 1.755491 0.087050 0.099325 0.163817 0.242851 0.322939 0.062943 0.198698 0.192904 0.062948 0.180283 0.059655 0.129323 0.065778 - 3.975060 0.893398 5.496314 1.397313 3.575120 1.385297 0.576191 1.733288 1.021255 0.065131 0.129115 0.600308 0.387276 0.446001 1.298493 - 2.565079 0.534056 2.143993 0.411388 2.279084 0.893006 0.528209 0.135731 0.518741 0.972662 0.280700 0.890086 1.828755 0.189028 0.563778 7.788147 - 0.283631 0.497926 0.075454 0.043794 1.335322 0.308605 0.140137 0.150797 1.409726 0.119868 0.818331 0.080591 1.066017 3.754687 0.073415 0.435046 0.197272 - 0.242513 0.199157 0.472207 0.085937 2.039787 0.262751 0.084578 0.032247 7.762326 0.153966 0.299828 0.117255 0.438215 14.506235 0.089180 0.352766 0.215417 5.054245 - 2.795818 0.107130 0.060909 0.029724 2.986426 0.197267 0.196977 0.044327 0.116751 7.144311 1.848622 0.118020 1.999696 0.705747 0.272763 0.096935 1.820982 0.217007 0.172975 - -0.072639 0.051691 0.038642 0.055580 0.009829 0.031374 0.048731 0.065283 0.023791 0.086640 0.120847 0.052177 0.026728 0.032589 0.039238 0.046748 0.053361 0.008024 0.037426 0.098662; - -model LG4M4 = -0.576160 - 0.567606 0.498643 - 0.824359 0.050698 3.301401 - 0.822724 4.529235 1.291808 0.101930 - 1.254238 2.169809 1.427980 0.449474 0.868679 - 1.218615 0.154502 0.411471 3.172277 0.050239 2.138661 - 1.803443 0.604673 2.125496 1.276384 1.598679 0.502653 0.479490 - 0.516862 2.874265 4.845769 0.719673 3.825677 4.040275 0.292773 0.596643 - 0.180898 0.444586 0.550969 0.023542 2.349573 0.370160 0.142187 0.016618 0.500788 - 0.452099 0.866322 0.201033 0.026731 2.813990 1.645178 0.135556 0.072152 1.168817 5.696116 - 0.664186 2.902886 2.101971 0.127988 0.200218 2.505933 0.759509 0.333569 0.623100 0.547454 0.363656 - 0.864415 0.835049 0.632649 0.079201 2.105931 1.633544 0.216462 0.252419 0.665406 7.994105 11.751178 1.096842 - 0.324478 0.208947 0.280339 0.041683 4.788477 0.107022 0.067711 0.171320 3.324779 2.965328 5.133843 0.084856 4.042591 - 1.073043 0.173826 0.041985 0.270336 0.121299 0.351384 0.228565 0.225318 0.376089 0.058027 0.390354 0.214230 0.058954 0.126299 - 3.837562 0.884342 4.571911 0.942751 6.592827 1.080063 0.465397 3.137614 1.119667 0.362516 0.602355 0.716940 0.506796 1.444484 1.432558 - 2.106026 0.750016 2.323325 0.335915 1.654673 1.194017 0.617231 0.318671 0.801030 4.455842 0.580191 1.384210 3.522468 0.473128 0.432718 5.716300 - 0.163720 0.818102 0.072322 0.068275 3.305436 0.373790 0.054323 0.476587 1.100360 0.392946 1.703323 0.085720 1.725516 5.436253 0.053108 0.498594 0.231832 - 0.241167 0.302440 1.055095 0.246940 9.741942 0.249895 0.129973 0.052363 11.542498 1.047449 1.319667 0.139770 1.330225 26.562270 0.046986 0.737653 0.313460 5.165098 - 1.824586 0.435795 0.179086 0.091739 3.609570 0.649507 0.656681 0.225234 0.473437 19.897252 3.001995 0.452926 3.929598 1.692159 0.370204 0.373501 3.329822 0.326593 0.860743 - -0.104843 0.078835 0.043513 0.090498 0.002924 0.066163 0.151640 0.038843 0.022556 0.018383 0.038687 0.104462 0.010166 0.009089 0.066950 0.053667 0.049486 0.004409 0.012924 0.031963; - -model LG4M = MIX{LG4M1,LG4M2,LG4M3,LG4M4}*G4; - - -[ --------------------------------------------------------- - LG4X mixture model of Le, Dang & Gascuel (2012) - --------------------------------------------------------- ] - -model LG4X1 = -0.295719 -0.067388 0.448317 -0.253712 0.457483 2.358429 -1.029289 0.576016 0.251987 0.189008 -0.107964 1.741924 0.216561 0.599450 0.029955 -0.514644 0.736017 0.503084 109.901504 0.084794 4.117654 -10.868848 0.704334 0.435271 1.070052 1.862626 0.246260 1.202023 -0.380498 5.658311 4.873453 5.229858 0.553477 6.508329 1.634845 0.404968 -0.084223 0.123387 0.090748 0.052764 0.151733 0.054187 0.060194 0.048984 0.204296 -0.086976 0.221777 0.033310 0.021407 0.230320 0.195703 0.069359 0.069963 0.504221 1.495537 -0.188789 93.433377 0.746537 0.621146 0.096955 1.669092 2.448827 0.256662 1.991533 0.091940 0.122332 -0.286389 0.382175 0.128905 0.081091 0.352526 0.810168 0.232297 0.228519 0.655465 1.994320 3.256485 0.457430 -0.155567 0.235965 0.127321 0.205164 0.590018 0.066081 0.064822 0.241077 6.799829 0.754940 2.261319 0.163849 1.559944 -1.671061 6.535048 0.904011 5.164456 0.386853 2.437439 3.537387 4.320442 11.291065 0.170343 0.848067 5.260446 0.426508 0.438856 -2.132922 0.525521 0.939733 0.747330 1.559564 0.165666 0.435384 3.656545 0.961142 0.050315 0.064441 0.360946 0.132547 0.306683 4.586081 -0.529591 0.303537 0.435450 0.308078 0.606648 0.106333 0.290413 0.290216 0.448965 0.372166 0.102493 0.389413 0.498634 0.109129 2.099355 3.634276 -0.115551 0.641259 0.046646 0.260889 0.587531 0.093417 0.280695 0.307466 6.227274 0.206332 0.459041 0.033291 0.559069 18.392863 0.411347 0.101797 0.034710 -0.102453 0.289466 0.262076 0.185083 0.592318 0.035149 0.105999 0.096556 20.304886 0.097050 0.133091 0.115301 0.264728 66.647302 0.476350 0.148995 0.063603 20.561407 -0.916683 0.102065 0.043986 0.080708 0.885230 0.072549 0.206603 0.306067 0.205944 5.381403 0.561215 0.112593 0.693307 0.400021 0.584622 0.089177 0.755865 0.133790 0.154902 - -0.147383 0.017579 0.058208 0.017707 0.026331 0.041582 0.017494 0.027859 0.011849 0.076971 0.147823 0.019535 0.037132 0.029940 0.008059 0.088179 0.089653 0.006477 0.032308 0.097931; - -model LG4X2 = - 0.066142 - 0.590377 0.468325 - 0.069930 0.013688 2.851667 - 9.850951 0.302287 3.932151 0.146882 - 1.101363 1.353957 8.159169 0.249672 0.582670 - 0.150375 0.028386 0.219934 0.560142 0.005035 3.054085 - 0.568586 0.037750 0.421974 0.046719 0.275844 0.129551 0.037250 - 0.051668 0.262130 2.468752 0.106259 0.098208 4.210126 0.029788 0.013513 - 0.127170 0.016923 0.344765 0.003656 0.445038 0.165753 0.008541 0.002533 0.031779 - 0.292429 0.064289 0.210724 0.004200 1.217010 1.088704 0.014768 0.005848 0.064558 7.278994 - 0.071458 0.855973 1.172204 0.014189 0.033969 1.889645 0.125869 0.031390 0.065585 0.029917 0.042762 - 1.218562 0.079621 0.763553 0.009876 1.988516 3.344809 0.056702 0.021612 0.079927 7.918203 14.799537 0.259400 - 0.075144 0.011169 0.082464 0.002656 0.681161 0.111063 0.004186 0.004854 0.095591 0.450964 1.506485 0.009457 1.375871 - 7.169085 0.161937 0.726566 0.040244 0.825960 2.067758 0.110993 0.129497 0.196886 0.169797 0.637893 0.090576 0.457399 0.143327 - 30.139501 0.276530 11.149790 0.267322 18.762977 3.547017 0.201148 0.976631 0.408834 0.104288 0.123793 0.292108 0.598048 0.328689 3.478333 - 13.461692 0.161053 4.782635 0.053740 11.949233 2.466507 0.139705 0.053397 0.126088 1.578530 0.641351 0.297913 4.418398 0.125011 2.984862 13.974326 - 0.021372 0.081472 0.058046 0.006597 0.286794 0.188236 0.009201 0.019475 0.037226 0.015909 0.154810 0.017172 0.239749 0.562720 0.061299 0.154326 0.060703 - 0.045779 0.036742 0.498072 0.027639 0.534219 0.203493 0.012095 0.004964 0.452302 0.094365 0.140750 0.021976 0.168432 1.414883 0.077470 0.224675 0.123480 0.447011 - 4.270235 0.030342 0.258487 0.012745 4.336817 0.281953 0.043812 0.015539 0.016212 16.179952 3.416059 0.032578 2.950318 0.227807 1.050562 0.112000 5.294490 0.033381 0.045528 - -0.063139 0.066357 0.011586 0.066571 0.010800 0.009276 0.053984 0.146986 0.034214 0.088822 0.098196 0.032390 0.021263 0.072697 0.016761 0.020711 0.020797 0.025463 0.045615 0.094372; - -model LG4X3 = - 0.733336 - 0.558955 0.597671 - 0.503360 0.058964 5.581680 - 4.149599 2.863355 1.279881 0.225860 - 1.415369 2.872594 1.335650 0.434096 1.043232 - 1.367574 0.258365 0.397108 2.292917 0.209978 4.534772 - 1.263002 0.366868 1.840061 1.024707 0.823594 0.377181 0.496780 - 0.994098 2.578946 5.739035 0.821921 3.039380 4.877840 0.532488 0.398817 - 0.517204 0.358350 0.284730 0.027824 1.463390 0.370939 0.232460 0.008940 0.349195 - 0.775054 0.672023 0.109781 0.021443 1.983693 1.298542 0.169219 0.043707 0.838324 5.102837 - 0.763094 5.349861 1.612642 0.088850 0.397640 3.509873 0.755219 0.436013 0.888693 0.561690 0.401070 - 1.890137 0.691594 0.466979 0.060820 2.831098 2.646440 0.379926 0.087640 0.488389 7.010411 8.929538 1.357738 - 0.540460 0.063347 0.141582 0.018288 4.102068 0.087872 0.020447 0.064863 1.385133 3.054968 5.525874 0.043394 3.135353 - 0.200122 0.032875 0.019509 0.042687 0.059723 0.072299 0.023282 0.036426 0.050226 0.039318 0.067505 0.023126 0.012695 0.015631 - 4.972745 0.821562 4.670980 1.199607 5.901348 1.139018 0.503875 1.673207 0.962470 0.204155 0.273372 0.567639 0.570771 0.458799 0.233109 - 1.825593 0.580847 1.967383 0.420710 2.034980 0.864479 0.577513 0.124068 0.502294 2.653232 0.437116 1.048288 2.319555 0.151684 0.077004 8.113282 - 0.450842 0.661866 0.088064 0.037642 2.600668 0.390688 0.109318 0.218118 1.065585 0.564368 1.927515 0.120994 1.856122 4.154750 0.011074 0.377578 0.222293 - 0.526135 0.265730 0.581928 0.141233 5.413080 0.322761 0.153776 0.039217 8.351808 0.854294 0.940458 0.180650 0.975427 11.429924 0.026268 0.429221 0.273138 4.731579 - 3.839269 0.395134 0.145401 0.090101 4.193725 0.625409 0.696533 0.104335 0.377304 15.559906 2.508169 0.449074 3.404087 1.457957 0.052132 0.260296 2.903836 0.564762 0.681215 - - 0.062457 0.066826 0.049332 0.065270 0.006513 0.041231 0.058965 0.080852 0.028024 0.037024 0.075925 0.064131 0.019620 0.028710 0.104579 0.056388 0.062027 0.008241 0.033124 0.050760; - -model LG4X4 = - 0.658412 - 0.566269 0.540749 - 0.854111 0.058015 3.060574 - 0.884454 5.851132 1.279257 0.160296 - 1.309554 2.294145 1.438430 0.482619 0.992259 - 1.272639 0.182966 0.431464 2.992763 0.086318 2.130054 - 1.874713 0.684164 2.075952 1.296206 2.149634 0.571406 0.507160 - 0.552007 3.192521 4.840271 0.841829 5.103188 4.137385 0.351381 0.679853 - 0.227683 0.528161 0.644656 0.031467 3.775817 0.437589 0.189152 0.025780 0.665865 - 0.581512 1.128882 0.266076 0.048542 3.954021 2.071689 0.217780 0.082005 1.266791 8.904999 - 0.695190 3.010922 2.084975 0.132774 0.190734 2.498630 0.767361 0.326441 0.680174 0.652629 0.440178 - 0.967985 1.012866 0.720060 0.133055 1.776095 1.763546 0.278392 0.343977 0.717301 10.091413 14.013035 1.082703 - 0.344015 0.227296 0.291854 0.056045 4.495841 0.116381 0.092075 0.195877 4.001286 2.671718 5.069337 0.091278 4.643214 - 0.978992 0.156635 0.028961 0.209188 0.264277 0.296578 0.177263 0.217424 0.362942 0.086367 0.539010 0.172734 0.121821 0.161015 - 3.427163 0.878405 4.071574 0.925172 7.063879 1.033710 0.451893 3.057583 1.189259 0.359932 0.742569 0.693405 0.584083 1.531223 1.287474 - 2.333253 0.802754 2.258357 0.360522 2.221150 1.283423 0.653836 0.377558 0.964545 4.797423 0.780580 1.422571 4.216178 0.599244 0.444362 5.231362 - 0.154701 0.830884 0.073037 0.094591 3.017954 0.312579 0.074620 0.401252 1.350568 0.336801 1.331875 0.068958 1.677263 5.832025 0.076328 0.548763 0.208791 - 0.221089 0.431617 1.238426 0.313945 8.558815 0.305772 0.181992 0.072258 12.869737 1.021885 1.531589 0.163829 1.575754 33.873091 0.079916 0.831890 0.307846 5.910440 - 2.088785 0.456530 0.199728 0.118104 4.310199 0.681277 0.752277 0.241015 0.531100 23.029406 4.414850 0.481711 5.046403 1.914768 0.466823 0.382271 3.717971 0.282540 0.964421 - -0.106471 0.074171 0.044513 0.096390 0.002148 0.066733 0.158908 0.037625 0.020691 0.014608 0.028797 0.105352 0.007864 0.007477 0.083595 0.055726 0.047711 0.003975 0.010088 0.027159; - -model LG4X = MIX{LG4X1,LG4X2,LG4X3,LG4X4}*R4; - -[ --------------------------------------------------------- - +cF class frequency mixture model of Wang et al. (2008) - --------------------------------------------------------- ] - -frequency Fclass1 = 0.02549352 0.01296012 0.005545202 0.006005566 0.01002193 0.01112289 0.008811948 0.001796161 0.004312188 0.2108274 0.2730413 0.01335451 0.07862202 0.03859909 0.005058205 0.008209453 0.03210019 0.002668138 0.01379098 0.2376598; -frequency Fclass2 = 0.09596966 0.008786096 0.02805857 0.01880183 0.005026264 0.006454635 0.01582725 0.7215719 0.003379354 0.002257725 0.003013483 0.01343441 0.001511657 0.002107865 0.006751404 0.04798539 0.01141559 0.000523736 0.002188483 0.004934972; -frequency Fclass3 = 0.01726065 0.005467988 0.01092937 0.3627871 0.001046402 0.01984758 0.5149206 0.004145081 0.002563289 0.002955213 0.005286931 0.01558693 0.002693098 0.002075771 0.003006167 0.01263069 0.01082144 0.000253451 0.001144787 0.004573568; -frequency Fclass4 = 0.1263139 0.09564027 0.07050061 0.03316681 0.02095119 0.05473468 0.02790523 0.009007538 0.03441334 0.005855319 0.008061884 0.1078084 0.009019514 0.05018693 0.07948 0.09447839 0.09258897 0.01390669 0.05367769 0.01230413; -frequency CF4 = FMIX{empirical,Fclass1,Fclass2,Fclass3,Fclass4}; -model JTTCF4G = JTT+FMIX{empirical,Fclass1,Fclass2,Fclass3,Fclass4}+G; - -[ --------------------------------------------------------- - CAT-C10 profile mixture model of Le, Gascuel & Lartillot (2008) - --------------------------------------------------------- ] - -frequency C10pi1 = 0.4082573125 0.0081783015 0.0096285438 0.0069870889 0.0349388179 0.0075279735 0.0097846653 0.1221613215 0.0039151830 0.0125784287 0.0158338663 0.0059670150 0.0081313216 0.0061604332 0.0394155867 0.1682450664 0.0658132542 0.0018751587 0.0041579747 0.0604426865; -frequency C10pi2 = 0.1027763487 0.0418664491 0.0213272051 0.0155943616 0.0149663448 0.0440685478 0.0419667447 0.0138805792 0.0158864807 0.1066076641 0.1131944125 0.0436343681 0.0437800327 0.0180729309 0.0223250701 0.0529608087 0.1081741005 0.0045147205 0.0137373857 0.1606654446; -frequency C10pi3 = 0.0351766018 0.0019678632 0.0016591476 0.0006768741 0.0078706538 0.0016559557 0.0019686768 0.0022420602 0.0012878339 0.3515819591 0.1278183107 0.0018856550 0.0242631753 0.0126221329 0.0029771559 0.0049998099 0.0255378034 0.0011907778 0.0037539283 0.3888636245; -frequency C10pi4 = 0.0408513927 0.0269887074 0.2185648186 0.2333814790 0.0037602852 0.0380451418 0.0901238869 0.1158332065 0.0373197176 0.0025523644 0.0052164616 0.0485017266 0.0022571778 0.0025108218 0.0108333610 0.0804527209 0.0302879995 0.0010815260 0.0069890931 0.0044481118; -frequency C10pi5 = 0.0185492661 0.0062362395 0.0024895723 0.0009775062 0.0070416514 0.0083539447 0.0024891617 0.0028952913 0.0040103982 0.1632422345 0.4443079409 0.0043570878 0.1202815687 0.0733329781 0.0048827648 0.0051642443 0.0131806647 0.0068759784 0.0144734420 0.0968580644; -frequency C10pi6 = 0.1106750119 0.0352190043 0.0405186210 0.1636437899 0.0014834855 0.0877962201 0.2638456592 0.0325228293 0.0163803600 0.0068334902 0.0140679579 0.0677158208 0.0048988133 0.0023256777 0.0298982139 0.0562887953 0.0426922497 0.0010338979 0.0040522304 0.0181078719; -frequency C10pi7 = 0.0522657662 0.0668294648 0.0714836849 0.0297745257 0.0143324928 0.0736540298 0.0388386669 0.0228101108 0.1551638111 0.0187406149 0.0653779932 0.0439469345 0.0207189121 0.0624033021 0.0145475497 0.0549017631 0.0370140058 0.0193756900 0.1110694548 0.0267512268; -frequency C10pi8 = 0.0116587342 0.0050990142 0.0064011054 0.0021742457 0.0105340743 0.0040203734 0.0024251112 0.0034709143 0.0366787049 0.0187185330 0.0676489746 0.0026694717 0.0143534813 0.3650985596 0.0031159927 0.0094848536 0.0073713920 0.0509564551 0.3574858593 0.0206341497; -frequency C10pi9 = 0.0627195947 0.2038782162 0.0428629162 0.0236193294 0.0052662886 0.1098111767 0.0686284994 0.0256174957 0.0332612124 0.0128968249 0.0305627740 0.2270839355 0.0124036991 0.0039181841 0.0140440613 0.0483152469 0.0463378087 0.0025143473 0.0065521118 0.0197062770; -frequency C10pi10 = 0.1145518598 0.0324008908 0.0750614981 0.0416192189 0.0098549497 0.0339624663 0.0364907910 0.0503817581 0.0165233329 0.0092949460 0.0139153707 0.0423026886 0.0082240805 0.0046605982 0.0379221548 0.2610647896 0.1845829279 0.0017548981 0.0058538316 0.0195769483; -model C10 = POISSON+G4+FMIX{C10pi1:1:0.1191344178,C10pi2:1:0.0874372456,C10pi3:1:0.1037105070,C10pi4:1:0.0922584809,C10pi5:1:0.1070492801,C10pi6:1:0.1329945166,C10pi7:1:0.0538028458,C10pi8:1:0.0691986212,C10pi9:1:0.1319937434,C10pi10:1:0.1024203429}; -model C10Opt = POISSON+G4+FMIX{C10pi1,C10pi2,C10pi3,C10pi4,C10pi5,C10pi6,C10pi7,C10pi8,C10pi9,C10pi10}; - -[ --------------------------------------------------------- - CAT-C20 profile mixture model of Le, Gascuel & Lartillot (2008) - --------------------------------------------------------- ] -frequency C20pi1 = 0.0862412505 0.0171943793 0.0791293376 0.0329908619 0.0130504558 0.0169046938 0.0184526503 0.0366905299 0.0108013340 0.0097907148 0.0112826424 0.0220195221 0.0087821483 0.0044155335 0.0189273201 0.3178152357 0.2711700523 0.0015317305 0.0048342853 0.0179753220 ; -frequency C20pi2 = 0.2035582865 0.0050980810 0.0077052407 0.0031656079 0.0348667285 0.0064044073 0.0070859400 0.0195235515 0.0024392035 0.1152573291 0.0789777393 0.0042380850 0.0309187017 0.0112429356 0.0164189221 0.0496777139 0.1118946615 0.0017762569 0.0048448213 0.2849057867 ; -frequency C20pi3 = 0.0211547413 0.0014946177 0.0012755030 0.0005492865 0.0048188557 0.0012328812 0.0014539632 0.0011430874 0.0011346394 0.3928460626 0.1250644210 0.0013579946 0.0209788805 0.0128251737 0.0020247248 0.0026240726 0.0171914121 0.0011591071 0.0036027969 0.3860677787 ; -frequency C20pi4 = 0.0376903543 0.2885196153 0.0365411474 0.0109469400 0.0064073829 0.0893564381 0.0358365464 0.0191106776 0.0329513951 0.0101711878 0.0237495504 0.2897626974 0.0096528870 0.0036349802 0.0105337370 0.0356313768 0.0355926500 0.0027925238 0.0066557222 0.0144621902 ; -frequency C20pi5 = 0.0084597802 0.0053589922 0.0072525884 0.0024487852 0.0084909000 0.0042781483 0.0025055486 0.0024277107 0.0433214027 0.0097713028 0.0380507037 0.0026741007 0.0080724771 0.3420463838 0.0021418673 0.0080418935 0.0055322116 0.0494840193 0.4375001561 0.0121410277 ; -frequency C20pi6 = 0.1759898886 0.0290429175 0.0332845569 0.1301263816 0.0017558693 0.0707183953 0.2182166681 0.0409535143 0.0130708195 0.0085622087 0.0159530702 0.0542946169 0.0054045759 0.0025276980 0.0371020404 0.0793480500 0.0540083424 0.0010592104 0.0036259116 0.0249552645 ; -frequency C20pi7 = 0.1634397322 0.0195541184 0.0438701833 0.0374272612 0.0088659891 0.0137554758 0.0220611924 0.5296717726 0.0090006141 0.0017569353 0.0061156267 0.0167117975 0.0029390787 0.0030641349 0.0126457766 0.0829342776 0.0142835614 0.0028640685 0.0032398299 0.0057985736 ; -frequency C20pi8 = 0.0917468761 0.0265853306 0.0290699087 0.0133818895 0.0284015012 0.0255084506 0.0196875685 0.0249898794 0.0449766405 0.0583555688 0.1155009222 0.0164915955 0.0395994595 0.0998479096 0.0209916159 0.0736482742 0.0661518462 0.0246463919 0.0972327226 0.0831856483 ; -frequency C20pi9 = 0.0646700714 0.0988015996 0.0228907308 0.0168733856 0.0077117603 0.0996414875 0.0544977962 0.0148893975 0.0313851988 0.0505983315 0.1844282999 0.0907931290 0.0774839960 0.0219148172 0.0105004469 0.0321196170 0.0411766062 0.0084303030 0.0206106035 0.0505824221 ; -frequency C20pi10 = 0.0135993865 0.0043408375 0.0018469375 0.0007951703 0.0100090240 0.0046420778 0.0018011758 0.0026794645 0.0072401918 0.0814026713 0.3661422246 0.0025158135 0.0734965132 0.2640965246 0.0038994134 0.0043668760 0.0075248451 0.0261564898 0.0660970801 0.0573472826 ; -frequency C20pi11 = 0.1478036236 0.0842845089 0.0726630217 0.0534743238 0.0048825808 0.0757166156 0.0727246460 0.0907725939 0.0262288856 0.0035781075 0.0126777221 0.1051660098 0.0059621792 0.0029903868 0.0156558198 0.1459903343 0.0634877444 0.0015928454 0.0050760739 0.0092719768 ; -frequency C20pi12 = 0.0186377412 0.0042055165 0.0019865236 0.0008329696 0.0054968852 0.0065890091 0.0020248504 0.0021713483 0.0023665991 0.2020809776 0.4370381920 0.0029120653 0.1241860384 0.0385383157 0.0040672279 0.0046177381 0.0149904396 0.0026871667 0.0056324117 0.1189379840 ; -frequency C20pi13 = 0.0477624336 0.0505742667 0.0209574273 0.0141349161 0.0075791708 0.0429296799 0.0462688073 0.0052327914 0.0165351815 0.1741496627 0.1121253570 0.0577575020 0.0330288046 0.0130691347 0.0124374733 0.0264988925 0.0951754678 0.0031660482 0.0112465746 0.2093704079 ; -frequency C20pi14 = 0.4164189845 0.0056100821 0.0091701381 0.0045131748 0.0406937949 0.0061320495 0.0063229801 0.0946185184 0.0031057404 0.0076443223 0.0099885414 0.0038941773 0.0069323155 0.0048438356 0.0187840756 0.2360774301 0.0746274607 0.0012172579 0.0034825786 0.0459225422 ; -frequency C20pi15 = 0.0402295888 0.0735203003 0.1036647193 0.0365523994 0.0124782975 0.0826558132 0.0372197283 0.0233618081 0.2108307125 0.0093478727 0.0360561493 0.0482410586 0.0100289536 0.0459094917 0.0098503973 0.0533383445 0.0310209005 0.0140076639 0.1064377821 0.0152480184 ; -frequency C20pi16 = 0.0323453034 0.0236282995 0.2520448083 0.2431495959 0.0035976296 0.0330831153 0.0710274499 0.1016074562 0.0366225082 0.0031410809 0.0051980542 0.0470129351 0.0024028744 0.0024429276 0.0094837826 0.0848355278 0.0359083275 0.0008730928 0.0067247672 0.0048704638 ; -frequency C20pi17 = 0.1476256642 0.0334506604 0.0211972524 0.0403051550 0.0032327194 0.0371554480 0.0576893391 0.0330850942 0.0146392559 0.0108267008 0.0256200793 0.0451350877 0.0058651400 0.0047177179 0.3473710507 0.0892065279 0.0485899446 0.0016358749 0.0044177191 0.0282335685 ; -frequency C20pi18 = 0.1031448143 0.0717747663 0.0435172139 0.0386401502 0.0061762467 0.0786603123 0.0923369140 0.0202338419 0.0246761899 0.0376904275 0.0376283678 0.0921698920 0.0161883318 0.0067666433 0.0128302120 0.0951450188 0.1378566702 0.0022144738 0.0083041573 0.0740453560 ; -frequency C20pi19 = 0.0837542823 0.0899383244 0.0518811417 0.0804870571 0.0020735078 0.1456497470 0.1947759184 0.0229030361 0.0268458796 0.0074079756 0.0190249576 0.1459287407 0.0067395241 0.0023063393 0.0085616014 0.0455739585 0.0451080843 0.0010771349 0.0049325333 0.0150302559 ; -frequency C20pi20 = 0.0578735570 0.0138313604 0.0491421636 0.2946738942 0.0011130839 0.0598250358 0.3402102668 0.0293911435 0.0139817004 0.0030525663 0.0062611922 0.0363365043 0.0027295976 0.0017034884 0.0156106390 0.0358044639 0.0249941878 0.0008664342 0.0038312977 0.0087674229 ; - -[ C20 with fixed weights ] -model C20 = POISSON+G4+FMIX{C20pi1:1:0.0559910600,C20pi2:1:0.0514824870,C20pi3:1:0.0812922124,C20pi4:1:0.0721976867,C20pi5:1:0.0556718858,C20pi6:1:0.0331003080,C20pi7:1:0.0589501763,C20pi8:1:0.0263756889,C20pi9:1:0.0307584220,C20pi10:1:0.0376701125,C20pi11:1:0.0303058290,C20pi12:1:0.0808775576,C20pi13:1:0.0263349134,C20pi14:1:0.0579101455,C20pi15:1:0.0371248064,C20pi16:1:0.0586867766,C20pi17:1:0.0561479138,C20pi18:1:0.0349810886,C20pi19:1:0.0544937394,C20pi20:1:0.0596471901}; -[ C20 to weights to be optimized ] -model C20Opt = POISSON+G4+FMIX{C20pi1,C20pi2,C20pi3,C20pi4,C20pi5,C20pi6,C20pi7,C20pi8,C20pi9,C20pi10,C20pi11,C20pi12,C20pi13,C20pi14,C20pi15,C20pi16,C20pi17,C20pi18,C20pi19,C20pi20}; - -model C20Test = POISSON+G4+FMIX{C20pi1:1:0.089485,C20pi2:1:0.021281,C20pi3:1:0.119676,C20pi4:1:0.080933,C20pi5:1:0.064054,C20pi6:1:0.021848,C20pi7:1:0.063392,C20pi8:1:0.003629,C20pi9:1:0.007174,C20pi10:1:0.006256,C20pi11:1:0.023424,C20pi12:1:0.086825,C20pi13:1:0.038495,C20pi14:1:0.090028,C20pi15:1:0.020025,C20pi16:1:0.043484,C20pi17:1:0.076864,C20pi18:1:0.031347,C20pi19:1:0.047749,C20pi20:1:0.064031}; - -[ --------------------------------------------------------- - CAT-C30 profile mixture model of Le, Gascuel & Lartillot (2008) - --------------------------------------------------------- ] -frequency C30pi1 = 0.1100453954 0.0171294861 0.0640338464 0.1595411459 0.0019047235 0.0310187088 0.1098958823 0.0684301540 0.0137950707 0.0026283074 0.0073396531 0.0358553674 0.0024706414 0.0016629473 0.1669356820 0.1381790473 0.0568342547 0.0004661120 0.0035970152 0.0082365591; -frequency C30pi2 = 0.0874125465 0.0806320385 0.0382152368 0.0326119879 0.0049826376 0.0798168854 0.0951700809 0.0144042708 0.0210626652 0.0399884450 0.0301585074 0.1147200015 0.0126488911 0.0048996596 0.0137397028 0.0873769666 0.1558616621 0.0015122843 0.0053974463 0.0793880836; -frequency C30pi3 = 0.0225477414 0.0014900535 0.0013034594 0.0005959279 0.0050018158 0.0011436556 0.0015030529 0.0011570953 0.0009374322 0.3944689167 0.0889573138 0.0013600872 0.0189102669 0.0089216031 0.0018312028 0.0028336408 0.0189813395 0.0006693746 0.0023303726 0.4250556480; -frequency C30pi4 = 0.0602158209 0.0136833299 0.0414987935 0.2900084105 0.0009525462 0.0621611083 0.3610869026 0.0281925621 0.0130500799 0.0030516237 0.0060401889 0.0352704692 0.0027460635 0.0014625624 0.0127175499 0.0318109377 0.0225279521 0.0007948027 0.0034024563 0.0093258397; -frequency C30pi5 = 0.0101223637 0.0028344920 0.0012928910 0.0006379191 0.0085989355 0.0035028551 0.0011249625 0.0024085229 0.0047753376 0.0701153131 0.4135913903 0.0016748492 0.0744862631 0.2785384406 0.0040466582 0.0037087155 0.0052379329 0.0200222636 0.0523938808 0.0408860135; -frequency C30pi6 = 0.1335831781 0.0284789590 0.0213891629 0.1125775537 0.0010514541 0.0565844323 0.2099572968 0.0207551870 0.0121330488 0.0073526522 0.0133278240 0.0771772013 0.0030571689 0.0016793592 0.1890195131 0.0484054108 0.0373318180 0.0009266995 0.0026946425 0.0225174379; -frequency C30pi7 = 0.0408277374 0.0124491768 0.0080464869 0.0030634898 0.0153918410 0.0102922098 0.0066010880 0.0058113137 0.0245211764 0.1487514547 0.1637802160 0.0075923232 0.0385527359 0.1575049888 0.0058352224 0.0151578617 0.0332220362 0.0264937109 0.1213342989 0.1547706314; -frequency C30pi8 = 0.2469059247 0.0106278945 0.0168929681 0.0027418266 0.1039406309 0.0103988197 0.0054944756 0.0373263209 0.0085752319 0.0292403793 0.0535091180 0.0056123053 0.0302246485 0.0251775640 0.0078098946 0.1642352274 0.1239889705 0.0053155877 0.0163953993 0.0955868125; -frequency C30pi9 = 0.0549428629 0.1305426495 0.0202957532 0.0092915274 0.0099280995 0.0906036344 0.0417085054 0.0105563869 0.0363512470 0.0569584863 0.1681833183 0.1152521806 0.0592328363 0.0243860149 0.0083055411 0.0283778833 0.0412594019 0.0096355359 0.0249780472 0.0592100878; -frequency C30pi10 = 0.0462773303 0.0362984274 0.0412365193 0.0182504174 0.0172727117 0.0348990852 0.0224266258 0.0160971397 0.1357852215 0.0164966886 0.0598936127 0.0239396241 0.0164507129 0.1336320854 0.0117413009 0.0454156401 0.0304387749 0.0330338410 0.2350163763 0.0253978649; -frequency C30pi11 = 0.0474379955 0.0410179935 0.0222453982 0.0112116958 0.0082332447 0.0374051414 0.0388100853 0.0055998598 0.0149156570 0.1832173840 0.1100691114 0.0467850545 0.0356443791 0.0116643783 0.0100244663 0.0317171100 0.1114352326 0.0026685586 0.0099660086 0.2199312452; -frequency C30pi12 = 0.0213607696 0.0069976154 0.0039878996 0.0012941246 0.0061024858 0.0139566033 0.0036297282 0.0030017014 0.0038425894 0.1309465785 0.4566988203 0.0054567760 0.1947837355 0.0371808169 0.0040747282 0.0076991487 0.0198018718 0.0034086391 0.0064545692 0.0693207986; -frequency C30pi13 = 0.0919632044 0.0160004872 0.0764682386 0.0306717360 0.0117031014 0.0160060006 0.0171907654 0.0370684649 0.0100792697 0.0093123713 0.0097240970 0.0205385908 0.0075767282 0.0041589440 0.0179686194 0.3254471625 0.2744377258 0.0013887442 0.0044739725 0.0178217761; -frequency C30pi14 = 0.4649246103 0.0043013249 0.0075304815 0.0050731691 0.0233328752 0.0043571322 0.0057994247 0.1495242047 0.0023298425 0.0043361190 0.0055995530 0.0028525398 0.0039313170 0.0025588185 0.0186467246 0.2150194771 0.0477030158 0.0009038096 0.0020087184 0.0292668421; -frequency C30pi15 = 0.2051329382 0.0439661329 0.0339418395 0.1070980865 0.0020915940 0.0822742346 0.1989733497 0.0487574293 0.0127143076 0.0058124693 0.0133471767 0.0667787412 0.0043783406 0.0018235059 0.0110997761 0.0873961609 0.0519781961 0.0007361603 0.0023821404 0.0193174204; -frequency C30pi16 = 0.0263689890 0.0133613622 0.2727158135 0.3117715371 0.0039462429 0.0218978778 0.0694354212 0.0799842408 0.0309615130 0.0027521242 0.0038579661 0.0288630708 0.0018363656 0.0023351927 0.0062457560 0.0798729385 0.0324143174 0.0007229656 0.0063857732 0.0042705326; -frequency C30pi17 = 0.1526502637 0.0332784464 0.0168229991 0.0237392180 0.0040215287 0.0341733672 0.0377949108 0.0306214335 0.0141929803 0.0123317972 0.0290062362 0.0375543022 0.0064473224 0.0058584416 0.3864504800 0.0880336410 0.0489543188 0.0018252558 0.0048877798 0.0313552773; -frequency C30pi18 = 0.0080247558 0.0017408595 0.0006327403 0.0003385965 0.0023412143 0.0015507896 0.0007818945 0.0005403825 0.0010026402 0.3177056649 0.3737894172 0.0012598254 0.0488212345 0.0311968471 0.0020687549 0.0012095129 0.0065696791 0.0016309208 0.0043343553 0.1944599147; -frequency C30pi19 = 0.0599950319 0.1000540567 0.1334918892 0.0889730776 0.0016884984 0.0864856169 0.0962700957 0.0588796388 0.0327277145 0.0021467269 0.0070876372 0.1825860579 0.0033979446 0.0011800742 0.0141408084 0.0779002375 0.0448817374 0.0006249028 0.0032641120 0.0042241415; -frequency C30pi20 = 0.0393520657 0.0838170642 0.1425481600 0.0431197671 0.0099071945 0.1019786610 0.0394639510 0.0282866471 0.2095718357 0.0076101442 0.0258339558 0.0596434088 0.0084586675 0.0188680789 0.0096840517 0.0624998643 0.0347087967 0.0054645779 0.0564145251 0.0127685828; -frequency C30pi21 = 0.0072715487 0.0140998918 0.0019756795 0.0027603830 0.0067852535 0.0043339290 0.0025069369 0.0080834718 0.0113217919 0.0056609640 0.0394199644 0.0017735096 0.0079866080 0.1271475634 0.0041098092 0.0052244365 0.0043022271 0.6273570153 0.1084563767 0.0094226397; -frequency C30pi22 = 0.0907070068 0.0290062335 0.0860677696 0.0745872716 0.0063699858 0.0259377035 0.0386802115 0.4750046194 0.0168090013 0.0014721054 0.0055149849 0.0343855535 0.0024692074 0.0028859215 0.0112150781 0.0731110371 0.0153705714 0.0022914775 0.0041860660 0.0039281943; -frequency C30pi23 = 0.0055291882 0.0024626303 0.0046086594 0.0011413426 0.0072105915 0.0022692184 0.0009683043 0.0016070950 0.0325831191 0.0082918400 0.0353677882 0.0013849437 0.0074486804 0.3744093753 0.0013374573 0.0057402692 0.0037279636 0.0330334445 0.4609978298 0.0098802591; -frequency C30pi24 = 0.2443263138 0.0045386562 0.0062422652 0.0031590902 0.0273880205 0.0053593950 0.0076715636 0.0196089609 0.0020189401 0.1017435067 0.0468424225 0.0045492259 0.0201286022 0.0060619450 0.0185219126 0.0497753825 0.1170795523 0.0009577255 0.0035333687 0.3104931504; -frequency C30pi25 = 0.0863111274 0.0984811895 0.0313963115 0.0600902926 0.0024419845 0.1672351286 0.2036096150 0.0175221435 0.0245245046 0.0105994220 0.0271209781 0.1485789590 0.0095824358 0.0029393105 0.0068276769 0.0347800318 0.0408210979 0.0014001253 0.0055105388 0.0202271268; -frequency C30pi26 = 0.0643926114 0.0369048739 0.1031213278 0.1628208462 0.0023165895 0.0752534859 0.1762701353 0.0297139006 0.0303503732 0.0088163033 0.0148016812 0.0727140107 0.0056748403 0.0043066715 0.0099270322 0.0926433867 0.0833129915 0.0011237109 0.0093801464 0.0161550816; -frequency C30pi27 = 0.1736682858 0.0943628709 0.0520404980 0.0285984935 0.0083596568 0.0722446698 0.0483894060 0.0781901497 0.0266134684 0.0068641911 0.0219499324 0.0964011794 0.0112303313 0.0058273974 0.0169661076 0.1547802460 0.0751701930 0.0028774511 0.0082130397 0.0172524320; -frequency C30pi28 = 0.0347856579 0.3075984538 0.0314157384 0.0092355245 0.0062754891 0.0861073155 0.0323568406 0.0170288127 0.0306438905 0.0091932292 0.0224428556 0.3020845818 0.0093720833 0.0034303536 0.0104447169 0.0326882932 0.0328713449 0.0025244855 0.0064171317 0.0130832013; -frequency C30pi29 = 0.1087737102 0.0051781020 0.0032679768 0.0015823203 0.0247877480 0.0057932006 0.0041769888 0.0134703172 0.0024765788 0.1643462917 0.2337152707 0.0027000391 0.0539213396 0.0316523420 0.0154886946 0.0188187787 0.0474912345 0.0037656478 0.0073106362 0.2512827825; -frequency C30pi30 = 0.1101008748 0.0324324597 0.0435098681 0.0579268520 0.0072699765 0.0615196630 0.0828181488 0.0314463068 0.0308557019 0.0530865813 0.1096787834 0.0293860426 0.0458728977 0.0269153699 0.0296430687 0.0715887866 0.0685882454 0.0062324120 0.0257237601 0.0754042006; -model C30 = POISSON+G4+FMIX{C30pi1:1:0.0095783264,C30pi2:1:0.0248476365,C30pi3:1:0.0636309366,C30pi4:1:0.0537939225,C30pi5:1:0.0295885587,C30pi6:1:0.0117587936,C30pi7:1:0.0132013428,C30pi8:1:0.0236868805,C30pi9:1:0.0261687659,C30pi10:1:0.0239821974,C30pi11:1:0.0257100906,C30pi12:1:0.0465072425,C30pi13:1:0.0546794546,C30pi14:1:0.0536085131,C30pi15:1:0.0270622670,C30pi16:1:0.0403913593,C30pi17:1:0.0474212700,C30pi18:1:0.0458816478,C30pi19:1:0.0214036510,C30pi20:1:0.0290385981,C30pi21:1:0.0123391793,C30pi22:1:0.0569350229,C30pi23:1:0.0419687568,C30pi24:1:0.0339027062,C30pi25:1:0.0388777376,C30pi26:1:0.0196343766,C30pi27:1:0.0233086174,C30pi28:1:0.0622722654,C30pi29:1:0.0184803385,C30pi30:1:0.0203395454}; - -[ --------------------------------------------------------- - CAT-C40 profile mixture model of Le, Gascuel & Lartillot (2008) - --------------------------------------------------------- ] -frequency C40pi1 = 0.0660259814 0.0231861755 0.1599815873 0.1054473175 0.0056586745 0.0273928499 0.0440360794 0.0711238664 0.0168194755 0.0039088727 0.0055316013 0.0366689617 0.0037412416 0.0013104807 0.0176359169 0.2497687201 0.1507079582 0.0006723214 0.0038290224 0.0065528958; -frequency C40pi2 = 0.0232377444 0.0122683027 0.2759650991 0.3532087982 0.0037987468 0.0197339134 0.0739378219 0.0576668030 0.0315866952 0.0031092806 0.0038711609 0.0259363304 0.0017355634 0.0024032103 0.0063116881 0.0657067704 0.0270483653 0.0007602894 0.0069602476 0.0047531689; -frequency C40pi3 = 0.0166486809 0.0012594763 0.0012622242 0.0005651446 0.0036665719 0.0010669784 0.0013356251 0.0008894749 0.0008231853 0.4129367561 0.0884689295 0.0011904105 0.0186054583 0.0082775676 0.0014029981 0.0021339439 0.0162167380 0.0006082049 0.0019553200 0.4206863114; -frequency C40pi4 = 0.2394741986 0.0072901253 0.0120536943 0.0044741726 0.0283811727 0.0086558850 0.0105529632 0.0135109628 0.0038929844 0.0765957115 0.0358494908 0.0071093014 0.0199496319 0.0055991131 0.0114265585 0.0847798773 0.1797284519 0.0009838000 0.0042240671 0.2454678377; -frequency C40pi5 = 0.1194613086 0.0233255669 0.0294552140 0.0134272792 0.0150526644 0.0301537796 0.0192173037 0.0337675998 0.0214746045 0.0579001821 0.1446308373 0.0147261337 0.0561242940 0.0550467421 0.0631355418 0.0925266727 0.0831230185 0.0131636136 0.0331118002 0.0811758434; -frequency C40pi6 = 0.0567043710 0.0117359330 0.0364734454 0.2955500969 0.0008924801 0.0609516515 0.3795154126 0.0230469606 0.0118360971 0.0031182036 0.0060137466 0.0314205689 0.0028584065 0.0012972333 0.0124745819 0.0300334889 0.0227051137 0.0007738758 0.0031343761 0.0094639563; -frequency C40pi7 = 0.0179027412 0.0040967133 0.0035697688 0.0008870412 0.0160760340 0.0045395474 0.0023182113 0.0039829808 0.0127292680 0.0404650518 0.1676143477 0.0027994718 0.0424172255 0.3344862590 0.0020115128 0.0075841581 0.0068227293 0.0518381385 0.2452542553 0.0326045442; -frequency C40pi8 = 0.2712170094 0.0056480837 0.0141045260 0.0021017036 0.2003830179 0.0048264059 0.0023229984 0.0502501222 0.0053727960 0.0150684657 0.0330003443 0.0020646283 0.0154811217 0.0202990358 0.0045351023 0.1764198412 0.0839578061 0.0046265242 0.0141271048 0.0741933626; -frequency C40pi9 = 0.0894736584 0.1040026384 0.0190192153 0.0272183085 0.0045538316 0.1168091917 0.1275076663 0.0115685734 0.0215746293 0.0469424171 0.0512035100 0.1382047308 0.0147656854 0.0056590176 0.0095546504 0.0383953611 0.0836652641 0.0017079427 0.0062181292 0.0819555787; -frequency C40pi10 = 0.0495441385 0.0375345822 0.0315863530 0.0143641284 0.0182505609 0.0316504100 0.0215379122 0.0140199913 0.1108543799 0.0247065801 0.0700287927 0.0258142032 0.0188271760 0.1418048822 0.0112101202 0.0456094427 0.0361427973 0.0371985427 0.2223972375 0.0369177689; -frequency C40pi11 = 0.1704314254 0.0415784004 0.0271109259 0.1098556600 0.0009747331 0.0917299929 0.2536458944 0.0249846466 0.0101389736 0.0058749399 0.0116526350 0.0903324267 0.0036512738 0.0013321301 0.0293613681 0.0561765645 0.0479045729 0.0006696817 0.0022637316 0.0203300232; -frequency C40pi12 = 0.0162725399 0.0054826071 0.0021876158 0.0010182101 0.0050614097 0.0104414465 0.0025141347 0.0021935389 0.0029914328 0.1328173512 0.4904441779 0.0040120394 0.1929931280 0.0376245580 0.0034333187 0.0040122105 0.0127074428 0.0032107554 0.0058100621 0.0647720205; -frequency C40pi13 = 0.0823765743 0.0734226431 0.0598389731 0.0311745159 0.0065694304 0.0686451074 0.0675530778 0.0178961594 0.0251143622 0.0291161743 0.0287904106 0.0982301674 0.0168022878 0.0064717899 0.0114044922 0.1302995288 0.1820374273 0.0022724618 0.0079573279 0.0540270885; -frequency C40pi14 = 0.3594965940 0.0072407229 0.0033421456 0.0031484357 0.0251417178 0.0049014279 0.0064962700 0.1194682267 0.0022970448 0.0458766662 0.0468053893 0.0050168849 0.0215568816 0.0092020461 0.0443915884 0.0465270945 0.0477755293 0.0024540215 0.0046450361 0.1942162766; -frequency C40pi15 = 0.2015583874 0.0430161610 0.0425386444 0.0954149893 0.0032365302 0.0772010857 0.1534908791 0.0667291678 0.0155218808 0.0067740832 0.0165114429 0.0547322644 0.0060162992 0.0025643300 0.0091970560 0.1185981804 0.0625472744 0.0009565508 0.0031150007 0.0202797924; -frequency C40pi16 = 0.1042731047 0.0147062345 0.0621645800 0.2424069523 0.0022450116 0.0356498946 0.1774821588 0.1697819523 0.0132648834 0.0018929517 0.0042542620 0.0220651981 0.0016441234 0.0012570256 0.0317041583 0.0778636230 0.0288515782 0.0006930898 0.0017741945 0.0060250231; -frequency C40pi17 = 0.0781183281 0.0111498472 0.0159270309 0.0041541669 0.0194448667 0.0240151620 0.0116633921 0.0111524105 0.0063589385 0.1354530457 0.2457574952 0.0093729846 0.1087781166 0.0262793949 0.0055294038 0.0408518858 0.0860514305 0.0031547586 0.0085108496 0.1482764918; -frequency C40pi18 = 0.0856592432 0.0101233167 0.0441923073 0.0135061568 0.0136072878 0.0092590642 0.0078602552 0.0245400880 0.0055379075 0.0100591561 0.0103343559 0.0127318506 0.0080675803 0.0047153035 0.0175273997 0.3406479487 0.3573294650 0.0014243098 0.0035099810 0.0193670227; -frequency C40pi19 = 0.0674594695 0.1161734658 0.1163107783 0.0662588409 0.0021634231 0.0939360452 0.0865501280 0.0368556575 0.0381149118 0.0033238825 0.0093839985 0.1899736999 0.0039487389 0.0018212730 0.0151207830 0.0842204423 0.0565953680 0.0007187305 0.0046189437 0.0064514195; -frequency C40pi20 = 0.0572262322 0.0494723554 0.1083882793 0.1793932771 0.0015301521 0.0903668522 0.1992261265 0.0316472274 0.0291392067 0.0045804559 0.0100739563 0.1015624916 0.0040204606 0.0013701849 0.0063674130 0.0621142922 0.0496102162 0.0006669285 0.0046497641 0.0085941279; -frequency C40pi21 = 0.0036020163 0.0102712927 0.0013455508 0.0020871647 0.0045484804 0.0032718114 0.0017857730 0.0056391633 0.0064968790 0.0029292916 0.0232635081 0.0010419846 0.0044592278 0.0855714596 0.0024991984 0.0030671803 0.0025900250 0.7617821954 0.0678809532 0.0058668443; -frequency C40pi22 = 0.2032018418 0.0083895722 0.0143743754 0.0135011707 0.0098131618 0.0044514580 0.0083818173 0.6184886075 0.0027747899 0.0011828492 0.0039826789 0.0044598895 0.0020631785 0.0019619615 0.0085870399 0.0739919851 0.0108922273 0.0018606145 0.0015638674 0.0060769136; -frequency C40pi23 = 0.0050898779 0.0028740788 0.0057092962 0.0016126151 0.0061776450 0.0024693148 0.0012040415 0.0016334183 0.0393460780 0.0059088776 0.0249343597 0.0013713662 0.0049795162 0.3563126947 0.0014136424 0.0059527667 0.0036536770 0.0357987380 0.4853645852 0.0081934106; -frequency C40pi24 = 0.0403335679 0.0540186397 0.0216052457 0.0098218598 0.0081549541 0.0383639077 0.0375406578 0.0047934404 0.0176735565 0.1893424159 0.1051859862 0.0607377395 0.0305599836 0.0119140782 0.0077550551 0.0257110173 0.1009913165 0.0028780020 0.0115276935 0.2210908828; -frequency C40pi25 = 0.0790086293 0.1065441152 0.0309384274 0.0546012394 0.0024947877 0.1843375981 0.1997882784 0.0192655847 0.0270700474 0.0075667489 0.0254542392 0.1553108816 0.0098024439 0.0023773444 0.0056640684 0.0332370813 0.0359574739 0.0011682801 0.0048820809 0.0145306498; -frequency C40pi26 = 0.0722240672 0.0489728405 0.0678929607 0.1194883992 0.0064755348 0.0708969573 0.1345886574 0.0287815397 0.0699011334 0.0173588702 0.0519870084 0.0490341790 0.0154411043 0.0348233029 0.0145597486 0.0589579876 0.0425972780 0.0087913770 0.0554386705 0.0317883834; -frequency C40pi27 = 0.1085842431 0.0206450023 0.0441956285 0.1529666596 0.0012502570 0.0405398136 0.1664851192 0.0336098469 0.0134902179 0.0038821795 0.0089861440 0.0576227094 0.0024339036 0.0014553522 0.1990095021 0.0846749753 0.0454715217 0.0005902831 0.0027650162 0.0113416246; -frequency C40pi28 = 0.0309526387 0.3195887318 0.0301336637 0.0082352132 0.0065593963 0.0832608108 0.0291974083 0.0154206187 0.0310385092 0.0098251607 0.0237900204 0.3062634996 0.0097071728 0.0036891639 0.0095029109 0.0295285439 0.0303052301 0.0028125285 0.0068850639 0.0133037148; -frequency C40pi29 = 0.0098953741 0.0019604525 0.0007307935 0.0003748228 0.0028276741 0.0017337004 0.0009182100 0.0006997068 0.0010419482 0.3115040359 0.3750387796 0.0013960508 0.0474451070 0.0298607430 0.0025296256 0.0014628019 0.0075738968 0.0016799771 0.0040259930 0.1973003069; -frequency C40pi30 = 0.1163213921 0.0273321006 0.0250163656 0.0731917718 0.0034792282 0.0586677248 0.1380880502 0.0193193469 0.0160240740 0.0712243431 0.0771473538 0.0355120487 0.0242841072 0.0094117688 0.0508926833 0.0475560280 0.0726552233 0.0026892716 0.0076166020 0.1235705162; -frequency C40pi31 = 0.1285218235 0.0373073487 0.1179844215 0.0402749992 0.0172928883 0.0439706110 0.0250692272 0.1127033137 0.0606981059 0.0109350265 0.0258415767 0.0288749652 0.0167592956 0.0199118302 0.0180674983 0.1741489481 0.0648967655 0.0063574951 0.0321771650 0.0182066946; -frequency C40pi32 = 0.0372286941 0.0094528028 0.0053377315 0.0023703173 0.0144940088 0.0079097138 0.0048585146 0.0046433943 0.0186795102 0.1820459527 0.1780099317 0.0058198481 0.0371334296 0.1463772419 0.0048538601 0.0103570678 0.0284161577 0.0211293603 0.0958905187 0.1849919442; -frequency C40pi33 = 0.0535643726 0.1159797757 0.0239172676 0.0113537364 0.0096256227 0.0928585070 0.0391699080 0.0120279334 0.0384887950 0.0522748270 0.1892392595 0.0996037748 0.0712219098 0.0264213736 0.0083720574 0.0299114019 0.0389484845 0.0104232046 0.0265030050 0.0500947835; -frequency C40pi34 = 0.1332424803 0.0033147683 0.0022704992 0.0012739239 0.0246514263 0.0030843469 0.0040461524 0.0089139209 0.0015864680 0.1971284995 0.1251288442 0.0023713225 0.0286947200 0.0156995251 0.0118845743 0.0171461828 0.0563298009 0.0017341820 0.0048778410 0.3566205216; -frequency C40pi35 = 0.1498658185 0.0326607222 0.0176452820 0.0280354786 0.0035437399 0.0348151308 0.0435380704 0.0311112643 0.0140625707 0.0101953314 0.0251433928 0.0393124980 0.0051548319 0.0047533945 0.3923800449 0.0874496981 0.0473306717 0.0015215239 0.0043208299 0.0271597054; -frequency C40pi36 = 0.4214366359 0.0061425967 0.0121590498 0.0073305074 0.0187609694 0.0072748556 0.0086837775 0.0902333103 0.0030262044 0.0039362777 0.0047193320 0.0051508681 0.0038306586 0.0027156136 0.0208940236 0.2901188793 0.0651922314 0.0008108235 0.0023622848 0.0252211004; -frequency C40pi37 = 0.1770713890 0.1332782050 0.0311656783 0.0226500225 0.0078348946 0.0752471493 0.0509767242 0.0897389513 0.0220667143 0.0059519850 0.0205369728 0.1257689326 0.0092982479 0.0040514178 0.0264087912 0.1169591448 0.0565566955 0.0029947127 0.0049346701 0.0165087010; -frequency C40pi38 = 0.0293984032 0.0370901720 0.1483622633 0.1099709900 0.0031729093 0.0388688450 0.0464270335 0.4222420155 0.0272494642 0.0007997326 0.0037634298 0.0622314461 0.0016657052 0.0015039626 0.0056481827 0.0472252404 0.0086568982 0.0009176022 0.0027693124 0.0020363920; -frequency C40pi39 = 0.0265779317 0.0791104753 0.1318603134 0.0280314140 0.0101369144 0.0989710810 0.0269057233 0.0173376629 0.2815133703 0.0064646977 0.0268210053 0.0474749135 0.0072375268 0.0276960902 0.0083014995 0.0426276702 0.0259042511 0.0078528946 0.0891598394 0.0100147256; -frequency C40pi40 = 0.0096096503 0.0027136180 0.0013104432 0.0006331856 0.0077301682 0.0033899420 0.0010471898 0.0020227436 0.0039001415 0.0733098005 0.4451691588 0.0014931484 0.0732575295 0.2630171690 0.0042768091 0.0036117358 0.0057928403 0.0181275729 0.0370698053 0.0425173480; -model C40 = POISSON+G4+FMIX{C40pi1:1:0.0223853788,C40pi2:1:0.0338891820,C40pi3:1:0.0577169375,C40pi4:1:0.0252416233,C40pi5:1:0.0108607921,C40pi6:1:0.0462373793,C40pi7:1:0.0102293175,C40pi8:1:0.0147523625,C40pi9:1:0.0143161352,C40pi10:1:0.0182302541,C40pi11:1:0.0204025079,C40pi12:1:0.0425505156,C40pi13:1:0.0248627269,C40pi14:1:0.0105892988,C40pi15:1:0.0188238725,C40pi16:1:0.0086663445,C40pi17:1:0.0148496147,C40pi18:1:0.0343037402,C40pi19:1:0.0225335203,C40pi20:1:0.0174068578,C40pi21:1:0.0112207827,C40pi22:1:0.0443532245,C40pi23:1:0.0392573370,C40pi24:1:0.0196756555,C40pi25:1:0.0287690328,C40pi26:1:0.0114441177,C40pi27:1:0.0112338740,C40pi28:1:0.0582694099,C40pi29:1:0.0444272279,C40pi30:1:0.0112010942,C40pi31:1:0.0145176111,C40pi32:1:0.0114629026,C40pi33:1:0.0239628061,C40pi34:1:0.0266266492,C40pi35:1:0.0481201159,C40pi36:1:0.0371147423,C40pi37:1:0.0160476688,C40pi38:1:0.0237249267,C40pi39:1:0.0235226203,C40pi40:1:0.0261998398}; - -[ --------------------------------------------------------- - CAT-C50 profile mixture model of Le, Gascuel & Lartillot (2008) - --------------------------------------------------------- ] -frequency C50pi1 = 0.1357566757 0.0328511938 0.0937692919 0.0757182069 0.0041887049 0.0448010470 0.0572805366 0.1210866186 0.0167465028 0.0049719235 0.0113823284 0.0458096069 0.0064563157 0.0029292810 0.0228705187 0.2060115780 0.1011347978 0.0012443033 0.0056104605 0.0093801079; -frequency C50pi2 = 0.0530862751 0.1905936010 0.0595772279 0.0320970468 0.0026608079 0.1152605895 0.0840617877 0.0196495178 0.0274729775 0.0064919200 0.0158709120 0.2635539775 0.0078171228 0.0017231166 0.0121639300 0.0449347664 0.0472425608 0.0008407188 0.0037608716 0.0111402722; -frequency C50pi3 = 0.0083279799 0.0007172026 0.0006359642 0.0003134388 0.0020547407 0.0007351595 0.0005373710 0.0005576905 0.0004858721 0.4370910601 0.1208722220 0.0006394909 0.0195499664 0.0090175268 0.0007265254 0.0007876194 0.0057076665 0.0006453449 0.0016797264 0.3889174318; -frequency C50pi4 = 0.2072868350 0.0166858699 0.0129177658 0.0020625574 0.0849982226 0.0151757635 0.0065903656 0.0472047575 0.0130289256 0.0345690755 0.1042722764 0.0075861385 0.0498042308 0.0572909747 0.0064928361 0.1183618036 0.0780339514 0.0128352368 0.0323576924 0.0924447209; -frequency C50pi5 = 0.0364181183 0.0076427099 0.0052725527 0.0020389950 0.0171009943 0.0064088232 0.0042399368 0.0053824238 0.0198596156 0.1361523026 0.1651892915 0.0045481616 0.0387479055 0.2025922657 0.0055053348 0.0121111950 0.0254621828 0.0327580458 0.1368025306 0.1357666147; -frequency C50pi6 = 0.0535489196 0.0099543365 0.0269073208 0.3076150732 0.0007101021 0.0574988641 0.4066173371 0.0204537673 0.0096286483 0.0025879708 0.0049721459 0.0280989086 0.0025143457 0.0010618006 0.0124317994 0.0247246015 0.0191107367 0.0006385967 0.0024132214 0.0085115039; -frequency C50pi7 = 0.0074733729 0.0025226602 0.0033967505 0.0005574007 0.0081158286 0.0037658904 0.0013610444 0.0022017759 0.0115142679 0.0195730439 0.1268878488 0.0018497296 0.0269141680 0.3821985941 0.0019970421 0.0057127939 0.0039692337 0.0553575998 0.3184099394 0.0162210153; -frequency C50pi8 = 0.2615592974 0.0027098854 0.0124908261 0.0020153852 0.2740228527 0.0017043893 0.0007667803 0.0463498030 0.0019474361 0.0082858275 0.0147048711 0.0010787235 0.0063051368 0.0062080862 0.0039442437 0.1940042648 0.0963699489 0.0016185483 0.0048431386 0.0590705550; -frequency C50pi9 = 0.1190557043 0.0956320251 0.0215995297 0.0378323341 0.0041536088 0.1151348174 0.1337084452 0.0179375220 0.0216767047 0.0336228770 0.0557402194 0.1132452331 0.0178407325 0.0063405927 0.0147606946 0.0478666925 0.0712091035 0.0022867238 0.0075728630 0.0627835766; -frequency C50pi10 = 0.0505010344 0.0281381134 0.0341872191 0.0178157543 0.0183140005 0.0271729546 0.0212018661 0.0176052654 0.1190104107 0.0161645217 0.0561232531 0.0203908848 0.0146521042 0.1553484132 0.0135251600 0.0478959652 0.0292963208 0.0376058633 0.2477283800 0.0273225153; -frequency C50pi11 = 0.1239446910 0.0355525870 0.0409769096 0.1479953346 0.0011563976 0.0908869312 0.2700270273 0.0283589709 0.0126760201 0.0064825033 0.0122101302 0.0787433823 0.0042467440 0.0016540857 0.0205717500 0.0552940245 0.0474239965 0.0008596621 0.0027823209 0.0181565313; -frequency C50pi12 = 0.0160542063 0.0027359185 0.0014708079 0.0007004900 0.0034820152 0.0061470051 0.0016359686 0.0022137927 0.0013207229 0.1640035117 0.4616043506 0.0021342205 0.2174099502 0.0143751693 0.0013694259 0.0037614383 0.0172651408 0.0011454338 0.0019438536 0.0792265779; -frequency C50pi13 = 0.1548192401 0.0131324559 0.0280584102 0.0095301620 0.0166267416 0.0175228950 0.0170969133 0.0179616718 0.0078385586 0.0865181208 0.0523369910 0.0132802182 0.0326348210 0.0083511229 0.0145594414 0.1096327081 0.2218108602 0.0015829972 0.0062173360 0.1704883347; -frequency C50pi14 = 0.2950313592 0.0027580697 0.0021616268 0.0015364190 0.0375439186 0.0028808733 0.0042976283 0.0261726702 0.0008294969 0.0834938143 0.0553606311 0.0022642314 0.0181259911 0.0074433078 0.0126794048 0.0382913338 0.0783205173 0.0010015148 0.0034016419 0.3264055498; -frequency C50pi15 = 0.1683177099 0.0820396152 0.0526048706 0.0822517150 0.0023029997 0.0969341246 0.1488943001 0.0535291188 0.0179803231 0.0032503636 0.0114941086 0.1156402642 0.0039439899 0.0015002945 0.0066854154 0.0924511658 0.0480769504 0.0006152103 0.0025022919 0.0089851683; -frequency C50pi16 = 0.0334088176 0.0134485791 0.1590918150 0.3657542471 0.0025127086 0.0327665151 0.1820739351 0.0740807194 0.0202010901 0.0016650025 0.0036700956 0.0295517886 0.0017087810 0.0011422805 0.0073155123 0.0426788071 0.0211162106 0.0005931485 0.0034724580 0.0037474882; -frequency C50pi17 = 0.0777586977 0.0174438357 0.0053423343 0.0043431532 0.0062523949 0.0220851281 0.0161769285 0.0053903202 0.0080675581 0.1052945216 0.1617365895 0.0148319919 0.0288253912 0.0168985297 0.2565426868 0.0202089662 0.0542929694 0.0060146095 0.0078109966 0.1646823969; -frequency C50pi18 = 0.0727013979 0.0048977192 0.0026095383 0.0011420120 0.0198747408 0.0066949336 0.0030401434 0.0079074845 0.0026492900 0.1685788878 0.3185489163 0.0026024909 0.0735597038 0.0490419983 0.0051699104 0.0128630830 0.0305356924 0.0050857840 0.0095279173 0.2029683559; -frequency C50pi19 = 0.0658153836 0.0833432992 0.0224582275 0.0107735824 0.0092974677 0.0745951987 0.0299754097 0.0146336557 0.0148026634 0.0671888719 0.2198675990 0.0868172087 0.1084156835 0.0155812696 0.0071132147 0.0381451947 0.0562948237 0.0056421684 0.0102813038 0.0589577740; -frequency C50pi20 = 0.0525278351 0.0364897390 0.0903013988 0.1854660991 0.0037795400 0.0776857292 0.1789287290 0.0232011648 0.0687702011 0.0135825419 0.0337350646 0.0458143770 0.0108457797 0.0191020037 0.0088729983 0.0495289201 0.0389358438 0.0046292762 0.0354195947 0.0223831639; -frequency C50pi21 = 0.0026515970 0.0080885204 0.0010572021 0.0016052142 0.0036540307 0.0022979498 0.0014681767 0.0046230912 0.0043887616 0.0020669456 0.0172444871 0.0006593575 0.0034691503 0.0658351447 0.0019185467 0.0022498420 0.0021278866 0.8183345006 0.0515918357 0.0046677595; -frequency C50pi22 = 0.0548133174 0.0692044159 0.0211265710 0.0207779125 0.0072646572 0.0567865657 0.0738456579 0.0051797705 0.0168408457 0.1386104888 0.0713795154 0.0896393340 0.0201205491 0.0082150393 0.0104049016 0.0282344422 0.0995597110 0.0019722093 0.0074054035 0.1986186919; -frequency C50pi23 = 0.0047955268 0.0028033787 0.0050506238 0.0014080516 0.0061671241 0.0019350126 0.0009861551 0.0014396818 0.0389623239 0.0048950388 0.0151748150 0.0012306644 0.0032520404 0.3601993060 0.0011266316 0.0054509935 0.0034763921 0.0362899931 0.4980200998 0.0073361467; -frequency C50pi24 = 0.0365462996 0.0280070630 0.0183606115 0.0070525803 0.0093251684 0.0300239431 0.0221812842 0.0047778642 0.0178840316 0.2025947306 0.1973012130 0.0250209750 0.0557862640 0.0258067541 0.0042772210 0.0209374223 0.0731398943 0.0049738166 0.0200601168 0.1959427463; -frequency C50pi25 = 0.0684197684 0.0111619750 0.0544764241 0.0224313301 0.0106958312 0.0091799953 0.0097436799 0.0255871619 0.0055558006 0.0059416697 0.0076746853 0.0144198991 0.0056892166 0.0037356845 0.0172554137 0.3527301149 0.3586913194 0.0012501907 0.0028636710 0.0124961682; -frequency C50pi26 = 0.0495330775 0.1060064564 0.1511923969 0.0483471288 0.0080946362 0.0886108407 0.0449556763 0.0331436148 0.1447288287 0.0061850770 0.0190407203 0.0948075276 0.0063418871 0.0126162987 0.0100869563 0.0799801169 0.0445418973 0.0044765096 0.0363930724 0.0109172804; -frequency C50pi27 = 0.0702411901 0.0642050323 0.0779553908 0.0510328304 0.0042438849 0.0723300485 0.0883747710 0.0177347101 0.0233800891 0.0198779320 0.0183537117 0.1051267065 0.0107865869 0.0037987118 0.0112811107 0.1345081583 0.1805543234 0.0014252764 0.0055089381 0.0392805971; -frequency C50pi28 = 0.1207399152 0.1741788075 0.0385528120 0.0162689581 0.0118494185 0.0760068404 0.0337935391 0.0653431008 0.0342783806 0.0085426053 0.0256788075 0.1434443984 0.0112347894 0.0061270793 0.0294493558 0.1091415488 0.0634181251 0.0046156419 0.0085374279 0.0187984481; -frequency C50pi29 = 0.0064521696 0.0021817337 0.0005939658 0.0003904032 0.0021538307 0.0019099968 0.0008007758 0.0005208471 0.0011374294 0.2850758996 0.4278536740 0.0013920239 0.0561988528 0.0449501501 0.0026289702 0.0011053664 0.0055157148 0.0022753671 0.0059612583 0.1509015707; -frequency C50pi30 = 0.0969092741 0.0359723370 0.0633194168 0.0411020773 0.0145578946 0.0466661704 0.0469223767 0.0374614202 0.0537149580 0.0394603009 0.0856256544 0.0283577862 0.0346435320 0.0507298072 0.0167177549 0.0990945318 0.0806503833 0.0128373826 0.0598972198 0.0553597218; -frequency C50pi31 = 0.0840212010 0.0214242172 0.2240668646 0.0354684798 0.0265031681 0.0235675678 0.0076026464 0.1173325117 0.0516019781 0.0048917455 0.0067211727 0.0173653354 0.0079342101 0.0087501486 0.0093276105 0.2637097946 0.0630157977 0.0022314593 0.0170994247 0.0073646661; -frequency C50pi32 = 0.0055061507 0.0012508737 0.0004824961 0.0004530173 0.0054435931 0.0011315076 0.0004150379 0.0012285001 0.0019884532 0.0617431901 0.4342418135 0.0008161868 0.0554628445 0.3289659386 0.0025814794 0.0021197505 0.0029510440 0.0172981374 0.0412097497 0.0347102358; -frequency C50pi33 = 0.0442014612 0.1295816316 0.0258622052 0.0148900471 0.0076165815 0.1301765579 0.0636708052 0.0105339122 0.0662542863 0.0423977240 0.1434197528 0.1040381429 0.0403363621 0.0260540342 0.0089335090 0.0242573966 0.0317938092 0.0077831996 0.0309973779 0.0472012033; -frequency C50pi34 = 0.0571984155 0.0034929878 0.0031324721 0.0012472712 0.0113230439 0.0025279922 0.0040737817 0.0030647398 0.0020494153 0.3131200932 0.0901750144 0.0034699557 0.0242565205 0.0112345295 0.0048197020 0.0095675953 0.0529842025 0.0010645104 0.0041851135 0.3970126433; -frequency C50pi35 = 0.1141963934 0.0102229903 0.0178644126 0.0172307307 0.0056978908 0.0039055039 0.0085974326 0.7425714921 0.0026414175 0.0005602022 0.0019872568 0.0055400059 0.0004739977 0.0010663175 0.0054302447 0.0508318204 0.0055408544 0.0018890811 0.0012409205 0.0025110348; -frequency C50pi36 = 0.3531758625 0.0043402857 0.0031812423 0.0030024877 0.0165711581 0.0029126214 0.0042077690 0.4520896100 0.0021366362 0.0063692579 0.0120143269 0.0022586970 0.0080260130 0.0043865828 0.0111462027 0.0658344033 0.0182952730 0.0010872878 0.0023330172 0.0266312657; -frequency C50pi37 = 0.0310798708 0.0234519814 0.1273669012 0.1197925100 0.0031216960 0.0295858842 0.0470763446 0.4883046368 0.0193412101 0.0008855622 0.0032808220 0.0408430573 0.0014984226 0.0016298596 0.0063229464 0.0423452622 0.0082797260 0.0007718998 0.0024996877 0.0025217188; -frequency C50pi38 = 0.0370340667 0.0689410214 0.1704407181 0.1041817082 0.0018108784 0.0715495095 0.0659866718 0.2159298358 0.0443591808 0.0008668888 0.0064679416 0.1275300877 0.0027248464 0.0014178323 0.0060253154 0.0534574556 0.0147073432 0.0007999410 0.0037708147 0.0019979426; -frequency C50pi39 = 0.0160398536 0.0526622999 0.1051167149 0.0187352256 0.0085330116 0.0922616498 0.0154450839 0.0076235155 0.3848449137 0.0057129406 0.0277195224 0.0219347380 0.0071078308 0.0376358992 0.0072201969 0.0209969653 0.0142198783 0.0096946226 0.1384243143 0.0080708232; -frequency C50pi40 = 0.0165549167 0.0085856833 0.0049441851 0.0016567380 0.0086529073 0.0184087838 0.0033759867 0.0033844413 0.0084695063 0.0483923758 0.4963073963 0.0056997331 0.1949377866 0.0999527140 0.0060271256 0.0084289585 0.0122619536 0.0114013282 0.0192314834 0.0233259964; -frequency C50pi41 = 0.0227379959 0.0137060298 0.3162561805 0.2932103363 0.0037073869 0.0169119273 0.0380984220 0.0550224760 0.0319886436 0.0039219190 0.0041582288 0.0312539900 0.0019467591 0.0022276545 0.0059660826 0.0998736999 0.0462336456 0.0007310446 0.0069012376 0.0051463400; -frequency C50pi42 = 0.2406936002 0.0197081082 0.0462578641 0.0206379264 0.0186726798 0.0189843646 0.0129785315 0.1749109142 0.0118714342 0.0049349532 0.0126237761 0.0127876711 0.0095642661 0.0083606873 0.0326283314 0.2101300187 0.1130042042 0.0041951500 0.0069210515 0.0201344675; -frequency C50pi43 = 0.0214325714 0.3730744306 0.0220674626 0.0037495290 0.0069038342 0.0670391950 0.0159298773 0.0126211348 0.0284477629 0.0102051798 0.0242954287 0.3272456489 0.0093147452 0.0036403029 0.0070138928 0.0216860624 0.0232259733 0.0030422478 0.0065368590 0.0125278613; -frequency C50pi44 = 0.1567707052 0.0258059606 0.0161658338 0.0223946414 0.0074382689 0.0274455582 0.0410010574 0.0360501033 0.0159972680 0.0640941463 0.0944756654 0.0192586366 0.0312789234 0.0227728534 0.1653169011 0.0640177954 0.0549103568 0.0050980224 0.0138248643 0.1158824381; -frequency C50pi45 = 0.4345912387 0.0061142999 0.0097660767 0.0060102195 0.0197377879 0.0069062805 0.0082800652 0.0829075516 0.0029125126 0.0047747098 0.0054182241 0.0049974525 0.0039676868 0.0029052002 0.0193588692 0.2795854727 0.0677816788 0.0008196092 0.0025196339 0.0306454302; -frequency C50pi46 = 0.0296734965 0.1443250343 0.0128668160 0.0059561454 0.0129805897 0.0492311054 0.0262726056 0.0069437743 0.0676183913 0.0452364160 0.1374511139 0.0907089722 0.0308070846 0.0816441785 0.0060701025 0.0197130339 0.0299715868 0.0461468661 0.1119414237 0.0444412635; -frequency C50pi47 = 0.1089911217 0.0159187676 0.0643054232 0.2086425054 0.0016540963 0.0375565797 0.1791004993 0.0610564917 0.0144660242 0.0038322948 0.0067778708 0.0372270242 0.0022817918 0.0012634818 0.0851792013 0.1065821239 0.0524401536 0.0005901255 0.0027836060 0.0093508169; -frequency C50pi48 = 0.1429463629 0.0304191716 0.0191145368 0.0351867799 0.0031493079 0.0341248336 0.0508492526 0.0305914291 0.0134276644 0.0070227247 0.0197257013 0.0421442438 0.0038904796 0.0040697467 0.4052202085 0.0874406009 0.0445304918 0.0012842531 0.0039485525 0.0209136585; -frequency C50pi49 = 0.0580116857 0.0903213669 0.0369245281 0.0613603988 0.0022829951 0.2073851382 0.2225853236 0.0159476910 0.0311816018 0.0068543753 0.0217092509 0.1504781849 0.0084841006 0.0020581132 0.0046206107 0.0276754451 0.0321477211 0.0011651089 0.0051889637 0.0136173964; -frequency C50pi50 = 0.2153540940 0.0359173007 0.0219927944 0.0735128474 0.0037017294 0.0566408566 0.1350375818 0.0662986417 0.0157121780 0.0138456188 0.0266922211 0.0474338339 0.0088042600 0.0035035311 0.0739583083 0.0921989198 0.0575687235 0.0019306896 0.0044520833 0.0454437865; -model C50 = POISSON+G4+FMIX{C50pi1:1:0.0164297003,C50pi2:1:0.0273175755,C50pi3:1:0.0460247610,C50pi4:1:0.0084864734,C50pi5:1:0.0125389252,C50pi6:1:0.0343549036,C50pi7:1:0.0130241102,C50pi8:1:0.0094755681,C50pi9:1:0.0190040551,C50pi10:1:0.0151902354,C50pi11:1:0.0320534760,C50pi12:1:0.0210059850,C50pi13:1:0.0237408547,C50pi14:1:0.0239841203,C50pi15:1:0.0213748021,C50pi16:1:0.0210717705,C50pi17:1:0.0050241805,C50pi18:1:0.0166262276,C50pi19:1:0.0143945956,C50pi20:1:0.0104391130,C50pi21:1:0.0107628277,C50pi22:1:0.0148818171,C50pi23:1:0.0321480239,C50pi24:1:0.0145477978,C50pi25:1:0.0332355807,C50pi26:1:0.0143190281,C50pi27:1:0.0234478734,C50pi28:1:0.0183044983,C50pi29:1:0.0403269452,C50pi30:1:0.0135629530,C50pi31:1:0.0091880799,C50pi32:1:0.0158270022,C50pi33:1:0.0121019379,C50pi34:1:0.0353560982,C50pi35:1:0.0404495617,C50pi36:1:0.0104569232,C50pi37:1:0.0146187792,C50pi38:1:0.0093984095,C50pi39:1:0.0146773809,C50pi40:1:0.0201635562,C50pi41:1:0.0255640273,C50pi42:1:0.0039486842,C50pi43:1:0.0393652608,C50pi44:1:0.0056415419,C50pi45:1:0.0382833580,C50pi46:1:0.0039735086,C50pi47:1:0.0140269355,C50pi48:1:0.0476703673,C50pi49:1:0.0204062788,C50pi50:1:0.0117835304}; - -[ --------------------------------------------------------- - CAT-C60 profile mixture model of Le, Gascuel & Lartillot (2008) - --------------------------------------------------------- ] -frequency C60pi1 = 0.1534363248 0.0444389067 0.0796726990 0.0546757288 0.0047306596 0.0514333025 0.0529324359 0.1103775749 0.0174480218 0.0050343887 0.0130294160 0.0603928711 0.0075550589 0.0035554315 0.0249523704 0.2029625968 0.0957668473 0.0014444483 0.0059800307 0.0101808864; -frequency C60pi2 = 0.0281984692 0.3031055487 0.0312954609 0.0091549350 0.0019503463 0.0939884393 0.0388530140 0.0084028325 0.0155384715 0.0107872879 0.0217786594 0.3476042929 0.0109904917 0.0015919288 0.0071539896 0.0197479052 0.0328352333 0.0009209994 0.0025714024 0.0135302919; -frequency C60pi3 = 0.0083680740 0.0007319768 0.0006123446 0.0002228366 0.0020433870 0.0009498685 0.0004731544 0.0004825748 0.0005189995 0.3768453098 0.2608334606 0.0006296168 0.0315700586 0.0123984358 0.0009595916 0.0009746383 0.0049990761 0.0008657759 0.0017132332 0.2938075872; -frequency C60pi4 = 0.2227229348 0.0064846074 0.0061206496 0.0007997588 0.1640285908 0.0051051888 0.0027280806 0.0202702520 0.0037183875 0.0455406072 0.0883350071 0.0022832871 0.0348094559 0.0228667054 0.0035471579 0.0850040072 0.1012848285 0.0048424833 0.0096500033 0.1698580069; -frequency C60pi5 = 0.0412139519 0.0067627055 0.0051067690 0.0017434391 0.0204715649 0.0057538477 0.0037263409 0.0069107492 0.0180293946 0.1154281623 0.1693562458 0.0042900270 0.0414066566 0.2239001858 0.0058416410 0.0149106129 0.0239548406 0.0332237129 0.1379349474 0.1200342049; -frequency C60pi6 = 0.0480550249 0.0308438053 0.0940628721 0.2084606133 0.0037801787 0.0747676701 0.1855184661 0.0191402239 0.0872162350 0.0094685435 0.0277340828 0.0375741243 0.0088308358 0.0196000958 0.0081267777 0.0439680761 0.0324588883 0.0034665720 0.0387499964 0.0181769181; -frequency C60pi7 = 0.0062848745 0.0026246919 0.0030342510 0.0005324147 0.0073027627 0.0034409089 0.0009741492 0.0019578159 0.0102225186 0.0180592309 0.1179064681 0.0016205916 0.0234721825 0.3974552519 0.0020165583 0.0056903327 0.0037091821 0.0598639097 0.3185565304 0.0152753744; -frequency C60pi8 = 0.1815005560 0.0026845411 0.0148484537 0.0025145485 0.4205633920 0.0014097001 0.0007088144 0.0461854175 0.0014374605 0.0041745536 0.0098310464 0.0006474254 0.0041611385 0.0068976432 0.0038767247 0.1864537050 0.0687189855 0.0027083549 0.0061033012 0.0345742379; -frequency C60pi9 = 0.0600740822 0.0367642654 0.0134869242 0.0170572285 0.0070719770 0.0142469806 0.0127486975 0.0343564471 0.0305859029 0.0204571345 0.0994551128 0.0212367087 0.0318165939 0.1140907926 0.0297628218 0.0505792699 0.0339368402 0.2312808862 0.1192491702 0.0217421638; -frequency C60pi10 = 0.0708394513 0.0474098489 0.0416822304 0.0324482918 0.0131641265 0.0494874703 0.0508264389 0.0183309196 0.0567272697 0.0650369079 0.1282255556 0.0343618389 0.0390362930 0.0594359563 0.0135608209 0.0551343199 0.0642260358 0.0137118382 0.0673934289 0.0789609573; -frequency C60pi11 = 0.0617689371 0.0076332888 0.0303081645 0.3430234188 0.0007199837 0.0307856241 0.3792509407 0.0284658686 0.0079592120 0.0016999627 0.0039945339 0.0216076877 0.0019734329 0.0009814186 0.0174791407 0.0337831940 0.0203426591 0.0006130268 0.0017102752 0.0058992300; -frequency C60pi12 = 0.0421559537 0.1042068314 0.0286980872 0.0164385240 0.0044450330 0.1393690851 0.0531949072 0.0134711207 0.0177764997 0.0267727728 0.1967237776 0.1323735242 0.1182827521 0.0086728324 0.0051837880 0.0255852718 0.0333292020 0.0045852327 0.0070281498 0.0217066546; -frequency C60pi13 = 0.2814809927 0.0100367066 0.0172867775 0.0064385734 0.0258337508 0.0133101925 0.0115046410 0.0270054934 0.0054629657 0.0188216093 0.0190993462 0.0098712843 0.0158719589 0.0050481705 0.0129510033 0.1886808600 0.2427104979 0.0012274627 0.0036052922 0.0837524211; -frequency C60pi14 = 0.2769188320 0.0017226995 0.0021315271 0.0011672545 0.0318292645 0.0018216251 0.0024752467 0.0199646887 0.0005170863 0.0983109006 0.0489264326 0.0016232163 0.0173414948 0.0070843906 0.0070179705 0.0336348952 0.0814141404 0.0007118144 0.0032942319 0.3620922883; -frequency C60pi15 = 0.1577797792 0.1112140270 0.0570403237 0.0648290471 0.0053318076 0.1065373681 0.0913586945 0.0906209718 0.0533809635 0.0029171632 0.0156225571 0.0782148712 0.0045758969 0.0025047816 0.0067077844 0.0929310045 0.0393122597 0.0028575821 0.0077590269 0.0085040899; -frequency C60pi16 = 0.0593735135 0.0354740772 0.1151175314 0.2189482708 0.0015332173 0.0688752402 0.1819422913 0.0813707101 0.0220478285 0.0020993577 0.0056191259 0.0750172075 0.0021871739 0.0010838321 0.0109737422 0.0726449461 0.0380238271 0.0007346460 0.0026664883 0.0042669729; -frequency C60pi17 = 0.0978066326 0.0265576438 0.0101843505 0.0120781428 0.0064138404 0.0307876446 0.0291282947 0.0128912798 0.0128036716 0.0723904209 0.1279438950 0.0245630658 0.0303267312 0.0198963719 0.2723524069 0.0350549441 0.0484557340 0.0046842467 0.0104773833 0.1152032995; -frequency C60pi18 = 0.0124023388 0.0030680354 0.0009239105 0.0006037316 0.0041885695 0.0032957441 0.0012524000 0.0011306791 0.0013542104 0.2344167852 0.4550557697 0.0016718177 0.0667307666 0.0610615367 0.0037076169 0.0019420934 0.0067612939 0.0038937184 0.0074911765 0.1290478057; -frequency C60pi19 = 0.0794230623 0.1294739355 0.0662792725 0.0587236242 0.0019919499 0.1143880588 0.1246900644 0.0325432311 0.0238605372 0.0036277150 0.0097987961 0.2147597316 0.0041846209 0.0012869951 0.0142410239 0.0615807386 0.0477333594 0.0006525371 0.0029420233 0.0078187231; -frequency C60pi20 = 0.0248148778 0.0083552910 0.1888915388 0.4278832998 0.0027839717 0.0210777725 0.1432386297 0.0643968435 0.0185736870 0.0022506941 0.0034558626 0.0179274104 0.0015714503 0.0014680353 0.0073768035 0.0377003132 0.0187767966 0.0005891859 0.0042602708 0.0046072655; -frequency C60pi21 = 0.0017003427 0.0060674330 0.0004222900 0.0010711490 0.0029059420 0.0016424179 0.0011731741 0.0035579609 0.0027630465 0.0012291190 0.0127420810 0.0004273804 0.0025671348 0.0513377024 0.0013536738 0.0011871674 0.0014033068 0.8640436936 0.0390912582 0.0033137266; -frequency C60pi22 = 0.0468360682 0.0639796924 0.0205603686 0.0185615516 0.0059954138 0.0557030821 0.0705436036 0.0045435329 0.0152062773 0.1550613356 0.0824253382 0.0866248354 0.0245854443 0.0080177192 0.0081485616 0.0237025617 0.0962054496 0.0018368673 0.0067131723 0.2047491243; -frequency C60pi23 = 0.0258764792 0.0201097124 0.0298384107 0.0107037437 0.0142503909 0.0158529432 0.0105649532 0.0073064999 0.1411078834 0.0114777629 0.0407992414 0.0119179202 0.0098798997 0.1876429961 0.0051228805 0.0275699644 0.0170764901 0.0405124999 0.3536390834 0.0187502449; -frequency C60pi24 = 0.0296285022 0.0046400334 0.0034944393 0.0008851024 0.0090046468 0.0055481111 0.0033046518 0.0027969482 0.0050701500 0.2583397750 0.2668085481 0.0046690936 0.0770825277 0.0408798247 0.0026918193 0.0068538089 0.0322265673 0.0035506055 0.0153353414 0.2271895033; -frequency C60pi25 = 0.0555725806 0.0098447861 0.0409064430 0.0140389597 0.0097418602 0.0068727710 0.0069443190 0.0157956555 0.0041631258 0.0069826497 0.0075271247 0.0139224817 0.0058762687 0.0034496730 0.0119733364 0.3482466393 0.4213655981 0.0010061491 0.0026576772 0.0131119012; -frequency C60pi26 = 0.0682671212 0.0615207091 0.0530661192 0.0360278709 0.0141433148 0.0612274332 0.0497415394 0.0268696520 0.1127674983 0.0132646615 0.0544493838 0.0482609047 0.0170033964 0.0803375967 0.0191949850 0.0671839752 0.0443995774 0.0199957919 0.1255070748 0.0267713947; -frequency C60pi27 = 0.0792618808 0.0638377192 0.0635289371 0.0436646174 0.0049503302 0.0666365188 0.0829639117 0.0183428565 0.0233169239 0.0249427251 0.0221483402 0.0932577596 0.0120893380 0.0049131149 0.0126360122 0.1334848656 0.1916745928 0.0018040086 0.0062353115 0.0503102360; -frequency C60pi28 = 0.0731759112 0.2105335985 0.0324200854 0.0110007149 0.0123458504 0.0858951989 0.0349942684 0.0224509173 0.0386903280 0.0246226304 0.0508307349 0.1783344831 0.0185740720 0.0093148787 0.0148722772 0.0603181436 0.0649574934 0.0051046395 0.0130597421 0.0385040321; -frequency C60pi29 = 0.0878402710 0.0110331750 0.0060801213 0.0032803903 0.0171147088 0.0109831614 0.0101465790 0.0087090941 0.0054902234 0.1987761871 0.1756460821 0.0082096925 0.0417232903 0.0191954435 0.0111283542 0.0209862621 0.0697718709 0.0031744014 0.0081905473 0.2825201446; -frequency C60pi30 = 0.0990215820 0.0349351987 0.0211149501 0.0118797946 0.0108995677 0.0557710676 0.0278999992 0.0240250097 0.0123445071 0.0776564721 0.2354511299 0.0322817789 0.1207665429 0.0214442058 0.0075655541 0.0524170141 0.0649785115 0.0047075806 0.0077328724 0.0771066610; -frequency C60pi31 = 0.0601641168 0.0161995226 0.2783522747 0.0337188808 0.0315066987 0.0210645987 0.0059839451 0.0543080710 0.0531523512 0.0070650825 0.0070698142 0.0139598368 0.0088298653 0.0069525877 0.0075834331 0.2829802556 0.0860317092 0.0014966551 0.0134849454 0.0100953553; -frequency C60pi32 = 0.0049781737 0.0018412331 0.0007012207 0.0005315368 0.0052978737 0.0024089907 0.0007630546 0.0015051317 0.0041575221 0.0443828633 0.4417417476 0.0011615060 0.0602807417 0.3351117140 0.0027847686 0.0025795769 0.0030288544 0.0171302592 0.0458455751 0.0237676560; -frequency C60pi33 = 0.0251996593 0.1114468110 0.0142031925 0.0041012288 0.0097099500 0.0620070749 0.0262571641 0.0038067269 0.0431938935 0.0974043253 0.2447197423 0.0824312856 0.0539323021 0.0429091639 0.0052658505 0.0096093107 0.0251183002 0.0146571900 0.0456965140 0.0783303143; -frequency C60pi34 = 0.0230361648 0.0014748749 0.0013534390 0.0006264439 0.0048580122 0.0009870046 0.0015762583 0.0011565336 0.0008899238 0.3952895890 0.0576537208 0.0014663528 0.0140986541 0.0072127040 0.0020177885 0.0028770237 0.0205580852 0.0005477695 0.0019539080 0.4603657493; -frequency C60pi35 = 0.1408776963 0.0297808449 0.0171297613 0.0285076933 0.0032213718 0.0320632225 0.0423838922 0.0299558472 0.0131321477 0.0066914481 0.0195120028 0.0383781635 0.0036276863 0.0041231064 0.4383466229 0.0851400095 0.0422765692 0.0013236871 0.0037087638 0.0198194632; -frequency C60pi36 = 0.4442491220 0.0050216551 0.0102305117 0.0057193038 0.0235405374 0.0055997640 0.0064889886 0.0822687710 0.0025505743 0.0033615104 0.0040990063 0.0038097073 0.0028683069 0.0024413211 0.0162890960 0.2999969708 0.0559664935 0.0007735426 0.0020639824 0.0226608347; -frequency C60pi37 = 0.0898717958 0.0070958305 0.0130067619 0.0129166888 0.0044131479 0.0023806547 0.0058957027 0.8087563021 0.0016517855 0.0004339282 0.0015564455 0.0033939025 0.0004253422 0.0008073572 0.0034128140 0.0362876891 0.0032887534 0.0015223902 0.0008537454 0.0020289624; -frequency C60pi38 = 0.0550840246 0.0472254260 0.1877829604 0.1273796123 0.0035824944 0.0527969268 0.0655884730 0.0637607521 0.0404883483 0.0075574152 0.0136304510 0.0867682792 0.0081684229 0.0040375032 0.0110681809 0.1263380956 0.0752544318 0.0013563681 0.0118590434 0.0102727908; -frequency C60pi39 = 0.0117681394 0.0442558806 0.0844144627 0.0144712108 0.0070388254 0.1038342049 0.0110901161 0.0049626578 0.4337194047 0.0061337038 0.0298794939 0.0137928558 0.0076237551 0.0338266335 0.0081346096 0.0140571089 0.0108276801 0.0080683065 0.1437251732 0.0083757773; -frequency C60pi40 = 0.0159285638 0.0048098656 0.0032692643 0.0010966937 0.0080519916 0.0134552459 0.0021324215 0.0025086365 0.0049192147 0.0501543893 0.5307634291 0.0035599431 0.2160085187 0.0743650717 0.0045247350 0.0066922196 0.0119092283 0.0070928134 0.0106565111 0.0281012433; -frequency C60pi41 = 0.0195973253 0.0105142992 0.3289103336 0.3099848991 0.0034539049 0.0116196758 0.0250777800 0.0627528956 0.0295961112 0.0032650434 0.0028246884 0.0240963907 0.0008425062 0.0019706550 0.0049062781 0.1064984500 0.0438053705 0.0006333959 0.0056197958 0.0040302013; -frequency C60pi42 = 0.0833804360 0.0125871438 0.0969824220 0.0686820704 0.0081981143 0.0121520930 0.0227415415 0.0982291876 0.0073954898 0.0017471177 0.0039653113 0.0129342146 0.0019557975 0.0024132583 0.0355924232 0.3115606483 0.2113368612 0.0016329034 0.0017991083 0.0047138579; -frequency C60pi43 = 0.0181409133 0.4129662563 0.0233205154 0.0033333547 0.0085143598 0.0526694251 0.0096531879 0.0224552642 0.0375238929 0.0035090482 0.0149146621 0.3208065790 0.0046098856 0.0035426859 0.0087197469 0.0262309419 0.0131791136 0.0034766995 0.0079588201 0.0044746474; -frequency C60pi44 = 0.2494227404 0.0185481724 0.0164119567 0.0169234299 0.0122862654 0.0228501981 0.0370491083 0.0347467705 0.0087069587 0.0595718359 0.0451065029 0.0177064733 0.0204556127 0.0077360919 0.0686403544 0.0889295672 0.0986017356 0.0028603862 0.0061938477 0.1672519917; -frequency C60pi45 = 0.1419737638 0.0373945961 0.0576296888 0.0537452477 0.0068856658 0.0286239972 0.0407540287 0.3988107872 0.0152895617 0.0016627616 0.0092348297 0.0314273807 0.0055425500 0.0040286132 0.0180328866 0.1123731997 0.0242478202 0.0025909098 0.0049054208 0.0048462908; -frequency C60pi46 = 0.0178903305 0.1958843646 0.0155853897 0.0031054277 0.0290304227 0.1051819261 0.0040503389 0.0100480293 0.1252696215 0.0016708003 0.0722356645 0.0233340169 0.0116142354 0.0238913260 0.0009938415 0.0181675536 0.0186260222 0.2260554691 0.0859787232 0.0113864962; -frequency C60pi47 = 0.1454758367 0.0420979067 0.0400419720 0.1294249748 0.0014186329 0.0906469055 0.2471353458 0.0319650773 0.0130426183 0.0058525371 0.0123593139 0.0818154090 0.0044178939 0.0017552077 0.0151135525 0.0656688174 0.0511289472 0.0007731441 0.0029258438 0.0169400635; -frequency C60pi48 = 0.0169799462 0.0242346701 0.1318047919 0.1043655101 0.0022087215 0.0269349684 0.0376379591 0.5404470183 0.0181137053 0.0007459679 0.0021146994 0.0508617611 0.0009473769 0.0006780593 0.0038754401 0.0297030159 0.0045836180 0.0006031889 0.0015704090 0.0015891728; -frequency C60pi49 = 0.0402646249 0.1152022601 0.0323829165 0.0293968352 0.0039388655 0.2497008043 0.1603524245 0.0129260411 0.0617967839 0.0098491259 0.0354918823 0.1448804422 0.0124818865 0.0041153375 0.0043374229 0.0243246958 0.0305645368 0.0026676598 0.0097227847 0.0156026694; -frequency C60pi50 = 0.2256914610 0.0523417493 0.0244308734 0.0637125217 0.0043390149 0.0578159236 0.1154830640 0.0867335173 0.0131066949 0.0085086217 0.0193314218 0.0660468804 0.0064877206 0.0027440054 0.0611149102 0.1070877179 0.0507677144 0.0013695913 0.0028982948 0.0299883012; -frequency C60pi51 = 0.0033164209 0.0015310773 0.0030830171 0.0008266472 0.0051890730 0.0011024889 0.0005134130 0.0010432830 0.0278451262 0.0041895268 0.0111212494 0.0007149922 0.0023621780 0.3801761447 0.0008365077 0.0035876698 0.0023608948 0.0333346985 0.5107889643 0.0060766272; -frequency C60pi52 = 0.1995014012 0.0236078675 0.0392254543 0.0094955104 0.0584590451 0.0254265363 0.0125535371 0.0939787338 0.0341857201 0.0140209879 0.0449387571 0.0118723304 0.0246990633 0.0634433944 0.0145385320 0.1663920640 0.0533159207 0.0129802666 0.0606346163 0.0367302614; -frequency C60pi53 = 0.0319448994 0.1011667268 0.2084709220 0.0378074649 0.0066040348 0.0766372935 0.0279488190 0.0365541130 0.2088643258 0.0047542347 0.0156545731 0.0868664783 0.0043253317 0.0108915768 0.0060899575 0.0577656939 0.0302051160 0.0026001883 0.0387897304 0.0060585202; -frequency C60pi54 = 0.0776799515 0.0142518583 0.0403216692 0.0080651725 0.0140092962 0.0179995517 0.0112622427 0.0136868237 0.0133729897 0.1239635380 0.0724670993 0.0129144967 0.0420745442 0.0173584908 0.0117084432 0.0922723571 0.2316899445 0.0028153633 0.0141726542 0.1679135132; -frequency C60pi55 = 0.1183662657 0.0805192606 0.0259524932 0.0495595439 0.0035624835 0.1204924917 0.1537589210 0.0194993426 0.0229373171 0.0302661211 0.0571250629 0.0982304112 0.0171727472 0.0068665705 0.0175153030 0.0486588400 0.0635796210 0.0023008307 0.0083027431 0.0553336300; -frequency C60pi56 = 0.0528559899 0.0193569043 0.0264743774 0.2092761515 0.0008625883 0.1212409715 0.4024189781 0.0155838458 0.0124148798 0.0054864832 0.0090256472 0.0497017031 0.0042357114 0.0012650715 0.0063185636 0.0197262901 0.0235463735 0.0008381610 0.0033948741 0.0159764347; -frequency C60pi57 = 0.0344366215 0.0426221820 0.1636716191 0.1139007491 0.0020985982 0.0605413987 0.0541780220 0.3361639671 0.0461776737 0.0003463416 0.0048355678 0.0667552967 0.0019704509 0.0031557619 0.0040369775 0.0481173332 0.0089148085 0.0006510101 0.0054145649 0.0020110555; -frequency C60pi58 = 0.1153088951 0.0151278638 0.0458476603 0.1755516676 0.0014962362 0.0366731222 0.1749410045 0.0394181311 0.0132401530 0.0056912974 0.0101409559 0.0433118387 0.0030332064 0.0015700232 0.1665802563 0.0871536033 0.0468260603 0.0007515702 0.0031432715 0.0141931831; -frequency C60pi59 = 0.3865149348 0.0037579334 0.0030420497 0.0022366810 0.0218928357 0.0021464743 0.0031387843 0.3694353983 0.0014672902 0.0085376076 0.0127257242 0.0018840458 0.0080581695 0.0039281367 0.0158688291 0.0808877279 0.0305195935 0.0009922880 0.0019020345 0.0410634615; -frequency C60pi60 = 0.0146570745 0.0028841333 0.0012998335 0.0005210575 0.0024317913 0.0049362750 0.0014874369 0.0020953252 0.0010181940 0.1913901476 0.4432797758 0.0022898369 0.2217427062 0.0091637503 0.0007685153 0.0027251487 0.0170997497 0.0008779380 0.0014756028 0.0778557075; -model C60 = POISSON+G4+FMIX{C60pi1:1:0.0169698865,C60pi2:1:0.0211683374,C60pi3:1:0.0276589079,C60pi4:1:0.0065675964,C60pi5:1:0.0141221416,C60pi6:1:0.0068774834,C60pi7:1:0.0146909701,C60pi8:1:0.0067225777,C60pi9:1:0.0018396660,C60pi10:1:0.0102547197,C60pi11:1:0.0230896163,C60pi12:1:0.0057941033,C60pi13:1:0.0125394534,C60pi14:1:0.0204526478,C60pi15:1:0.0070629602,C60pi16:1:0.0117982741,C60pi17:1:0.0068334668,C60pi18:1:0.0433775839,C60pi19:1:0.0318278731,C60pi20:1:0.0222546108,C60pi21:1:0.0102264969,C60pi22:1:0.0150545891,C60pi23:1:0.0134159878,C60pi24:1:0.0148552065,C60pi25:1:0.0239111516,C60pi26:1:0.0128776278,C60pi27:1:0.0222318842,C60pi28:1:0.0247444742,C60pi29:1:0.0214274810,C60pi30:1:0.0115001882,C60pi31:1:0.0076017389,C60pi32:1:0.0130258568,C60pi33:1:0.0093701965,C60pi34:1:0.0467194264,C60pi35:1:0.0441940314,C60pi36:1:0.0322263154,C60pi37:1:0.0402999891,C60pi38:1:0.0150234227,C60pi39:1:0.0104589903,C60pi40:1:0.0214742395,C60pi41:1:0.0154957836,C60pi42:1:0.0101789953,C60pi43:1:0.0227980379,C60pi44:1:0.0123204539,C60pi45:1:0.0066777583,C60pi46:1:0.0004150083,C60pi47:1:0.0344385130,C60pi48:1:0.0113663379,C60pi49:1:0.0127143049,C60pi50:1:0.0124323741,C60pi51:1:0.0262124415,C60pi52:1:0.0064994957,C60pi53:1:0.0103203293,C60pi54:1:0.0142463512,C60pi55:1:0.0215600067,C60pi56:1:0.0199150700,C60pi57:1:0.0038964200,C60pi58:1:0.0113448855,C60pi59:1:0.0128595846,C60pi60:1:0.0117656776}; - -end; diff --git a/intrinsics b/intrinsics new file mode 100644 index 000000000..cd397a54d --- /dev/null +++ b/intrinsics @@ -0,0 +1,33 @@ +_mm_andnot_pd’ was not declared in this scope; +_mm_and_pd’ was not declared in this scope; +_mm_blendv_pd’ was not declared in this scope; +_mm_blendv_ps’ was not declared in this scope; +_mm_castpd_ps’ was not declared in this scope; +_mm_castpd_si128’ was not declared in this scope; +_mm_castps_pd’ was not declared in this scope; +_mm_castsi128_pd’ was not declared in this scope; +_mm_cmpeq_pd’ was not declared in this scope; +_mm_cmple_pd’ was not declared in this scope; +_mm_cmplt_pd’ was not declared in this scope; +_mm_cmpneq_pd’ was not declared in this scope; +_mm_cvtepi32_pd’ was not declared in this scope; +_mm_cvtpd_epi32’ was not declared in this scope; +_mm_cvtpd_ps’ was not declared in this scope; +_mm_cvtps_pd’ was not declared in this scope; +_mm_cvtsd_f64’ was not declared in this scope; +_mm_cvttpd_epi32’ was not declared in this scope; +_mm_div_pd’ was not declared in this scope; +_mm_getcsr’ was not declared in this scope; +_mm_hadd_pd’ was not declared in this scope; +_mm_movemask_pd’ was not declared in this scope; +_mm_mulhi_epu16’ was not declared in this scope; +_mm_mul_pd’ was not declared in this scope; +_mm_or_pd’ was not declared in this scope; +_mm_setcsr’ was not declared in this scope; +_mm_setr_pd’ was not declared in this scope; +_mm_set_sd’ was not declared in this scope; +_mm_setzero_pd’ was not declared in this scope; +_mm_shuffle_pd’ was not declared in this scope; +_mm_store_sd’ was not declared in this scope; +_mm_testc_si128’ was not declared in this scope; +_mm_testz_si128’ was not declared in this scope; diff --git a/lib/.!14422!libiomp5md.dll b/lib/.!14422!libiomp5md.dll new file mode 100644 index 000000000..e69de29bb diff --git a/lib/.!14423!libomp.a b/lib/.!14423!libomp.a new file mode 100644 index 000000000..ca55c9f66 --- /dev/null +++ b/lib/.!14423!libomp.a @@ -0,0 +1,2 @@ +! +/ 0 0 0 0 36032 ` diff --git a/lib/.!14424!libompstatic.a b/lib/.!14424!libompstatic.a new file mode 100644 index 000000000..34faf6942 Binary files /dev/null and b/lib/.!14424!libompstatic.a differ diff --git a/lib/.!14425!pthreadGC2.dll b/lib/.!14425!pthreadGC2.dll new file mode 100644 index 000000000..e69de29bb diff --git a/lib/.!14426!pthreadGC2_64.dll b/lib/.!14426!pthreadGC2_64.dll new file mode 100644 index 000000000..e69de29bb diff --git a/lib/.!14427!pthreadVC2.dll b/lib/.!14427!pthreadVC2.dll new file mode 100644 index 000000000..e69de29bb diff --git a/lib/.!14428!pthreadVC2.lib b/lib/.!14428!pthreadVC2.lib new file mode 100644 index 000000000..26edc868a --- /dev/null +++ b/lib/.!14428!pthreadVC2.lib @@ -0,0 +1,2 @@ +! +/ 1338093862 0 7120 ` diff --git a/lib/.!2826!libiomp5md.dll b/lib/.!2826!libiomp5md.dll new file mode 100644 index 000000000..e69de29bb diff --git a/lib/.!2826!libiomp5md.dllr b/lib/.!2826!libiomp5md.dllr new file mode 100644 index 000000000..e69de29bb diff --git a/lib/.!2827!libomp.a b/lib/.!2827!libomp.a new file mode 100644 index 000000000..ca55c9f66 --- /dev/null +++ b/lib/.!2827!libomp.a @@ -0,0 +1,2 @@ +! +/ 0 0 0 0 36032 ` diff --git a/lib/.!2827!libomp.ar b/lib/.!2827!libomp.ar new file mode 100644 index 000000000..ca55c9f66 --- /dev/null +++ b/lib/.!2827!libomp.ar @@ -0,0 +1,2 @@ +! +/ 0 0 0 0 36032 ` diff --git a/lib/.!2828!libompstatic.a b/lib/.!2828!libompstatic.a new file mode 100644 index 000000000..34faf6942 Binary files /dev/null and b/lib/.!2828!libompstatic.a differ diff --git a/lib/.!2828!libompstatic.ar b/lib/.!2828!libompstatic.ar new file mode 100644 index 000000000..34faf6942 Binary files /dev/null and b/lib/.!2828!libompstatic.ar differ diff --git a/lib/.!2829!pthreadGC2.dll b/lib/.!2829!pthreadGC2.dll new file mode 100644 index 000000000..e69de29bb diff --git a/lib/.!2829!pthreadGC2.dllr b/lib/.!2829!pthreadGC2.dllr new file mode 100644 index 000000000..e69de29bb diff --git a/lib/.!2830!pthreadGC2_64.dll b/lib/.!2830!pthreadGC2_64.dll new file mode 100644 index 000000000..e69de29bb diff --git a/lib/.!2830!pthreadGC2_64.dllr b/lib/.!2830!pthreadGC2_64.dllr new file mode 100644 index 000000000..e69de29bb diff --git a/lib/.!2831!pthreadVC2.dll b/lib/.!2831!pthreadVC2.dll new file mode 100644 index 000000000..e69de29bb diff --git a/lib/.!2831!pthreadVC2.dllr b/lib/.!2831!pthreadVC2.dllr new file mode 100644 index 000000000..e69de29bb diff --git a/lib/.!2832!pthreadVC2.lib b/lib/.!2832!pthreadVC2.lib new file mode 100644 index 000000000..26edc868a --- /dev/null +++ b/lib/.!2832!pthreadVC2.lib @@ -0,0 +1,2 @@ +! +/ 1338093862 0 7120 ` diff --git a/lib/.!2832!pthreadVC2.libr b/lib/.!2832!pthreadVC2.libr new file mode 100644 index 000000000..26edc868a --- /dev/null +++ b/lib/.!2832!pthreadVC2.libr @@ -0,0 +1,2 @@ +! +/ 1338093862 0 7120 ` diff --git a/lib/.!6100!libiomp5md.dll b/lib/.!6100!libiomp5md.dll new file mode 100644 index 000000000..e69de29bb diff --git a/lib/.!6101!libomp.a b/lib/.!6101!libomp.a new file mode 100644 index 000000000..ca55c9f66 --- /dev/null +++ b/lib/.!6101!libomp.a @@ -0,0 +1,2 @@ +! +/ 0 0 0 0 36032 ` diff --git a/lib/.!6102!libompstatic.a b/lib/.!6102!libompstatic.a new file mode 100644 index 000000000..34faf6942 Binary files /dev/null and b/lib/.!6102!libompstatic.a differ diff --git a/lib/.!6103!pthreadGC2.dll b/lib/.!6103!pthreadGC2.dll new file mode 100644 index 000000000..e69de29bb diff --git a/lib/.!6104!pthreadGC2_64.dll b/lib/.!6104!pthreadGC2_64.dll new file mode 100644 index 000000000..e69de29bb diff --git a/lib/.!6105!pthreadVC2.dll b/lib/.!6105!pthreadVC2.dll new file mode 100644 index 000000000..e69de29bb diff --git a/lib/.!6106!pthreadVC2.lib b/lib/.!6106!pthreadVC2.lib new file mode 100644 index 000000000..26edc868a --- /dev/null +++ b/lib/.!6106!pthreadVC2.lib @@ -0,0 +1,2 @@ +! +/ 1338093862 0 7120 ` diff --git a/lib/.!7279!libiomp5md.dll b/lib/.!7279!libiomp5md.dll new file mode 100644 index 000000000..e69de29bb diff --git a/lib/.!7280!libomp.a b/lib/.!7280!libomp.a new file mode 100644 index 000000000..ca55c9f66 --- /dev/null +++ b/lib/.!7280!libomp.a @@ -0,0 +1,2 @@ +! +/ 0 0 0 0 36032 ` diff --git a/lib/.!7281!libompstatic.a b/lib/.!7281!libompstatic.a new file mode 100644 index 000000000..34faf6942 Binary files /dev/null and b/lib/.!7281!libompstatic.a differ diff --git a/lib/.!7282!pthreadGC2.dll b/lib/.!7282!pthreadGC2.dll new file mode 100644 index 000000000..e69de29bb diff --git a/lib/.!7283!pthreadGC2_64.dll b/lib/.!7283!pthreadGC2_64.dll new file mode 100644 index 000000000..e69de29bb diff --git a/lib/.!7284!pthreadVC2.dll b/lib/.!7284!pthreadVC2.dll new file mode 100644 index 000000000..e69de29bb diff --git a/lib/.!7285!pthreadVC2.lib b/lib/.!7285!pthreadVC2.lib new file mode 100644 index 000000000..26edc868a --- /dev/null +++ b/lib/.!7285!pthreadVC2.lib @@ -0,0 +1,2 @@ +! +/ 1338093862 0 7120 ` diff --git a/lib/.!9636!libiomp5md.dll b/lib/.!9636!libiomp5md.dll new file mode 100644 index 000000000..e69de29bb diff --git a/lib/.!9637!libomp.a b/lib/.!9637!libomp.a new file mode 100644 index 000000000..ca55c9f66 --- /dev/null +++ b/lib/.!9637!libomp.a @@ -0,0 +1,2 @@ +! +/ 0 0 0 0 36032 ` diff --git a/lib/.!9638!libompstatic.a b/lib/.!9638!libompstatic.a new file mode 100644 index 000000000..34faf6942 Binary files /dev/null and b/lib/.!9638!libompstatic.a differ diff --git a/lib/.!9639!pthreadGC2.dll b/lib/.!9639!pthreadGC2.dll new file mode 100644 index 000000000..e69de29bb diff --git a/lib/.!9640!pthreadGC2_64.dll b/lib/.!9640!pthreadGC2_64.dll new file mode 100644 index 000000000..e69de29bb diff --git a/lib/.!9641!pthreadVC2.dll b/lib/.!9641!pthreadVC2.dll new file mode 100644 index 000000000..e69de29bb diff --git a/lib/.!9642!pthreadVC2.lib b/lib/.!9642!pthreadVC2.lib new file mode 100644 index 000000000..26edc868a --- /dev/null +++ b/lib/.!9642!pthreadVC2.lib @@ -0,0 +1,2 @@ +! +/ 1338093862 0 7120 ` diff --git a/lib32/.!14473!libiomp5md.dll b/lib32/.!14473!libiomp5md.dll new file mode 100644 index 000000000..e69de29bb diff --git a/lib32/.!14474!libiomp5md.lib.dll b/lib32/.!14474!libiomp5md.lib.dll new file mode 100644 index 000000000..e69de29bb diff --git a/lib32/.!14475!libomp.a b/lib32/.!14475!libomp.a new file mode 100644 index 000000000..b72ead819 --- /dev/null +++ b/lib32/.!14475!libomp.a @@ -0,0 +1,2 @@ +! +/ 0 0 0 0 36018 ` diff --git a/lib32/.!14476!pthreadVC2.dll b/lib32/.!14476!pthreadVC2.dll new file mode 100644 index 000000000..e69de29bb diff --git a/lib32/.!14477!pthreadVC2.lib b/lib32/.!14477!pthreadVC2.lib new file mode 100644 index 000000000..9871c8ea5 --- /dev/null +++ b/lib32/.!14477!pthreadVC2.lib @@ -0,0 +1,2 @@ +! +/ 1338046565 0 7360 ` diff --git a/lib32/.!2833!libiomp5md.dll b/lib32/.!2833!libiomp5md.dll new file mode 100644 index 000000000..e69de29bb diff --git a/lib32/.!2833!libiomp5md.dllr b/lib32/.!2833!libiomp5md.dllr new file mode 100644 index 000000000..e69de29bb diff --git a/lib32/.!2834!libiomp5md.lib.dll b/lib32/.!2834!libiomp5md.lib.dll new file mode 100644 index 000000000..e69de29bb diff --git a/lib32/.!2834!libiomp5md.lib.dllr b/lib32/.!2834!libiomp5md.lib.dllr new file mode 100644 index 000000000..e69de29bb diff --git a/lib32/.!2835!libomp.a b/lib32/.!2835!libomp.a new file mode 100644 index 000000000..b72ead819 --- /dev/null +++ b/lib32/.!2835!libomp.a @@ -0,0 +1,2 @@ +! +/ 0 0 0 0 36018 ` diff --git a/lib32/.!2835!libomp.ar b/lib32/.!2835!libomp.ar new file mode 100644 index 000000000..b72ead819 --- /dev/null +++ b/lib32/.!2835!libomp.ar @@ -0,0 +1,2 @@ +! +/ 0 0 0 0 36018 ` diff --git a/lib32/.!2836!pthreadVC2.dll b/lib32/.!2836!pthreadVC2.dll new file mode 100644 index 000000000..e69de29bb diff --git a/lib32/.!2836!pthreadVC2.dllr b/lib32/.!2836!pthreadVC2.dllr new file mode 100644 index 000000000..e69de29bb diff --git a/lib32/.!2837!pthreadVC2.lib b/lib32/.!2837!pthreadVC2.lib new file mode 100644 index 000000000..9871c8ea5 --- /dev/null +++ b/lib32/.!2837!pthreadVC2.lib @@ -0,0 +1,2 @@ +! +/ 1338046565 0 7360 ` diff --git a/lib32/.!2837!pthreadVC2.libr b/lib32/.!2837!pthreadVC2.libr new file mode 100644 index 000000000..9871c8ea5 --- /dev/null +++ b/lib32/.!2837!pthreadVC2.libr @@ -0,0 +1,2 @@ +! +/ 1338046565 0 7360 ` diff --git a/lib32/.!6112!libiomp5md.dll b/lib32/.!6112!libiomp5md.dll new file mode 100644 index 000000000..e69de29bb diff --git a/lib32/.!6113!libiomp5md.lib.dll b/lib32/.!6113!libiomp5md.lib.dll new file mode 100644 index 000000000..e69de29bb diff --git a/lib32/.!6114!libomp.a b/lib32/.!6114!libomp.a new file mode 100644 index 000000000..b72ead819 --- /dev/null +++ b/lib32/.!6114!libomp.a @@ -0,0 +1,2 @@ +! +/ 0 0 0 0 36018 ` diff --git a/lib32/.!6115!pthreadVC2.dll b/lib32/.!6115!pthreadVC2.dll new file mode 100644 index 000000000..e69de29bb diff --git a/lib32/.!6116!pthreadVC2.lib b/lib32/.!6116!pthreadVC2.lib new file mode 100644 index 000000000..9871c8ea5 --- /dev/null +++ b/lib32/.!6116!pthreadVC2.lib @@ -0,0 +1,2 @@ +! +/ 1338046565 0 7360 ` diff --git a/lib32/.!7301!libiomp5md.dll b/lib32/.!7301!libiomp5md.dll new file mode 100644 index 000000000..e69de29bb diff --git a/lib32/.!7302!libiomp5md.lib.dll b/lib32/.!7302!libiomp5md.lib.dll new file mode 100644 index 000000000..e69de29bb diff --git a/lib32/.!7303!libomp.a b/lib32/.!7303!libomp.a new file mode 100644 index 000000000..b72ead819 --- /dev/null +++ b/lib32/.!7303!libomp.a @@ -0,0 +1,2 @@ +! +/ 0 0 0 0 36018 ` diff --git a/lib32/.!7304!pthreadVC2.dll b/lib32/.!7304!pthreadVC2.dll new file mode 100644 index 000000000..e69de29bb diff --git a/lib32/.!7305!pthreadVC2.lib b/lib32/.!7305!pthreadVC2.lib new file mode 100644 index 000000000..9871c8ea5 --- /dev/null +++ b/lib32/.!7305!pthreadVC2.lib @@ -0,0 +1,2 @@ +! +/ 1338046565 0 7360 ` diff --git a/libmac/.!14485!libomp.a b/libmac/.!14485!libomp.a new file mode 100644 index 000000000..b8fe247b1 --- /dev/null +++ b/libmac/.!14485!libomp.a @@ -0,0 +1,2 @@ +! +#1/20 1530061535 502 20 100644 39820 ` diff --git a/libmac/.!2838!libomp.a b/libmac/.!2838!libomp.a new file mode 100644 index 000000000..b8fe247b1 --- /dev/null +++ b/libmac/.!2838!libomp.a @@ -0,0 +1,2 @@ +! +#1/20 1530061535 502 20 100644 39820 ` diff --git a/libmac/.!2838!libomp.ar b/libmac/.!2838!libomp.ar new file mode 100644 index 000000000..b8fe247b1 --- /dev/null +++ b/libmac/.!2838!libomp.ar @@ -0,0 +1,2 @@ +! +#1/20 1530061535 502 20 100644 39820 ` diff --git a/libmac/.!6118!libomp.a b/libmac/.!6118!libomp.a new file mode 100644 index 000000000..b8fe247b1 --- /dev/null +++ b/libmac/.!6118!libomp.a @@ -0,0 +1,2 @@ +! +#1/20 1530061535 502 20 100644 39820 ` diff --git a/libmac/.!7309!libomp.a b/libmac/.!7309!libomp.a new file mode 100644 index 000000000..b8fe247b1 --- /dev/null +++ b/libmac/.!7309!libomp.a @@ -0,0 +1,2 @@ +! +#1/20 1530061535 502 20 100644 39820 ` diff --git a/log b/log new file mode 100644 index 000000000..f17b5e6b8 --- /dev/null +++ b/log @@ -0,0 +1,2178 @@ +On branch master +Your branch is behind 'origin/master' by 21 commits, and can be fast-forwarded. + (use "git pull" to update your local branch) +Changes to be committed: + (use "git reset HEAD ..." to unstage) + + new file: ../../.gitignore + new file: .gitignore + modified: CMakeLists.txt + modified: build/CMakeCache.txt + modified: build/CMakeFiles/CMakeError.log + modified: build/CMakeFiles/CMakeOutput.log + modified: build/CMakeFiles/Makefile.cmake + modified: build/CMakeFiles/Makefile2 + deleted: build/CMakeFiles/Progress/14 + deleted: build/CMakeFiles/Progress/count.txt + modified: build/CMakeFiles/TargetDirectories.txt + new file: build/CMakeFiles/iqtree.dir/CXX.includecache + modified: build/CMakeFiles/iqtree.dir/DependInfo.cmake + modified: build/CMakeFiles/iqtree.dir/build.make + new file: build/CMakeFiles/iqtree.dir/depend.internal + modified: build/CMakeFiles/iqtree.dir/depend.make + modified: build/CMakeFiles/iqtree.dir/flags.make + modified: build/CMakeFiles/iqtree.dir/link.txt + new file: build/CMakeFiles/iqtree.dir/main/main.cpp.o + new file: build/CMakeFiles/iqtree.dir/main/phyloanalysis.cpp.o + new file: build/CMakeFiles/iqtree.dir/main/phylotesting.cpp.o + new file: build/CMakeFiles/iqtree.dir/obsolete/parsmultistate.cpp.o + modified: build/CMakeFiles/iqtree.dir/progress.make + new file: build/CMakeFiles/kernelavx.dir/CXX.includecache + new file: build/CMakeFiles/kernelavx.dir/depend.internal + modified: build/CMakeFiles/kernelavx.dir/depend.make + modified: build/CMakeFiles/kernelavx.dir/flags.make + new file: build/CMakeFiles/kernelavx.dir/tree/phylotreeavx.cpp.o + new file: build/CMakeFiles/kernelfma.dir/CXX.includecache + new file: build/CMakeFiles/kernelfma.dir/depend.internal + modified: build/CMakeFiles/kernelfma.dir/depend.make + modified: build/CMakeFiles/kernelfma.dir/flags.make + new file: build/CMakeFiles/kernelfma.dir/tree/phylokernelfma.cpp.o + modified: build/CMakeFiles/kernelsse.dir/CXX.includecache + modified: build/CMakeFiles/kernelsse.dir/DependInfo.cmake + modified: build/CMakeFiles/kernelsse.dir/depend.internal + modified: build/CMakeFiles/kernelsse.dir/depend.make + modified: build/CMakeFiles/kernelsse.dir/flags.make + modified: build/CMakeFiles/kernelsse.dir/progress.make + new file: build/CMakeFiles/kernelsse.dir/tree/phylokernelsse.cpp.o + modified: build/Makefile + new file: build/alignment/CMakeFiles/alignment.dir/CXX.includecache + modified: build/alignment/CMakeFiles/alignment.dir/DependInfo.cmake + new file: build/alignment/CMakeFiles/alignment.dir/alignment.cpp.o + new file: build/alignment/CMakeFiles/alignment.dir/alignmentpairwise.cpp.o + new file: build/alignment/CMakeFiles/alignment.dir/depend.internal + modified: build/alignment/CMakeFiles/alignment.dir/depend.make + modified: build/alignment/CMakeFiles/alignment.dir/flags.make + new file: build/alignment/CMakeFiles/alignment.dir/maalignment.cpp.o + new file: build/alignment/CMakeFiles/alignment.dir/pattern.cpp.o + new file: build/alignment/CMakeFiles/alignment.dir/superalignment.cpp.o + new file: build/alignment/CMakeFiles/alignment.dir/superalignmentpairwise.cpp.o + new file: build/alignment/CMakeFiles/alignment.dir/superalignmentpairwiseplen.cpp.o + new file: build/alignment/libalignment.a + new file: build/finallog + new file: build/gsl/CMakeFiles/gsl.dir/CXX.includecache + modified: build/gsl/CMakeFiles/gsl.dir/DependInfo.cmake + new file: build/gsl/CMakeFiles/gsl.dir/binomial_tpe.cpp.o + new file: build/gsl/CMakeFiles/gsl.dir/depend.internal + modified: build/gsl/CMakeFiles/gsl.dir/depend.make + modified: build/gsl/CMakeFiles/gsl.dir/flags.make + new file: build/gsl/CMakeFiles/gsl.dir/gauss.cpp.o + new file: build/gsl/CMakeFiles/gsl.dir/gaussinv.cpp.o + new file: build/gsl/CMakeFiles/gsl.dir/gausspdf.cpp.o + new file: build/gsl/CMakeFiles/gsl.dir/multinomial.cpp.o + new file: build/gsl/CMakeFiles/gsl.dir/pow_int.cpp.o + modified: build/gsl/CMakeFiles/gsl.dir/progress.make + new file: build/gsl/libgsl.a + new file: build/iqtree + new file: build/lbfgsb/CMakeFiles/lbfgsb.dir/CXX.includecache + modified: build/lbfgsb/CMakeFiles/lbfgsb.dir/DependInfo.cmake + new file: build/lbfgsb/CMakeFiles/lbfgsb.dir/depend.internal + modified: build/lbfgsb/CMakeFiles/lbfgsb.dir/depend.make + modified: build/lbfgsb/CMakeFiles/lbfgsb.dir/flags.make + new file: build/lbfgsb/CMakeFiles/lbfgsb.dir/lbfgsb_new.cpp.o + modified: build/lbfgsb/CMakeFiles/lbfgsb.dir/progress.make + modified: build/lbfgsb/CMakeFiles/progress.marks + new file: build/lbfgsb/liblbfgsb.a + new file: build/libkernelavx.a + new file: build/libkernelfma.a + new file: build/libkernelsse.a + deleted: build/log + new file: build/model/CMakeFiles/model.dir/CXX.includecache + modified: build/model/CMakeFiles/model.dir/DependInfo.cmake + new file: build/model/CMakeFiles/model.dir/depend.internal + modified: build/model/CMakeFiles/model.dir/depend.make + modified: build/model/CMakeFiles/model.dir/flags.make + new file: build/model/CMakeFiles/model.dir/modelbin.cpp.o + new file: build/model/CMakeFiles/model.dir/modelcodon.cpp.o + new file: build/model/CMakeFiles/model.dir/modeldna.cpp.o + new file: build/model/CMakeFiles/model.dir/modelfactory.cpp.o + new file: build/model/CMakeFiles/model.dir/modelfactorymixlen.cpp.o + new file: build/model/CMakeFiles/model.dir/modelliemarkov.cpp.o + new file: build/model/CMakeFiles/model.dir/modelmarkov.cpp.o + new file: build/model/CMakeFiles/model.dir/modelmixture.cpp.o + new file: build/model/CMakeFiles/model.dir/modelmorphology.cpp.o + new file: build/model/CMakeFiles/model.dir/modelpomo.cpp.o + new file: build/model/CMakeFiles/model.dir/modelpomomixture.cpp.o + new file: build/model/CMakeFiles/model.dir/modelprotein.cpp.o + new file: build/model/CMakeFiles/model.dir/modelset.cpp.o + new file: build/model/CMakeFiles/model.dir/modelsubst.cpp.o + new file: build/model/CMakeFiles/model.dir/modelunrest.cpp.o + new file: build/model/CMakeFiles/model.dir/partitionmodel.cpp.o + new file: build/model/CMakeFiles/model.dir/partitionmodelplen.cpp.o + modified: build/model/CMakeFiles/model.dir/progress.make + new file: build/model/CMakeFiles/model.dir/ratefree.cpp.o + new file: build/model/CMakeFiles/model.dir/ratefreeinvar.cpp.o + new file: build/model/CMakeFiles/model.dir/rategamma.cpp.o + new file: build/model/CMakeFiles/model.dir/rategammainvar.cpp.o + new file: build/model/CMakeFiles/model.dir/rateheterogeneity.cpp.o + new file: build/model/CMakeFiles/model.dir/rateheterotachy.cpp.o + new file: build/model/CMakeFiles/model.dir/rateheterotachyinvar.cpp.o + new file: build/model/CMakeFiles/model.dir/rateinvar.cpp.o + new file: build/model/CMakeFiles/model.dir/ratekategory.cpp.o + new file: build/model/CMakeFiles/model.dir/ratemeyerdiscrete.cpp.o + new file: build/model/CMakeFiles/model.dir/ratemeyerhaeseler.cpp.o + new file: build/model/libmodel.a + new file: build/ncl/CMakeFiles/ncl.dir/CXX.includecache + modified: build/ncl/CMakeFiles/ncl.dir/DependInfo.cmake + new file: build/ncl/CMakeFiles/ncl.dir/depend.internal + modified: build/ncl/CMakeFiles/ncl.dir/depend.make + modified: build/ncl/CMakeFiles/ncl.dir/flags.make + new file: build/ncl/CMakeFiles/ncl.dir/nxsassumptionsblock.cpp.o + new file: build/ncl/CMakeFiles/ncl.dir/nxsblock.cpp.o + new file: build/ncl/CMakeFiles/ncl.dir/nxscharactersblock.cpp.o + new file: build/ncl/CMakeFiles/ncl.dir/nxsdatablock.cpp.o + new file: build/ncl/CMakeFiles/ncl.dir/nxsdiscretedatum.cpp.o + new file: build/ncl/CMakeFiles/ncl.dir/nxsdiscretematrix.cpp.o + new file: build/ncl/CMakeFiles/ncl.dir/nxsdistancedatum.cpp.o + new file: build/ncl/CMakeFiles/ncl.dir/nxsdistancesblock.cpp.o + new file: build/ncl/CMakeFiles/ncl.dir/nxsemptyblock.cpp.o + new file: build/ncl/CMakeFiles/ncl.dir/nxsexception.cpp.o + new file: build/ncl/CMakeFiles/ncl.dir/nxsreader.cpp.o + new file: build/ncl/CMakeFiles/ncl.dir/nxssetreader.cpp.o + new file: build/ncl/CMakeFiles/ncl.dir/nxsstring.cpp.o + new file: build/ncl/CMakeFiles/ncl.dir/nxstaxablock.cpp.o + new file: build/ncl/CMakeFiles/ncl.dir/nxstoken.cpp.o + new file: build/ncl/CMakeFiles/ncl.dir/nxstreesblock.cpp.o + modified: build/ncl/CMakeFiles/ncl.dir/progress.make + new file: build/ncl/libncl.a + new file: build/nclextra/CMakeFiles/nclextra.dir/CXX.includecache + modified: build/nclextra/CMakeFiles/nclextra.dir/DependInfo.cmake + new file: build/nclextra/CMakeFiles/nclextra.dir/depend.internal + modified: build/nclextra/CMakeFiles/nclextra.dir/depend.make + modified: build/nclextra/CMakeFiles/nclextra.dir/flags.make + new file: build/nclextra/CMakeFiles/nclextra.dir/modelsblock.cpp.o + new file: build/nclextra/CMakeFiles/nclextra.dir/mpdablock.cpp.o + new file: build/nclextra/CMakeFiles/nclextra.dir/msetsblock.cpp.o + new file: build/nclextra/CMakeFiles/nclextra.dir/msplitsblock.cpp.o + modified: build/nclextra/CMakeFiles/nclextra.dir/progress.make + new file: build/nclextra/libnclextra.a + new file: build/pda/CMakeFiles/pda.dir/C.includecache + new file: build/pda/CMakeFiles/pda.dir/CXX.includecache + modified: build/pda/CMakeFiles/pda.dir/DependInfo.cmake + new file: build/pda/CMakeFiles/pda.dir/circularnetwork.cpp.o + new file: build/pda/CMakeFiles/pda.dir/depend.internal + modified: build/pda/CMakeFiles/pda.dir/depend.make + new file: build/pda/CMakeFiles/pda.dir/ecopd.cpp.o + new file: build/pda/CMakeFiles/pda.dir/ecopdmtreeset.cpp.o + modified: build/pda/CMakeFiles/pda.dir/flags.make + new file: build/pda/CMakeFiles/pda.dir/graph.cpp.o + new file: build/pda/CMakeFiles/pda.dir/greedy.cpp.o + new file: build/pda/CMakeFiles/pda.dir/gurobiwrapper.cpp.o + new file: build/pda/CMakeFiles/pda.dir/hashsplitset.cpp.o + new file: build/pda/CMakeFiles/pda.dir/lpwrapper.c.o + new file: build/pda/CMakeFiles/pda.dir/pdnetwork.cpp.o + new file: build/pda/CMakeFiles/pda.dir/pdtree.cpp.o + new file: build/pda/CMakeFiles/pda.dir/pdtreeset.cpp.o + modified: build/pda/CMakeFiles/pda.dir/progress.make + new file: build/pda/CMakeFiles/pda.dir/pruning.cpp.o + new file: build/pda/CMakeFiles/pda.dir/split.cpp.o + new file: build/pda/CMakeFiles/pda.dir/splitgraph.cpp.o + new file: build/pda/CMakeFiles/pda.dir/splitset.cpp.o + modified: build/pda/CMakeFiles/progress.marks + new file: build/pda/libpda.a + new file: build/pll/CMakeFiles/pll.dir/C.includecache + modified: build/pll/CMakeFiles/pll.dir/DependInfo.cmake + new file: build/pll/CMakeFiles/pll.dir/alignment.c.o + new file: build/pll/CMakeFiles/pll.dir/bipartitionList.c.o + new file: build/pll/CMakeFiles/pll.dir/depend.internal + modified: build/pll/CMakeFiles/pll.dir/depend.make + new file: build/pll/CMakeFiles/pll.dir/evaluateGenericSpecial.c.o + new file: build/pll/CMakeFiles/pll.dir/evaluatePartialGenericSpecial.c.o + new file: build/pll/CMakeFiles/pll.dir/fastDNAparsimony.c.o + modified: build/pll/CMakeFiles/pll.dir/flags.make + new file: build/pll/CMakeFiles/pll.dir/genericParallelization.c.o + new file: build/pll/CMakeFiles/pll.dir/hardware.c.o + new file: build/pll/CMakeFiles/pll.dir/hash.c.o + new file: build/pll/CMakeFiles/pll.dir/lexer.c.o + new file: build/pll/CMakeFiles/pll.dir/makenewzGenericSpecial.c.o + new file: build/pll/CMakeFiles/pll.dir/models.c.o + new file: build/pll/CMakeFiles/pll.dir/newick.c.o + new file: build/pll/CMakeFiles/pll.dir/newviewGenericSpecial.c.o + new file: build/pll/CMakeFiles/pll.dir/optimizeModel.c.o + new file: build/pll/CMakeFiles/pll.dir/parsePartition.c.o + modified: build/pll/CMakeFiles/pll.dir/progress.make + new file: build/pll/CMakeFiles/pll.dir/queue.c.o + new file: build/pll/CMakeFiles/pll.dir/randomTree.c.o + new file: build/pll/CMakeFiles/pll.dir/recom.c.o + new file: build/pll/CMakeFiles/pll.dir/restartHashTable.c.o + new file: build/pll/CMakeFiles/pll.dir/searchAlgo.c.o + new file: build/pll/CMakeFiles/pll.dir/ssort.c.o + new file: build/pll/CMakeFiles/pll.dir/stack.c.o + new file: build/pll/CMakeFiles/pll.dir/topologies.c.o + new file: build/pll/CMakeFiles/pll.dir/trash.c.o + new file: build/pll/CMakeFiles/pll.dir/treeIO.c.o + new file: build/pll/CMakeFiles/pll.dir/utils.c.o + new file: build/pll/CMakeFiles/pllavx.dir/C.includecache + new file: build/pll/CMakeFiles/pllavx.dir/depend.internal + modified: build/pll/CMakeFiles/pllavx.dir/depend.make + modified: build/pll/CMakeFiles/pllavx.dir/flags.make + modified: build/pll/CMakeFiles/progress.marks + modified: build/pll/Makefile + new file: build/pll/libpll.a + new file: build/sprng/CMakeFiles/sprng.dir/C.includecache + modified: build/sprng/CMakeFiles/sprng.dir/DependInfo.cmake + new file: build/sprng/CMakeFiles/sprng.dir/checkid.c.o + new file: build/sprng/CMakeFiles/sprng.dir/depend.internal + modified: build/sprng/CMakeFiles/sprng.dir/depend.make + modified: build/sprng/CMakeFiles/sprng.dir/flags.make + new file: build/sprng/CMakeFiles/sprng.dir/lcg64.c.o + new file: build/sprng/CMakeFiles/sprng.dir/makeseed.c.o + new file: build/sprng/CMakeFiles/sprng.dir/memory.c.o + new file: build/sprng/CMakeFiles/sprng.dir/primes-lcg64.c.o + modified: build/sprng/CMakeFiles/sprng.dir/progress.make + new file: build/sprng/CMakeFiles/sprng.dir/store.c.o + new file: build/sprng/libsprng.a + deleted: build/sqrtlog + new file: build/successful_build_log + modified: build/tree/CMakeFiles/progress.marks + new file: build/tree/CMakeFiles/tree.dir/CXX.includecache + modified: build/tree/CMakeFiles/tree.dir/DependInfo.cmake + new file: build/tree/CMakeFiles/tree.dir/candidateset.cpp.o + new file: build/tree/CMakeFiles/tree.dir/constrainttree.cpp.o + new file: build/tree/CMakeFiles/tree.dir/depend.internal + modified: build/tree/CMakeFiles/tree.dir/depend.make + modified: build/tree/CMakeFiles/tree.dir/flags.make + new file: build/tree/CMakeFiles/tree.dir/iqtree.cpp.o + new file: build/tree/CMakeFiles/tree.dir/matree.cpp.o + new file: build/tree/CMakeFiles/tree.dir/memslot.cpp.o + new file: build/tree/CMakeFiles/tree.dir/mexttree.cpp.o + new file: build/tree/CMakeFiles/tree.dir/mtree.cpp.o + new file: build/tree/CMakeFiles/tree.dir/mtreeset.cpp.o + new file: build/tree/CMakeFiles/tree.dir/ncbitree.cpp.o + new file: build/tree/CMakeFiles/tree.dir/node.cpp.o + new file: build/tree/CMakeFiles/tree.dir/parstree.cpp.o + new file: build/tree/CMakeFiles/tree.dir/phylonode.cpp.o + new file: build/tree/CMakeFiles/tree.dir/phylonodemixlen.cpp.o + new file: build/tree/CMakeFiles/tree.dir/phylosupertree.cpp.o + new file: build/tree/CMakeFiles/tree.dir/phylosupertreeplen.cpp.o + new file: build/tree/CMakeFiles/tree.dir/phylotree.cpp.o + new file: build/tree/CMakeFiles/tree.dir/phylotreemixlen.cpp.o + new file: build/tree/CMakeFiles/tree.dir/phylotreepars.cpp.o + new file: build/tree/CMakeFiles/tree.dir/phylotreesse.cpp.o + modified: build/tree/CMakeFiles/tree.dir/progress.make + new file: build/tree/CMakeFiles/tree.dir/quartet.cpp.o + new file: build/tree/CMakeFiles/tree.dir/supernode.cpp.o + new file: build/tree/CMakeFiles/tree.dir/tinatree.cpp.o + new file: build/tree/libtree.a + modified: build/utils/CMakeFiles/progress.marks + new file: build/utils/CMakeFiles/utils.dir/CXX.includecache + modified: build/utils/CMakeFiles/utils.dir/DependInfo.cmake + new file: build/utils/CMakeFiles/utils.dir/MPIHelper.cpp.o + new file: build/utils/CMakeFiles/utils.dir/checkpoint.cpp.o + new file: build/utils/CMakeFiles/utils.dir/depend.internal + modified: build/utils/CMakeFiles/utils.dir/depend.make + new file: build/utils/CMakeFiles/utils.dir/eigendecomposition.cpp.o + modified: build/utils/CMakeFiles/utils.dir/flags.make + new file: build/utils/CMakeFiles/utils.dir/gzstream.cpp.o + new file: build/utils/CMakeFiles/utils.dir/optimization.cpp.o + new file: build/utils/CMakeFiles/utils.dir/pllnni.cpp.o + modified: build/utils/CMakeFiles/utils.dir/progress.make + new file: build/utils/CMakeFiles/utils.dir/stoprule.cpp.o + new file: build/utils/CMakeFiles/utils.dir/tools.cpp.o + new file: build/utils/libutils.a + new file: build/vectorclass/CMakeFiles/vectorclass.dir/CXX.includecache + modified: build/vectorclass/CMakeFiles/vectorclass.dir/DependInfo.cmake + new file: build/vectorclass/CMakeFiles/vectorclass.dir/depend.internal + modified: build/vectorclass/CMakeFiles/vectorclass.dir/depend.make + modified: build/vectorclass/CMakeFiles/vectorclass.dir/flags.make + new file: build/vectorclass/CMakeFiles/vectorclass.dir/instrset_detect.cpp.o + new file: build/vectorclass/libvectorclass.a + new file: build/whtest/CMakeFiles/whtest.dir/C.includecache + new file: build/whtest/CMakeFiles/whtest.dir/CXX.includecache + modified: build/whtest/CMakeFiles/whtest.dir/DependInfo.cmake + new file: build/whtest/CMakeFiles/whtest.dir/depend.internal + modified: build/whtest/CMakeFiles/whtest.dir/depend.make + new file: build/whtest/CMakeFiles/whtest.dir/eigen.c.o + new file: build/whtest/CMakeFiles/whtest.dir/eigen_sym.c.o + modified: build/whtest/CMakeFiles/whtest.dir/flags.make + new file: build/whtest/CMakeFiles/whtest.dir/random.c.o + new file: build/whtest/CMakeFiles/whtest.dir/weisslambda.c.o + new file: build/whtest/CMakeFiles/whtest.dir/weisslambda_sub.c.o + new file: build/whtest/CMakeFiles/whtest.dir/whtest.c.o + new file: build/whtest/CMakeFiles/whtest.dir/whtest_sub.c.o + new file: build/whtest/CMakeFiles/whtest.dir/whtest_wrapper.cpp.o + new file: build/whtest/libwhtest.a + new file: eigen/.gitlab-ci.yml + new file: eigen/.hgeol + new file: eigen/CMakeLists.txt + new file: eigen/COPYING.APACHE + new file: eigen/COPYING.BSD + new file: eigen/COPYING.GPL + new file: eigen/COPYING.LGPL + new file: eigen/COPYING.MINPACK + new file: eigen/COPYING.MPL2 + new file: eigen/COPYING.README + new file: eigen/CTestConfig.cmake + new file: eigen/CTestCustom.cmake.in + new file: eigen/Eigen/Cholesky + new file: eigen/Eigen/CholmodSupport + new file: eigen/Eigen/Core + new file: eigen/Eigen/Dense + new file: eigen/Eigen/Eigen + new file: eigen/Eigen/Eigenvalues + new file: eigen/Eigen/Geometry + new file: eigen/Eigen/Householder + new file: eigen/Eigen/IterativeLinearSolvers + new file: eigen/Eigen/Jacobi + new file: eigen/Eigen/KLUSupport + new file: eigen/Eigen/LU + new file: eigen/Eigen/MetisSupport + new file: eigen/Eigen/OrderingMethods + new file: eigen/Eigen/PaStiXSupport + new file: eigen/Eigen/PardisoSupport + new file: eigen/Eigen/QR + new file: eigen/Eigen/QtAlignedMalloc + new file: eigen/Eigen/SPQRSupport + new file: eigen/Eigen/SVD + new file: eigen/Eigen/Sparse + new file: eigen/Eigen/SparseCholesky + new file: eigen/Eigen/SparseCore + new file: eigen/Eigen/SparseLU + new file: eigen/Eigen/SparseQR + new file: eigen/Eigen/StdDeque + new file: eigen/Eigen/StdList + new file: eigen/Eigen/StdVector + new file: eigen/Eigen/SuperLUSupport + new file: eigen/Eigen/UmfPackSupport + new file: eigen/Eigen/src/Cholesky/LDLT.h + new file: eigen/Eigen/src/Cholesky/LLT.h + new file: eigen/Eigen/src/Cholesky/LLT_LAPACKE.h + new file: eigen/Eigen/src/CholmodSupport/CholmodSupport.h + new file: eigen/Eigen/src/Core/ArithmeticSequence.h + new file: eigen/Eigen/src/Core/Array.h + new file: eigen/Eigen/src/Core/ArrayBase.h + new file: eigen/Eigen/src/Core/ArrayWrapper.h + new file: eigen/Eigen/src/Core/Assign.h + new file: eigen/Eigen/src/Core/AssignEvaluator.h + new file: eigen/Eigen/src/Core/Assign_MKL.h + new file: eigen/Eigen/src/Core/BandMatrix.h + new file: eigen/Eigen/src/Core/Block.h + new file: eigen/Eigen/src/Core/BooleanRedux.h + new file: eigen/Eigen/src/Core/CommaInitializer.h + new file: eigen/Eigen/src/Core/ConditionEstimator.h + new file: eigen/Eigen/src/Core/CoreEvaluators.h + new file: eigen/Eigen/src/Core/CoreIterators.h + new file: eigen/Eigen/src/Core/CwiseBinaryOp.h + new file: eigen/Eigen/src/Core/CwiseNullaryOp.h + new file: eigen/Eigen/src/Core/CwiseTernaryOp.h + new file: eigen/Eigen/src/Core/CwiseUnaryOp.h + new file: eigen/Eigen/src/Core/CwiseUnaryView.h + new file: eigen/Eigen/src/Core/DenseBase.h + new file: eigen/Eigen/src/Core/DenseCoeffsBase.h + new file: eigen/Eigen/src/Core/DenseStorage.h + new file: eigen/Eigen/src/Core/Diagonal.h + new file: eigen/Eigen/src/Core/DiagonalMatrix.h + new file: eigen/Eigen/src/Core/DiagonalProduct.h + new file: eigen/Eigen/src/Core/Dot.h + new file: eigen/Eigen/src/Core/EigenBase.h + new file: eigen/Eigen/src/Core/ForceAlignedAccess.h + new file: eigen/Eigen/src/Core/Fuzzy.h + new file: eigen/Eigen/src/Core/GeneralProduct.h + new file: eigen/Eigen/src/Core/GenericPacketMath.h + new file: eigen/Eigen/src/Core/GlobalFunctions.h + new file: eigen/Eigen/src/Core/IO.h + new file: eigen/Eigen/src/Core/IndexedView.h + new file: eigen/Eigen/src/Core/Inverse.h + new file: eigen/Eigen/src/Core/Map.h + new file: eigen/Eigen/src/Core/MapBase.h + new file: eigen/Eigen/src/Core/MathFunctions.h + new file: eigen/Eigen/src/Core/MathFunctionsImpl.h + new file: eigen/Eigen/src/Core/Matrix.h + new file: eigen/Eigen/src/Core/MatrixBase.h + new file: eigen/Eigen/src/Core/NestByValue.h + new file: eigen/Eigen/src/Core/NoAlias.h + new file: eigen/Eigen/src/Core/NumTraits.h + new file: eigen/Eigen/src/Core/PartialReduxEvaluator.h + new file: eigen/Eigen/src/Core/PermutationMatrix.h + new file: eigen/Eigen/src/Core/PlainObjectBase.h + new file: eigen/Eigen/src/Core/Product.h + new file: eigen/Eigen/src/Core/ProductEvaluators.h + new file: eigen/Eigen/src/Core/Random.h + new file: eigen/Eigen/src/Core/Redux.h + new file: eigen/Eigen/src/Core/Ref.h + new file: eigen/Eigen/src/Core/Replicate.h + new file: eigen/Eigen/src/Core/Reshaped.h + new file: eigen/Eigen/src/Core/ReturnByValue.h + new file: eigen/Eigen/src/Core/Reverse.h + new file: eigen/Eigen/src/Core/Select.h + new file: eigen/Eigen/src/Core/SelfAdjointView.h + new file: eigen/Eigen/src/Core/SelfCwiseBinaryOp.h + new file: eigen/Eigen/src/Core/Solve.h + new file: eigen/Eigen/src/Core/SolveTriangular.h + new file: eigen/Eigen/src/Core/SolverBase.h + new file: eigen/Eigen/src/Core/StableNorm.h + new file: eigen/Eigen/src/Core/StlIterators.h + new file: eigen/Eigen/src/Core/Stride.h + new file: eigen/Eigen/src/Core/Swap.h + new file: eigen/Eigen/src/Core/Transpose.h + new file: eigen/Eigen/src/Core/Transpositions.h + new file: eigen/Eigen/src/Core/TriangularMatrix.h + new file: eigen/Eigen/src/Core/VectorBlock.h + new file: eigen/Eigen/src/Core/VectorwiseOp.h + new file: eigen/Eigen/src/Core/Visitor.h + new file: eigen/Eigen/src/Core/arch/AVX/Complex.h + new file: eigen/Eigen/src/Core/arch/AVX/MathFunctions.h + new file: eigen/Eigen/src/Core/arch/AVX/PacketMath.h + new file: eigen/Eigen/src/Core/arch/AVX/TypeCasting.h + new file: eigen/Eigen/src/Core/arch/AVX512/Complex.h + new file: eigen/Eigen/src/Core/arch/AVX512/MathFunctions.h + new file: eigen/Eigen/src/Core/arch/AVX512/PacketMath.h + new file: eigen/Eigen/src/Core/arch/AVX512/TypeCasting.h + new file: eigen/Eigen/src/Core/arch/AltiVec/Complex.h + new file: eigen/Eigen/src/Core/arch/AltiVec/MathFunctions.h + new file: eigen/Eigen/src/Core/arch/AltiVec/MatrixProduct.h + new file: eigen/Eigen/src/Core/arch/AltiVec/PacketMath.h + new file: eigen/Eigen/src/Core/arch/CUDA/Complex.h + new file: eigen/Eigen/src/Core/arch/Default/BFloat16.h + new file: eigen/Eigen/src/Core/arch/Default/ConjHelper.h + new file: eigen/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h + new file: eigen/Eigen/src/Core/arch/Default/GenericPacketMathFunctionsFwd.h + new file: eigen/Eigen/src/Core/arch/Default/Half.h + new file: eigen/Eigen/src/Core/arch/Default/Settings.h + new file: eigen/Eigen/src/Core/arch/Default/TypeCasting.h + new file: eigen/Eigen/src/Core/arch/GPU/MathFunctions.h + new file: eigen/Eigen/src/Core/arch/GPU/PacketMath.h + new file: eigen/Eigen/src/Core/arch/GPU/TypeCasting.h + new file: eigen/Eigen/src/Core/arch/HIP/hcc/math_constants.h + new file: eigen/Eigen/src/Core/arch/MSA/Complex.h + new file: eigen/Eigen/src/Core/arch/MSA/MathFunctions.h + new file: eigen/Eigen/src/Core/arch/MSA/PacketMath.h + new file: eigen/Eigen/src/Core/arch/NEON/Complex.h + new file: eigen/Eigen/src/Core/arch/NEON/MathFunctions.h + new file: eigen/Eigen/src/Core/arch/NEON/PacketMath.h + new file: eigen/Eigen/src/Core/arch/NEON/TypeCasting.h + new file: eigen/Eigen/src/Core/arch/SSE/Complex.h + new file: eigen/Eigen/src/Core/arch/SSE/MathFunctions.h + new file: eigen/Eigen/src/Core/arch/SSE/PacketMath.h + new file: eigen/Eigen/src/Core/arch/SSE/TypeCasting.h + new file: eigen/Eigen/src/Core/arch/SYCL/InteropHeaders.h + new file: eigen/Eigen/src/Core/arch/SYCL/MathFunctions.h + new file: eigen/Eigen/src/Core/arch/SYCL/PacketMath.h + new file: eigen/Eigen/src/Core/arch/SYCL/SyclMemoryModel.h + new file: eigen/Eigen/src/Core/arch/SYCL/TypeCasting.h + new file: eigen/Eigen/src/Core/arch/ZVector/Complex.h + new file: eigen/Eigen/src/Core/arch/ZVector/MathFunctions.h + new file: eigen/Eigen/src/Core/arch/ZVector/PacketMath.h + new file: eigen/Eigen/src/Core/functors/AssignmentFunctors.h + new file: eigen/Eigen/src/Core/functors/BinaryFunctors.h + new file: eigen/Eigen/src/Core/functors/NullaryFunctors.h + new file: eigen/Eigen/src/Core/functors/StlFunctors.h + new file: eigen/Eigen/src/Core/functors/TernaryFunctors.h + new file: eigen/Eigen/src/Core/functors/UnaryFunctors.h + new file: eigen/Eigen/src/Core/products/GeneralBlockPanelKernel.h + new file: eigen/Eigen/src/Core/products/GeneralMatrixMatrix.h + new file: eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h + new file: eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h + new file: eigen/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h + new file: eigen/Eigen/src/Core/products/GeneralMatrixVector.h + new file: eigen/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h + new file: eigen/Eigen/src/Core/products/Parallelizer.h + new file: eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix.h + new file: eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h + new file: eigen/Eigen/src/Core/products/SelfadjointMatrixVector.h + new file: eigen/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h + new file: eigen/Eigen/src/Core/products/SelfadjointProduct.h + new file: eigen/Eigen/src/Core/products/SelfadjointRank2Update.h + new file: eigen/Eigen/src/Core/products/TriangularMatrixMatrix.h + new file: eigen/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h + new file: eigen/Eigen/src/Core/products/TriangularMatrixVector.h + new file: eigen/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h + new file: eigen/Eigen/src/Core/products/TriangularSolverMatrix.h + new file: eigen/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h + new file: eigen/Eigen/src/Core/products/TriangularSolverVector.h + new file: eigen/Eigen/src/Core/util/BlasUtil.h + new file: eigen/Eigen/src/Core/util/ConfigureVectorization.h + new file: eigen/Eigen/src/Core/util/Constants.h + new file: eigen/Eigen/src/Core/util/DisableStupidWarnings.h + new file: eigen/Eigen/src/Core/util/ForwardDeclarations.h + new file: eigen/Eigen/src/Core/util/IndexedViewHelper.h + new file: eigen/Eigen/src/Core/util/IntegralConstant.h + new file: eigen/Eigen/src/Core/util/MKL_support.h + new file: eigen/Eigen/src/Core/util/Macros.h + new file: eigen/Eigen/src/Core/util/Memory.h + new file: eigen/Eigen/src/Core/util/Meta.h + new file: eigen/Eigen/src/Core/util/NonMPL2.h + new file: eigen/Eigen/src/Core/util/ReenableStupidWarnings.h + new file: eigen/Eigen/src/Core/util/ReshapedHelper.h + new file: eigen/Eigen/src/Core/util/StaticAssert.h + new file: eigen/Eigen/src/Core/util/SymbolicIndex.h + new file: eigen/Eigen/src/Core/util/XprHelper.h + new file: eigen/Eigen/src/Eigenvalues/ComplexEigenSolver.h + new file: eigen/Eigen/src/Eigenvalues/ComplexSchur.h + new file: eigen/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h + new file: eigen/Eigen/src/Eigenvalues/EigenSolver.h + new file: eigen/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h + new file: eigen/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h + new file: eigen/Eigen/src/Eigenvalues/HessenbergDecomposition.h + new file: eigen/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h + new file: eigen/Eigen/src/Eigenvalues/RealQZ.h + new file: eigen/Eigen/src/Eigenvalues/RealSchur.h + new file: eigen/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h + new file: eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h + new file: eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h + new file: eigen/Eigen/src/Eigenvalues/Tridiagonalization.h + new file: eigen/Eigen/src/Geometry/AlignedBox.h + new file: eigen/Eigen/src/Geometry/AngleAxis.h + new file: eigen/Eigen/src/Geometry/EulerAngles.h + new file: eigen/Eigen/src/Geometry/Homogeneous.h + new file: eigen/Eigen/src/Geometry/Hyperplane.h + new file: eigen/Eigen/src/Geometry/OrthoMethods.h + new file: eigen/Eigen/src/Geometry/ParametrizedLine.h + new file: eigen/Eigen/src/Geometry/Quaternion.h + new file: eigen/Eigen/src/Geometry/Rotation2D.h + new file: eigen/Eigen/src/Geometry/RotationBase.h + new file: eigen/Eigen/src/Geometry/Scaling.h + new file: eigen/Eigen/src/Geometry/Transform.h + new file: eigen/Eigen/src/Geometry/Translation.h + new file: eigen/Eigen/src/Geometry/Umeyama.h + new file: eigen/Eigen/src/Geometry/arch/Geometry_SSE.h + new file: eigen/Eigen/src/Householder/BlockHouseholder.h + new file: eigen/Eigen/src/Householder/Householder.h + new file: eigen/Eigen/src/Householder/HouseholderSequence.h + new file: eigen/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h + new file: eigen/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h + new file: eigen/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h + new file: eigen/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h + new file: eigen/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h + new file: eigen/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h + new file: eigen/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h + new file: eigen/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h + new file: eigen/Eigen/src/Jacobi/Jacobi.h + new file: eigen/Eigen/src/KLUSupport/KLUSupport.h + new file: eigen/Eigen/src/LU/Determinant.h + new file: eigen/Eigen/src/LU/FullPivLU.h + new file: eigen/Eigen/src/LU/InverseImpl.h + new file: eigen/Eigen/src/LU/PartialPivLU.h + new file: eigen/Eigen/src/LU/PartialPivLU_LAPACKE.h + new file: eigen/Eigen/src/LU/arch/Inverse_SSE.h + new file: eigen/Eigen/src/MetisSupport/MetisSupport.h + new file: eigen/Eigen/src/OrderingMethods/Amd.h + new file: eigen/Eigen/src/OrderingMethods/Eigen_Colamd.h + new file: eigen/Eigen/src/OrderingMethods/Ordering.h + new file: eigen/Eigen/src/PaStiXSupport/PaStiXSupport.h + new file: eigen/Eigen/src/PardisoSupport/PardisoSupport.h + new file: eigen/Eigen/src/QR/ColPivHouseholderQR.h + new file: eigen/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h + new file: eigen/Eigen/src/QR/CompleteOrthogonalDecomposition.h + new file: eigen/Eigen/src/QR/FullPivHouseholderQR.h + new file: eigen/Eigen/src/QR/HouseholderQR.h + new file: eigen/Eigen/src/QR/HouseholderQR_LAPACKE.h + new file: eigen/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h + new file: eigen/Eigen/src/SVD/BDCSVD.h + new file: eigen/Eigen/src/SVD/JacobiSVD.h + new file: eigen/Eigen/src/SVD/JacobiSVD_LAPACKE.h + new file: eigen/Eigen/src/SVD/SVDBase.h + new file: eigen/Eigen/src/SVD/UpperBidiagonalization.h + new file: eigen/Eigen/src/SparseCholesky/SimplicialCholesky.h + new file: eigen/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h + new file: eigen/Eigen/src/SparseCore/AmbiVector.h + new file: eigen/Eigen/src/SparseCore/CompressedStorage.h + new file: eigen/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h + new file: eigen/Eigen/src/SparseCore/MappedSparseMatrix.h + new file: eigen/Eigen/src/SparseCore/SparseAssign.h + new file: eigen/Eigen/src/SparseCore/SparseBlock.h + new file: eigen/Eigen/src/SparseCore/SparseColEtree.h + new file: eigen/Eigen/src/SparseCore/SparseCompressedBase.h + new file: eigen/Eigen/src/SparseCore/SparseCwiseBinaryOp.h + new file: eigen/Eigen/src/SparseCore/SparseCwiseUnaryOp.h + new file: eigen/Eigen/src/SparseCore/SparseDenseProduct.h + new file: eigen/Eigen/src/SparseCore/SparseDiagonalProduct.h + new file: eigen/Eigen/src/SparseCore/SparseDot.h + new file: eigen/Eigen/src/SparseCore/SparseFuzzy.h + new file: eigen/Eigen/src/SparseCore/SparseMap.h + new file: eigen/Eigen/src/SparseCore/SparseMatrix.h + new file: eigen/Eigen/src/SparseCore/SparseMatrixBase.h + new file: eigen/Eigen/src/SparseCore/SparsePermutation.h + new file: eigen/Eigen/src/SparseCore/SparseProduct.h + new file: eigen/Eigen/src/SparseCore/SparseRedux.h + new file: eigen/Eigen/src/SparseCore/SparseRef.h + new file: eigen/Eigen/src/SparseCore/SparseSelfAdjointView.h + new file: eigen/Eigen/src/SparseCore/SparseSolverBase.h + new file: eigen/Eigen/src/SparseCore/SparseSparseProductWithPruning.h + new file: eigen/Eigen/src/SparseCore/SparseTranspose.h + new file: eigen/Eigen/src/SparseCore/SparseTriangularView.h + new file: eigen/Eigen/src/SparseCore/SparseUtil.h + new file: eigen/Eigen/src/SparseCore/SparseVector.h + new file: eigen/Eigen/src/SparseCore/SparseView.h + new file: eigen/Eigen/src/SparseCore/TriangularSolver.h + new file: eigen/Eigen/src/SparseLU/SparseLU.h + new file: eigen/Eigen/src/SparseLU/SparseLUImpl.h + new file: eigen/Eigen/src/SparseLU/SparseLU_Memory.h + new file: eigen/Eigen/src/SparseLU/SparseLU_Structs.h + new file: eigen/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h + new file: eigen/Eigen/src/SparseLU/SparseLU_Utils.h + new file: eigen/Eigen/src/SparseLU/SparseLU_column_bmod.h + new file: eigen/Eigen/src/SparseLU/SparseLU_column_dfs.h + new file: eigen/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h + new file: eigen/Eigen/src/SparseLU/SparseLU_gemm_kernel.h + new file: eigen/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h + new file: eigen/Eigen/src/SparseLU/SparseLU_kernel_bmod.h + new file: eigen/Eigen/src/SparseLU/SparseLU_panel_bmod.h + new file: eigen/Eigen/src/SparseLU/SparseLU_panel_dfs.h + new file: eigen/Eigen/src/SparseLU/SparseLU_pivotL.h + new file: eigen/Eigen/src/SparseLU/SparseLU_pruneL.h + new file: eigen/Eigen/src/SparseLU/SparseLU_relax_snode.h + new file: eigen/Eigen/src/SparseQR/SparseQR.h + new file: eigen/Eigen/src/StlSupport/StdDeque.h + new file: eigen/Eigen/src/StlSupport/StdList.h + new file: eigen/Eigen/src/StlSupport/StdVector.h + new file: eigen/Eigen/src/StlSupport/details.h + new file: eigen/Eigen/src/SuperLUSupport/SuperLUSupport.h + new file: eigen/Eigen/src/UmfPackSupport/UmfPackSupport.h + new file: eigen/Eigen/src/misc/Image.h + new file: eigen/Eigen/src/misc/Kernel.h + new file: eigen/Eigen/src/misc/RealSvd2x2.h + new file: eigen/Eigen/src/misc/blas.h + new file: eigen/Eigen/src/misc/lapack.h + new file: eigen/Eigen/src/misc/lapacke.h + new file: eigen/Eigen/src/misc/lapacke_mangling.h + new file: eigen/Eigen/src/plugins/ArrayCwiseBinaryOps.h + new file: eigen/Eigen/src/plugins/ArrayCwiseUnaryOps.h + new file: eigen/Eigen/src/plugins/BlockMethods.h + new file: eigen/Eigen/src/plugins/CommonCwiseBinaryOps.h + new file: eigen/Eigen/src/plugins/CommonCwiseUnaryOps.h + new file: eigen/Eigen/src/plugins/IndexedViewMethods.h + new file: eigen/Eigen/src/plugins/MatrixCwiseBinaryOps.h + new file: eigen/Eigen/src/plugins/MatrixCwiseUnaryOps.h + new file: eigen/Eigen/src/plugins/ReshapedMethods.h + new file: eigen/INSTALL + new file: eigen/README.md + new file: eigen/bench/BenchSparseUtil.h + new file: eigen/bench/BenchTimer.h + new file: eigen/bench/BenchUtil.h + new file: eigen/bench/README.txt + new file: eigen/bench/analyze-blocking-sizes.cpp + new file: eigen/bench/basicbench.cxxlist + new file: eigen/bench/basicbenchmark.cpp + new file: eigen/bench/basicbenchmark.h + new file: eigen/bench/benchBlasGemm.cpp + new file: eigen/bench/benchCholesky.cpp + new file: eigen/bench/benchEigenSolver.cpp + new file: eigen/bench/benchFFT.cpp + new file: eigen/bench/benchGeometry.cpp + new file: eigen/bench/benchVecAdd.cpp + new file: eigen/bench/bench_gemm.cpp + new file: eigen/bench/bench_move_semantics.cpp + new file: eigen/bench/bench_multi_compilers.sh + new file: eigen/bench/bench_norm.cpp + new file: eigen/bench/bench_reverse.cpp + new file: eigen/bench/bench_sum.cpp + new file: eigen/bench/bench_unrolling + new file: eigen/bench/benchmark-blocking-sizes.cpp + new file: eigen/bench/benchmark.cpp + new file: eigen/bench/benchmarkSlice.cpp + new file: eigen/bench/benchmarkX.cpp + new file: eigen/bench/benchmarkXcwise.cpp + new file: eigen/bench/benchmark_suite + new file: eigen/bench/btl/CMakeLists.txt + new file: eigen/bench/btl/COPYING + new file: eigen/bench/btl/README + new file: eigen/bench/btl/actions/action_aat_product.hh + new file: eigen/bench/btl/actions/action_ata_product.hh + new file: eigen/bench/btl/actions/action_atv_product.hh + new file: eigen/bench/btl/actions/action_axpby.hh + new file: eigen/bench/btl/actions/action_axpy.hh + new file: eigen/bench/btl/actions/action_cholesky.hh + new file: eigen/bench/btl/actions/action_ger.hh + new file: eigen/bench/btl/actions/action_hessenberg.hh + new file: eigen/bench/btl/actions/action_lu_decomp.hh + new file: eigen/bench/btl/actions/action_lu_solve.hh + new file: eigen/bench/btl/actions/action_matrix_matrix_product.hh + new file: eigen/bench/btl/actions/action_matrix_matrix_product_bis.hh + new file: eigen/bench/btl/actions/action_matrix_vector_product.hh + new file: eigen/bench/btl/actions/action_partial_lu.hh + new file: eigen/bench/btl/actions/action_rot.hh + new file: eigen/bench/btl/actions/action_symv.hh + new file: eigen/bench/btl/actions/action_syr2.hh + new file: eigen/bench/btl/actions/action_trisolve.hh + new file: eigen/bench/btl/actions/action_trisolve_matrix.hh + new file: eigen/bench/btl/actions/action_trmm.hh + new file: eigen/bench/btl/actions/basic_actions.hh + new file: eigen/bench/btl/cmake/FindACML.cmake + new file: eigen/bench/btl/cmake/FindATLAS.cmake + new file: eigen/bench/btl/cmake/FindBLAZE.cmake + new file: eigen/bench/btl/cmake/FindBlitz.cmake + new file: eigen/bench/btl/cmake/FindCBLAS.cmake + new file: eigen/bench/btl/cmake/FindGMM.cmake + new file: eigen/bench/btl/cmake/FindMKL.cmake + new file: eigen/bench/btl/cmake/FindMTL4.cmake + new file: eigen/bench/btl/cmake/FindOPENBLAS.cmake + new file: eigen/bench/btl/cmake/FindPackageHandleStandardArgs.cmake + new file: eigen/bench/btl/cmake/FindTvmet.cmake + new file: eigen/bench/btl/cmake/MacroOptionalAddSubdirectory.cmake + new file: eigen/bench/btl/data/CMakeLists.txt + new file: eigen/bench/btl/data/action_settings.txt + new file: eigen/bench/btl/data/gnuplot_common_settings.hh + new file: eigen/bench/btl/data/go_mean + new file: eigen/bench/btl/data/mean.cxx + new file: eigen/bench/btl/data/mk_gnuplot_script.sh + new file: eigen/bench/btl/data/mk_mean_script.sh + new file: eigen/bench/btl/data/mk_new_gnuplot.sh + new file: eigen/bench/btl/data/perlib_plot_settings.txt + new file: eigen/bench/btl/data/regularize.cxx + new file: eigen/bench/btl/data/smooth.cxx + new file: eigen/bench/btl/data/smooth_all.sh + new file: eigen/bench/btl/generic_bench/bench.hh + new file: eigen/bench/btl/generic_bench/bench_parameter.hh + new file: eigen/bench/btl/generic_bench/btl.hh + new file: eigen/bench/btl/generic_bench/init/init_function.hh + new file: eigen/bench/btl/generic_bench/init/init_matrix.hh + new file: eigen/bench/btl/generic_bench/init/init_vector.hh + new file: eigen/bench/btl/generic_bench/static/bench_static.hh + new file: eigen/bench/btl/generic_bench/static/intel_bench_fixed_size.hh + new file: eigen/bench/btl/generic_bench/static/static_size_generator.hh + new file: eigen/bench/btl/generic_bench/timers/STL_perf_analyzer.hh + new file: eigen/bench/btl/generic_bench/timers/STL_timer.hh + new file: eigen/bench/btl/generic_bench/timers/mixed_perf_analyzer.hh + new file: eigen/bench/btl/generic_bench/timers/portable_perf_analyzer.hh + new file: eigen/bench/btl/generic_bench/timers/portable_perf_analyzer_old.hh + new file: eigen/bench/btl/generic_bench/timers/portable_timer.hh + new file: eigen/bench/btl/generic_bench/timers/x86_perf_analyzer.hh + new file: eigen/bench/btl/generic_bench/timers/x86_timer.hh + new file: eigen/bench/btl/generic_bench/utils/size_lin_log.hh + new file: eigen/bench/btl/generic_bench/utils/size_log.hh + new file: eigen/bench/btl/generic_bench/utils/utilities.h + new file: eigen/bench/btl/generic_bench/utils/xy_file.hh + new file: eigen/bench/btl/libs/BLAS/CMakeLists.txt + new file: eigen/bench/btl/libs/BLAS/blas.h + new file: eigen/bench/btl/libs/BLAS/blas_interface.hh + new file: eigen/bench/btl/libs/BLAS/blas_interface_impl.hh + new file: eigen/bench/btl/libs/BLAS/c_interface_base.h + new file: eigen/bench/btl/libs/BLAS/main.cpp + new file: eigen/bench/btl/libs/STL/CMakeLists.txt + new file: eigen/bench/btl/libs/STL/STL_interface.hh + new file: eigen/bench/btl/libs/STL/main.cpp + new file: eigen/bench/btl/libs/blaze/CMakeLists.txt + new file: eigen/bench/btl/libs/blaze/blaze_interface.hh + new file: eigen/bench/btl/libs/blaze/main.cpp + new file: eigen/bench/btl/libs/blitz/CMakeLists.txt + new file: eigen/bench/btl/libs/blitz/blitz_LU_solve_interface.hh + new file: eigen/bench/btl/libs/blitz/blitz_interface.hh + new file: eigen/bench/btl/libs/blitz/btl_blitz.cpp + new file: eigen/bench/btl/libs/blitz/btl_tiny_blitz.cpp + new file: eigen/bench/btl/libs/blitz/tiny_blitz_interface.hh + new file: eigen/bench/btl/libs/eigen2/CMakeLists.txt + new file: eigen/bench/btl/libs/eigen2/btl_tiny_eigen2.cpp + new file: eigen/bench/btl/libs/eigen2/eigen2_interface.hh + new file: eigen/bench/btl/libs/eigen2/main_adv.cpp + new file: eigen/bench/btl/libs/eigen2/main_linear.cpp + new file: eigen/bench/btl/libs/eigen2/main_matmat.cpp + new file: eigen/bench/btl/libs/eigen2/main_vecmat.cpp + new file: eigen/bench/btl/libs/eigen3/CMakeLists.txt + new file: eigen/bench/btl/libs/eigen3/btl_tiny_eigen3.cpp + new file: eigen/bench/btl/libs/eigen3/eigen3_interface.hh + new file: eigen/bench/btl/libs/eigen3/main_adv.cpp + new file: eigen/bench/btl/libs/eigen3/main_linear.cpp + new file: eigen/bench/btl/libs/eigen3/main_matmat.cpp + new file: eigen/bench/btl/libs/eigen3/main_vecmat.cpp + new file: eigen/bench/btl/libs/gmm/CMakeLists.txt + new file: eigen/bench/btl/libs/gmm/gmm_LU_solve_interface.hh + new file: eigen/bench/btl/libs/gmm/gmm_interface.hh + new file: eigen/bench/btl/libs/gmm/main.cpp + new file: eigen/bench/btl/libs/mtl4/.kdbgrc.main + new file: eigen/bench/btl/libs/mtl4/CMakeLists.txt + new file: eigen/bench/btl/libs/mtl4/main.cpp + new file: eigen/bench/btl/libs/mtl4/mtl4_LU_solve_interface.hh + new file: eigen/bench/btl/libs/mtl4/mtl4_interface.hh + new file: eigen/bench/btl/libs/tensors/CMakeLists.txt + new file: eigen/bench/btl/libs/tensors/main_linear.cpp + new file: eigen/bench/btl/libs/tensors/main_matmat.cpp + new file: eigen/bench/btl/libs/tensors/main_vecmat.cpp + new file: eigen/bench/btl/libs/tensors/tensor_interface.hh + new file: eigen/bench/btl/libs/tvmet/CMakeLists.txt + new file: eigen/bench/btl/libs/tvmet/main.cpp + new file: eigen/bench/btl/libs/tvmet/tvmet_interface.hh + new file: eigen/bench/btl/libs/ublas/CMakeLists.txt + new file: eigen/bench/btl/libs/ublas/main.cpp + new file: eigen/bench/btl/libs/ublas/ublas_interface.hh + new file: eigen/bench/check_cache_queries.cpp + new file: eigen/bench/dense_solvers.cpp + new file: eigen/bench/eig33.cpp + new file: eigen/bench/geometry.cpp + new file: eigen/bench/perf_monitoring/changesets.txt + new file: eigen/bench/perf_monitoring/gemm.cpp + new file: eigen/bench/perf_monitoring/gemm_common.h + new file: eigen/bench/perf_monitoring/gemm_settings.txt + new file: eigen/bench/perf_monitoring/gemm_square_settings.txt + new file: eigen/bench/perf_monitoring/gemv.cpp + new file: eigen/bench/perf_monitoring/gemv_common.h + new file: eigen/bench/perf_monitoring/gemv_settings.txt + new file: eigen/bench/perf_monitoring/gemv_square_settings.txt + new file: eigen/bench/perf_monitoring/gemvt.cpp + new file: eigen/bench/perf_monitoring/lazy_gemm.cpp + new file: eigen/bench/perf_monitoring/lazy_gemm_settings.txt + new file: eigen/bench/perf_monitoring/llt.cpp + new file: eigen/bench/perf_monitoring/make_plot.sh + new file: eigen/bench/perf_monitoring/resources/chart_footer.html + new file: eigen/bench/perf_monitoring/resources/chart_header.html + new file: eigen/bench/perf_monitoring/resources/footer.html + new file: eigen/bench/perf_monitoring/resources/header.html + new file: eigen/bench/perf_monitoring/resources/s1.js + new file: eigen/bench/perf_monitoring/resources/s2.js + new file: eigen/bench/perf_monitoring/run.sh + new file: eigen/bench/perf_monitoring/runall.sh + new file: eigen/bench/perf_monitoring/trmv_lo.cpp + new file: eigen/bench/perf_monitoring/trmv_lot.cpp + new file: eigen/bench/perf_monitoring/trmv_up.cpp + new file: eigen/bench/perf_monitoring/trmv_upt.cpp + new file: eigen/bench/product_threshold.cpp + new file: eigen/bench/quat_slerp.cpp + new file: eigen/bench/quatmul.cpp + new file: eigen/bench/sparse_cholesky.cpp + new file: eigen/bench/sparse_dense_product.cpp + new file: eigen/bench/sparse_lu.cpp + new file: eigen/bench/sparse_product.cpp + new file: eigen/bench/sparse_randomsetter.cpp + new file: eigen/bench/sparse_setter.cpp + new file: eigen/bench/sparse_transpose.cpp + new file: eigen/bench/sparse_trisolver.cpp + new file: eigen/bench/spbench/CMakeLists.txt + new file: eigen/bench/spbench/sp_solver.cpp + new file: eigen/bench/spbench/spbench.dtd + new file: eigen/bench/spbench/spbenchsolver.cpp + new file: eigen/bench/spbench/spbenchsolver.h + new file: eigen/bench/spbench/spbenchstyle.h + new file: eigen/bench/spbench/test_sparseLU.cpp + new file: eigen/bench/spmv.cpp + new file: eigen/bench/tensors/README + new file: eigen/bench/tensors/benchmark.h + new file: eigen/bench/tensors/benchmark_main.cc + new file: eigen/bench/tensors/contraction_benchmarks_cpu.cc + new file: eigen/bench/tensors/eigen_sycl_bench.sh + new file: eigen/bench/tensors/eigen_sycl_bench_contract.sh + new file: eigen/bench/tensors/tensor_benchmarks.h + new file: eigen/bench/tensors/tensor_benchmarks_cpu.cc + new file: eigen/bench/tensors/tensor_benchmarks_fp16_gpu.cu + new file: eigen/bench/tensors/tensor_benchmarks_gpu.cu + new file: eigen/bench/tensors/tensor_benchmarks_sycl.cc + new file: eigen/bench/tensors/tensor_contract_sycl_bench.cc + new file: eigen/bench/vdw_new.cpp + new file: eigen/blas/BandTriangularSolver.h + new file: eigen/blas/CMakeLists.txt + new file: eigen/blas/GeneralRank1Update.h + new file: eigen/blas/PackedSelfadjointProduct.h + new file: eigen/blas/PackedTriangularMatrixVector.h + new file: eigen/blas/PackedTriangularSolverVector.h + new file: eigen/blas/README.txt + new file: eigen/blas/Rank2Update.h + new file: eigen/blas/common.h + new file: eigen/blas/complex_double.cpp + new file: eigen/blas/complex_single.cpp + new file: eigen/blas/double.cpp + new file: eigen/blas/f2c/chbmv.c + new file: eigen/blas/f2c/chpmv.c + new file: eigen/blas/f2c/complexdots.c + new file: eigen/blas/f2c/ctbmv.c + new file: eigen/blas/f2c/d_cnjg.c + new file: eigen/blas/f2c/datatypes.h + new file: eigen/blas/f2c/drotm.c + new file: eigen/blas/f2c/drotmg.c + new file: eigen/blas/f2c/dsbmv.c + new file: eigen/blas/f2c/dspmv.c + new file: eigen/blas/f2c/dtbmv.c + new file: eigen/blas/f2c/lsame.c + new file: eigen/blas/f2c/r_cnjg.c + new file: eigen/blas/f2c/srotm.c + new file: eigen/blas/f2c/srotmg.c + new file: eigen/blas/f2c/ssbmv.c + new file: eigen/blas/f2c/sspmv.c + new file: eigen/blas/f2c/stbmv.c + new file: eigen/blas/f2c/zhbmv.c + new file: eigen/blas/f2c/zhpmv.c + new file: eigen/blas/f2c/ztbmv.c + new file: eigen/blas/fortran/complexdots.f + new file: eigen/blas/level1_cplx_impl.h + new file: eigen/blas/level1_impl.h + new file: eigen/blas/level1_real_impl.h + new file: eigen/blas/level2_cplx_impl.h + new file: eigen/blas/level2_impl.h + new file: eigen/blas/level2_real_impl.h + new file: eigen/blas/level3_impl.h + new file: eigen/blas/single.cpp + new file: eigen/blas/testing/CMakeLists.txt + new file: eigen/blas/testing/cblat1.f + new file: eigen/blas/testing/cblat2.dat + new file: eigen/blas/testing/cblat2.f + new file: eigen/blas/testing/cblat3.dat + new file: eigen/blas/testing/cblat3.f + new file: eigen/blas/testing/dblat1.f + new file: eigen/blas/testing/dblat2.dat + new file: eigen/blas/testing/dblat2.f + new file: eigen/blas/testing/dblat3.dat + new file: eigen/blas/testing/dblat3.f + new file: eigen/blas/testing/runblastest.sh + new file: eigen/blas/testing/sblat1.f + new file: eigen/blas/testing/sblat2.dat + new file: eigen/blas/testing/sblat2.f + new file: eigen/blas/testing/sblat3.dat + new file: eigen/blas/testing/sblat3.f + new file: eigen/blas/testing/zblat1.f + new file: eigen/blas/testing/zblat2.dat + new file: eigen/blas/testing/zblat2.f + new file: eigen/blas/testing/zblat3.dat + new file: eigen/blas/testing/zblat3.f + new file: eigen/blas/xerbla.cpp + new file: eigen/cmake/ComputeCppCompilerChecks.cmake + new file: eigen/cmake/ComputeCppIRMap.cmake + new file: eigen/cmake/Eigen3Config.cmake.in + new file: eigen/cmake/Eigen3ConfigLegacy.cmake.in + new file: eigen/cmake/EigenConfigureTesting.cmake + new file: eigen/cmake/EigenDetermineOSVersion.cmake + new file: eigen/cmake/EigenDetermineVSServicePack.cmake + new file: eigen/cmake/EigenTesting.cmake + new file: eigen/cmake/EigenUninstall.cmake + new file: eigen/cmake/FindAdolc.cmake + new file: eigen/cmake/FindBLAS.cmake + new file: eigen/cmake/FindBLASEXT.cmake + new file: eigen/cmake/FindCholmod.cmake + new file: eigen/cmake/FindComputeCpp.cmake + new file: eigen/cmake/FindEigen2.cmake + new file: eigen/cmake/FindEigen3.cmake + new file: eigen/cmake/FindFFTW.cmake + new file: eigen/cmake/FindGLEW.cmake + new file: eigen/cmake/FindGMP.cmake + new file: eigen/cmake/FindGSL.cmake + new file: eigen/cmake/FindGoogleHash.cmake + new file: eigen/cmake/FindHWLOC.cmake + new file: eigen/cmake/FindKLU.cmake + new file: eigen/cmake/FindLAPACK.cmake + new file: eigen/cmake/FindMPFR.cmake + new file: eigen/cmake/FindMetis.cmake + new file: eigen/cmake/FindPTSCOTCH.cmake + new file: eigen/cmake/FindPastix.cmake + new file: eigen/cmake/FindSPQR.cmake + new file: eigen/cmake/FindScotch.cmake + new file: eigen/cmake/FindStandardMathLibrary.cmake + new file: eigen/cmake/FindSuperLU.cmake + new file: eigen/cmake/FindTriSYCL.cmake + new file: eigen/cmake/FindUmfpack.cmake + new file: eigen/cmake/RegexUtils.cmake + new file: eigen/cmake/UseEigen3.cmake + new file: eigen/cmake/language_support.cmake + new file: eigen/debug/gdb/__init__.py + new file: eigen/debug/gdb/printers.py + new file: eigen/debug/msvc/eigen.natvis + new file: eigen/debug/msvc/eigen_autoexp_part.dat + new file: eigen/demos/CMakeLists.txt + new file: eigen/demos/mandelbrot/CMakeLists.txt + new file: eigen/demos/mandelbrot/README + new file: eigen/demos/mandelbrot/mandelbrot.cpp + new file: eigen/demos/mandelbrot/mandelbrot.h + new file: eigen/demos/mix_eigen_and_c/README + new file: eigen/demos/mix_eigen_and_c/binary_library.cpp + new file: eigen/demos/mix_eigen_and_c/binary_library.h + new file: eigen/demos/mix_eigen_and_c/example.c + new file: eigen/demos/opengl/CMakeLists.txt + new file: eigen/demos/opengl/README + new file: eigen/demos/opengl/camera.cpp + new file: eigen/demos/opengl/camera.h + new file: eigen/demos/opengl/gpuhelper.cpp + new file: eigen/demos/opengl/gpuhelper.h + new file: eigen/demos/opengl/icosphere.cpp + new file: eigen/demos/opengl/icosphere.h + new file: eigen/demos/opengl/quaternion_demo.cpp + new file: eigen/demos/opengl/quaternion_demo.h + new file: eigen/demos/opengl/trackball.cpp + new file: eigen/demos/opengl/trackball.h + new file: eigen/doc/AsciiQuickReference.txt + new file: eigen/doc/B01_Experimental.dox + new file: eigen/doc/CMakeLists.txt + new file: eigen/doc/ClassHierarchy.dox + new file: eigen/doc/CoeffwiseMathFunctionsTable.dox + new file: eigen/doc/CustomizingEigen_CustomScalar.dox + new file: eigen/doc/CustomizingEigen_InheritingMatrix.dox + new file: eigen/doc/CustomizingEigen_NullaryExpr.dox + new file: eigen/doc/CustomizingEigen_Plugins.dox + new file: eigen/doc/DenseDecompositionBenchmark.dox + new file: eigen/doc/Doxyfile.in + new file: eigen/doc/Eigen_Silly_Professor_64x64.png + new file: eigen/doc/FixedSizeVectorizable.dox + new file: eigen/doc/FunctionsTakingEigenTypes.dox + new file: eigen/doc/HiPerformance.dox + new file: eigen/doc/InplaceDecomposition.dox + new file: eigen/doc/InsideEigenExample.dox + new file: eigen/doc/LeastSquares.dox + new file: eigen/doc/Manual.dox + new file: eigen/doc/MatrixfreeSolverExample.dox + new file: eigen/doc/NewExpressionType.dox + new file: eigen/doc/Overview.dox + new file: eigen/doc/PassingByValue.dox + new file: eigen/doc/Pitfalls.dox + new file: eigen/doc/PreprocessorDirectives.dox + new file: eigen/doc/QuickReference.dox + new file: eigen/doc/QuickStartGuide.dox + new file: eigen/doc/SparseLinearSystems.dox + new file: eigen/doc/SparseQuickReference.dox + new file: eigen/doc/StlContainers.dox + new file: eigen/doc/StorageOrders.dox + new file: eigen/doc/StructHavingEigenMembers.dox + new file: eigen/doc/TemplateKeyword.dox + new file: eigen/doc/TopicAliasing.dox + new file: eigen/doc/TopicAssertions.dox + new file: eigen/doc/TopicCMakeGuide.dox + new file: eigen/doc/TopicEigenExpressionTemplates.dox + new file: eigen/doc/TopicLazyEvaluation.dox + new file: eigen/doc/TopicLinearAlgebraDecompositions.dox + new file: eigen/doc/TopicMultithreading.dox + new file: eigen/doc/TopicResizing.dox + new file: eigen/doc/TopicScalarTypes.dox + new file: eigen/doc/TopicVectorization.dox + new file: eigen/doc/TutorialAdvancedInitialization.dox + new file: eigen/doc/TutorialArrayClass.dox + new file: eigen/doc/TutorialBlockOperations.dox + new file: eigen/doc/TutorialGeometry.dox + new file: eigen/doc/TutorialLinearAlgebra.dox + new file: eigen/doc/TutorialMapClass.dox + new file: eigen/doc/TutorialMatrixArithmetic.dox + new file: eigen/doc/TutorialMatrixClass.dox + new file: eigen/doc/TutorialReductionsVisitorsBroadcasting.dox + new file: eigen/doc/TutorialReshape.dox + new file: eigen/doc/TutorialSTL.dox + new file: eigen/doc/TutorialSlicingIndexing.dox + new file: eigen/doc/TutorialSparse.dox + new file: eigen/doc/TutorialSparse_example_details.dox + new file: eigen/doc/UnalignedArrayAssert.dox + new file: eigen/doc/UsingBlasLapackBackends.dox + new file: eigen/doc/UsingIntelMKL.dox + new file: eigen/doc/UsingNVCC.dox + new file: eigen/doc/WrongStackAlignment.dox + new file: eigen/doc/eigen_navtree_hacks.js + new file: eigen/doc/eigendoxy.css + new file: eigen/doc/eigendoxy_footer.html.in + new file: eigen/doc/eigendoxy_header.html.in + new file: eigen/doc/eigendoxy_layout.xml.in + new file: eigen/doc/eigendoxy_tabs.css + new file: eigen/doc/examples/.krazy + new file: eigen/doc/examples/CMakeLists.txt + new file: eigen/doc/examples/CustomizingEigen_Inheritance.cpp + new file: eigen/doc/examples/Cwise_erf.cpp + new file: eigen/doc/examples/Cwise_erfc.cpp + new file: eigen/doc/examples/Cwise_lgamma.cpp + new file: eigen/doc/examples/DenseBase_middleCols_int.cpp + new file: eigen/doc/examples/DenseBase_middleRows_int.cpp + new file: eigen/doc/examples/DenseBase_template_int_middleCols.cpp + new file: eigen/doc/examples/DenseBase_template_int_middleRows.cpp + new file: eigen/doc/examples/QuickStart_example.cpp + new file: eigen/doc/examples/QuickStart_example2_dynamic.cpp + new file: eigen/doc/examples/QuickStart_example2_fixed.cpp + new file: eigen/doc/examples/TemplateKeyword_flexible.cpp + new file: eigen/doc/examples/TemplateKeyword_simple.cpp + new file: eigen/doc/examples/TutorialInplaceLU.cpp + new file: eigen/doc/examples/TutorialLinAlgComputeTwice.cpp + new file: eigen/doc/examples/TutorialLinAlgExComputeSolveError.cpp + new file: eigen/doc/examples/TutorialLinAlgExSolveColPivHouseholderQR.cpp + new file: eigen/doc/examples/TutorialLinAlgExSolveLDLT.cpp + new file: eigen/doc/examples/TutorialLinAlgInverseDeterminant.cpp + new file: eigen/doc/examples/TutorialLinAlgRankRevealing.cpp + new file: eigen/doc/examples/TutorialLinAlgSVDSolve.cpp + new file: eigen/doc/examples/TutorialLinAlgSelfAdjointEigenSolver.cpp + new file: eigen/doc/examples/TutorialLinAlgSetThreshold.cpp + new file: eigen/doc/examples/Tutorial_ArrayClass_accessors.cpp + new file: eigen/doc/examples/Tutorial_ArrayClass_addition.cpp + new file: eigen/doc/examples/Tutorial_ArrayClass_cwise_other.cpp + new file: eigen/doc/examples/Tutorial_ArrayClass_interop.cpp + new file: eigen/doc/examples/Tutorial_ArrayClass_interop_matrix.cpp + new file: eigen/doc/examples/Tutorial_ArrayClass_mult.cpp + new file: eigen/doc/examples/Tutorial_BlockOperations_block_assignment.cpp + new file: eigen/doc/examples/Tutorial_BlockOperations_colrow.cpp + new file: eigen/doc/examples/Tutorial_BlockOperations_corner.cpp + new file: eigen/doc/examples/Tutorial_BlockOperations_print_block.cpp + new file: eigen/doc/examples/Tutorial_BlockOperations_vector.cpp + new file: eigen/doc/examples/Tutorial_PartialLU_solve.cpp + new file: eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_broadcast_1nn.cpp + new file: eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple.cpp + new file: eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple_rowwise.cpp + new file: eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_colwise.cpp + new file: eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_maxnorm.cpp + new file: eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_reductions_bool.cpp + new file: eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_reductions_norm.cpp + new file: eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_reductions_operatornorm.cpp + new file: eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_rowwise.cpp + new file: eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_visitors.cpp + new file: eigen/doc/examples/Tutorial_simple_example_dynamic_size.cpp + new file: eigen/doc/examples/Tutorial_simple_example_fixed_size.cpp + new file: eigen/doc/examples/class_Block.cpp + new file: eigen/doc/examples/class_CwiseBinaryOp.cpp + new file: eigen/doc/examples/class_CwiseUnaryOp.cpp + new file: eigen/doc/examples/class_CwiseUnaryOp_ptrfun.cpp + new file: eigen/doc/examples/class_FixedBlock.cpp + new file: eigen/doc/examples/class_FixedReshaped.cpp + new file: eigen/doc/examples/class_FixedVectorBlock.cpp + new file: eigen/doc/examples/class_Reshaped.cpp + new file: eigen/doc/examples/class_VectorBlock.cpp + new file: eigen/doc/examples/function_taking_eigenbase.cpp + new file: eigen/doc/examples/function_taking_ref.cpp + new file: eigen/doc/examples/make_circulant.cpp + new file: eigen/doc/examples/make_circulant.cpp.entry + new file: eigen/doc/examples/make_circulant.cpp.evaluator + new file: eigen/doc/examples/make_circulant.cpp.expression + new file: eigen/doc/examples/make_circulant.cpp.main + new file: eigen/doc/examples/make_circulant.cpp.preamble + new file: eigen/doc/examples/make_circulant.cpp.traits + new file: eigen/doc/examples/make_circulant2.cpp + new file: eigen/doc/examples/matrixfree_cg.cpp + new file: eigen/doc/examples/nullary_indexing.cpp + new file: eigen/doc/examples/tut_arithmetic_add_sub.cpp + new file: eigen/doc/examples/tut_arithmetic_dot_cross.cpp + new file: eigen/doc/examples/tut_arithmetic_matrix_mul.cpp + new file: eigen/doc/examples/tut_arithmetic_redux_basic.cpp + new file: eigen/doc/examples/tut_arithmetic_scalar_mul_div.cpp + new file: eigen/doc/examples/tut_matrix_coefficient_accessors.cpp + new file: eigen/doc/examples/tut_matrix_resize.cpp + new file: eigen/doc/examples/tut_matrix_resize_fixed_size.cpp + new file: eigen/doc/ftv2node.png + new file: eigen/doc/ftv2pnode.png + new file: eigen/doc/snippets/.krazy + new file: eigen/doc/snippets/AngleAxis_mimic_euler.cpp + new file: eigen/doc/snippets/Array_initializer_list_23_cxx11.cpp + new file: eigen/doc/snippets/Array_initializer_list_vector_cxx11.cpp + new file: eigen/doc/snippets/Array_variadic_ctor_cxx11.cpp + new file: eigen/doc/snippets/BiCGSTAB_simple.cpp + new file: eigen/doc/snippets/BiCGSTAB_step_by_step.cpp + new file: eigen/doc/snippets/CMakeLists.txt + new file: eigen/doc/snippets/ColPivHouseholderQR_solve.cpp + new file: eigen/doc/snippets/ComplexEigenSolver_compute.cpp + new file: eigen/doc/snippets/ComplexEigenSolver_eigenvalues.cpp + new file: eigen/doc/snippets/ComplexEigenSolver_eigenvectors.cpp + new file: eigen/doc/snippets/ComplexSchur_compute.cpp + new file: eigen/doc/snippets/ComplexSchur_matrixT.cpp + new file: eigen/doc/snippets/ComplexSchur_matrixU.cpp + new file: eigen/doc/snippets/Cwise_abs.cpp + new file: eigen/doc/snippets/Cwise_abs2.cpp + new file: eigen/doc/snippets/Cwise_acos.cpp + new file: eigen/doc/snippets/Cwise_arg.cpp + new file: eigen/doc/snippets/Cwise_array_power_array.cpp + new file: eigen/doc/snippets/Cwise_asin.cpp + new file: eigen/doc/snippets/Cwise_atan.cpp + new file: eigen/doc/snippets/Cwise_boolean_and.cpp + new file: eigen/doc/snippets/Cwise_boolean_not.cpp + new file: eigen/doc/snippets/Cwise_boolean_or.cpp + new file: eigen/doc/snippets/Cwise_boolean_xor.cpp + new file: eigen/doc/snippets/Cwise_ceil.cpp + new file: eigen/doc/snippets/Cwise_cos.cpp + new file: eigen/doc/snippets/Cwise_cosh.cpp + new file: eigen/doc/snippets/Cwise_cube.cpp + new file: eigen/doc/snippets/Cwise_equal_equal.cpp + new file: eigen/doc/snippets/Cwise_exp.cpp + new file: eigen/doc/snippets/Cwise_floor.cpp + new file: eigen/doc/snippets/Cwise_greater.cpp + new file: eigen/doc/snippets/Cwise_greater_equal.cpp + new file: eigen/doc/snippets/Cwise_inverse.cpp + new file: eigen/doc/snippets/Cwise_isFinite.cpp + new file: eigen/doc/snippets/Cwise_isInf.cpp + new file: eigen/doc/snippets/Cwise_isNaN.cpp + new file: eigen/doc/snippets/Cwise_less.cpp + new file: eigen/doc/snippets/Cwise_less_equal.cpp + new file: eigen/doc/snippets/Cwise_log.cpp + new file: eigen/doc/snippets/Cwise_log10.cpp + new file: eigen/doc/snippets/Cwise_max.cpp + new file: eigen/doc/snippets/Cwise_min.cpp + new file: eigen/doc/snippets/Cwise_minus.cpp + new file: eigen/doc/snippets/Cwise_minus_equal.cpp + new file: eigen/doc/snippets/Cwise_not_equal.cpp + new file: eigen/doc/snippets/Cwise_plus.cpp + new file: eigen/doc/snippets/Cwise_plus_equal.cpp + new file: eigen/doc/snippets/Cwise_pow.cpp + new file: eigen/doc/snippets/Cwise_product.cpp + new file: eigen/doc/snippets/Cwise_quotient.cpp + new file: eigen/doc/snippets/Cwise_rint.cpp + new file: eigen/doc/snippets/Cwise_round.cpp + new file: eigen/doc/snippets/Cwise_scalar_power_array.cpp + new file: eigen/doc/snippets/Cwise_sign.cpp + new file: eigen/doc/snippets/Cwise_sin.cpp + new file: eigen/doc/snippets/Cwise_sinh.cpp + new file: eigen/doc/snippets/Cwise_slash_equal.cpp + new file: eigen/doc/snippets/Cwise_sqrt.cpp + new file: eigen/doc/snippets/Cwise_square.cpp + new file: eigen/doc/snippets/Cwise_tan.cpp + new file: eigen/doc/snippets/Cwise_tanh.cpp + new file: eigen/doc/snippets/Cwise_times_equal.cpp + new file: eigen/doc/snippets/DenseBase_LinSpaced.cpp + new file: eigen/doc/snippets/DenseBase_LinSpacedInt.cpp + new file: eigen/doc/snippets/DenseBase_LinSpaced_seq_deprecated.cpp + new file: eigen/doc/snippets/DenseBase_setLinSpaced.cpp + new file: eigen/doc/snippets/DirectionWise_hnormalized.cpp + new file: eigen/doc/snippets/DirectionWise_replicate.cpp + new file: eigen/doc/snippets/DirectionWise_replicate_int.cpp + new file: eigen/doc/snippets/EigenSolver_EigenSolver_MatrixType.cpp + new file: eigen/doc/snippets/EigenSolver_compute.cpp + new file: eigen/doc/snippets/EigenSolver_eigenvalues.cpp + new file: eigen/doc/snippets/EigenSolver_eigenvectors.cpp + new file: eigen/doc/snippets/EigenSolver_pseudoEigenvectors.cpp + new file: eigen/doc/snippets/FullPivHouseholderQR_solve.cpp + new file: eigen/doc/snippets/FullPivLU_image.cpp + new file: eigen/doc/snippets/FullPivLU_kernel.cpp + new file: eigen/doc/snippets/FullPivLU_solve.cpp + new file: eigen/doc/snippets/GeneralizedEigenSolver.cpp + new file: eigen/doc/snippets/HessenbergDecomposition_compute.cpp + new file: eigen/doc/snippets/HessenbergDecomposition_matrixH.cpp + new file: eigen/doc/snippets/HessenbergDecomposition_packedMatrix.cpp + new file: eigen/doc/snippets/HouseholderQR_householderQ.cpp + new file: eigen/doc/snippets/HouseholderQR_solve.cpp + new file: eigen/doc/snippets/HouseholderSequence_HouseholderSequence.cpp + new file: eigen/doc/snippets/IOFormat.cpp + new file: eigen/doc/snippets/JacobiSVD_basic.cpp + new file: eigen/doc/snippets/Jacobi_makeGivens.cpp + new file: eigen/doc/snippets/Jacobi_makeJacobi.cpp + new file: eigen/doc/snippets/LLT_example.cpp + new file: eigen/doc/snippets/LLT_solve.cpp + new file: eigen/doc/snippets/LeastSquaresNormalEquations.cpp + new file: eigen/doc/snippets/LeastSquaresQR.cpp + new file: eigen/doc/snippets/Map_general_stride.cpp + new file: eigen/doc/snippets/Map_inner_stride.cpp + new file: eigen/doc/snippets/Map_outer_stride.cpp + new file: eigen/doc/snippets/Map_placement_new.cpp + new file: eigen/doc/snippets/Map_simple.cpp + new file: eigen/doc/snippets/MatrixBase_adjoint.cpp + new file: eigen/doc/snippets/MatrixBase_all.cpp + new file: eigen/doc/snippets/MatrixBase_applyOnTheLeft.cpp + new file: eigen/doc/snippets/MatrixBase_applyOnTheRight.cpp + new file: eigen/doc/snippets/MatrixBase_array.cpp + new file: eigen/doc/snippets/MatrixBase_array_const.cpp + new file: eigen/doc/snippets/MatrixBase_asDiagonal.cpp + new file: eigen/doc/snippets/MatrixBase_block_int_int.cpp + new file: eigen/doc/snippets/MatrixBase_block_int_int_int_int.cpp + new file: eigen/doc/snippets/MatrixBase_bottomLeftCorner_int_int.cpp + new file: eigen/doc/snippets/MatrixBase_bottomRightCorner_int_int.cpp + new file: eigen/doc/snippets/MatrixBase_bottomRows_int.cpp + new file: eigen/doc/snippets/MatrixBase_cast.cpp + new file: eigen/doc/snippets/MatrixBase_col.cpp + new file: eigen/doc/snippets/MatrixBase_colwise.cpp + new file: eigen/doc/snippets/MatrixBase_colwise_iterator_cxx11.cpp + new file: eigen/doc/snippets/MatrixBase_computeInverseAndDetWithCheck.cpp + new file: eigen/doc/snippets/MatrixBase_computeInverseWithCheck.cpp + new file: eigen/doc/snippets/MatrixBase_cwiseAbs.cpp + new file: eigen/doc/snippets/MatrixBase_cwiseAbs2.cpp + new file: eigen/doc/snippets/MatrixBase_cwiseEqual.cpp + new file: eigen/doc/snippets/MatrixBase_cwiseInverse.cpp + new file: eigen/doc/snippets/MatrixBase_cwiseMax.cpp + new file: eigen/doc/snippets/MatrixBase_cwiseMin.cpp + new file: eigen/doc/snippets/MatrixBase_cwiseNotEqual.cpp + new file: eigen/doc/snippets/MatrixBase_cwiseProduct.cpp + new file: eigen/doc/snippets/MatrixBase_cwiseQuotient.cpp + new file: eigen/doc/snippets/MatrixBase_cwiseSign.cpp + new file: eigen/doc/snippets/MatrixBase_cwiseSqrt.cpp + new file: eigen/doc/snippets/MatrixBase_diagonal.cpp + new file: eigen/doc/snippets/MatrixBase_diagonal_int.cpp + new file: eigen/doc/snippets/MatrixBase_diagonal_template_int.cpp + new file: eigen/doc/snippets/MatrixBase_eigenvalues.cpp + new file: eigen/doc/snippets/MatrixBase_end_int.cpp + new file: eigen/doc/snippets/MatrixBase_eval.cpp + new file: eigen/doc/snippets/MatrixBase_fixedBlock_int_int.cpp + new file: eigen/doc/snippets/MatrixBase_hnormalized.cpp + new file: eigen/doc/snippets/MatrixBase_homogeneous.cpp + new file: eigen/doc/snippets/MatrixBase_identity.cpp + new file: eigen/doc/snippets/MatrixBase_identity_int_int.cpp + new file: eigen/doc/snippets/MatrixBase_inverse.cpp + new file: eigen/doc/snippets/MatrixBase_isDiagonal.cpp + new file: eigen/doc/snippets/MatrixBase_isIdentity.cpp + new file: eigen/doc/snippets/MatrixBase_isOnes.cpp + new file: eigen/doc/snippets/MatrixBase_isOrthogonal.cpp + new file: eigen/doc/snippets/MatrixBase_isUnitary.cpp + new file: eigen/doc/snippets/MatrixBase_isZero.cpp + new file: eigen/doc/snippets/MatrixBase_leftCols_int.cpp + new file: eigen/doc/snippets/MatrixBase_noalias.cpp + new file: eigen/doc/snippets/MatrixBase_ones.cpp + new file: eigen/doc/snippets/MatrixBase_ones_int.cpp + new file: eigen/doc/snippets/MatrixBase_ones_int_int.cpp + new file: eigen/doc/snippets/MatrixBase_operatorNorm.cpp + new file: eigen/doc/snippets/MatrixBase_prod.cpp + new file: eigen/doc/snippets/MatrixBase_random.cpp + new file: eigen/doc/snippets/MatrixBase_random_int.cpp + new file: eigen/doc/snippets/MatrixBase_random_int_int.cpp + new file: eigen/doc/snippets/MatrixBase_replicate.cpp + new file: eigen/doc/snippets/MatrixBase_replicate_int_int.cpp + new file: eigen/doc/snippets/MatrixBase_reshaped_auto.cpp + new file: eigen/doc/snippets/MatrixBase_reshaped_fixed.cpp + new file: eigen/doc/snippets/MatrixBase_reshaped_int_int.cpp + new file: eigen/doc/snippets/MatrixBase_reshaped_to_vector.cpp + new file: eigen/doc/snippets/MatrixBase_reverse.cpp + new file: eigen/doc/snippets/MatrixBase_rightCols_int.cpp + new file: eigen/doc/snippets/MatrixBase_row.cpp + new file: eigen/doc/snippets/MatrixBase_rowwise.cpp + new file: eigen/doc/snippets/MatrixBase_segment_int_int.cpp + new file: eigen/doc/snippets/MatrixBase_select.cpp + new file: eigen/doc/snippets/MatrixBase_selfadjointView.cpp + new file: eigen/doc/snippets/MatrixBase_set.cpp + new file: eigen/doc/snippets/MatrixBase_setIdentity.cpp + new file: eigen/doc/snippets/MatrixBase_setOnes.cpp + new file: eigen/doc/snippets/MatrixBase_setRandom.cpp + new file: eigen/doc/snippets/MatrixBase_setZero.cpp + new file: eigen/doc/snippets/MatrixBase_start_int.cpp + new file: eigen/doc/snippets/MatrixBase_template_int_bottomRows.cpp + new file: eigen/doc/snippets/MatrixBase_template_int_end.cpp + new file: eigen/doc/snippets/MatrixBase_template_int_int_block_int_int_int_int.cpp + new file: eigen/doc/snippets/MatrixBase_template_int_int_bottomLeftCorner.cpp + new file: eigen/doc/snippets/MatrixBase_template_int_int_bottomLeftCorner_int_int.cpp + new file: eigen/doc/snippets/MatrixBase_template_int_int_bottomRightCorner.cpp + new file: eigen/doc/snippets/MatrixBase_template_int_int_bottomRightCorner_int_int.cpp + new file: eigen/doc/snippets/MatrixBase_template_int_int_topLeftCorner.cpp + new file: eigen/doc/snippets/MatrixBase_template_int_int_topLeftCorner_int_int.cpp + new file: eigen/doc/snippets/MatrixBase_template_int_int_topRightCorner.cpp + new file: eigen/doc/snippets/MatrixBase_template_int_int_topRightCorner_int_int.cpp + new file: eigen/doc/snippets/MatrixBase_template_int_leftCols.cpp + new file: eigen/doc/snippets/MatrixBase_template_int_rightCols.cpp + new file: eigen/doc/snippets/MatrixBase_template_int_segment.cpp + new file: eigen/doc/snippets/MatrixBase_template_int_start.cpp + new file: eigen/doc/snippets/MatrixBase_template_int_topRows.cpp + new file: eigen/doc/snippets/MatrixBase_topLeftCorner_int_int.cpp + new file: eigen/doc/snippets/MatrixBase_topRightCorner_int_int.cpp + new file: eigen/doc/snippets/MatrixBase_topRows_int.cpp + new file: eigen/doc/snippets/MatrixBase_transpose.cpp + new file: eigen/doc/snippets/MatrixBase_triangularView.cpp + new file: eigen/doc/snippets/MatrixBase_zero.cpp + new file: eigen/doc/snippets/MatrixBase_zero_int.cpp + new file: eigen/doc/snippets/MatrixBase_zero_int_int.cpp + new file: eigen/doc/snippets/Matrix_Map_stride.cpp + new file: eigen/doc/snippets/Matrix_initializer_list_23_cxx11.cpp + new file: eigen/doc/snippets/Matrix_initializer_list_vector_cxx11.cpp + new file: eigen/doc/snippets/Matrix_resize_NoChange_int.cpp + new file: eigen/doc/snippets/Matrix_resize_int.cpp + new file: eigen/doc/snippets/Matrix_resize_int_NoChange.cpp + new file: eigen/doc/snippets/Matrix_resize_int_int.cpp + new file: eigen/doc/snippets/Matrix_setConstant_int.cpp + new file: eigen/doc/snippets/Matrix_setConstant_int_int.cpp + new file: eigen/doc/snippets/Matrix_setIdentity_int_int.cpp + new file: eigen/doc/snippets/Matrix_setOnes_int.cpp + new file: eigen/doc/snippets/Matrix_setOnes_int_int.cpp + new file: eigen/doc/snippets/Matrix_setRandom_int.cpp + new file: eigen/doc/snippets/Matrix_setRandom_int_int.cpp + new file: eigen/doc/snippets/Matrix_setZero_int.cpp + new file: eigen/doc/snippets/Matrix_setZero_int_int.cpp + new file: eigen/doc/snippets/Matrix_variadic_ctor_cxx11.cpp + new file: eigen/doc/snippets/PartialPivLU_solve.cpp + new file: eigen/doc/snippets/PartialRedux_count.cpp + new file: eigen/doc/snippets/PartialRedux_maxCoeff.cpp + new file: eigen/doc/snippets/PartialRedux_minCoeff.cpp + new file: eigen/doc/snippets/PartialRedux_norm.cpp + new file: eigen/doc/snippets/PartialRedux_prod.cpp + new file: eigen/doc/snippets/PartialRedux_squaredNorm.cpp + new file: eigen/doc/snippets/PartialRedux_sum.cpp + new file: eigen/doc/snippets/RealQZ_compute.cpp + new file: eigen/doc/snippets/RealSchur_RealSchur_MatrixType.cpp + new file: eigen/doc/snippets/RealSchur_compute.cpp + new file: eigen/doc/snippets/SelfAdjointEigenSolver_SelfAdjointEigenSolver.cpp + new file: eigen/doc/snippets/SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType.cpp + new file: eigen/doc/snippets/SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType2.cpp + new file: eigen/doc/snippets/SelfAdjointEigenSolver_compute_MatrixType.cpp + new file: eigen/doc/snippets/SelfAdjointEigenSolver_compute_MatrixType2.cpp + new file: eigen/doc/snippets/SelfAdjointEigenSolver_eigenvalues.cpp + new file: eigen/doc/snippets/SelfAdjointEigenSolver_eigenvectors.cpp + new file: eigen/doc/snippets/SelfAdjointEigenSolver_operatorInverseSqrt.cpp + new file: eigen/doc/snippets/SelfAdjointEigenSolver_operatorSqrt.cpp + new file: eigen/doc/snippets/SelfAdjointView_eigenvalues.cpp + new file: eigen/doc/snippets/SelfAdjointView_operatorNorm.cpp + new file: eigen/doc/snippets/Slicing_arrayexpr.cpp + new file: eigen/doc/snippets/Slicing_custom_padding_cxx11.cpp + new file: eigen/doc/snippets/Slicing_rawarray_cxx11.cpp + new file: eigen/doc/snippets/Slicing_stdvector_cxx11.cpp + new file: eigen/doc/snippets/SparseMatrix_coeffs.cpp + new file: eigen/doc/snippets/TopicAliasing_block.cpp + new file: eigen/doc/snippets/TopicAliasing_block_correct.cpp + new file: eigen/doc/snippets/TopicAliasing_cwise.cpp + new file: eigen/doc/snippets/TopicAliasing_mult1.cpp + new file: eigen/doc/snippets/TopicAliasing_mult2.cpp + new file: eigen/doc/snippets/TopicAliasing_mult3.cpp + new file: eigen/doc/snippets/TopicAliasing_mult4.cpp + new file: eigen/doc/snippets/TopicAliasing_mult5.cpp + new file: eigen/doc/snippets/TopicStorageOrders_example.cpp + new file: eigen/doc/snippets/Triangular_solve.cpp + new file: eigen/doc/snippets/Tridiagonalization_Tridiagonalization_MatrixType.cpp + new file: eigen/doc/snippets/Tridiagonalization_compute.cpp + new file: eigen/doc/snippets/Tridiagonalization_decomposeInPlace.cpp + new file: eigen/doc/snippets/Tridiagonalization_diagonal.cpp + new file: eigen/doc/snippets/Tridiagonalization_householderCoefficients.cpp + new file: eigen/doc/snippets/Tridiagonalization_packedMatrix.cpp + new file: eigen/doc/snippets/Tutorial_AdvancedInitialization_Block.cpp + new file: eigen/doc/snippets/Tutorial_AdvancedInitialization_CommaTemporary.cpp + new file: eigen/doc/snippets/Tutorial_AdvancedInitialization_Join.cpp + new file: eigen/doc/snippets/Tutorial_AdvancedInitialization_LinSpaced.cpp + new file: eigen/doc/snippets/Tutorial_AdvancedInitialization_ThreeWays.cpp + new file: eigen/doc/snippets/Tutorial_AdvancedInitialization_Zero.cpp + new file: eigen/doc/snippets/Tutorial_Map_rowmajor.cpp + new file: eigen/doc/snippets/Tutorial_Map_using.cpp + new file: eigen/doc/snippets/Tutorial_ReshapeMat2Mat.cpp + new file: eigen/doc/snippets/Tutorial_ReshapeMat2Vec.cpp + new file: eigen/doc/snippets/Tutorial_SlicingCol.cpp + new file: eigen/doc/snippets/Tutorial_SlicingVec.cpp + new file: eigen/doc/snippets/Tutorial_commainit_01.cpp + new file: eigen/doc/snippets/Tutorial_commainit_01b.cpp + new file: eigen/doc/snippets/Tutorial_commainit_02.cpp + new file: eigen/doc/snippets/Tutorial_range_for_loop_1d_cxx11.cpp + new file: eigen/doc/snippets/Tutorial_range_for_loop_2d_cxx11.cpp + new file: eigen/doc/snippets/Tutorial_reshaped_vs_resize_1.cpp + new file: eigen/doc/snippets/Tutorial_reshaped_vs_resize_2.cpp + new file: eigen/doc/snippets/Tutorial_solve_matrix_inverse.cpp + new file: eigen/doc/snippets/Tutorial_solve_multiple_rhs.cpp + new file: eigen/doc/snippets/Tutorial_solve_reuse_decomposition.cpp + new file: eigen/doc/snippets/Tutorial_solve_singular.cpp + new file: eigen/doc/snippets/Tutorial_solve_triangular.cpp + new file: eigen/doc/snippets/Tutorial_solve_triangular_inplace.cpp + new file: eigen/doc/snippets/Tutorial_std_sort.cpp + new file: eigen/doc/snippets/Tutorial_std_sort_rows_cxx11.cpp + new file: eigen/doc/snippets/VectorwiseOp_homogeneous.cpp + new file: eigen/doc/snippets/Vectorwise_reverse.cpp + new file: eigen/doc/snippets/class_FullPivLU.cpp + new file: eigen/doc/snippets/compile_snippet.cpp.in + new file: eigen/doc/snippets/tut_arithmetic_redux_minmax.cpp + new file: eigen/doc/snippets/tut_arithmetic_transpose_aliasing.cpp + new file: eigen/doc/snippets/tut_arithmetic_transpose_conjugate.cpp + new file: eigen/doc/snippets/tut_arithmetic_transpose_inplace.cpp + new file: eigen/doc/snippets/tut_matrix_assignment_resizing.cpp + new file: eigen/doc/special_examples/CMakeLists.txt + new file: eigen/doc/special_examples/Tutorial_sparse_example.cpp + new file: eigen/doc/special_examples/Tutorial_sparse_example_details.cpp + new file: eigen/doc/special_examples/random_cpp11.cpp + new file: eigen/doc/tutorial.cpp + new file: eigen/eigen3.pc.in + new file: eigen/failtest/CMakeLists.txt + new file: eigen/failtest/bdcsvd_int.cpp + new file: eigen/failtest/block_nonconst_ctor_on_const_xpr_0.cpp + new file: eigen/failtest/block_nonconst_ctor_on_const_xpr_1.cpp + new file: eigen/failtest/block_nonconst_ctor_on_const_xpr_2.cpp + new file: eigen/failtest/block_on_const_type_actually_const_0.cpp + new file: eigen/failtest/block_on_const_type_actually_const_1.cpp + new file: eigen/failtest/colpivqr_int.cpp + new file: eigen/failtest/const_qualified_block_method_retval_0.cpp + new file: eigen/failtest/const_qualified_block_method_retval_1.cpp + new file: eigen/failtest/const_qualified_diagonal_method_retval.cpp + new file: eigen/failtest/const_qualified_transpose_method_retval.cpp + new file: eigen/failtest/cwiseunaryview_nonconst_ctor_on_const_xpr.cpp + new file: eigen/failtest/cwiseunaryview_on_const_type_actually_const.cpp + new file: eigen/failtest/diagonal_nonconst_ctor_on_const_xpr.cpp + new file: eigen/failtest/diagonal_on_const_type_actually_const.cpp + new file: eigen/failtest/eigensolver_cplx.cpp + new file: eigen/failtest/eigensolver_int.cpp + new file: eigen/failtest/failtest_sanity_check.cpp + new file: eigen/failtest/fullpivlu_int.cpp + new file: eigen/failtest/fullpivqr_int.cpp + new file: eigen/failtest/initializer_list_1.cpp + new file: eigen/failtest/initializer_list_2.cpp + new file: eigen/failtest/jacobisvd_int.cpp + new file: eigen/failtest/ldlt_int.cpp + new file: eigen/failtest/llt_int.cpp + new file: eigen/failtest/map_nonconst_ctor_on_const_ptr_0.cpp + new file: eigen/failtest/map_nonconst_ctor_on_const_ptr_1.cpp + new file: eigen/failtest/map_nonconst_ctor_on_const_ptr_2.cpp + new file: eigen/failtest/map_nonconst_ctor_on_const_ptr_3.cpp + new file: eigen/failtest/map_nonconst_ctor_on_const_ptr_4.cpp + new file: eigen/failtest/map_on_const_type_actually_const_0.cpp + new file: eigen/failtest/map_on_const_type_actually_const_1.cpp + new file: eigen/failtest/partialpivlu_int.cpp + new file: eigen/failtest/qr_int.cpp + new file: eigen/failtest/ref_1.cpp + new file: eigen/failtest/ref_2.cpp + new file: eigen/failtest/ref_3.cpp + new file: eigen/failtest/ref_4.cpp + new file: eigen/failtest/ref_5.cpp + new file: eigen/failtest/selfadjointview_nonconst_ctor_on_const_xpr.cpp + new file: eigen/failtest/selfadjointview_on_const_type_actually_const.cpp + new file: eigen/failtest/sparse_ref_1.cpp + new file: eigen/failtest/sparse_ref_2.cpp + new file: eigen/failtest/sparse_ref_3.cpp + new file: eigen/failtest/sparse_ref_4.cpp + new file: eigen/failtest/sparse_ref_5.cpp + new file: eigen/failtest/sparse_storage_mismatch.cpp + new file: eigen/failtest/swap_1.cpp + new file: eigen/failtest/swap_2.cpp + new file: eigen/failtest/ternary_1.cpp + new file: eigen/failtest/ternary_2.cpp + new file: eigen/failtest/transpose_nonconst_ctor_on_const_xpr.cpp + new file: eigen/failtest/transpose_on_const_type_actually_const.cpp + new file: eigen/failtest/triangularview_nonconst_ctor_on_const_xpr.cpp + new file: eigen/failtest/triangularview_on_const_type_actually_const.cpp + new file: eigen/lapack/CMakeLists.txt + new file: eigen/lapack/cholesky.cpp + new file: eigen/lapack/clacgv.f + new file: eigen/lapack/cladiv.f + new file: eigen/lapack/clarf.f + new file: eigen/lapack/clarfb.f + new file: eigen/lapack/clarfg.f + new file: eigen/lapack/clarft.f + new file: eigen/lapack/complex_double.cpp + new file: eigen/lapack/complex_single.cpp + new file: eigen/lapack/dladiv.f + new file: eigen/lapack/dlamch.f + new file: eigen/lapack/dlapy2.f + new file: eigen/lapack/dlapy3.f + new file: eigen/lapack/dlarf.f + new file: eigen/lapack/dlarfb.f + new file: eigen/lapack/dlarfg.f + new file: eigen/lapack/dlarft.f + new file: eigen/lapack/double.cpp + new file: eigen/lapack/dsecnd_NONE.f + new file: eigen/lapack/eigenvalues.cpp + new file: eigen/lapack/ilaclc.f + new file: eigen/lapack/ilaclr.f + new file: eigen/lapack/iladlc.f + new file: eigen/lapack/iladlr.f + new file: eigen/lapack/ilaslc.f + new file: eigen/lapack/ilaslr.f + new file: eigen/lapack/ilazlc.f + new file: eigen/lapack/ilazlr.f + new file: eigen/lapack/lapack_common.h + new file: eigen/lapack/lu.cpp + new file: eigen/lapack/second_NONE.f + new file: eigen/lapack/single.cpp + new file: eigen/lapack/sladiv.f + new file: eigen/lapack/slamch.f + new file: eigen/lapack/slapy2.f + new file: eigen/lapack/slapy3.f + new file: eigen/lapack/slarf.f + new file: eigen/lapack/slarfb.f + new file: eigen/lapack/slarfg.f + new file: eigen/lapack/slarft.f + new file: eigen/lapack/svd.cpp + new file: eigen/lapack/zlacgv.f + new file: eigen/lapack/zladiv.f + new file: eigen/lapack/zlarf.f + new file: eigen/lapack/zlarfb.f + new file: eigen/lapack/zlarfg.f + new file: eigen/lapack/zlarft.f + new file: eigen/scripts/CMakeLists.txt + new file: eigen/scripts/buildtests.in + new file: eigen/scripts/cdashtesting.cmake.in + new file: eigen/scripts/check.in + new file: eigen/scripts/debug.in + new file: eigen/scripts/eigen_gen_credits.cpp + new file: eigen/scripts/eigen_gen_docs + new file: eigen/scripts/eigen_gen_split_test_help.cmake + new file: eigen/scripts/eigen_monitor_perf.sh + new file: eigen/scripts/release.in + new file: eigen/scripts/relicense.py + new file: eigen/signature_of_eigen3_matrix_library + new file: eigen/test/AnnoyingScalar.h + new file: eigen/test/CMakeLists.txt + new file: eigen/test/MovableScalar.h + new file: eigen/test/adjoint.cpp + new file: eigen/test/array_cwise.cpp + new file: eigen/test/array_for_matrix.cpp + new file: eigen/test/array_of_string.cpp + new file: eigen/test/array_replicate.cpp + new file: eigen/test/array_reverse.cpp + new file: eigen/test/bandmatrix.cpp + new file: eigen/test/basicstuff.cpp + new file: eigen/test/bdcsvd.cpp + new file: eigen/test/bfloat16_float.cpp + new file: eigen/test/bicgstab.cpp + new file: eigen/test/blasutil.cpp + new file: eigen/test/block.cpp + new file: eigen/test/boostmultiprec.cpp + new file: eigen/test/bug1213.cpp + new file: eigen/test/bug1213.h + new file: eigen/test/bug1213_main.cpp + new file: eigen/test/cholesky.cpp + new file: eigen/test/cholmod_support.cpp + new file: eigen/test/commainitializer.cpp + new file: eigen/test/conjugate_gradient.cpp + new file: eigen/test/conservative_resize.cpp + new file: eigen/test/constructor.cpp + new file: eigen/test/corners.cpp + new file: eigen/test/ctorleak.cpp + new file: eigen/test/denseLM.cpp + new file: eigen/test/dense_storage.cpp + new file: eigen/test/determinant.cpp + new file: eigen/test/diagonal.cpp + new file: eigen/test/diagonal_matrix_variadic_ctor.cpp + new file: eigen/test/diagonalmatrices.cpp + new file: eigen/test/dontalign.cpp + new file: eigen/test/dynalloc.cpp + new file: eigen/test/eigen2support.cpp + new file: eigen/test/eigensolver_complex.cpp + new file: eigen/test/eigensolver_generalized_real.cpp + new file: eigen/test/eigensolver_generic.cpp + new file: eigen/test/eigensolver_selfadjoint.cpp + new file: eigen/test/evaluator_common.h + new file: eigen/test/evaluators.cpp + new file: eigen/test/exceptions.cpp + new file: eigen/test/fastmath.cpp + new file: eigen/test/first_aligned.cpp + new file: eigen/test/geo_alignedbox.cpp + new file: eigen/test/geo_eulerangles.cpp + new file: eigen/test/geo_homogeneous.cpp + new file: eigen/test/geo_hyperplane.cpp + new file: eigen/test/geo_orthomethods.cpp + new file: eigen/test/geo_parametrizedline.cpp + new file: eigen/test/geo_quaternion.cpp + new file: eigen/test/geo_transformations.cpp + new file: eigen/test/gpu_basic.cu + new file: eigen/test/gpu_common.h + new file: eigen/test/half_float.cpp + new file: eigen/test/hessenberg.cpp + new file: eigen/test/householder.cpp + new file: eigen/test/incomplete_cholesky.cpp + new file: eigen/test/indexed_view.cpp + new file: eigen/test/initializer_list_construction.cpp + new file: eigen/test/inplace_decomposition.cpp + new file: eigen/test/integer_types.cpp + new file: eigen/test/inverse.cpp + new file: eigen/test/io.cpp + new file: eigen/test/is_same_dense.cpp + new file: eigen/test/jacobi.cpp + new file: eigen/test/jacobisvd.cpp + new file: eigen/test/klu_support.cpp + new file: eigen/test/linearstructure.cpp + new file: eigen/test/lscg.cpp + new file: eigen/test/lu.cpp + new file: eigen/test/main.h + new file: eigen/test/mapped_matrix.cpp + new file: eigen/test/mapstaticmethods.cpp + new file: eigen/test/mapstride.cpp + new file: eigen/test/meta.cpp + new file: eigen/test/metis_support.cpp + new file: eigen/test/miscmatrices.cpp + new file: eigen/test/mixingtypes.cpp + new file: eigen/test/mpl2only.cpp + new file: eigen/test/nestbyvalue.cpp + new file: eigen/test/nesting_ops.cpp + new file: eigen/test/nomalloc.cpp + new file: eigen/test/nullary.cpp + new file: eigen/test/num_dimensions.cpp + new file: eigen/test/numext.cpp + new file: eigen/test/packetmath.cpp + new file: eigen/test/packetmath_test_shared.h + new file: eigen/test/pardiso_support.cpp + new file: eigen/test/pastix_support.cpp + new file: eigen/test/permutationmatrices.cpp + new file: eigen/test/prec_inverse_4x4.cpp + new file: eigen/test/product.h + new file: eigen/test/product_extra.cpp + new file: eigen/test/product_large.cpp + new file: eigen/test/product_mmtr.cpp + new file: eigen/test/product_notemporary.cpp + new file: eigen/test/product_selfadjoint.cpp + new file: eigen/test/product_small.cpp + new file: eigen/test/product_symm.cpp + new file: eigen/test/product_syrk.cpp + new file: eigen/test/product_trmm.cpp + new file: eigen/test/product_trmv.cpp + new file: eigen/test/product_trsolve.cpp + new file: eigen/test/qr.cpp + new file: eigen/test/qr_colpivoting.cpp + new file: eigen/test/qr_fullpivoting.cpp + new file: eigen/test/qtvector.cpp + new file: eigen/test/rand.cpp + new file: eigen/test/random_without_cast_overflow.h + new file: eigen/test/real_qz.cpp + new file: eigen/test/redux.cpp + new file: eigen/test/ref.cpp + new file: eigen/test/reshape.cpp + new file: eigen/test/resize.cpp + new file: eigen/test/rvalue_types.cpp + new file: eigen/test/schur_complex.cpp + new file: eigen/test/schur_real.cpp + new file: eigen/test/selfadjoint.cpp + new file: eigen/test/simplicial_cholesky.cpp + new file: eigen/test/sizeof.cpp + new file: eigen/test/sizeoverflow.cpp + new file: eigen/test/smallvectors.cpp + new file: eigen/test/solverbase.h + new file: eigen/test/sparse.h + new file: eigen/test/sparseLM.cpp + new file: eigen/test/sparse_basic.cpp + new file: eigen/test/sparse_block.cpp + new file: eigen/test/sparse_permutations.cpp + new file: eigen/test/sparse_product.cpp + new file: eigen/test/sparse_ref.cpp + new file: eigen/test/sparse_solver.h + new file: eigen/test/sparse_solvers.cpp + new file: eigen/test/sparse_vector.cpp + new file: eigen/test/sparselu.cpp + new file: eigen/test/sparseqr.cpp + new file: eigen/test/special_numbers.cpp + new file: eigen/test/split_test_helper.h + new file: eigen/test/spqr_support.cpp + new file: eigen/test/stable_norm.cpp + new file: eigen/test/stddeque.cpp + new file: eigen/test/stddeque_overload.cpp + new file: eigen/test/stdlist.cpp + new file: eigen/test/stdlist_overload.cpp + new file: eigen/test/stdvector.cpp + new file: eigen/test/stdvector_overload.cpp + new file: eigen/test/stl_iterators.cpp + new file: eigen/test/superlu_support.cpp + new file: eigen/test/svd_common.h + new file: eigen/test/svd_fill.h + new file: eigen/test/swap.cpp + new file: eigen/test/symbolic_index.cpp + new file: eigen/test/triangular.cpp + new file: eigen/test/type_alias.cpp + new file: eigen/test/umeyama.cpp + new file: eigen/test/umfpack_support.cpp + new file: eigen/test/unalignedassert.cpp + new file: eigen/test/unalignedcount.cpp + new file: eigen/test/upperbidiagonalization.cpp + new file: eigen/test/vectorization_logic.cpp + new file: eigen/test/vectorwiseop.cpp + new file: eigen/test/visitor.cpp + new file: eigen/test/zerosized.cpp + new file: eigen/unsupported/CMakeLists.txt + new file: eigen/unsupported/Eigen/AdolcForward + new file: eigen/unsupported/Eigen/AlignedVector3 + new file: eigen/unsupported/Eigen/ArpackSupport + new file: eigen/unsupported/Eigen/AutoDiff + new file: eigen/unsupported/Eigen/BVH + new file: eigen/unsupported/Eigen/CMakeLists.txt + new file: eigen/unsupported/Eigen/CXX11/CMakeLists.txt + new file: eigen/unsupported/Eigen/CXX11/Tensor + new file: eigen/unsupported/Eigen/CXX11/TensorSymmetry + new file: eigen/unsupported/Eigen/CXX11/ThreadPool + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/README.md + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/Tensor.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorArgMax.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorBase.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorBlock.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorChipping.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorConcatenation.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionBlocking.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionCuda.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionGpu.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionMapper.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionSycl.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionThreadPool.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorConversion.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorConvolutionSycl.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorCostModel.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorCustomOp.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDevice.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceCuda.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceDefault.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceGpu.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceSycl.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceThreadPool.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDimensionList.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorEvalTo.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorExpr.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorFFT.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorFixedSize.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorGenerator.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorGlobalFunctions.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorGpuHipCudaDefines.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorGpuHipCudaUndefines.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorIO.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorImagePatch.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorInflation.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorInitializer.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorIntDiv.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorLayoutSwap.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorMacros.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorPadding.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorPatch.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorRandom.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorReduction.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorReductionCuda.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorReductionGpu.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorReductionSycl.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorRef.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorReverse.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorScan.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorScanSycl.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorStorage.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorStriding.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorTrace.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h + new file: eigen/unsupported/Eigen/CXX11/src/Tensor/TensorVolumePatch.h + new file: eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/DynamicSymmetry.h + new file: eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/StaticSymmetry.h + new file: eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/Symmetry.h + new file: eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/util/TemplateGroupTheory.h + new file: eigen/unsupported/Eigen/CXX11/src/ThreadPool/Barrier.h + new file: eigen/unsupported/Eigen/CXX11/src/ThreadPool/EventCount.h + new file: eigen/unsupported/Eigen/CXX11/src/ThreadPool/NonBlockingThreadPool.h + new file: eigen/unsupported/Eigen/CXX11/src/ThreadPool/RunQueue.h + new file: eigen/unsupported/Eigen/CXX11/src/ThreadPool/ThreadCancel.h + new file: eigen/unsupported/Eigen/CXX11/src/ThreadPool/ThreadEnvironment.h + new file: eigen/unsupported/Eigen/CXX11/src/ThreadPool/ThreadLocal.h + new file: eigen/unsupported/Eigen/CXX11/src/ThreadPool/ThreadPoolInterface.h + new file: eigen/unsupported/Eigen/CXX11/src/ThreadPool/ThreadYield.h + new file: eigen/unsupported/Eigen/CXX11/src/util/CXX11Meta.h + new file: eigen/unsupported/Eigen/CXX11/src/util/CXX11Workarounds.h + new file: eigen/unsupported/Eigen/CXX11/src/util/EmulateArray.h + new file: eigen/unsupported/Eigen/CXX11/src/util/MaxSizeVector.h + new file: eigen/unsupported/Eigen/EulerAngles + new file: eigen/unsupported/Eigen/FFT + new file: eigen/unsupported/Eigen/IterativeSolvers + new file: eigen/unsupported/Eigen/KroneckerProduct + new file: eigen/unsupported/Eigen/LevenbergMarquardt + new file: eigen/unsupported/Eigen/MPRealSupport + new file: eigen/unsupported/Eigen/MatrixFunctions + new file: eigen/unsupported/Eigen/MoreVectorization + new file: eigen/unsupported/Eigen/NonLinearOptimization + new file: eigen/unsupported/Eigen/NumericalDiff + new file: eigen/unsupported/Eigen/OpenGLSupport + new file: eigen/unsupported/Eigen/Polynomials + new file: eigen/unsupported/Eigen/Skyline + new file: eigen/unsupported/Eigen/SparseExtra + new file: eigen/unsupported/Eigen/SpecialFunctions + new file: eigen/unsupported/Eigen/Splines + new file: eigen/unsupported/Eigen/src/AutoDiff/AutoDiffJacobian.h + new file: eigen/unsupported/Eigen/src/AutoDiff/AutoDiffScalar.h + new file: eigen/unsupported/Eigen/src/AutoDiff/AutoDiffVector.h + new file: eigen/unsupported/Eigen/src/BVH/BVAlgorithms.h + new file: eigen/unsupported/Eigen/src/BVH/KdBVH.h + new file: eigen/unsupported/Eigen/src/Eigenvalues/ArpackSelfAdjointEigenSolver.h + new file: eigen/unsupported/Eigen/src/EulerAngles/CMakeLists.txt + new file: eigen/unsupported/Eigen/src/EulerAngles/EulerAngles.h + new file: eigen/unsupported/Eigen/src/EulerAngles/EulerSystem.h + new file: eigen/unsupported/Eigen/src/FFT/ei_fftw_impl.h + new file: eigen/unsupported/Eigen/src/FFT/ei_kissfft_impl.h + new file: eigen/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h + new file: eigen/unsupported/Eigen/src/IterativeSolvers/DGMRES.h + new file: eigen/unsupported/Eigen/src/IterativeSolvers/GMRES.h + new file: eigen/unsupported/Eigen/src/IterativeSolvers/IncompleteLU.h + new file: eigen/unsupported/Eigen/src/IterativeSolvers/IterationController.h + new file: eigen/unsupported/Eigen/src/IterativeSolvers/MINRES.h + new file: eigen/unsupported/Eigen/src/IterativeSolvers/Scaling.h + new file: eigen/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h + new file: eigen/unsupported/Eigen/src/LevenbergMarquardt/CopyrightMINPACK.txt + new file: eigen/unsupported/Eigen/src/LevenbergMarquardt/LMcovar.h + new file: eigen/unsupported/Eigen/src/LevenbergMarquardt/LMonestep.h + new file: eigen/unsupported/Eigen/src/LevenbergMarquardt/LMpar.h + new file: eigen/unsupported/Eigen/src/LevenbergMarquardt/LMqrsolv.h + new file: eigen/unsupported/Eigen/src/LevenbergMarquardt/LevenbergMarquardt.h + new file: eigen/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h + new file: eigen/unsupported/Eigen/src/MatrixFunctions/MatrixFunction.h + new file: eigen/unsupported/Eigen/src/MatrixFunctions/MatrixLogarithm.h + new file: eigen/unsupported/Eigen/src/MatrixFunctions/MatrixPower.h + new file: eigen/unsupported/Eigen/src/MatrixFunctions/MatrixSquareRoot.h + new file: eigen/unsupported/Eigen/src/MatrixFunctions/StemFunction.h + new file: eigen/unsupported/Eigen/src/MoreVectorization/MathFunctions.h + new file: eigen/unsupported/Eigen/src/NonLinearOptimization/HybridNonLinearSolver.h + new file: eigen/unsupported/Eigen/src/NonLinearOptimization/LevenbergMarquardt.h + new file: eigen/unsupported/Eigen/src/NonLinearOptimization/chkder.h + new file: eigen/unsupported/Eigen/src/NonLinearOptimization/covar.h + new file: eigen/unsupported/Eigen/src/NonLinearOptimization/dogleg.h + new file: eigen/unsupported/Eigen/src/NonLinearOptimization/fdjac1.h + new file: eigen/unsupported/Eigen/src/NonLinearOptimization/lmpar.h + new file: eigen/unsupported/Eigen/src/NonLinearOptimization/qrsolv.h + new file: eigen/unsupported/Eigen/src/NonLinearOptimization/r1mpyq.h + new file: eigen/unsupported/Eigen/src/NonLinearOptimization/r1updt.h + new file: eigen/unsupported/Eigen/src/NonLinearOptimization/rwupdt.h + new file: eigen/unsupported/Eigen/src/NumericalDiff/NumericalDiff.h + new file: eigen/unsupported/Eigen/src/Polynomials/Companion.h + new file: eigen/unsupported/Eigen/src/Polynomials/PolynomialSolver.h + new file: eigen/unsupported/Eigen/src/Polynomials/PolynomialUtils.h + new file: eigen/unsupported/Eigen/src/Skyline/SkylineInplaceLU.h + new file: eigen/unsupported/Eigen/src/Skyline/SkylineMatrix.h + new file: eigen/unsupported/Eigen/src/Skyline/SkylineMatrixBase.h + new file: eigen/unsupported/Eigen/src/Skyline/SkylineProduct.h + new file: eigen/unsupported/Eigen/src/Skyline/SkylineStorage.h + new file: eigen/unsupported/Eigen/src/Skyline/SkylineUtil.h + new file: eigen/unsupported/Eigen/src/SparseExtra/BlockOfDynamicSparseMatrix.h + new file: eigen/unsupported/Eigen/src/SparseExtra/BlockSparseMatrix.h + new file: eigen/unsupported/Eigen/src/SparseExtra/DynamicSparseMatrix.h + new file: eigen/unsupported/Eigen/src/SparseExtra/MarketIO.h + new file: eigen/unsupported/Eigen/src/SparseExtra/MatrixMarketIterator.h + new file: eigen/unsupported/Eigen/src/SparseExtra/RandomSetter.h + new file: eigen/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsArrayAPI.h + new file: eigen/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsBFloat16.h + new file: eigen/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsFunctors.h + new file: eigen/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsHalf.h + new file: eigen/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsImpl.h + new file: eigen/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsPacketMath.h + new file: eigen/unsupported/Eigen/src/SpecialFunctions/HipVectorCompatibility.h + new file: eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsArrayAPI.h + new file: eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsBFloat16.h + new file: eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsFunctors.h + new file: eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsHalf.h + new file: eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsImpl.h + new file: eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsPacketMath.h + new file: eigen/unsupported/Eigen/src/SpecialFunctions/arch/GPU/GpuSpecialFunctions.h + new file: eigen/unsupported/Eigen/src/Splines/Spline.h + new file: eigen/unsupported/Eigen/src/Splines/SplineFitting.h + new file: eigen/unsupported/Eigen/src/Splines/SplineFwd.h + new file: eigen/unsupported/README.txt + new file: eigen/unsupported/bench/bench_svd.cpp + new file: eigen/unsupported/doc/CMakeLists.txt + new file: eigen/unsupported/doc/Overview.dox + new file: eigen/unsupported/doc/SYCL.dox + new file: eigen/unsupported/doc/eigendoxy_layout.xml.in + new file: eigen/unsupported/doc/examples/BVH_Example.cpp + new file: eigen/unsupported/doc/examples/CMakeLists.txt + new file: eigen/unsupported/doc/examples/EulerAngles.cpp + new file: eigen/unsupported/doc/examples/FFT.cpp + new file: eigen/unsupported/doc/examples/MatrixExponential.cpp + new file: eigen/unsupported/doc/examples/MatrixFunction.cpp + new file: eigen/unsupported/doc/examples/MatrixLogarithm.cpp + new file: eigen/unsupported/doc/examples/MatrixPower.cpp + new file: eigen/unsupported/doc/examples/MatrixPower_optimal.cpp + new file: eigen/unsupported/doc/examples/MatrixSine.cpp + new file: eigen/unsupported/doc/examples/MatrixSinh.cpp + new file: eigen/unsupported/doc/examples/MatrixSquareRoot.cpp + new file: eigen/unsupported/doc/examples/PolynomialSolver1.cpp + new file: eigen/unsupported/doc/examples/PolynomialUtils1.cpp + new file: eigen/unsupported/doc/examples/SYCL/CMakeLists.txt + new file: eigen/unsupported/doc/examples/SYCL/CwiseMul.cpp + new file: eigen/unsupported/doc/snippets/CMakeLists.txt + new file: eigen/unsupported/test/BVH.cpp + new file: eigen/unsupported/test/CMakeLists.txt + new file: eigen/unsupported/test/EulerAngles.cpp + new file: eigen/unsupported/test/FFT.cpp + new file: eigen/unsupported/test/FFTW.cpp + new file: eigen/unsupported/test/NonLinearOptimization.cpp + new file: eigen/unsupported/test/NumericalDiff.cpp + new file: eigen/unsupported/test/alignedvector3.cpp + new file: eigen/unsupported/test/autodiff.cpp + new file: eigen/unsupported/test/autodiff_scalar.cpp + new file: eigen/unsupported/test/bessel_functions.cpp + new file: eigen/unsupported/test/cxx11_eventcount.cpp + new file: eigen/unsupported/test/cxx11_maxsizevector.cpp + new file: eigen/unsupported/test/cxx11_meta.cpp + new file: eigen/unsupported/test/cxx11_non_blocking_thread_pool.cpp + new file: eigen/unsupported/test/cxx11_runqueue.cpp + new file: eigen/unsupported/test/cxx11_tensor_argmax.cpp + new file: eigen/unsupported/test/cxx11_tensor_argmax_gpu.cu + new file: eigen/unsupported/test/cxx11_tensor_argmax_sycl.cpp + new file: eigen/unsupported/test/cxx11_tensor_assign.cpp + new file: eigen/unsupported/test/cxx11_tensor_block_access.cpp + new file: eigen/unsupported/test/cxx11_tensor_block_eval.cpp + new file: eigen/unsupported/test/cxx11_tensor_block_io.cpp + new file: eigen/unsupported/test/cxx11_tensor_broadcast_sycl.cpp + new file: eigen/unsupported/test/cxx11_tensor_broadcasting.cpp + new file: eigen/unsupported/test/cxx11_tensor_builtins_sycl.cpp + new file: eigen/unsupported/test/cxx11_tensor_cast_float16_gpu.cu + new file: eigen/unsupported/test/cxx11_tensor_casts.cpp + new file: eigen/unsupported/test/cxx11_tensor_chipping.cpp + new file: eigen/unsupported/test/cxx11_tensor_chipping_sycl.cpp + new file: eigen/unsupported/test/cxx11_tensor_comparisons.cpp + new file: eigen/unsupported/test/cxx11_tensor_complex_cwise_ops_gpu.cu + new file: eigen/unsupported/test/cxx11_tensor_complex_gpu.cu + new file: eigen/unsupported/test/cxx11_tensor_concatenation.cpp + new file: eigen/unsupported/test/cxx11_tensor_concatenation_sycl.cpp + new file: eigen/unsupported/test/cxx11_tensor_const.cpp + new file: eigen/unsupported/test/cxx11_tensor_contract_gpu.cu + new file: eigen/unsupported/test/cxx11_tensor_contract_sycl.cpp + new file: eigen/unsupported/test/cxx11_tensor_contraction.cpp + new file: eigen/unsupported/test/cxx11_tensor_convolution.cpp + new file: eigen/unsupported/test/cxx11_tensor_convolution_sycl.cpp + new file: eigen/unsupported/test/cxx11_tensor_custom_index.cpp + new file: eigen/unsupported/test/cxx11_tensor_custom_op.cpp + new file: eigen/unsupported/test/cxx11_tensor_custom_op_sycl.cpp + new file: eigen/unsupported/test/cxx11_tensor_device.cu + new file: eigen/unsupported/test/cxx11_tensor_device_sycl.cpp + new file: eigen/unsupported/test/cxx11_tensor_dimension.cpp + new file: eigen/unsupported/test/cxx11_tensor_empty.cpp + new file: eigen/unsupported/test/cxx11_tensor_executor.cpp + new file: eigen/unsupported/test/cxx11_tensor_expr.cpp + new file: eigen/unsupported/test/cxx11_tensor_fft.cpp + new file: eigen/unsupported/test/cxx11_tensor_fixed_size.cpp + new file: eigen/unsupported/test/cxx11_tensor_forced_eval.cpp + new file: eigen/unsupported/test/cxx11_tensor_forced_eval_sycl.cpp + new file: eigen/unsupported/test/cxx11_tensor_generator.cpp + new file: eigen/unsupported/test/cxx11_tensor_generator_sycl.cpp + new file: eigen/unsupported/test/cxx11_tensor_gpu.cu + new file: eigen/unsupported/test/cxx11_tensor_ifft.cpp + new file: eigen/unsupported/test/cxx11_tensor_image_op_sycl.cpp + new file: eigen/unsupported/test/cxx11_tensor_image_patch.cpp + new file: eigen/unsupported/test/cxx11_tensor_image_patch_sycl.cpp + new file: eigen/unsupported/test/cxx11_tensor_index_list.cpp + new file: eigen/unsupported/test/cxx11_tensor_inflation.cpp + new file: eigen/unsupported/test/cxx11_tensor_inflation_sycl.cpp + new file: eigen/unsupported/test/cxx11_tensor_intdiv.cpp + new file: eigen/unsupported/test/cxx11_tensor_io.cpp + new file: eigen/unsupported/test/cxx11_tensor_layout_swap.cpp + new file: eigen/unsupported/test/cxx11_tensor_layout_swap_sycl.cpp + new file: eigen/unsupported/test/cxx11_tensor_lvalue.cpp + new file: eigen/unsupported/test/cxx11_tensor_map.cpp + new file: eigen/unsupported/test/cxx11_tensor_math.cpp + new file: eigen/unsupported/test/cxx11_tensor_math_sycl.cpp + new file: eigen/unsupported/test/cxx11_tensor_mixed_indices.cpp + new file: eigen/unsupported/test/cxx11_tensor_morphing.cpp + new file: eigen/unsupported/test/cxx11_tensor_morphing_sycl.cpp + new file: eigen/unsupported/test/cxx11_tensor_move.cpp + new file: eigen/unsupported/test/cxx11_tensor_notification.cpp + new file: eigen/unsupported/test/cxx11_tensor_of_complex.cpp + new file: eigen/unsupported/test/cxx11_tensor_of_const_values.cpp + new file: eigen/unsupported/test/cxx11_tensor_of_float16_gpu.cu + new file: eigen/unsupported/test/cxx11_tensor_of_strings.cpp + new file: eigen/unsupported/test/cxx11_tensor_padding.cpp + new file: eigen/unsupported/test/cxx11_tensor_padding_sycl.cpp + new file: eigen/unsupported/test/cxx11_tensor_patch.cpp + new file: eigen/unsupported/test/cxx11_tensor_patch_sycl.cpp + new file: eigen/unsupported/test/cxx11_tensor_random.cpp + new file: eigen/unsupported/test/cxx11_tensor_random_gpu.cu + new file: eigen/unsupported/test/cxx11_tensor_random_sycl.cpp + new file: eigen/unsupported/test/cxx11_tensor_reduction.cpp + new file: eigen/unsupported/test/cxx11_tensor_reduction_gpu.cu + new file: eigen/unsupported/test/cxx11_tensor_reduction_sycl.cpp + new file: eigen/unsupported/test/cxx11_tensor_ref.cpp + new file: eigen/unsupported/test/cxx11_tensor_reverse.cpp + new file: eigen/unsupported/test/cxx11_tensor_reverse_sycl.cpp + new file: eigen/unsupported/test/cxx11_tensor_roundings.cpp + new file: eigen/unsupported/test/cxx11_tensor_scan.cpp + new file: eigen/unsupported/test/cxx11_tensor_scan_gpu.cu + new file: eigen/unsupported/test/cxx11_tensor_scan_sycl.cpp + new file: eigen/unsupported/test/cxx11_tensor_shuffling.cpp + new file: eigen/unsupported/test/cxx11_tensor_shuffling_sycl.cpp + new file: eigen/unsupported/test/cxx11_tensor_simple.cpp + new file: eigen/unsupported/test/cxx11_tensor_striding.cpp + new file: eigen/unsupported/test/cxx11_tensor_striding_sycl.cpp + new file: eigen/unsupported/test/cxx11_tensor_sugar.cpp + new file: eigen/unsupported/test/cxx11_tensor_sycl.cpp + new file: eigen/unsupported/test/cxx11_tensor_symmetry.cpp + new file: eigen/unsupported/test/cxx11_tensor_thread_local.cpp + new file: eigen/unsupported/test/cxx11_tensor_thread_pool.cpp + new file: eigen/unsupported/test/cxx11_tensor_trace.cpp + new file: eigen/unsupported/test/cxx11_tensor_uint128.cpp + new file: eigen/unsupported/test/cxx11_tensor_volume_patch.cpp + new file: eigen/unsupported/test/cxx11_tensor_volume_patch_sycl.cpp + new file: eigen/unsupported/test/dgmres.cpp + new file: eigen/unsupported/test/forward_adolc.cpp + new file: eigen/unsupported/test/gmres.cpp + new file: eigen/unsupported/test/kronecker_product.cpp + new file: eigen/unsupported/test/levenberg_marquardt.cpp + new file: eigen/unsupported/test/matrix_exponential.cpp + new file: eigen/unsupported/test/matrix_function.cpp + new file: eigen/unsupported/test/matrix_functions.h + new file: eigen/unsupported/test/matrix_power.cpp + new file: eigen/unsupported/test/matrix_square_root.cpp + new file: eigen/unsupported/test/minres.cpp + new file: eigen/unsupported/test/mpreal/mpreal.h + new file: eigen/unsupported/test/mpreal_support.cpp + new file: eigen/unsupported/test/openglsupport.cpp + new file: eigen/unsupported/test/polynomialsolver.cpp + new file: eigen/unsupported/test/polynomialutils.cpp + new file: eigen/unsupported/test/sparse_extra.cpp + new file: eigen/unsupported/test/special_functions.cpp + new file: eigen/unsupported/test/special_packetmath.cpp + new file: eigen/unsupported/test/splines.cpp + new file: example/example.phy.bionj + new file: example/example.phy.ckp.gz + new file: example/example.phy.iqtree + new file: example/example.phy.log + new file: example/example.phy.mldist + new file: example/example.phy.model.gz + new file: example/example.phy.treefile + new file: includelog + renamed: build/intrinsics -> intrinsics + modified: model/modelliemarkov.cpp + modified: model/modelmarkov.cpp + modified: model/modelpomo.cpp + new file: pll/CMakeCache.txt + new file: pll/CMakeFiles/3.14.1/CMakeCCompiler.cmake + new file: pll/CMakeFiles/3.14.1/CMakeCXXCompiler.cmake + new file: pll/CMakeFiles/3.14.1/CMakeDetermineCompilerABI_C.bin + new file: pll/CMakeFiles/3.14.1/CMakeDetermineCompilerABI_CXX.bin + new file: pll/CMakeFiles/3.14.1/CMakeSystem.cmake + new file: pll/CMakeFiles/3.14.1/CompilerIdC/CMakeCCompilerId.c + new file: pll/CMakeFiles/3.14.1/CompilerIdC/a.out + new file: pll/CMakeFiles/3.14.1/CompilerIdCXX/CMakeCXXCompilerId.cpp + new file: pll/CMakeFiles/3.14.1/CompilerIdCXX/a.out + new file: pll/CMakeFiles/CMakeDirectoryInformation.cmake + new file: pll/CMakeFiles/CMakeOutput.log + new file: pll/CMakeFiles/Makefile.cmake + new file: pll/CMakeFiles/Makefile2 + new file: pll/CMakeFiles/TargetDirectories.txt + new file: pll/CMakeFiles/cmake.check_cache + new file: pll/CMakeFiles/feature_tests.bin + new file: pll/CMakeFiles/feature_tests.c + new file: pll/CMakeFiles/feature_tests.cxx + new file: pll/CMakeFiles/pll.dir/DependInfo.cmake + new file: pll/CMakeFiles/pll.dir/build.make + new file: pll/CMakeFiles/pll.dir/cmake_clean.cmake + new file: pll/CMakeFiles/pll.dir/cmake_clean_target.cmake + copied: build/pll/CMakeFiles/pll.dir/depend.make -> pll/CMakeFiles/pll.dir/depend.make + new file: pll/CMakeFiles/pll.dir/flags.make + new file: pll/CMakeFiles/pll.dir/link.txt + new file: pll/CMakeFiles/pll.dir/progress.make + new file: pll/CMakeFiles/progress.marks + new file: pll/Makefile + modified: pll/avxLikelihood.c + new file: pll/cmake_install.cmake + modified: pll/evaluateGenericSpecial.c + modified: pll/evaluatePartialGenericSpecial.c + modified: pll/fastDNAparsimony.c + modified: pll/hardware.c + modified: pll/makenewzGenericSpecial.c + modified: pll/mic_native_aa.c + modified: pll/mic_native_dna.c + modified: pll/parsimony.c + modified: pll/pll.h + modified: pll/utils.c + new file: sqrtlog + modified: sse2neon.h + modified: tree/phylokernel.h + modified: tree/phylokernelfma.cpp + modified: tree/phylotreeavx.cpp + modified: vectorclass/instrset.h + new file: vectorclass/sse2neon.h + modified: vectorclass/vectorf128.h + modified: vectorclass/vectori128.h + new file: ../iq_tree_tests/a.out + new file: ../iq_tree_tests/cpuid_test.c + new file: ../iq_tree_tests/fpscr_test.cpp + new file: ../iq_tree_tests/instrset_test + new file: ../iq_tree_tests/instrset_test.cpp + new file: ../iq_tree_tests/is_neon_defined + new file: ../iq_tree_tests/is_neon_defined.cpp + new file: ../iq_tree_tests/sse2neon + new file: ../iq_tree_tests/vectorclass/testbench + new file: ../iq_tree_tests/vectorclass/vectorclass/.!15407!vectormath_common.h + new file: ../iq_tree_tests/vectorclass/vectorclass/.!3173!vectormath_common.h + new file: ../iq_tree_tests/vectorclass/vectorclass/.!3173!vectormath_common.hr + new file: ../iq_tree_tests/vectorclass/vectorclass/.!6455!vectormath_common.h + new file: ../iq_tree_tests/vectorclass/vectorclass/.!7983!vectormath_common.h + new file: ../iq_tree_tests/vectorclass/vectorclass/CMakeLists.txt + new file: ../iq_tree_tests/vectorclass/vectorclass/changelog.txt + new file: ../iq_tree_tests/vectorclass/vectorclass/instrset.h + new file: ../iq_tree_tests/vectorclass/vectorclass/instrset_detect.cpp + new file: ../iq_tree_tests/vectorclass/vectorclass/license.txt + new file: ../iq_tree_tests/vectorclass/vectorclass/sse2neon.h + new file: ../iq_tree_tests/vectorclass/vectorclass/vectorclass.h + new file: ../iq_tree_tests/vectorclass/vectorclass/vectorf128.h + new file: ../iq_tree_tests/vectorclass/vectorclass/vectorf256.h + new file: ../iq_tree_tests/vectorclass/vectorclass/vectorf256e.h + new file: ../iq_tree_tests/vectorclass/vectorclass/vectorf512.h + new file: ../iq_tree_tests/vectorclass/vectorclass/vectorf512e.h + new file: ../iq_tree_tests/vectorclass/vectorclass/vectorf64.h + new file: ../iq_tree_tests/vectorclass/vectorclass/vectori128.h + new file: ../iq_tree_tests/vectorclass/vectorclass/vectori256.h + new file: ../iq_tree_tests/vectorclass/vectorclass/vectori256e.h + new file: ../iq_tree_tests/vectorclass/vectorclass/vectori512.h + new file: ../iq_tree_tests/vectorclass/vectorclass/vectori512e.h + new file: ../iq_tree_tests/vectorclass/vectorclass/vectormath_common.h + new file: ../iq_tree_tests/vectorclass/vectorclass/vectormath_exp.h + new file: ../iq_tree_tests/vectorclass/vectorclass/vectormath_hyp.h + new file: ../iq_tree_tests/vectorclass/vectorclass/vectormath_lib.h + new file: ../iq_tree_tests/vectorclass/vectorclass/vectormath_trig.h + new file: ../iq_tree_tests/vectorclass/version1 + modified: ../work_log.md + +Changes not staged for commit: + (use "git add ..." to update what will be committed) + (use "git checkout -- ..." to discard changes in working directory) + (commit or discard the untracked or modified content in submodules) + + modified: ../iq_tree_tests/sse2neon (modified content, untracked content) + modified: ../iq_tree_tests/vectorclass/testbench (modified content, untracked content) + +Untracked files: + (use "git add ..." to include in what will be committed) + + log + diff --git a/model/modelliemarkov.cpp b/model/modelliemarkov.cpp index 7c5aade22..c68203632 100644 --- a/model/modelliemarkov.cpp +++ b/model/modelliemarkov.cpp @@ -18,8 +18,8 @@ * Would be more efficient to apply it just once to basis in constructor. */ #ifdef USE_EIGEN3 -#include -#include +#include +#include using namespace Eigen; #endif #include "modelliemarkov.h" diff --git a/model/modelmarkov.cpp b/model/modelmarkov.cpp index 6064b9d4b..0e2d20cf4 100644 --- a/model/modelmarkov.cpp +++ b/model/modelmarkov.cpp @@ -22,7 +22,7 @@ #include #include "modelliemarkov.h" #include "modelunrest.h" -#include +#include using namespace Eigen; diff --git a/model/modelpomo.cpp b/model/modelpomo.cpp index d815b2650..b56b95cee 100644 --- a/model/modelpomo.cpp +++ b/model/modelpomo.cpp @@ -6,8 +6,8 @@ #include #ifdef USE_EIGEN3 -#include -#include +#include +#include #endif ModelPoMo::ModelPoMo(PhyloTree *tree) : ModelMarkov(tree) { diff --git a/model/modelunrest.cpp b/model/modelunrest.cpp index 624011a95..750784252 100644 --- a/model/modelunrest.cpp +++ b/model/modelunrest.cpp @@ -6,8 +6,6 @@ */ #include "modelunrest.h" -#include -#include ModelUnrest::ModelUnrest(PhyloTree *tree, string model_params) : ModelMarkov(tree, false) @@ -17,29 +15,8 @@ ModelUnrest::ModelUnrest(PhyloTree *tree, string model_params) for (int i=0; i< num_params; i++) model_parameters[i] = 1; setRates(); if (model_params != "") { - int end_pos = 0; - cout << __func__ << " " << model_params << endl; - for (int i = 0; i < 12; i++) { - int new_end_pos; - try { - rates[i] = convert_double(model_params.substr(end_pos).c_str(), new_end_pos); - } catch (string &model_params) { - outError(model_params); - } - - end_pos += new_end_pos; - if (rates[i] <= 0.0) - outError("Non-positive rates found"); - if (i == 11 && end_pos < model_params.length()) - outError("String too long ", model_params); - if (i < 11 && end_pos >= model_params.length()) - outError("Unexpected end of string ", model_params); - if (end_pos < model_params.length() && model_params[end_pos] != ',') - outError("Comma to separate rates not found in ", model_params); - end_pos++; - } - num_params = 0; - writeInfo(cout); + cout << "WARNING: Supplying model params to constructor not yet properly implemented -- ignored" << endl; + // TODO: parse model_params into model_parameters, then call setRates(). } name = "UNREST"; full_name = "Unrestricted model (non-reversible)"; @@ -69,25 +46,3 @@ void ModelUnrest::setRates() { memcpy(rates, model_parameters, num_params*sizeof(double)); rates[num_params]=1; } - - -void ModelUnrest::writeInfo(ostream &out) { - if (num_states == 4) { - out << "Rate parameters:"; - //out.precision(3); - //out << fixed; - out << " A-C: " << rates[0]; - out << " A-G: " << rates[1]; - out << " A-T: " << rates[2]; - out << " C-A: " << rates[3]; - out << " C-G: " << rates[4]; - out << " C-T: " << rates[5]; - out << " G-A: " << rates[6]; - out << " G-C: " << rates[7]; - out << " G-T: " << rates[8]; - out << " T-A: " << rates[9]; - out << " T-C: " << rates[10]; - out << " T-G: " << rates[11]; - out << endl; - } -} \ No newline at end of file diff --git a/model/modelunrest.h b/model/modelunrest.h index 2467687bb..df54b6fd0 100644 --- a/model/modelunrest.h +++ b/model/modelunrest.h @@ -40,8 +40,6 @@ class ModelUnrest: public ModelMarkov { * model parameters. */ virtual void setRates(); - - void writeInfo(ostream &out); }; #endif /* MODELUNREST_H_ */ diff --git a/pda/.!2972!graph.cpp b/pda/.!2972!graph.cpp new file mode 100644 index 000000000..454422819 --- /dev/null +++ b/pda/.!2972!graph.cpp @@ -0,0 +1,18 @@ +/* + * graph.cpp + * + * Created on: Nov 14, 2013 + * Author: olga + */ + +#include "graph.h" +#include +#include +#include + +Graph::Graph(int V){ + this->V = V; + adj = new list[V]; +} + +void Graph::addEdge(int v, int w){ diff --git a/pda/.!2972!graph.cppr b/pda/.!2972!graph.cppr new file mode 100644 index 000000000..454422819 --- /dev/null +++ b/pda/.!2972!graph.cppr @@ -0,0 +1,18 @@ +/* + * graph.cpp + * + * Created on: Nov 14, 2013 + * Author: olga + */ + +#include "graph.h" +#include +#include +#include + +Graph::Graph(int V){ + this->V = V; + adj = new list[V]; +} + +void Graph::addEdge(int v, int w){ diff --git a/pda/.!6253!graph.cpp b/pda/.!6253!graph.cpp new file mode 100644 index 000000000..454422819 --- /dev/null +++ b/pda/.!6253!graph.cpp @@ -0,0 +1,18 @@ +/* + * graph.cpp + * + * Created on: Nov 14, 2013 + * Author: olga + */ + +#include "graph.h" +#include +#include +#include + +Graph::Graph(int V){ + this->V = V; + adj = new list[V]; +} + +void Graph::addEdge(int v, int w){ diff --git a/pda/.!7579!graph.cpp b/pda/.!7579!graph.cpp new file mode 100644 index 000000000..454422819 --- /dev/null +++ b/pda/.!7579!graph.cpp @@ -0,0 +1,18 @@ +/* + * graph.cpp + * + * Created on: Nov 14, 2013 + * Author: olga + */ + +#include "graph.h" +#include +#include +#include + +Graph::Graph(int V){ + this->V = V; + adj = new list[V]; +} + +void Graph::addEdge(int v, int w){ diff --git a/pll/avxLikelihood.c b/pll/avxLikelihood.c index 5202883c8..e2350204e 100644 --- a/pll/avxLikelihood.c +++ b/pll/avxLikelihood.c @@ -43,9 +43,15 @@ #include #include #include + +#if defined(__ARM_NEON) +#include "sse2neon.h" +#else #include #include #include +#endif + #include #ifdef _FMA diff --git a/pll/evaluateGenericSpecial.c b/pll/evaluateGenericSpecial.c index 9a0dfc883..5bd0b9392 100644 --- a/pll/evaluateGenericSpecial.c +++ b/pll/evaluateGenericSpecial.c @@ -54,9 +54,12 @@ /* includes for using SSE3 intrinsics */ #ifdef __SSE3 +#if defined(__ARM_NEON) +#include "sse2neon.h" +#else #include #include -/*#include */ +#endif #endif diff --git a/pll/evaluatePartialGenericSpecial.c b/pll/evaluatePartialGenericSpecial.c index 4d461a5b2..76429521f 100644 --- a/pll/evaluatePartialGenericSpecial.c +++ b/pll/evaluatePartialGenericSpecial.c @@ -45,9 +45,13 @@ #include "pllInternal.h" #ifdef __SSE3 +#if defined(__ARM_NEON) +#include "sse2neon.h" +#else #include #include #endif +#endif /* optimized implementation for computing per-site log likelihoods under CAT and GAMMA for DNA and protein data */ diff --git a/pll/fastDNAparsimony.c b/pll/fastDNAparsimony.c index 10764654b..bfdefe395 100644 --- a/pll/fastDNAparsimony.c +++ b/pll/fastDNAparsimony.c @@ -64,9 +64,13 @@ #elif defined(__AVX) +#if defined(__ARM_NEON) +#include "sse2neon.h" +#else #include #include #include +#endif #define INTS_PER_VECTOR 8 //#define LONG_INTS_PER_VECTOR 4 @@ -85,8 +89,12 @@ #elif (defined(__SSE3)) +#if defined(__ARM_NEON) +#include "sse2neon.h" +#else #include #include +#endif #define INTS_PER_VECTOR 4 #ifdef __i386__ @@ -114,7 +122,11 @@ #if defined (_MSC_VER) # if defined ( __SSE4_2__ ) || defined (__AVX__) -# include +#if defined(__ARM_NEON) +# include "sse2neon.h" +#else +#include +#endif # define __builtin_popcount _mm_popcnt_u32 # define __builtin_popcountl _mm_popcnt_u64 # else diff --git a/pll/hardware.c b/pll/hardware.c index 360756870..31c51ae64 100644 --- a/pll/hardware.c +++ b/pll/hardware.c @@ -26,7 +26,7 @@ static __inline void cpuid(unsigned int op, int count, *ebx = regs[1]; *ecx = regs[2]; *edx = regs[3]; -#else +#elif !defined (__ARM_NEON) *eax = op; *ecx = count; asm volatile("cpuid" @@ -105,6 +105,21 @@ static int pll_probe_cpu (pllHardwareInfo * hw) static void pll_probe_hardware (pllHardwareInfo * hw) { +#if defined ( __ARM_NEON ) // SSE4.2 for "sse2neon.h" + hw->vendor[12] = 0; + hw->has_mmx = 1; + hw->has_sse = 1; + hw->has_sse2 = 1; + hw->has_sse3 = 1; + hw->has_ssse3 = 1; + hw->has_fma = 1; + hw->has_sse41 = 1; + hw->has_sse42 = 1; + hw->has_avx = 0; + hw->has_avx2 = 0; + hw->has_sse4a = 0; + hw->has_fma = 0; +#else unsigned int a, b, c, d; c = 0; @@ -138,6 +153,7 @@ static void pll_probe_hardware (pllHardwareInfo * hw) hw->has_sse4a = PLL_FEAT_AVAIL(c,PLL_HAS_SSE4A); hw->has_fma4 = PLL_FEAT_AVAIL(c,PLL_HAS_FMA4); +#endif } int pllGetHardwareInfo (pllHardwareInfo * hw) diff --git a/pll/makenewzGenericSpecial.c b/pll/makenewzGenericSpecial.c index b2b114a8e..daff1f4cd 100644 --- a/pll/makenewzGenericSpecial.c +++ b/pll/makenewzGenericSpecial.c @@ -44,10 +44,14 @@ #include "pllInternal.h" #ifdef __SSE3 +#if defined(__ARM_NEON) +#include "sse2neon.h" +#else #include #include /*#include */ #endif +#endif #ifdef __MIC_NATIVE #include "mic_native.h" diff --git a/pll/mic_native_aa.c b/pll/mic_native_aa.c index 2cfd2b161..07731f7d1 100644 --- a/pll/mic_native_aa.c +++ b/pll/mic_native_aa.c @@ -1,5 +1,7 @@ #include +#if !defined(__ARM_NEON) #include +#endif #include #include diff --git a/pll/mic_native_dna.c b/pll/mic_native_dna.c index 6dd663173..f293be6af 100644 --- a/pll/mic_native_dna.c +++ b/pll/mic_native_dna.c @@ -1,5 +1,7 @@ #include +#if !defined(__ARM_NEON) #include +#endif #include #include diff --git a/pll/newviewGenericSpecial.c b/pll/newviewGenericSpecial.c index e69d7f28d..77ba67855 100644 --- a/pll/newviewGenericSpecial.c +++ b/pll/newviewGenericSpecial.c @@ -55,8 +55,8 @@ #ifdef __SSE3 #include -#include -#include +#include "sse2neon.h" +#include "sse2neon.h" #include "cycle.h" static void computeTraversalInfo(nodeptr, traversalInfo *, int *, int, int, pllBoolean, recompVectors *, pllBoolean); diff --git a/pll/parsimony.c b/pll/parsimony.c index 1fae471ae..a3c517322 100644 --- a/pll/parsimony.c +++ b/pll/parsimony.c @@ -63,9 +63,13 @@ #elif defined(__AVX) +#if defined(__ARM_NEON) +#include "sse2neon.h" +#else #include #include #include +#endif #define ULINT_SIZE 64 #define INTS_PER_VECTOR 8 @@ -82,8 +86,12 @@ #elif (defined(__SSE3)) +#if defined(__ARM_NEON) +#include "sse2neon.h" +#else #include #include +#endif #define INTS_PER_VECTOR 4 #ifdef __i386__ diff --git a/pll/pll.h b/pll/pll.h index efd7dec29..adf3168c8 100644 --- a/pll/pll.h +++ b/pll/pll.h @@ -66,17 +66,25 @@ extern "C" { #define PLL_VECTOR_WIDTH 8 #elif defined (__AVX) +#if defined(__ARM_NEON) +#include "sse2neon.h" +#else #include #include #include +#endif #define PLL_BYTE_ALIGNMENT 32 #define PLL_VECTOR_WIDTH 4 #elif defined (__SSE3) +#if defined(__ARM_NEON) +#include "sse2neon.h" +#else #include #include +#endif #define PLL_BYTE_ALIGNMENT 16 #define PLL_VECTOR_WIDTH 2 diff --git a/pll/utils.c b/pll/utils.c index 78f19514a..00ce2f540 100644 --- a/pll/utils.c +++ b/pll/utils.c @@ -54,12 +54,16 @@ #if ! (defined(__ppc) || defined(__powerpc__) || defined(PPC)) #if (defined(__AVX) || defined(__SSE3)) +#if defined(__ARM_NEON) +#include "sse2neon.h" +#else #include #endif +#endif /* special bug fix, enforces denormalized numbers to be flushed to zero, without this program is a tiny bit faster though. -#include +#include #define MM_DAZ_MASK 0x0040 #define MM_DAZ_ON 0x0040 #define MM_DAZ_OFF 0x0000 @@ -3532,8 +3536,10 @@ int pllInitModel (pllInstance * tr, partitionList * partitions) #if ! (defined(__ppc) || defined(__powerpc__) || defined(PPC)) #if (defined(__AVX) || defined(__SSE3)) +#if !defined(__ARM_NEON) // flush zero always on in NEON _mm_setcsr( _mm_getcsr() | _MM_FLUSH_ZERO_ON); #endif +#endif #endif #ifdef _USE_PTHREADS diff --git a/sqrtlog b/sqrtlog new file mode 100644 index 000000000..b8bbbe025 --- /dev/null +++ b/sqrtlog @@ -0,0 +1,17 @@ +Scanning dependencies of target kernelsse +make[2]: Warning: File 'CMakeFiles/kernelsse.dir/depend.make' has modification time 0.36 s in the future +[ 1%] Building CXX object CMakeFiles/kernelsse.dir/tree/phylokernelsse.cpp.o +[ 1%] Linking CXX static library libkernelsse.a +make[2]: warning: Clock skew detected. Your build may be incomplete. +[ 1%] Built target kernelsse +Scanning dependencies of target kernelfma +make[2]: Warning: File 'CMakeFiles/kernelfma.dir/depend.make' has modification time 0.31 s in the future +[ 2%] Building CXX object CMakeFiles/kernelfma.dir/tree/phylokernelfma.cpp.o +c++: error: unrecognized command line option ‘-mavx’ +c++: error: unrecognized command line option ‘-mfma’ +CMakeFiles/kernelfma.dir/build.make:62: recipe for target 'CMakeFiles/kernelfma.dir/tree/phylokernelfma.cpp.o' failed +make[2]: *** [CMakeFiles/kernelfma.dir/tree/phylokernelfma.cpp.o] Error 1 +CMakeFiles/Makefile2:109: recipe for target 'CMakeFiles/kernelfma.dir/all' failed +make[1]: *** [CMakeFiles/kernelfma.dir/all] Error 2 +Makefile:151: recipe for target 'all' failed +make: *** [all] Error 2 diff --git a/sse2neon.h b/sse2neon.h new file mode 100644 index 000000000..6be5b9933 --- /dev/null +++ b/sse2neon.h @@ -0,0 +1,4715 @@ +#ifndef SSE2NEON_H +#define SSE2NEON_H + +#if defined(__ARM_NEON) // Added by Joshua Measure-Hughes for porting IQ-TREE, alongside further functionality located at the end of this file. + +// This header file provides a simple API translation layer +// between SSE intrinsics to their corresponding Arm/Aarch64 NEON versions +// +// This header file does not yet translate all of the SSE intrinsics. +// +// Contributors to this work are: +// John W. Ratcliff +// Brandon Rowlett +// Ken Fast +// Eric van Beurden +// Alexander Potylitsin +// Hasindu Gamaarachchi +// Jim Huang +// Mark Cheng +// Malcolm James MacLeod +// Devin Hussey (easyaspi314) +// Sebastian Pop +// Developer Ecosystem Engineering + +/* + * The MIT license: + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + +#if defined(__GNUC__) || defined(__clang__) +#pragma push_macro("FORCE_INLINE") +#pragma push_macro("ALIGN_STRUCT") +#define FORCE_INLINE static inline __attribute__((always_inline)) +#define ALIGN_STRUCT(x) __attribute__((aligned(x))) +#else +#error "Macro name collisions may happens with unknown compiler" +#ifdef FORCE_INLINE +#undef FORCE_INLINE +#endif +#define FORCE_INLINE static inline +#ifndef ALIGN_STRUCT +#define ALIGN_STRUCT(x) __declspec(align(x)) +#endif +#endif + +#include +#include +//#include + +#include + +/* "__has_builtin" can be used to query support for built-in functions + * provided by gcc/clang and other compilers that support it. + */ +#ifndef __has_builtin +#define __has_builtin(x) 0 // Compatibility with non-{clang,gcc-10} compilers +#endif + +/** + * MACRO for shuffle parameter for _mm_shuffle_ps(). + * Argument fp3 is a digit[0123] that represents the fp from argument "b" + * of mm_shuffle_ps that will be placed in fp3 of result. fp2 is the same + * for fp2 in result. fp1 is a digit[0123] that represents the fp from + * argument "a" of mm_shuffle_ps that will be places in fp1 of result. + * fp0 is the same for fp0 of result. + */ +#define _MM_SHUFFLE(fp3, fp2, fp1, fp0) \ + (((fp3) << 6) | ((fp2) << 4) | ((fp1) << 2) | ((fp0))) + +/* indicate immediate constant argument in a given range */ +#define __constrange(min, max) const +#define __transfersize(size) +/* A few intrinsics accept traditional data types like ints or floats, but + * most operate on data types that are specific to SSE. + * If a vector type ends in d, it contains doubles, and if it does not have + * a suffix, it contains floats. An integer vector type can contain any type + * of integer, from chars to shorts to unsigned long longs. + */ +typedef float32x2_t __m64; +typedef float32x4_t __m128; /* 128-bit vector containing 4 floats */ +// On ARM 32-bit architecture, the float64x2_t is not supported. +// The data type __m128d should be represented in a different way for related +// intrinsic conversion. +#if defined(__aarch64__) +typedef float64x2_t __m128d; /* 128-bit vector containing 2 doubles */ +#else +typedef float32x4_t __m128d; +#endif +typedef int64x1_t __m64i; +typedef int64x2_t __m128i; /* 128-bit vector containing integers */ + +/* type-safe casting between types */ + +#define vreinterpretq_m128_f16(x) vreinterpretq_f32_f16(x) +#define vreinterpretq_m128_f32(x) (x) +#define vreinterpretq_m128_f64(x) vreinterpretq_f32_f64(x) + +#define vreinterpretq_m128_u8(x) vreinterpretq_f32_u8(x) +#define vreinterpretq_m128_u16(x) vreinterpretq_f32_u16(x) +#define vreinterpretq_m128_u32(x) vreinterpretq_f32_u32(x) +#define vreinterpretq_m128_u64(x) vreinterpretq_f32_u64(x) + +#define vreinterpretq_m128_s8(x) vreinterpretq_f32_s8(x) +#define vreinterpretq_m128_s16(x) vreinterpretq_f32_s16(x) +#define vreinterpretq_m128_s32(x) vreinterpretq_f32_s32(x) +#define vreinterpretq_m128_s64(x) vreinterpretq_f32_s64(x) + +#define vreinterpretq_f16_m128(x) vreinterpretq_f16_f32(x) +#define vreinterpretq_f32_m128(x) (x) +#define vreinterpretq_f64_m128(x) vreinterpretq_f64_f32(x) + +#define vreinterpretq_u8_m128(x) vreinterpretq_u8_f32(x) +#define vreinterpretq_u16_m128(x) vreinterpretq_u16_f32(x) +#define vreinterpretq_u32_m128(x) vreinterpretq_u32_f32(x) +#define vreinterpretq_u64_m128(x) vreinterpretq_u64_f32(x) + +#define vreinterpretq_s8_m128(x) vreinterpretq_s8_f32(x) +#define vreinterpretq_s16_m128(x) vreinterpretq_s16_f32(x) +#define vreinterpretq_s32_m128(x) vreinterpretq_s32_f32(x) +#define vreinterpretq_s64_m128(x) vreinterpretq_s64_f32(x) + +#define vreinterpretq_m128i_s8(x) vreinterpretq_s64_s8(x) +#define vreinterpretq_m128i_s16(x) vreinterpretq_s64_s16(x) +#define vreinterpretq_m128i_s32(x) vreinterpretq_s64_s32(x) +#define vreinterpretq_m128i_s64(x) (x) + +#define vreinterpretq_m128i_u8(x) vreinterpretq_s64_u8(x) +#define vreinterpretq_m128i_u16(x) vreinterpretq_s64_u16(x) +#define vreinterpretq_m128i_u32(x) vreinterpretq_s64_u32(x) +#define vreinterpretq_m128i_u64(x) vreinterpretq_s64_u64(x) + +#define vreinterpretq_s8_m128i(x) vreinterpretq_s8_s64(x) +#define vreinterpretq_s16_m128i(x) vreinterpretq_s16_s64(x) +#define vreinterpretq_s32_m128i(x) vreinterpretq_s32_s64(x) +#define vreinterpretq_s64_m128i(x) (x) + +#define vreinterpretq_u8_m128i(x) vreinterpretq_u8_s64(x) +#define vreinterpretq_u16_m128i(x) vreinterpretq_u16_s64(x) +#define vreinterpretq_u32_m128i(x) vreinterpretq_u32_s64(x) +#define vreinterpretq_u64_m128i(x) vreinterpretq_u64_s64(x) + +#define vreinterpret_m64i_s8(x) vreinterpret_s64_s8(x) +#define vreinterpret_m64i_s16(x) vreinterpret_s64_s16(x) +#define vreinterpret_m64i_s32(x) vreinterpret_s64_s32(x) +#define vreinterpret_m64i_s64(x) (x) + +#define vreinterpret_m64i_u8(x) vreinterpret_s64_u8(x) +#define vreinterpret_m64i_u16(x) vreinterpret_s64_u16(x) +#define vreinterpret_m64i_u32(x) vreinterpret_s64_u32(x) +#define vreinterpret_m64i_u64(x) vreinterpret_s64_u64(x) + +#define vreinterpret_u8_m64i(x) vreinterpret_u8_s64(x) +#define vreinterpret_u16_m64i(x) vreinterpret_u16_s64(x) +#define vreinterpret_u32_m64i(x) vreinterpret_u32_s64(x) +#define vreinterpret_u64_m64i(x) vreinterpret_u64_s64(x) + +#define vreinterpret_s8_m64i(x) vreinterpret_s8_s64(x) +#define vreinterpret_s16_m64i(x) vreinterpret_s16_s64(x) +#define vreinterpret_s32_m64i(x) vreinterpret_s32_s64(x) +#define vreinterpret_s64_m64i(x) (x) + +// A struct is defined in this header file called 'SIMDVec' which can be used +// by applications which attempt to access the contents of an _m128 struct +// directly. It is important to note that accessing the __m128 struct directly +// is bad coding practice by Microsoft: @see: +// https://msdn.microsoft.com/en-us/library/ayeb3ayc.aspx +// +// However, some legacy source code may try to access the contents of an __m128 +// struct directly so the developer can use the SIMDVec as an alias for it. Any +// casting must be done manually by the developer, as you cannot cast or +// otherwise alias the base NEON data type for intrinsic operations. +// +// union intended to allow direct access to an __m128 variable using the names +// that the MSVC compiler provides. This union should really only be used when +// trying to access the members of the vector as integer values. GCC/clang +// allow native access to the float members through a simple array access +// operator (in C since 4.6, in C++ since 4.8). +// +// Ideally direct accesses to SIMD vectors should not be used since it can cause +// a performance hit. If it really is needed however, the original __m128 +// variable can be aliased with a pointer to this union and used to access +// individual components. The use of this union should be hidden behind a macro +// that is used throughout the codebase to access the members instead of always +// declaring this type of variable. +typedef union ALIGN_STRUCT(16) SIMDVec { + float m128_f32[4]; // as floats - DON'T USE. Added for convenience. + int8_t m128_i8[16]; // as signed 8-bit integers. + int16_t m128_i16[8]; // as signed 16-bit integers. + int32_t m128_i32[4]; // as signed 32-bit integers. + int64_t m128_i64[2]; // as signed 64-bit integers. + uint8_t m128_u8[16]; // as unsigned 8-bit integers. + uint16_t m128_u16[8]; // as unsigned 16-bit integers. + uint32_t m128_u32[4]; // as unsigned 32-bit integers. + uint64_t m128_u64[2]; // as unsigned 64-bit integers. +} SIMDVec; + +// casting using SIMDVec +#define vreinterpretq_nth_u64_m128i(x, n) (((SIMDVec *) &x)->m128_u64[n]) +#define vreinterpretq_nth_u32_m128i(x, n) (((SIMDVec *) &x)->m128_u32[n]) + +/* Backwards compatibility for compilers with lack of specific type support */ + +// Older gcc does not define vld1q_u8_x4 type +#if defined(__GNUC__) && !defined(__clang__) +#if __GNUC__ <= 9 +FORCE_INLINE uint8x16x4_t vld1q_u8_x4(const uint8_t *p) +{ + uint8x16x4_t ret; + ret.val[0] = vld1q_u8(p + 0); + ret.val[1] = vld1q_u8(p + 16); + ret.val[2] = vld1q_u8(p + 32); + ret.val[3] = vld1q_u8(p + 48); + return ret; +} +#endif +#endif + +/* Function Naming Conventions + * The naming convention of SSE intrinsics is straightforward. A generic SSE + * intrinsic function is given as follows: + * _mm__ + * + * The parts of this format are given as follows: + * 1. describes the operation performed by the intrinsic + * 2. identifies the data type of the function's primary arguments + * + * This last part, , is a little complicated. It identifies the + * content of the input values, and can be set to any of the following values: + * + ps - vectors contain floats (ps stands for packed single-precision) + * + pd - vectors cantain doubles (pd stands for packed double-precision) + * + epi8/epi16/epi32/epi64 - vectors contain 8-bit/16-bit/32-bit/64-bit + * signed integers + * + epu8/epu16/epu32/epu64 - vectors contain 8-bit/16-bit/32-bit/64-bit + * unsigned integers + * + si128 - unspecified 128-bit vector or 256-bit vector + * + m128/m128i/m128d - identifies input vector types when they are different + * than the type of the returned vector +* + * For example, _mm_setzero_ps. The _mm implies that the function returns + * a 128-bit vector. The _ps at the end implies that the argument vectors + * contain floats. + * + * A complete example: Byte Shuffle - pshufb (_mm_shuffle_epi8) + * // Set packed 16-bit integers. 128 bits, 8 short, per 16 bits + * __m128i v_in = _mm_setr_epi16(1, 2, 3, 4, 5, 6, 7, 8); + * // Set packed 8-bit integers + * // 128 bits, 16 chars, per 8 bits + * __m128i v_perm = _mm_setr_epi8(1, 0, 2, 3, 8, 9, 10, 11, + * 4, 5, 12, 13, 6, 7, 14, 15); + * // Shuffle packed 8-bit integers + * __m128i v_out = _mm_shuffle_epi8(v_in, v_perm); // pshufb + * + * Data (Number, Binary, Byte Index): + +------+------+-------------+------+------+-------------+ + | 1 | 2 | 3 | 4 | Number + +------+------+------+------+------+------+------+------+ + | 0000 | 0001 | 0000 | 0010 | 0000 | 0011 | 0000 | 0100 | Binary + +------+------+------+------+------+------+------+------+ + | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | Index + +------+------+------+------+------+------+------+------+ + + +------+------+------+------+------+------+------+------+ + | 5 | 6 | 7 | 8 | Number + +------+------+------+------+------+------+------+------+ + | 0000 | 0101 | 0000 | 0110 | 0000 | 0111 | 0000 | 1000 | Binary + +------+------+------+------+------+------+------+------+ + | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | Index + +------+------+------+------+------+------+------+------+ + * Index (Byte Index): + +------+------+------+------+------+------+------+------+ + | 1 | 0 | 2 | 3 | 8 | 9 | 10 | 11 | + +------+------+------+------+------+------+------+------+ + + +------+------+------+------+------+------+------+------+ + | 4 | 5 | 12 | 13 | 6 | 7 | 14 | 15 | + +------+------+------+------+------+------+------+------+ + * Result: + +------+------+------+------+------+------+------+------+ + | 1 | 0 | 2 | 3 | 8 | 9 | 10 | 11 | Index + +------+------+------+------+------+------+------+------+ + | 0001 | 0000 | 0000 | 0010 | 0000 | 0101 | 0000 | 0110 | Binary + +------+------+------+------+------+------+------+------+ + | 256 | 2 | 5 | 6 | Number + +------+------+------+------+------+------+------+------+ + + +------+------+------+------+------+------+------+------+ + | 4 | 5 | 12 | 13 | 6 | 7 | 14 | 15 | Index + +------+------+------+------+------+------+------+------+ + | 0000 | 0011 | 0000 | 0111 | 0000 | 0100 | 0000 | 1000 | Binary + +------+------+------+------+------+------+------+------+ + | 3 | 7 | 4 | 8 | Number + +------+------+------+------+------+------+-------------+ + */ + +/* Set/get methods */ + +/* Constants for use with _mm_prefetch. */ +enum _mm_hint { + _MM_HINT_NTA = 0, /* load data to L1 and L2 cache, mark it as NTA */ + _MM_HINT_T0 = 1, /* load data to L1 and L2 cache */ + _MM_HINT_T1 = 2, /* load data to L2 cache only */ + _MM_HINT_T2 = 3, /* load data to L2 cache only, mark it as NTA */ + _MM_HINT_ENTA = 4, /* exclusive version of _MM_HINT_NTA */ + _MM_HINT_ET0 = 5, /* exclusive version of _MM_HINT_T0 */ + _MM_HINT_ET1 = 6, /* exclusive version of _MM_HINT_T1 */ + _MM_HINT_ET2 = 7 /* exclusive version of _MM_HINT_T2 */ +}; + +// Loads one cache line of data from address p to a location closer to the +// processor. https://msdn.microsoft.com/en-us/library/84szxsww(v=vs.100).aspx +FORCE_INLINE void _mm_prefetch(const void *p, int i) +{ + (void) i; + __builtin_prefetch(p); +} + +// extracts the lower order floating point value from the parameter : +// https://msdn.microsoft.com/en-us/library/bb514059%28v=vs.120%29.aspx?f=255&MSPPError=-2147217396 +FORCE_INLINE float _mm_cvtss_f32(__m128 a) +{ + return vgetq_lane_f32(vreinterpretq_f32_m128(a), 0); +} + +// Sets the 128-bit value to zero +// https://msdn.microsoft.com/en-us/library/vstudio/ys7dw0kh(v=vs.100).aspx +FORCE_INLINE __m128i _mm_setzero_si128(void) +{ + return vreinterpretq_m128i_s32(vdupq_n_s32(0)); +} + +// Clears the four single-precision, floating-point values. +// https://msdn.microsoft.com/en-us/library/vstudio/tk1t2tbz(v=vs.100).aspx +FORCE_INLINE __m128 _mm_setzero_ps(void) +{ + return vreinterpretq_m128_f32(vdupq_n_f32(0)); +} + +// Sets the four single-precision, floating-point values to w. +// +// r0 := r1 := r2 := r3 := w +// +// https://msdn.microsoft.com/en-us/library/vstudio/2x1se8ha(v=vs.100).aspx +FORCE_INLINE __m128 _mm_set1_ps(float _w) +{ + return vreinterpretq_m128_f32(vdupq_n_f32(_w)); +} + +// Sets the four single-precision, floating-point values to w. +// https://msdn.microsoft.com/en-us/library/vstudio/2x1se8ha(v=vs.100).aspx +FORCE_INLINE __m128 _mm_set_ps1(float _w) +{ + return vreinterpretq_m128_f32(vdupq_n_f32(_w)); +} + +// Sets the four single-precision, floating-point values to the four inputs. +// https://msdn.microsoft.com/en-us/library/vstudio/afh0zf75(v=vs.100).aspx +FORCE_INLINE __m128 _mm_set_ps(float w, float z, float y, float x) +{ + float ALIGN_STRUCT(16) data[4] = {x, y, z, w}; + return vreinterpretq_m128_f32(vld1q_f32(data)); +} + +// Copy single-precision (32-bit) floating-point element a to the lower element +// of dst, and zero the upper 3 elements. +// https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_set_ss&expand=4901,4895,4901 +FORCE_INLINE __m128 _mm_set_ss(float a) +{ + float ALIGN_STRUCT(16) data[4] = {a, 0, 0, 0}; + return vreinterpretq_m128_f32(vld1q_f32(data)); +} + +// Sets the four single-precision, floating-point values to the four inputs in +// reverse order. +// https://msdn.microsoft.com/en-us/library/vstudio/d2172ct3(v=vs.100).aspx +FORCE_INLINE __m128 _mm_setr_ps(float w, float z, float y, float x) +{ + float ALIGN_STRUCT(16) data[4] = {w, z, y, x}; + return vreinterpretq_m128_f32(vld1q_f32(data)); +} + +// Sets the 8 signed 16-bit integer values in reverse order. +// +// Return Value +// r0 := w0 +// r1 := w1 +// ... +// r7 := w7 +FORCE_INLINE __m128i _mm_setr_epi16(short w0, + short w1, + short w2, + short w3, + short w4, + short w5, + short w6, + short w7) +{ + int16_t ALIGN_STRUCT(16) data[8] = {w0, w1, w2, w3, w4, w5, w6, w7}; + return vreinterpretq_m128i_s16(vld1q_s16((int16_t *) data)); +} + +// Sets the 4 signed 32-bit integer values in reverse order +// https://technet.microsoft.com/en-us/library/security/27yb3ee5(v=vs.90).aspx +FORCE_INLINE __m128i _mm_setr_epi32(int i3, int i2, int i1, int i0) +{ + int32_t ALIGN_STRUCT(16) data[4] = {i3, i2, i1, i0}; + return vreinterpretq_m128i_s32(vld1q_s32(data)); +} + +// Sets the 16 signed 8-bit integer values to b. +// +// r0 := b +// r1 := b +// ... +// r15 := b +// +// https://msdn.microsoft.com/en-us/library/6e14xhyf(v=vs.100).aspx +FORCE_INLINE __m128i _mm_set1_epi8(signed char w) +{ + return vreinterpretq_m128i_s8(vdupq_n_s8(w)); +} + +// Sets the 8 signed 16-bit integer values to w. +// +// r0 := w +// r1 := w +// ... +// r7 := w +// +// https://msdn.microsoft.com/en-us/library/k0ya3x0e(v=vs.90).aspx +FORCE_INLINE __m128i _mm_set1_epi16(short w) +{ + return vreinterpretq_m128i_s16(vdupq_n_s16(w)); +} + +// Sets the 16 signed 8-bit integer values. +// https://msdn.microsoft.com/en-us/library/x0cx8zd3(v=vs.90).aspx +FORCE_INLINE __m128i _mm_set_epi8(signed char b15, + signed char b14, + signed char b13, + signed char b12, + signed char b11, + signed char b10, + signed char b9, + signed char b8, + signed char b7, + signed char b6, + signed char b5, + signed char b4, + signed char b3, + signed char b2, + signed char b1, + signed char b0) +{ + int8_t ALIGN_STRUCT(16) + data[16] = {(int8_t) b0, (int8_t) b1, (int8_t) b2, (int8_t) b3, + (int8_t) b4, (int8_t) b5, (int8_t) b6, (int8_t) b7, + (int8_t) b8, (int8_t) b9, (int8_t) b10, (int8_t) b11, + (int8_t) b12, (int8_t) b13, (int8_t) b14, (int8_t) b15}; + return (__m128i) vld1q_s8(data); +} + +// Sets the 8 signed 16-bit integer values. +// https://msdn.microsoft.com/en-au/library/3e0fek84(v=vs.90).aspx +FORCE_INLINE __m128i _mm_set_epi16(short i7, + short i6, + short i5, + short i4, + short i3, + short i2, + short i1, + short i0) +{ + int16_t ALIGN_STRUCT(16) data[8] = {i0, i1, i2, i3, i4, i5, i6, i7}; + return vreinterpretq_m128i_s16(vld1q_s16(data)); +} + +// Sets the 16 signed 8-bit integer values in reverse order. +// https://msdn.microsoft.com/en-us/library/2khb9c7k(v=vs.90).aspx +FORCE_INLINE __m128i _mm_setr_epi8(signed char b0, + signed char b1, + signed char b2, + signed char b3, + signed char b4, + signed char b5, + signed char b6, + signed char b7, + signed char b8, + signed char b9, + signed char b10, + signed char b11, + signed char b12, + signed char b13, + signed char b14, + signed char b15) +{ + int8_t ALIGN_STRUCT(16) + data[16] = {(int8_t) b0, (int8_t) b1, (int8_t) b2, (int8_t) b3, + (int8_t) b4, (int8_t) b5, (int8_t) b6, (int8_t) b7, + (int8_t) b8, (int8_t) b9, (int8_t) b10, (int8_t) b11, + (int8_t) b12, (int8_t) b13, (int8_t) b14, (int8_t) b15}; + return (__m128i) vld1q_s8(data); +} + +// Sets the 4 signed 32-bit integer values to i. +// +// r0 := i +// r1 := i +// r2 := i +// r3 := I +// +// https://msdn.microsoft.com/en-us/library/vstudio/h4xscxat(v=vs.100).aspx +FORCE_INLINE __m128i _mm_set1_epi32(int _i) +{ + return vreinterpretq_m128i_s32(vdupq_n_s32(_i)); +} + +// Sets the 2 signed 64-bit integer values to i. +// https://docs.microsoft.com/en-us/previous-versions/visualstudio/visual-studio-2010/whtfzhzk(v=vs.100) +FORCE_INLINE __m128i _mm_set1_epi64(int64_t _i) +{ + return vreinterpretq_m128i_s64(vdupq_n_s64(_i)); +} + +// Sets the 2 signed 64-bit integer values to i. +// https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_set1_epi64x&expand=4961 +FORCE_INLINE __m128i _mm_set1_epi64x(int64_t _i) +{ + return vreinterpretq_m128i_s64(vdupq_n_s64(_i)); +} + +// Sets the 4 signed 32-bit integer values. +// https://msdn.microsoft.com/en-us/library/vstudio/019beekt(v=vs.100).aspx +FORCE_INLINE __m128i _mm_set_epi32(int i3, int i2, int i1, int i0) +{ + int32_t ALIGN_STRUCT(16) data[4] = {i0, i1, i2, i3}; + return vreinterpretq_m128i_s32(vld1q_s32(data)); +} + +// Returns the __m128i structure with its two 64-bit integer values +// initialized to the values of the two 64-bit integers passed in. +// https://msdn.microsoft.com/en-us/library/dk2sdw0h(v=vs.120).aspx +FORCE_INLINE __m128i _mm_set_epi64x(int64_t i1, int64_t i2) +{ + int64_t ALIGN_STRUCT(16) data[2] = {i2, i1}; + return vreinterpretq_m128i_s64(vld1q_s64(data)); +} + +// Stores four single-precision, floating-point values. +// https://msdn.microsoft.com/en-us/library/vstudio/s3h4ay6y(v=vs.100).aspx +FORCE_INLINE void _mm_store_ps(float *p, __m128 a) +{ + vst1q_f32(p, vreinterpretq_f32_m128(a)); +} + +// Stores four single-precision, floating-point values. +// https://msdn.microsoft.com/en-us/library/44e30x22(v=vs.100).aspx +FORCE_INLINE void _mm_storeu_ps(float *p, __m128 a) +{ + vst1q_f32(p, vreinterpretq_f32_m128(a)); +} + +// Stores four 32-bit integer values as (as a __m128i value) at the address p. +// https://msdn.microsoft.com/en-us/library/vstudio/edk11s13(v=vs.100).aspx +FORCE_INLINE void _mm_store_si128(__m128i *p, __m128i a) +{ + vst1q_s32((int32_t *) p, vreinterpretq_s32_m128i(a)); +} + +// Stores four 32-bit integer values as (as a __m128i value) at the address p. +// https://msdn.microsoft.com/en-us/library/vstudio/edk11s13(v=vs.100).aspx +FORCE_INLINE void _mm_storeu_si128(__m128i *p, __m128i a) +{ + vst1q_s32((int32_t *) p, vreinterpretq_s32_m128i(a)); +} + +// Stores the lower single - precision, floating - point value. +// https://msdn.microsoft.com/en-us/library/tzz10fbx(v=vs.100).aspx +FORCE_INLINE void _mm_store_ss(float *p, __m128 a) +{ + vst1q_lane_f32(p, vreinterpretq_f32_m128(a), 0); +} + +// Reads the lower 64 bits of b and stores them into the lower 64 bits of a. +// https://msdn.microsoft.com/en-us/library/hhwf428f%28v=vs.90%29.aspx +FORCE_INLINE void _mm_storel_epi64(__m128i *a, __m128i b) +{ + uint64x1_t hi = vget_high_u64(vreinterpretq_u64_m128i(*a)); + uint64x1_t lo = vget_low_u64(vreinterpretq_u64_m128i(b)); + *a = vreinterpretq_m128i_u64(vcombine_u64(lo, hi)); +} + +// Stores the lower two single-precision floating point values of a to the +// address p. +// +// *p0 := a0 +// *p1 := a1 +// +// https://msdn.microsoft.com/en-us/library/h54t98ks(v=vs.90).aspx +FORCE_INLINE void _mm_storel_pi(__m64 *p, __m128 a) +{ + *p = vget_low_f32(a); +} + +// Stores the upper two single-precision, floating-point values of a to the +// address p. +// +// *p0 := a2 +// *p1 := a3 +// +// https://msdn.microsoft.com/en-us/library/a7525fs8(v%3dvs.90).aspx +FORCE_INLINE void _mm_storeh_pi(__m64 *p, __m128 a) +{ + *p = vget_high_f32(a); +} + +// Loads a single single-precision, floating-point value, copying it into all +// four words +// https://msdn.microsoft.com/en-us/library/vstudio/5cdkf716(v=vs.100).aspx +FORCE_INLINE __m128 _mm_load1_ps(const float *p) +{ + return vreinterpretq_m128_f32(vld1q_dup_f32(p)); +} +#define _mm_load_ps1 _mm_load1_ps + +// Sets the lower two single-precision, floating-point values with 64 +// bits of data loaded from the address p; the upper two values are passed +// through from a. +// +// Return Value +// r0 := *p0 +// r1 := *p1 +// r2 := a2 +// r3 := a3 +// +// https://msdn.microsoft.com/en-us/library/s57cyak2(v=vs.100).aspx +FORCE_INLINE __m128 _mm_loadl_pi(__m128 a, __m64 const *p) +{ + return vreinterpretq_m128_f32( + vcombine_f32(vld1_f32((const float32_t *) p), vget_high_f32(a))); +} + +// Sets the upper two single-precision, floating-point values with 64 +// bits of data loaded from the address p; the lower two values are passed +// through from a. +// +// r0 := a0 +// r1 := a1 +// r2 := *p0 +// r3 := *p1 +// +// https://msdn.microsoft.com/en-us/library/w92wta0x(v%3dvs.100).aspx +FORCE_INLINE __m128 _mm_loadh_pi(__m128 a, __m64 const *p) +{ + return vreinterpretq_m128_f32( + vcombine_f32(vget_low_f32(a), vld1_f32((const float32_t *) p))); +} + +// Loads four single-precision, floating-point values. +// https://msdn.microsoft.com/en-us/library/vstudio/zzd50xxt(v=vs.100).aspx +FORCE_INLINE __m128 _mm_load_ps(const float *p) +{ + return vreinterpretq_m128_f32(vld1q_f32(p)); +} + +// Loads four single-precision, floating-point values. +// https://msdn.microsoft.com/en-us/library/x1b16s7z%28v=vs.90%29.aspx +FORCE_INLINE __m128 _mm_loadu_ps(const float *p) +{ + // for neon, alignment doesn't matter, so _mm_load_ps and _mm_loadu_ps are + // equivalent for neon + return vreinterpretq_m128_f32(vld1q_f32(p)); +} + +// Loads a double-precision, floating-point value. +// The upper double-precision, floating-point is set to zero. The address p does +// not need to be 16-byte aligned. +// https://docs.microsoft.com/en-us/previous-versions/visualstudio/visual-studio-2010/574w9fdd(v%3dvs.100) +FORCE_INLINE __m128d _mm_load_sd(const double *p) +{ +#if defined(__aarch64__) + return vsetq_lane_f64(*p, vdupq_n_f64(0), 0); +#else + const float *fp = (const float *) p; + float ALIGN_STRUCT(16) data[4] = {fp[0], fp[1], 0, 0}; + return vld1q_f32(data); +#endif +} + +// Loads an single - precision, floating - point value into the low word and +// clears the upper three words. +// https://msdn.microsoft.com/en-us/library/548bb9h4%28v=vs.90%29.aspx +FORCE_INLINE __m128 _mm_load_ss(const float *p) +{ + return vreinterpretq_m128_f32(vsetq_lane_f32(*p, vdupq_n_f32(0), 0)); +} + +FORCE_INLINE __m128i _mm_loadl_epi64(__m128i const *p) +{ + /* Load the lower 64 bits of the value pointed to by p into the + * lower 64 bits of the result, zeroing the upper 64 bits of the result. + */ + return vreinterpretq_m128i_s32( + vcombine_s32(vld1_s32((int32_t const *) p), vcreate_s32(0))); +} + +/* Logic/Binary operations */ + +// Compares for inequality. +// https://msdn.microsoft.com/en-us/library/sf44thbx(v=vs.100).aspx +FORCE_INLINE __m128 _mm_cmpneq_ps(__m128 a, __m128 b) +{ + return vreinterpretq_m128_u32(vmvnq_u32( + vceqq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b)))); +} + +// Computes the bitwise AND-NOT of the four single-precision, floating-point +// values of a and b. +// +// r0 := ~a0 & b0 +// r1 := ~a1 & b1 +// r2 := ~a2 & b2 +// r3 := ~a3 & b3 +// +// https://msdn.microsoft.com/en-us/library/vstudio/68h7wd02(v=vs.100).aspx +FORCE_INLINE __m128 _mm_andnot_ps(__m128 a, __m128 b) +{ + return vreinterpretq_m128_s32( + vbicq_s32(vreinterpretq_s32_m128(b), + vreinterpretq_s32_m128(a))); // *NOTE* argument swap +} + +// Computes the bitwise AND of the 128-bit value in b and the bitwise NOT of the +// 128-bit value in a. +// +// r := (~a) & b +// +// https://msdn.microsoft.com/en-us/library/vstudio/1beaceh8(v=vs.100).aspx +FORCE_INLINE __m128i _mm_andnot_si128(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s32( + vbicq_s32(vreinterpretq_s32_m128i(b), + vreinterpretq_s32_m128i(a))); // *NOTE* argument swap +} + +// Computes the bitwise AND of the 128-bit value in a and the 128-bit value in +// b. +// +// r := a & b +// +// https://msdn.microsoft.com/en-us/library/vstudio/6d1txsa8(v=vs.100).aspx +FORCE_INLINE __m128i _mm_and_si128(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s32( + vandq_s32(vreinterpretq_s32_m128i(a), vreinterpretq_s32_m128i(b))); +} + +// Computes the bitwise AND of the four single-precision, floating-point values +// of a and b. +// +// r0 := a0 & b0 +// r1 := a1 & b1 +// r2 := a2 & b2 +// r3 := a3 & b3 +// +// https://msdn.microsoft.com/en-us/library/vstudio/73ck1xc5(v=vs.100).aspx +FORCE_INLINE __m128 _mm_and_ps(__m128 a, __m128 b) +{ + return vreinterpretq_m128_s32( + vandq_s32(vreinterpretq_s32_m128(a), vreinterpretq_s32_m128(b))); +} + +// Computes the bitwise OR of the four single-precision, floating-point values +// of a and b. +// https://msdn.microsoft.com/en-us/library/vstudio/7ctdsyy0(v=vs.100).aspx +FORCE_INLINE __m128 _mm_or_ps(__m128 a, __m128 b) +{ + return vreinterpretq_m128_s32( + vorrq_s32(vreinterpretq_s32_m128(a), vreinterpretq_s32_m128(b))); +} + +// Computes bitwise EXOR (exclusive-or) of the four single-precision, +// floating-point values of a and b. +// https://msdn.microsoft.com/en-us/library/ss6k3wk8(v=vs.100).aspx +FORCE_INLINE __m128 _mm_xor_ps(__m128 a, __m128 b) +{ + return vreinterpretq_m128_s32( + veorq_s32(vreinterpretq_s32_m128(a), vreinterpretq_s32_m128(b))); +} + +// Computes the bitwise OR of the 128-bit value in a and the 128-bit value in b. +// +// r := a | b +// +// https://msdn.microsoft.com/en-us/library/vstudio/ew8ty0db(v=vs.100).aspx +FORCE_INLINE __m128i _mm_or_si128(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s32( + vorrq_s32(vreinterpretq_s32_m128i(a), vreinterpretq_s32_m128i(b))); +} + +// Computes the bitwise XOR of the 128-bit value in a and the 128-bit value in +// b. https://msdn.microsoft.com/en-us/library/fzt08www(v=vs.100).aspx +FORCE_INLINE __m128i _mm_xor_si128(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s32( + veorq_s32(vreinterpretq_s32_m128i(a), vreinterpretq_s32_m128i(b))); +} + +// Moves the upper two values of B into the lower two values of A. +// +// r3 := a3 +// r2 := a2 +// r1 := b3 +// r0 := b2 +FORCE_INLINE __m128 _mm_movehl_ps(__m128 __A, __m128 __B) +{ + float32x2_t a32 = vget_high_f32(vreinterpretq_f32_m128(__A)); + float32x2_t b32 = vget_high_f32(vreinterpretq_f32_m128(__B)); + return vreinterpretq_m128_f32(vcombine_f32(b32, a32)); +} + +// Moves the lower two values of B into the upper two values of A. +// +// r3 := b1 +// r2 := b0 +// r1 := a1 +// r0 := a0 +FORCE_INLINE __m128 _mm_movelh_ps(__m128 __A, __m128 __B) +{ + float32x2_t a10 = vget_low_f32(vreinterpretq_f32_m128(__A)); + float32x2_t b10 = vget_low_f32(vreinterpretq_f32_m128(__B)); + return vreinterpretq_m128_f32(vcombine_f32(a10, b10)); +} + +FORCE_INLINE __m128i _mm_abs_epi32(__m128i a) +{ + return vreinterpretq_m128i_s32(vabsq_s32(vreinterpretq_s32_m128i(a))); +} + +FORCE_INLINE __m128i _mm_abs_epi16(__m128i a) +{ + return vreinterpretq_m128i_s16(vabsq_s16(vreinterpretq_s16_m128i(a))); +} + +FORCE_INLINE __m128i _mm_abs_epi8(__m128i a) +{ + return vreinterpretq_m128i_s8(vabsq_s8(vreinterpretq_s8_m128i(a))); +} + +// Takes the upper 64 bits of a and places it in the low end of the result +// Takes the lower 64 bits of b and places it into the high end of the result. +FORCE_INLINE __m128 _mm_shuffle_ps_1032(__m128 a, __m128 b) +{ + float32x2_t a32 = vget_high_f32(vreinterpretq_f32_m128(a)); + float32x2_t b10 = vget_low_f32(vreinterpretq_f32_m128(b)); + return vreinterpretq_m128_f32(vcombine_f32(a32, b10)); +} + +// takes the lower two 32-bit values from a and swaps them and places in high +// end of result takes the higher two 32 bit values from b and swaps them and +// places in low end of result. +FORCE_INLINE __m128 _mm_shuffle_ps_2301(__m128 a, __m128 b) +{ + float32x2_t a01 = vrev64_f32(vget_low_f32(vreinterpretq_f32_m128(a))); + float32x2_t b23 = vrev64_f32(vget_high_f32(vreinterpretq_f32_m128(b))); + return vreinterpretq_m128_f32(vcombine_f32(a01, b23)); +} + +FORCE_INLINE __m128 _mm_shuffle_ps_0321(__m128 a, __m128 b) +{ + float32x2_t a21 = vget_high_f32( + vextq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(a), 3)); + float32x2_t b03 = vget_low_f32( + vextq_f32(vreinterpretq_f32_m128(b), vreinterpretq_f32_m128(b), 3)); + return vreinterpretq_m128_f32(vcombine_f32(a21, b03)); +} + +FORCE_INLINE __m128 _mm_shuffle_ps_2103(__m128 a, __m128 b) +{ + float32x2_t a03 = vget_low_f32( + vextq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(a), 3)); + float32x2_t b21 = vget_high_f32( + vextq_f32(vreinterpretq_f32_m128(b), vreinterpretq_f32_m128(b), 3)); + return vreinterpretq_m128_f32(vcombine_f32(a03, b21)); +} + +FORCE_INLINE __m128 _mm_shuffle_ps_1010(__m128 a, __m128 b) +{ + float32x2_t a10 = vget_low_f32(vreinterpretq_f32_m128(a)); + float32x2_t b10 = vget_low_f32(vreinterpretq_f32_m128(b)); + return vreinterpretq_m128_f32(vcombine_f32(a10, b10)); +} + +FORCE_INLINE __m128 _mm_shuffle_ps_1001(__m128 a, __m128 b) +{ + float32x2_t a01 = vrev64_f32(vget_low_f32(vreinterpretq_f32_m128(a))); + float32x2_t b10 = vget_low_f32(vreinterpretq_f32_m128(b)); + return vreinterpretq_m128_f32(vcombine_f32(a01, b10)); +} + +FORCE_INLINE __m128 _mm_shuffle_ps_0101(__m128 a, __m128 b) +{ + float32x2_t a01 = vrev64_f32(vget_low_f32(vreinterpretq_f32_m128(a))); + float32x2_t b01 = vrev64_f32(vget_low_f32(vreinterpretq_f32_m128(b))); + return vreinterpretq_m128_f32(vcombine_f32(a01, b01)); +} + +// keeps the low 64 bits of b in the low and puts the high 64 bits of a in the +// high +FORCE_INLINE __m128 _mm_shuffle_ps_3210(__m128 a, __m128 b) +{ + float32x2_t a10 = vget_low_f32(vreinterpretq_f32_m128(a)); + float32x2_t b32 = vget_high_f32(vreinterpretq_f32_m128(b)); + return vreinterpretq_m128_f32(vcombine_f32(a10, b32)); +} + +FORCE_INLINE __m128 _mm_shuffle_ps_0011(__m128 a, __m128 b) +{ + float32x2_t a11 = vdup_lane_f32(vget_low_f32(vreinterpretq_f32_m128(a)), 1); + float32x2_t b00 = vdup_lane_f32(vget_low_f32(vreinterpretq_f32_m128(b)), 0); + return vreinterpretq_m128_f32(vcombine_f32(a11, b00)); +} + +FORCE_INLINE __m128 _mm_shuffle_ps_0022(__m128 a, __m128 b) +{ + float32x2_t a22 = + vdup_lane_f32(vget_high_f32(vreinterpretq_f32_m128(a)), 0); + float32x2_t b00 = vdup_lane_f32(vget_low_f32(vreinterpretq_f32_m128(b)), 0); + return vreinterpretq_m128_f32(vcombine_f32(a22, b00)); +} + +FORCE_INLINE __m128 _mm_shuffle_ps_2200(__m128 a, __m128 b) +{ + float32x2_t a00 = vdup_lane_f32(vget_low_f32(vreinterpretq_f32_m128(a)), 0); + float32x2_t b22 = + vdup_lane_f32(vget_high_f32(vreinterpretq_f32_m128(b)), 0); + return vreinterpretq_m128_f32(vcombine_f32(a00, b22)); +} + +FORCE_INLINE __m128 _mm_shuffle_ps_3202(__m128 a, __m128 b) +{ + float32_t a0 = vgetq_lane_f32(vreinterpretq_f32_m128(a), 0); + float32x2_t a22 = + vdup_lane_f32(vget_high_f32(vreinterpretq_f32_m128(a)), 0); + float32x2_t a02 = vset_lane_f32(a0, a22, 1); /* TODO: use vzip ?*/ + float32x2_t b32 = vget_high_f32(vreinterpretq_f32_m128(b)); + return vreinterpretq_m128_f32(vcombine_f32(a02, b32)); +} + +FORCE_INLINE __m128 _mm_shuffle_ps_1133(__m128 a, __m128 b) +{ + float32x2_t a33 = + vdup_lane_f32(vget_high_f32(vreinterpretq_f32_m128(a)), 1); + float32x2_t b11 = vdup_lane_f32(vget_low_f32(vreinterpretq_f32_m128(b)), 1); + return vreinterpretq_m128_f32(vcombine_f32(a33, b11)); +} + +FORCE_INLINE __m128 _mm_shuffle_ps_2010(__m128 a, __m128 b) +{ + float32x2_t a10 = vget_low_f32(vreinterpretq_f32_m128(a)); + float32_t b2 = vgetq_lane_f32(vreinterpretq_f32_m128(b), 2); + float32x2_t b00 = vdup_lane_f32(vget_low_f32(vreinterpretq_f32_m128(b)), 0); + float32x2_t b20 = vset_lane_f32(b2, b00, 1); + return vreinterpretq_m128_f32(vcombine_f32(a10, b20)); +} + +FORCE_INLINE __m128 _mm_shuffle_ps_2001(__m128 a, __m128 b) +{ + float32x2_t a01 = vrev64_f32(vget_low_f32(vreinterpretq_f32_m128(a))); + float32_t b2 = vgetq_lane_f32(b, 2); + float32x2_t b00 = vdup_lane_f32(vget_low_f32(vreinterpretq_f32_m128(b)), 0); + float32x2_t b20 = vset_lane_f32(b2, b00, 1); + return vreinterpretq_m128_f32(vcombine_f32(a01, b20)); +} + +FORCE_INLINE __m128 _mm_shuffle_ps_2032(__m128 a, __m128 b) +{ + float32x2_t a32 = vget_high_f32(vreinterpretq_f32_m128(a)); + float32_t b2 = vgetq_lane_f32(b, 2); + float32x2_t b00 = vdup_lane_f32(vget_low_f32(vreinterpretq_f32_m128(b)), 0); + float32x2_t b20 = vset_lane_f32(b2, b00, 1); + return vreinterpretq_m128_f32(vcombine_f32(a32, b20)); +} + +// NEON does not support a general purpose permute intrinsic +// Selects four specific single-precision, floating-point values from a and b, +// based on the mask i. +// https://msdn.microsoft.com/en-us/library/vstudio/5f0858x0(v=vs.100).aspx +#if 0 /* C version */ +FORCE_INLINE __m128 _mm_shuffle_ps_default(__m128 a, + __m128 b, + __constrange(0, 255) int imm) +{ + __m128 ret; + ret[0] = a[imm & 0x3]; + ret[1] = a[(imm >> 2) & 0x3]; + ret[2] = b[(imm >> 4) & 0x03]; + ret[3] = b[(imm >> 6) & 0x03]; + return ret; +} +#endif +#define _mm_shuffle_ps_default(a, b, imm) \ + __extension__({ \ + float32x4_t ret; \ + ret = vmovq_n_f32( \ + vgetq_lane_f32(vreinterpretq_f32_m128(a), (imm) & (0x3))); \ + ret = vsetq_lane_f32( \ + vgetq_lane_f32(vreinterpretq_f32_m128(a), ((imm) >> 2) & 0x3), \ + ret, 1); \ + ret = vsetq_lane_f32( \ + vgetq_lane_f32(vreinterpretq_f32_m128(b), ((imm) >> 4) & 0x3), \ + ret, 2); \ + ret = vsetq_lane_f32( \ + vgetq_lane_f32(vreinterpretq_f32_m128(b), ((imm) >> 6) & 0x3), \ + ret, 3); \ + vreinterpretq_m128_f32(ret); \ + }) + +// FORCE_INLINE __m128 _mm_shuffle_ps(__m128 a, __m128 b, __constrange(0,255) +// int imm) +#if __has_builtin(__builtin_shufflevector) +#define _mm_shuffle_ps(a, b, imm) \ + __extension__({ \ + float32x4_t _input1 = vreinterpretq_f32_m128(a); \ + float32x4_t _input2 = vreinterpretq_f32_m128(b); \ + float32x4_t _shuf = __builtin_shufflevector( \ + _input1, _input2, (imm) & (0x3), ((imm) >> 2) & 0x3, \ + (((imm) >> 4) & 0x3) + 4, (((imm) >> 6) & 0x3) + 4); \ + vreinterpretq_m128_f32(_shuf); \ + }) +#else // generic +#define _mm_shuffle_ps(a, b, imm) \ + __extension__({ \ + __m128 ret; \ + switch (imm) { \ + case _MM_SHUFFLE(1, 0, 3, 2): \ + ret = _mm_shuffle_ps_1032((a), (b)); \ + break; \ + case _MM_SHUFFLE(2, 3, 0, 1): \ + ret = _mm_shuffle_ps_2301((a), (b)); \ + break; \ + case _MM_SHUFFLE(0, 3, 2, 1): \ + ret = _mm_shuffle_ps_0321((a), (b)); \ + break; \ + case _MM_SHUFFLE(2, 1, 0, 3): \ + ret = _mm_shuffle_ps_2103((a), (b)); \ + break; \ + case _MM_SHUFFLE(1, 0, 1, 0): \ + ret = _mm_movelh_ps((a), (b)); \ + break; \ + case _MM_SHUFFLE(1, 0, 0, 1): \ + ret = _mm_shuffle_ps_1001((a), (b)); \ + break; \ + case _MM_SHUFFLE(0, 1, 0, 1): \ + ret = _mm_shuffle_ps_0101((a), (b)); \ + break; \ + case _MM_SHUFFLE(3, 2, 1, 0): \ + ret = _mm_shuffle_ps_3210((a), (b)); \ + break; \ + case _MM_SHUFFLE(0, 0, 1, 1): \ + ret = _mm_shuffle_ps_0011((a), (b)); \ + break; \ + case _MM_SHUFFLE(0, 0, 2, 2): \ + ret = _mm_shuffle_ps_0022((a), (b)); \ + break; \ + case _MM_SHUFFLE(2, 2, 0, 0): \ + ret = _mm_shuffle_ps_2200((a), (b)); \ + break; \ + case _MM_SHUFFLE(3, 2, 0, 2): \ + ret = _mm_shuffle_ps_3202((a), (b)); \ + break; \ + case _MM_SHUFFLE(3, 2, 3, 2): \ + ret = _mm_movehl_ps((b), (a)); \ + break; \ + case _MM_SHUFFLE(1, 1, 3, 3): \ + ret = _mm_shuffle_ps_1133((a), (b)); \ + break; \ + case _MM_SHUFFLE(2, 0, 1, 0): \ + ret = _mm_shuffle_ps_2010((a), (b)); \ + break; \ + case _MM_SHUFFLE(2, 0, 0, 1): \ + ret = _mm_shuffle_ps_2001((a), (b)); \ + break; \ + case _MM_SHUFFLE(2, 0, 3, 2): \ + ret = _mm_shuffle_ps_2032((a), (b)); \ + break; \ + default: \ + ret = _mm_shuffle_ps_default((a), (b), (imm)); \ + break; \ + } \ + ret; \ + }) +#endif + +// Takes the upper 64 bits of a and places it in the low end of the result +// Takes the lower 64 bits of a and places it into the high end of the result. +FORCE_INLINE __m128i _mm_shuffle_epi_1032(__m128i a) +{ + int32x2_t a32 = vget_high_s32(vreinterpretq_s32_m128i(a)); + int32x2_t a10 = vget_low_s32(vreinterpretq_s32_m128i(a)); + return vreinterpretq_m128i_s32(vcombine_s32(a32, a10)); +} + +// takes the lower two 32-bit values from a and swaps them and places in low end +// of result takes the higher two 32 bit values from a and swaps them and places +// in high end of result. +FORCE_INLINE __m128i _mm_shuffle_epi_2301(__m128i a) +{ + int32x2_t a01 = vrev64_s32(vget_low_s32(vreinterpretq_s32_m128i(a))); + int32x2_t a23 = vrev64_s32(vget_high_s32(vreinterpretq_s32_m128i(a))); + return vreinterpretq_m128i_s32(vcombine_s32(a01, a23)); +} + +// rotates the least significant 32 bits into the most signficant 32 bits, and +// shifts the rest down +FORCE_INLINE __m128i _mm_shuffle_epi_0321(__m128i a) +{ + return vreinterpretq_m128i_s32( + vextq_s32(vreinterpretq_s32_m128i(a), vreinterpretq_s32_m128i(a), 1)); +} + +// rotates the most significant 32 bits into the least signficant 32 bits, and +// shifts the rest up +FORCE_INLINE __m128i _mm_shuffle_epi_2103(__m128i a) +{ + return vreinterpretq_m128i_s32( + vextq_s32(vreinterpretq_s32_m128i(a), vreinterpretq_s32_m128i(a), 3)); +} + +// gets the lower 64 bits of a, and places it in the upper 64 bits +// gets the lower 64 bits of a and places it in the lower 64 bits +FORCE_INLINE __m128i _mm_shuffle_epi_1010(__m128i a) +{ + int32x2_t a10 = vget_low_s32(vreinterpretq_s32_m128i(a)); + return vreinterpretq_m128i_s32(vcombine_s32(a10, a10)); +} + +// gets the lower 64 bits of a, swaps the 0 and 1 elements, and places it in the +// lower 64 bits gets the lower 64 bits of a, and places it in the upper 64 bits +FORCE_INLINE __m128i _mm_shuffle_epi_1001(__m128i a) +{ + int32x2_t a01 = vrev64_s32(vget_low_s32(vreinterpretq_s32_m128i(a))); + int32x2_t a10 = vget_low_s32(vreinterpretq_s32_m128i(a)); + return vreinterpretq_m128i_s32(vcombine_s32(a01, a10)); +} + +// gets the lower 64 bits of a, swaps the 0 and 1 elements and places it in the +// upper 64 bits gets the lower 64 bits of a, swaps the 0 and 1 elements, and +// places it in the lower 64 bits +FORCE_INLINE __m128i _mm_shuffle_epi_0101(__m128i a) +{ + int32x2_t a01 = vrev64_s32(vget_low_s32(vreinterpretq_s32_m128i(a))); + return vreinterpretq_m128i_s32(vcombine_s32(a01, a01)); +} + +FORCE_INLINE __m128i _mm_shuffle_epi_2211(__m128i a) +{ + int32x2_t a11 = vdup_lane_s32(vget_low_s32(vreinterpretq_s32_m128i(a)), 1); + int32x2_t a22 = vdup_lane_s32(vget_high_s32(vreinterpretq_s32_m128i(a)), 0); + return vreinterpretq_m128i_s32(vcombine_s32(a11, a22)); +} + +FORCE_INLINE __m128i _mm_shuffle_epi_0122(__m128i a) +{ + int32x2_t a22 = vdup_lane_s32(vget_high_s32(vreinterpretq_s32_m128i(a)), 0); + int32x2_t a01 = vrev64_s32(vget_low_s32(vreinterpretq_s32_m128i(a))); + return vreinterpretq_m128i_s32(vcombine_s32(a22, a01)); +} + +FORCE_INLINE __m128i _mm_shuffle_epi_3332(__m128i a) +{ + int32x2_t a32 = vget_high_s32(vreinterpretq_s32_m128i(a)); + int32x2_t a33 = vdup_lane_s32(vget_high_s32(vreinterpretq_s32_m128i(a)), 1); + return vreinterpretq_m128i_s32(vcombine_s32(a32, a33)); +} + +// Shuffle packed 8-bit integers in a according to shuffle control mask in the +// corresponding 8-bit element of b, and store the results in dst. +// https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_shuffle_epi8&expand=5146 +FORCE_INLINE __m128i _mm_shuffle_epi8(__m128i a, __m128i b) +{ + int8x16_t tbl = vreinterpretq_s8_m128i(a); // input a + uint8x16_t idx = vreinterpretq_u8_m128i(b); // input b + uint8x16_t idx_masked = + vandq_u8(idx, vdupq_n_u8(0x8F)); // avoid using meaningless bits +#if defined(__aarch64__) + return vreinterpretq_m128i_s8(vqtbl1q_s8(tbl, idx_masked)); +#elif defined(__GNUC__) + int8x16_t ret; + // %e and %f represent the even and odd D registers + // respectively. + __asm__( + " vtbl.8 %e[ret], {%e[tbl], %f[tbl]}, %e[idx]\n" + " vtbl.8 %f[ret], {%e[tbl], %f[tbl]}, %f[idx]\n" + : [ret] "=&w"(ret) + : [tbl] "w"(tbl), [idx] "w"(idx_masked)); + return vreinterpretq_m128i_s8(ret); +#else + // use this line if testing on aarch64 + int8x8x2_t a_split = {vget_low_s8(tbl), vget_high_s8(tbl)}; + return vreinterpretq_m128i_s8( + vcombine_s8(vtbl2_s8(a_split, vget_low_u8(idx_masked)), + vtbl2_s8(a_split, vget_high_u8(idx_masked)))); +#endif +} + +#if 0 /* C version */ +FORCE_INLINE __m128i _mm_shuffle_epi32_default(__m128i a, + __constrange(0, 255) int imm) +{ + __m128i ret; + ret[0] = a[imm & 0x3]; + ret[1] = a[(imm >> 2) & 0x3]; + ret[2] = a[(imm >> 4) & 0x03]; + ret[3] = a[(imm >> 6) & 0x03]; + return ret; +} +#endif +#define _mm_shuffle_epi32_default(a, imm) \ + __extension__({ \ + int32x4_t ret; \ + ret = vmovq_n_s32( \ + vgetq_lane_s32(vreinterpretq_s32_m128i(a), (imm) & (0x3))); \ + ret = vsetq_lane_s32( \ + vgetq_lane_s32(vreinterpretq_s32_m128i(a), ((imm) >> 2) & 0x3), \ + ret, 1); \ + ret = vsetq_lane_s32( \ + vgetq_lane_s32(vreinterpretq_s32_m128i(a), ((imm) >> 4) & 0x3), \ + ret, 2); \ + ret = vsetq_lane_s32( \ + vgetq_lane_s32(vreinterpretq_s32_m128i(a), ((imm) >> 6) & 0x3), \ + ret, 3); \ + vreinterpretq_m128i_s32(ret); \ + }) + +// FORCE_INLINE __m128i _mm_shuffle_epi32_splat(__m128i a, __constrange(0,255) +// int imm) +#if defined(__aarch64__) +#define _mm_shuffle_epi32_splat(a, imm) \ + __extension__({ \ + vreinterpretq_m128i_s32( \ + vdupq_laneq_s32(vreinterpretq_s32_m128i(a), (imm))); \ + }) +#else +#define _mm_shuffle_epi32_splat(a, imm) \ + __extension__({ \ + vreinterpretq_m128i_s32( \ + vdupq_n_s32(vgetq_lane_s32(vreinterpretq_s32_m128i(a), (imm)))); \ + }) +#endif + +// Shuffles the 4 signed or unsigned 32-bit integers in a as specified by imm. +// https://msdn.microsoft.com/en-us/library/56f67xbk%28v=vs.90%29.aspx +// FORCE_INLINE __m128i _mm_shuffle_epi32(__m128i a, +// __constrange(0,255) int imm) +#if __has_builtin(__builtin_shufflevector) +#define _mm_shuffle_epi32(a, imm) \ + __extension__({ \ + int32x4_t _input = vreinterpretq_s32_m128i(a); \ + int32x4_t _shuf = __builtin_shufflevector( \ + _input, _input, (imm) & (0x3), ((imm) >> 2) & 0x3, \ + ((imm) >> 4) & 0x3, ((imm) >> 6) & 0x3); \ + vreinterpretq_m128i_s32(_shuf); \ + }) +#else // generic +#define _mm_shuffle_epi32(a, imm) \ + __extension__({ \ + __m128i ret; \ + switch (imm) { \ + case _MM_SHUFFLE(1, 0, 3, 2): \ + ret = _mm_shuffle_epi_1032((a)); \ + break; \ + case _MM_SHUFFLE(2, 3, 0, 1): \ + ret = _mm_shuffle_epi_2301((a)); \ + break; \ + case _MM_SHUFFLE(0, 3, 2, 1): \ + ret = _mm_shuffle_epi_0321((a)); \ + break; \ + case _MM_SHUFFLE(2, 1, 0, 3): \ + ret = _mm_shuffle_epi_2103((a)); \ + break; \ + case _MM_SHUFFLE(1, 0, 1, 0): \ + ret = _mm_shuffle_epi_1010((a)); \ + break; \ + case _MM_SHUFFLE(1, 0, 0, 1): \ + ret = _mm_shuffle_epi_1001((a)); \ + break; \ + case _MM_SHUFFLE(0, 1, 0, 1): \ + ret = _mm_shuffle_epi_0101((a)); \ + break; \ + case _MM_SHUFFLE(2, 2, 1, 1): \ + ret = _mm_shuffle_epi_2211((a)); \ + break; \ + case _MM_SHUFFLE(0, 1, 2, 2): \ + ret = _mm_shuffle_epi_0122((a)); \ + break; \ + case _MM_SHUFFLE(3, 3, 3, 2): \ + ret = _mm_shuffle_epi_3332((a)); \ + break; \ + case _MM_SHUFFLE(0, 0, 0, 0): \ + ret = _mm_shuffle_epi32_splat((a), 0); \ + break; \ + case _MM_SHUFFLE(1, 1, 1, 1): \ + ret = _mm_shuffle_epi32_splat((a), 1); \ + break; \ + case _MM_SHUFFLE(2, 2, 2, 2): \ + ret = _mm_shuffle_epi32_splat((a), 2); \ + break; \ + case _MM_SHUFFLE(3, 3, 3, 3): \ + ret = _mm_shuffle_epi32_splat((a), 3); \ + break; \ + default: \ + ret = _mm_shuffle_epi32_default((a), (imm)); \ + break; \ + } \ + ret; \ + }) +#endif + +// Shuffles the lower 4 signed or unsigned 16-bit integers in a as specified +// by imm. +// https://docs.microsoft.com/en-us/previous-versions/visualstudio/visual-studio-2010/y41dkk37(v=vs.100) +// FORCE_INLINE __m128i _mm_shufflelo_epi16_function(__m128i a, +// __constrange(0,255) int +// imm) +#define _mm_shufflelo_epi16_function(a, imm) \ + __extension__({ \ + int16x8_t ret = vreinterpretq_s16_m128i(a); \ + int16x4_t lowBits = vget_low_s16(ret); \ + ret = vsetq_lane_s16(vget_lane_s16(lowBits, (imm) & (0x3)), ret, 0); \ + ret = vsetq_lane_s16(vget_lane_s16(lowBits, ((imm) >> 2) & 0x3), ret, \ + 1); \ + ret = vsetq_lane_s16(vget_lane_s16(lowBits, ((imm) >> 4) & 0x3), ret, \ + 2); \ + ret = vsetq_lane_s16(vget_lane_s16(lowBits, ((imm) >> 6) & 0x3), ret, \ + 3); \ + vreinterpretq_m128i_s16(ret); \ + }) + +// FORCE_INLINE __m128i _mm_shufflelo_epi16(__m128i a, +// __constrange(0,255) int imm) +#if __has_builtin(__builtin_shufflevector) +#define _mm_shufflelo_epi16(a, imm) \ + __extension__({ \ + int16x8_t _input = vreinterpretq_s16_m128i(a); \ + int16x8_t _shuf = __builtin_shufflevector( \ + _input, _input, ((imm) & (0x3)), (((imm) >> 2) & 0x3), \ + (((imm) >> 4) & 0x3), (((imm) >> 6) & 0x3), 4, 5, 6, 7); \ + vreinterpretq_m128i_s16(_shuf); \ + }) +#else // generic +#define _mm_shufflelo_epi16(a, imm) _mm_shufflelo_epi16_function((a), (imm)) +#endif + +// Shuffles the upper 4 signed or unsigned 16-bit integers in a as specified +// by imm. +// https://msdn.microsoft.com/en-us/library/13ywktbs(v=vs.100).aspx +// FORCE_INLINE __m128i _mm_shufflehi_epi16_function(__m128i a, +// __constrange(0,255) int +// imm) +#define _mm_shufflehi_epi16_function(a, imm) \ + __extension__({ \ + int16x8_t ret = vreinterpretq_s16_m128i(a); \ + int16x4_t highBits = vget_high_s16(ret); \ + ret = vsetq_lane_s16(vget_lane_s16(highBits, (imm) & (0x3)), ret, 4); \ + ret = vsetq_lane_s16(vget_lane_s16(highBits, ((imm) >> 2) & 0x3), ret, \ + 5); \ + ret = vsetq_lane_s16(vget_lane_s16(highBits, ((imm) >> 4) & 0x3), ret, \ + 6); \ + ret = vsetq_lane_s16(vget_lane_s16(highBits, ((imm) >> 6) & 0x3), ret, \ + 7); \ + vreinterpretq_m128i_s16(ret); \ + }) + +// FORCE_INLINE __m128i _mm_shufflehi_epi16(__m128i a, +// __constrange(0,255) int imm) +#if __has_builtin(__builtin_shufflevector) +#define _mm_shufflehi_epi16(a, imm) \ + __extension__({ \ + int16x8_t _input = vreinterpretq_s16_m128i(a); \ + int16x8_t _shuf = __builtin_shufflevector( \ + _input, _input, 0, 1, 2, 3, ((imm) & (0x3)) + 4, \ + (((imm) >> 2) & 0x3) + 4, (((imm) >> 4) & 0x3) + 4, \ + (((imm) >> 6) & 0x3) + 4); \ + vreinterpretq_m128i_s16(_shuf); \ + }) +#else // generic +#define _mm_shufflehi_epi16(a, imm) _mm_shufflehi_epi16_function((a), (imm)) +#endif + +// Blend packed 16-bit integers from a and b using control mask imm8, and store +// the results in dst. +// +// FOR j := 0 to 7 +// i := j*16 +// IF imm8[j] +// dst[i+15:i] := b[i+15:i] +// ELSE +// dst[i+15:i] := a[i+15:i] +// FI +// ENDFOR +// FORCE_INLINE __m128i _mm_blend_epi16(__m128i a, __m128i b, +// __constrange(0,255) int imm) +#define _mm_blend_epi16(a, b, imm) \ + __extension__({ \ + const uint16_t _mask[8] = {((imm) & (1 << 0)) ? 0xFFFF : 0x0000, \ + ((imm) & (1 << 1)) ? 0xFFFF : 0x0000, \ + ((imm) & (1 << 2)) ? 0xFFFF : 0x0000, \ + ((imm) & (1 << 3)) ? 0xFFFF : 0x0000, \ + ((imm) & (1 << 4)) ? 0xFFFF : 0x0000, \ + ((imm) & (1 << 5)) ? 0xFFFF : 0x0000, \ + ((imm) & (1 << 6)) ? 0xFFFF : 0x0000, \ + ((imm) & (1 << 7)) ? 0xFFFF : 0x0000}; \ + uint16x8_t _mask_vec = vld1q_u16(_mask); \ + uint16x8_t _a = vreinterpretq_u16_m128i(a); \ + uint16x8_t _b = vreinterpretq_u16_m128i(b); \ + vreinterpretq_m128i_u16(vbslq_u16(_mask_vec, _b, _a)); \ + }) + +// Blend packed 8-bit integers from a and b using mask, and store the results in +// dst. +// +// FOR j := 0 to 15 +// i := j*8 +// IF mask[i+7] +// dst[i+7:i] := b[i+7:i] +// ELSE +// dst[i+7:i] := a[i+7:i] +// FI +// ENDFOR +FORCE_INLINE __m128i _mm_blendv_epi8(__m128i _a, __m128i _b, __m128i _mask) +{ + // Use a signed shift right to create a mask with the sign bit + uint8x16_t mask = + vreinterpretq_u8_s8(vshrq_n_s8(vreinterpretq_s8_m128i(_mask), 7)); + uint8x16_t a = vreinterpretq_u8_m128i(_a); + uint8x16_t b = vreinterpretq_u8_m128i(_b); + return vreinterpretq_m128i_u8(vbslq_u8(mask, b, a)); +} + +/* Shifts */ + +// Shifts the 4 signed 32-bit integers in a right by count bits while shifting +// in the sign bit. +// +// r0 := a0 >> count +// r1 := a1 >> count +// r2 := a2 >> count +// r3 := a3 >> count immediate +FORCE_INLINE __m128i _mm_srai_epi32(__m128i a, int count) +{ + return (__m128i) vshlq_s32((int32x4_t) a, vdupq_n_s32(-count)); +} + +// Shifts the 8 signed 16-bit integers in a right by count bits while shifting +// in the sign bit. +// +// r0 := a0 >> count +// r1 := a1 >> count +// ... +// r7 := a7 >> count +FORCE_INLINE __m128i _mm_srai_epi16(__m128i a, int count) +{ + return (__m128i) vshlq_s16((int16x8_t) a, vdupq_n_s16(-count)); +} + +// Shifts the 8 signed or unsigned 16-bit integers in a left by count bits while +// shifting in zeros. +// +// r0 := a0 << count +// r1 := a1 << count +// ... +// r7 := a7 << count +// +// https://msdn.microsoft.com/en-us/library/es73bcsy(v=vs.90).aspx +#define _mm_slli_epi16(a, imm) \ + __extension__({ \ + __m128i ret; \ + if ((imm) <= 0) { \ + ret = a; \ + } else if ((imm) > 31) { \ + ret = _mm_setzero_si128(); \ + } else { \ + ret = vreinterpretq_m128i_s16( \ + vshlq_n_s16(vreinterpretq_s16_m128i(a), (imm))); \ + } \ + ret; \ + }) + +// Shifts the 4 signed or unsigned 32-bit integers in a left by count bits while +// shifting in zeros. : +// https://msdn.microsoft.com/en-us/library/z2k3bbtb%28v=vs.90%29.aspx +// FORCE_INLINE __m128i _mm_slli_epi32(__m128i a, __constrange(0,255) int imm) +#define _mm_slli_epi32(a, imm) \ + __extension__({ \ + __m128i ret; \ + if ((imm) <= 0) { \ + ret = a; \ + } else if ((imm) > 31) { \ + ret = _mm_setzero_si128(); \ + } else { \ + ret = vreinterpretq_m128i_s32( \ + vshlq_n_s32(vreinterpretq_s32_m128i(a), (imm))); \ + } \ + ret; \ + }) + +// Shift packed 64-bit integers in a left by imm8 while shifting in zeros, and +// store the results in dst. +#define _mm_slli_epi64(a, imm) \ + __extension__({ \ + __m128i ret; \ + if ((imm) <= 0) { \ + ret = a; \ + } else if ((imm) > 63) { \ + ret = _mm_setzero_si128(); \ + } else { \ + ret = vreinterpretq_m128i_s64( \ + vshlq_n_s64(vreinterpretq_s64_m128i(a), (imm))); \ + } \ + ret; \ + }) + +// Shifts the 8 signed or unsigned 16-bit integers in a right by count bits +// while shifting in zeros. +// +// r0 := srl(a0, count) +// r1 := srl(a1, count) +// ... +// r7 := srl(a7, count) +// +// https://msdn.microsoft.com/en-us/library/6tcwd38t(v=vs.90).aspx +#define _mm_srli_epi16(a, imm) \ + __extension__({ \ + __m128i ret; \ + if ((imm) <= 0) { \ + ret = a; \ + } else if ((imm) > 31) { \ + ret = _mm_setzero_si128(); \ + } else { \ + ret = vreinterpretq_m128i_u16( \ + vshrq_n_u16(vreinterpretq_u16_m128i(a), (imm))); \ + } \ + ret; \ + }) + +// Shifts the 4 signed or unsigned 32-bit integers in a right by count bits +// while shifting in zeros. +// https://msdn.microsoft.com/en-us/library/w486zcfa(v=vs.100).aspx FORCE_INLINE +// __m128i _mm_srli_epi32(__m128i a, __constrange(0,255) int imm) +#define _mm_srli_epi32(a, imm) \ + __extension__({ \ + __m128i ret; \ + if ((imm) <= 0) { \ + ret = a; \ + } else if ((imm) > 31) { \ + ret = _mm_setzero_si128(); \ + } else { \ + ret = vreinterpretq_m128i_u32( \ + vshrq_n_u32(vreinterpretq_u32_m128i(a), (imm))); \ + } \ + ret; \ + }) + +// Shift packed 64-bit integers in a right by imm8 while shifting in zeros, and +// store the results in dst. +#define _mm_srli_epi64(a, imm) \ + __extension__({ \ + __m128i ret; \ + if ((imm) <= 0) { \ + ret = a; \ + } else if ((imm) > 63) { \ + ret = _mm_setzero_si128(); \ + } else { \ + ret = vreinterpretq_m128i_u64( \ + vshrq_n_u64(vreinterpretq_u64_m128i(a), (imm))); \ + } \ + ret; \ + }) + +// Shifts the 4 signed 32 - bit integers in a right by count bits while shifting +// in the sign bit. +// https://msdn.microsoft.com/en-us/library/z1939387(v=vs.100).aspx +// FORCE_INLINE __m128i _mm_srai_epi32(__m128i a, __constrange(0,255) int imm) +#define _mm_srai_epi32(a, imm) \ + __extension__({ \ + __m128i ret; \ + if ((imm) <= 0) { \ + ret = a; \ + } else if ((imm) > 31) { \ + ret = vreinterpretq_m128i_s32( \ + vshrq_n_s32(vreinterpretq_s32_m128i(a), 16)); \ + ret = vreinterpretq_m128i_s32( \ + vshrq_n_s32(vreinterpretq_s32_m128i(ret), 16)); \ + } else { \ + ret = vreinterpretq_m128i_s32( \ + vshrq_n_s32(vreinterpretq_s32_m128i(a), (imm))); \ + } \ + ret; \ + }) + +// Shifts the 128 - bit value in a right by imm bytes while shifting in +// zeros.imm must be an immediate. +// +// r := srl(a, imm*8) +// +// https://msdn.microsoft.com/en-us/library/305w28yz(v=vs.100).aspx +// FORCE_INLINE _mm_srli_si128(__m128i a, __constrange(0,255) int imm) +#define _mm_srli_si128(a, imm) \ + __extension__({ \ + __m128i ret; \ + if ((imm) <= 0) { \ + ret = a; \ + } else if ((imm) > 15) { \ + ret = _mm_setzero_si128(); \ + } else { \ + ret = vreinterpretq_m128i_s8( \ + vextq_s8(vreinterpretq_s8_m128i(a), vdupq_n_s8(0), (imm))); \ + } \ + ret; \ + }) + +// Shifts the 128-bit value in a left by imm bytes while shifting in zeros. imm +// must be an immediate. +// +// r := a << (imm * 8) +// +// https://msdn.microsoft.com/en-us/library/34d3k2kt(v=vs.100).aspx +// FORCE_INLINE __m128i _mm_slli_si128(__m128i a, __constrange(0,255) int imm) +#define _mm_slli_si128(a, imm) \ + __extension__({ \ + __m128i ret; \ + if ((imm) <= 0) { \ + ret = a; \ + } else if ((imm) > 15) { \ + ret = _mm_setzero_si128(); \ + } else { \ + ret = vreinterpretq_m128i_s8(vextq_s8( \ + vdupq_n_s8(0), vreinterpretq_s8_m128i(a), 16 - (imm))); \ + } \ + ret; \ + }) + +// Shifts the 8 signed or unsigned 16-bit integers in a left by count bits while +// shifting in zeros. +// +// r0 := a0 << count +// r1 := a1 << count +// ... +// r7 := a7 << count +// +// https://msdn.microsoft.com/en-us/library/c79w388h(v%3dvs.90).aspx +FORCE_INLINE __m128i _mm_sll_epi16(__m128i a, __m128i count) +{ + uint64_t c = ((SIMDVec *) &count)->m128_u64[0]; + if (c > 15) + return _mm_setzero_si128(); + + int16x8_t vc = vdupq_n_s16((int16_t) c); + return vreinterpretq_m128i_s16(vshlq_s16(vreinterpretq_s16_m128i(a), vc)); +} + +// Shifts the 4 signed or unsigned 32-bit integers in a left by count bits while +// shifting in zeros. +// +// r0 := a0 << count +// r1 := a1 << count +// r2 := a2 << count +// r3 := a3 << count +// +// https://msdn.microsoft.com/en-us/library/6fe5a6s9(v%3dvs.90).aspx +FORCE_INLINE __m128i _mm_sll_epi32(__m128i a, __m128i count) +{ + uint64_t c = ((SIMDVec *) &count)->m128_u64[0]; + if (c > 31) + return _mm_setzero_si128(); + + int32x4_t vc = vdupq_n_s32((int32_t) c); + return vreinterpretq_m128i_s32(vshlq_s32(vreinterpretq_s32_m128i(a), vc)); +} + +// Shifts the 2 signed or unsigned 64-bit integers in a left by count bits while +// shifting in zeros. +// +// r0 := a0 << count +// r1 := a1 << count +// +// https://msdn.microsoft.com/en-us/library/6ta9dffd(v%3dvs.90).aspx +FORCE_INLINE __m128i _mm_sll_epi64(__m128i a, __m128i count) +{ + uint64_t c = ((SIMDVec *) &count)->m128_u64[0]; + if (c > 63) + return _mm_setzero_si128(); + + int64x2_t vc = vdupq_n_s64((int64_t) c); + return vreinterpretq_m128i_s64(vshlq_s64(vreinterpretq_s64_m128i(a), vc)); +} + +// Shifts the 8 signed or unsigned 16-bit integers in a right by count bits +// while shifting in zeros. +// +// r0 := srl(a0, count) +// r1 := srl(a1, count) +// ... +// r7 := srl(a7, count) +// +// https://msdn.microsoft.com/en-us/library/wd5ax830(v%3dvs.90).aspx +FORCE_INLINE __m128i _mm_srl_epi16(__m128i a, __m128i count) +{ + uint64_t c = ((SIMDVec *) &count)->m128_u64[0]; + if (c > 15) + return _mm_setzero_si128(); + + int16x8_t vc = vdupq_n_s16(-(int16_t) c); + return vreinterpretq_m128i_u16(vshlq_u16(vreinterpretq_u16_m128i(a), vc)); +} + +// Shifts the 4 signed or unsigned 32-bit integers in a right by count bits +// while shifting in zeros. +// +// r0 := srl(a0, count) +// r1 := srl(a1, count) +// r2 := srl(a2, count) +// r3 := srl(a3, count) +// +// https://msdn.microsoft.com/en-us/library/a9cbttf4(v%3dvs.90).aspx +FORCE_INLINE __m128i _mm_srl_epi32(__m128i a, __m128i count) +{ + uint64_t c = ((SIMDVec *) &count)->m128_u64[0]; + if (c > 31) + return _mm_setzero_si128(); + + int32x4_t vc = vdupq_n_s32(-(int32_t) c); + return vreinterpretq_m128i_u32(vshlq_u32(vreinterpretq_u32_m128i(a), vc)); +} + +// Shifts the 2 signed or unsigned 64-bit integers in a right by count bits +// while shifting in zeros. +// +// r0 := srl(a0, count) +// r1 := srl(a1, count) +// +// https://msdn.microsoft.com/en-us/library/yf6cf9k8(v%3dvs.90).aspx +FORCE_INLINE __m128i _mm_srl_epi64(__m128i a, __m128i count) +{ + uint64_t c = ((SIMDVec *) &count)->m128_u64[0]; + if (c > 63) + return _mm_setzero_si128(); + + int64x2_t vc = vdupq_n_s64(-(int64_t) c); + return vreinterpretq_m128i_u64(vshlq_u64(vreinterpretq_u64_m128i(a), vc)); +} + +// NEON does not provide a version of this function. +// Creates a 16-bit mask from the most significant bits of the 16 signed or +// unsigned 8-bit integers in a and zero extends the upper bits. +// https://msdn.microsoft.com/en-us/library/vstudio/s090c8fk(v=vs.100).aspx +FORCE_INLINE int _mm_movemask_epi8(__m128i a) +{ +#if defined(__aarch64__) + uint8x16_t input = vreinterpretq_u8_m128i(a); + const int8_t ALIGN_STRUCT(16) + xr[16] = {-7, -6, -5, -4, -3, -2, -1, 0, -7, -6, -5, -4, -3, -2, -1, 0}; + const uint8x16_t mask_and = vdupq_n_u8(0x80); + const int8x16_t mask_shift = vld1q_s8(xr); + const uint8x16_t mask_result = + vshlq_u8(vandq_u8(input, mask_and), mask_shift); + uint8x8_t lo = vget_low_u8(mask_result); + uint8x8_t hi = vget_high_u8(mask_result); + + return vaddv_u8(lo) + (vaddv_u8(hi) << 8); +#else + // Use increasingly wide shifts+adds to collect the sign bits + // together. + // Since the widening shifts would be rather confusing to follow in little + // endian, everything will be illustrated in big endian order instead. This + // has a different result - the bits would actually be reversed on a big + // endian machine. + + // Starting input (only half the elements are shown): + // 89 ff 1d c0 00 10 99 33 + uint8x16_t input = vreinterpretq_u8_m128i(a); + + // Shift out everything but the sign bits with an unsigned shift right. + // + // Bytes of the vector:: + // 89 ff 1d c0 00 10 99 33 + // \ \ \ \ \ \ \ \ high_bits = (uint16x4_t)(input >> 7) + // | | | | | | | | + // 01 01 00 01 00 00 01 00 + // + // Bits of first important lane(s): + // 10001001 (89) + // \______ + // | + // 00000001 (01) + uint16x8_t high_bits = vreinterpretq_u16_u8(vshrq_n_u8(input, 7)); + + // Merge the even lanes together with a 16-bit unsigned shift right + add. + // 'xx' represents garbage data which will be ignored in the final result. + // In the important bytes, the add functions like a binary OR. + // + // 01 01 00 01 00 00 01 00 + // \_ | \_ | \_ | \_ | paired16 = (uint32x4_t)(input + (input >> 7)) + // \| \| \| \| + // xx 03 xx 01 xx 00 xx 02 + // + // 00000001 00000001 (01 01) + // \_______ | + // \| + // xxxxxxxx xxxxxx11 (xx 03) + uint32x4_t paired16 = + vreinterpretq_u32_u16(vsraq_n_u16(high_bits, high_bits, 7)); + + // Repeat with a wider 32-bit shift + add. + // xx 03 xx 01 xx 00 xx 02 + // \____ | \____ | paired32 = (uint64x1_t)(paired16 + (paired16 >> + // 14)) + // \| \| + // xx xx xx 0d xx xx xx 02 + // + // 00000011 00000001 (03 01) + // \\_____ || + // '----.\|| + // xxxxxxxx xxxx1101 (xx 0d) + uint64x2_t paired32 = + vreinterpretq_u64_u32(vsraq_n_u32(paired16, paired16, 14)); + + // Last, an even wider 64-bit shift + add to get our result in the low 8 bit + // lanes. xx xx xx 0d xx xx xx 02 + // \_________ | paired64 = (uint8x8_t)(paired32 + (paired32 >> + // 28)) + // \| + // xx xx xx xx xx xx xx d2 + // + // 00001101 00000010 (0d 02) + // \ \___ | | + // '---. \| | + // xxxxxxxx 11010010 (xx d2) + uint8x16_t paired64 = + vreinterpretq_u8_u64(vsraq_n_u64(paired32, paired32, 28)); + + // Extract the low 8 bits from each 64-bit lane with 2 8-bit extracts. + // xx xx xx xx xx xx xx d2 + // || return paired64[0] + // d2 + // Note: Little endian would return the correct value 4b (01001011) instead. + return vgetq_lane_u8(paired64, 0) | ((int) vgetq_lane_u8(paired64, 8) << 8); +#endif +} + +// NEON does not provide this method +// Creates a 4-bit mask from the most significant bits of the four +// single-precision, floating-point values. +// https://msdn.microsoft.com/en-us/library/vstudio/4490ys29(v=vs.100).aspx +FORCE_INLINE int _mm_movemask_ps(__m128 a) +{ + uint32x4_t input = vreinterpretq_u32_m128(a); +#if defined(__aarch64__) + static const int32x4_t shift = {-31, -30, -29, -28}; + static const uint32x4_t highbit = {0x80000000, 0x80000000, 0x80000000, + 0x80000000}; + return vaddvq_u32(vshlq_u32(vandq_u32(input, highbit), shift)); +#else + // Uses the exact same method as _mm_movemask_epi8, see that for details. + // Shift out everything but the sign bits with a 32-bit unsigned shift + // right. + uint64x2_t high_bits = vreinterpretq_u64_u32(vshrq_n_u32(input, 31)); + // Merge the two pairs together with a 64-bit unsigned shift right + add. + uint8x16_t paired = + vreinterpretq_u8_u64(vsraq_n_u64(high_bits, high_bits, 31)); + // Extract the result. + return vgetq_lane_u8(paired, 0) | (vgetq_lane_u8(paired, 8) << 2); +#endif +} + +// Compute the bitwise AND of 128 bits (representing integer data) in a and +// mask, and return 1 if the result is zero, otherwise return 0. +// https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_test_all_zeros&expand=5871 +FORCE_INLINE int _mm_test_all_zeros(__m128i a, __m128i mask) +{ + int64x2_t a_and_mask = + vandq_s64(vreinterpretq_s64_m128i(a), vreinterpretq_s64_m128i(mask)); + return (vgetq_lane_s64(a_and_mask, 0) | vgetq_lane_s64(a_and_mask, 1)) ? 0 + : 1; +} + +/* Math operations */ + +// Subtracts the four single-precision, floating-point values of a and b. +// +// r0 := a0 - b0 +// r1 := a1 - b1 +// r2 := a2 - b2 +// r3 := a3 - b3 +// +// https://msdn.microsoft.com/en-us/library/vstudio/1zad2k61(v=vs.100).aspx +FORCE_INLINE __m128 _mm_sub_ps(__m128 a, __m128 b) +{ + return vreinterpretq_m128_f32( + vsubq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b))); +} + +// Subtract 2 packed 64-bit integers in b from 2 packed 64-bit integers in a, +// and store the results in dst. +// r0 := a0 - b0 +// r1 := a1 - b1 +FORCE_INLINE __m128i _mm_sub_epi64(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s64( + vsubq_s64(vreinterpretq_s64_m128i(a), vreinterpretq_s64_m128i(b))); +} + +// Subtracts the 4 signed or unsigned 32-bit integers of b from the 4 signed or +// unsigned 32-bit integers of a. +// +// r0 := a0 - b0 +// r1 := a1 - b1 +// r2 := a2 - b2 +// r3 := a3 - b3 +// +// https://msdn.microsoft.com/en-us/library/vstudio/fhh866h0(v=vs.100).aspx +FORCE_INLINE __m128i _mm_sub_epi32(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s32( + vsubq_s32(vreinterpretq_s32_m128i(a), vreinterpretq_s32_m128i(b))); +} + +FORCE_INLINE __m128i _mm_sub_epi16(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s16( + vsubq_s16(vreinterpretq_s16_m128i(a), vreinterpretq_s16_m128i(b))); +} + +FORCE_INLINE __m128i _mm_sub_epi8(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s8( + vsubq_s8(vreinterpretq_s8_m128i(a), vreinterpretq_s8_m128i(b))); +} + +// Subtracts the 8 unsigned 16-bit integers of bfrom the 8 unsigned 16-bit +// integers of a and saturates.. +// https://technet.microsoft.com/en-us/subscriptions/index/f44y0s19(v=vs.90).aspx +FORCE_INLINE __m128i _mm_subs_epu16(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u16( + vqsubq_u16(vreinterpretq_u16_m128i(a), vreinterpretq_u16_m128i(b))); +} + +// Subtracts the 16 unsigned 8-bit integers of b from the 16 unsigned 8-bit +// integers of a and saturates. +// +// r0 := UnsignedSaturate(a0 - b0) +// r1 := UnsignedSaturate(a1 - b1) +// ... +// r15 := UnsignedSaturate(a15 - b15) +// +// https://technet.microsoft.com/en-us/subscriptions/yadkxc18(v=vs.90) +FORCE_INLINE __m128i _mm_subs_epu8(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u8( + vqsubq_u8(vreinterpretq_u8_m128i(a), vreinterpretq_u8_m128i(b))); +} + +// Subtracts the 16 signed 8-bit integers of b from the 16 signed 8-bit integers +// of a and saturates. +// +// r0 := SignedSaturate(a0 - b0) +// r1 := SignedSaturate(a1 - b1) +// ... +// r15 := SignedSaturate(a15 - b15) +// +// https://technet.microsoft.com/en-us/subscriptions/by7kzks1(v=vs.90) +FORCE_INLINE __m128i _mm_subs_epi8(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s8( + vqsubq_s8(vreinterpretq_s8_m128i(a), vreinterpretq_s8_m128i(b))); +} + +// Subtracts the 8 signed 16-bit integers of b from the 8 signed 16-bit integers +// of a and saturates. +// +// r0 := SignedSaturate(a0 - b0) +// r1 := SignedSaturate(a1 - b1) +// ... +// r7 := SignedSaturate(a7 - b7) +// +// https://technet.microsoft.com/en-us/subscriptions/3247z5b8(v=vs.90) +FORCE_INLINE __m128i _mm_subs_epi16(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s16( + vqsubq_s16(vreinterpretq_s16_m128i(a), vreinterpretq_s16_m128i(b))); +} + +FORCE_INLINE __m128i _mm_adds_epu16(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u16( + vqaddq_u16(vreinterpretq_u16_m128i(a), vreinterpretq_u16_m128i(b))); +} + +// Negate packed 8-bit integers in a when the corresponding signed +// 8-bit integer in b is negative, and store the results in dst. +// Element in dst are zeroed out when the corresponding element +// in b is zero. +// +// for i in 0..15 +// if b[i] < 0 +// r[i] := -a[i] +// else if b[i] == 0 +// r[i] := 0 +// else +// r[i] := a[i] +// fi +// done +FORCE_INLINE __m128i _mm_sign_epi8(__m128i _a, __m128i _b) +{ + int8x16_t a = vreinterpretq_s8_m128i(_a); + int8x16_t b = vreinterpretq_s8_m128i(_b); + + int8x16_t zero = vdupq_n_s8(0); + // signed shift right: faster than vclt + // (b < 0) ? 0xFF : 0 + uint8x16_t ltMask = vreinterpretq_u8_s8(vshrq_n_s8(b, 7)); + // (b == 0) ? 0xFF : 0 + int8x16_t zeroMask = vreinterpretq_s8_u8(vceqq_s8(b, zero)); + // -a + int8x16_t neg = vnegq_s8(a); + // bitwise select either a or neg based on ltMask + int8x16_t masked = vbslq_s8(ltMask, a, neg); + // res = masked & (~zeroMask) + int8x16_t res = vbicq_s8(masked, zeroMask); + return vreinterpretq_m128i_s8(res); +} + +// Negate packed 16-bit integers in a when the corresponding signed +// 16-bit integer in b is negative, and store the results in dst. +// Element in dst are zeroed out when the corresponding element +// in b is zero. +// +// for i in 0..7 +// if b[i] < 0 +// r[i] := -a[i] +// else if b[i] == 0 +// r[i] := 0 +// else +// r[i] := a[i] +// fi +// done +FORCE_INLINE __m128i _mm_sign_epi16(__m128i _a, __m128i _b) +{ + int16x8_t a = vreinterpretq_s16_m128i(_a); + int16x8_t b = vreinterpretq_s16_m128i(_b); + + int16x8_t zero = vdupq_n_s16(0); + // signed shift right: faster than vclt + // (b < 0) ? 0xFFFF : 0 + uint16x8_t ltMask = vreinterpretq_u16_s16(vshrq_n_s16(b, 15)); + // (b == 0) ? 0xFFFF : 0 + int16x8_t zeroMask = vreinterpretq_s16_u16(vceqq_s16(b, zero)); + // -a + int16x8_t neg = vnegq_s16(a); + // bitwise select either a or neg based on ltMask + int16x8_t masked = vbslq_s16(ltMask, a, neg); + // res = masked & (~zeroMask) + int16x8_t res = vbicq_s16(masked, zeroMask); + return vreinterpretq_m128i_s16(res); +} + +// Negate packed 32-bit integers in a when the corresponding signed +// 32-bit integer in b is negative, and store the results in dst. +// Element in dst are zeroed out when the corresponding element +// in b is zero. +// +// for i in 0..3 +// if b[i] < 0 +// r[i] := -a[i] +// else if b[i] == 0 +// r[i] := 0 +// else +// r[i] := a[i] +// fi +// done +FORCE_INLINE __m128i _mm_sign_epi32(__m128i _a, __m128i _b) +{ + int32x4_t a = vreinterpretq_s32_m128i(_a); + int32x4_t b = vreinterpretq_s32_m128i(_b); + + int32x4_t zero = vdupq_n_s32(0); + // signed shift right: faster than vclt + // (b < 0) ? 0xFFFFFFFF : 0 + uint32x4_t ltMask = vreinterpretq_u32_s32(vshrq_n_s32(b, 31)); + // (b == 0) ? 0xFFFFFFFF : 0 + int32x4_t zeroMask = vreinterpretq_s32_u32(vceqq_s32(b, zero)); + // neg = -a + int32x4_t neg = vnegq_s32(a); + // bitwise select either a or neg based on ltMask + int32x4_t masked = vbslq_s32(ltMask, a, neg); + // res = masked & (~zeroMask) + int32x4_t res = vbicq_s32(masked, zeroMask); + return vreinterpretq_m128i_s32(res); +} + +// Computes the average of the 16 unsigned 8-bit integers in a and the 16 +// unsigned 8-bit integers in b and rounds. +// +// r0 := (a0 + b0) / 2 +// r1 := (a1 + b1) / 2 +// ... +// r15 := (a15 + b15) / 2 +// +// https://msdn.microsoft.com/en-us/library/vstudio/8zwh554a(v%3dvs.90).aspx +FORCE_INLINE __m128i _mm_avg_epu8(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u8( + vrhaddq_u8(vreinterpretq_u8_m128i(a), vreinterpretq_u8_m128i(b))); +} + +// Computes the average of the 8 unsigned 16-bit integers in a and the 8 +// unsigned 16-bit integers in b and rounds. +// +// r0 := (a0 + b0) / 2 +// r1 := (a1 + b1) / 2 +// ... +// r7 := (a7 + b7) / 2 +// +// https://msdn.microsoft.com/en-us/library/vstudio/y13ca3c8(v=vs.90).aspx +FORCE_INLINE __m128i _mm_avg_epu16(__m128i a, __m128i b) +{ + return (__m128i) vrhaddq_u16(vreinterpretq_u16_m128i(a), + vreinterpretq_u16_m128i(b)); +} + +// Adds the four single-precision, floating-point values of a and b. +// +// r0 := a0 + b0 +// r1 := a1 + b1 +// r2 := a2 + b2 +// r3 := a3 + b3 +// +// https://msdn.microsoft.com/en-us/library/vstudio/c9848chc(v=vs.100).aspx +FORCE_INLINE __m128 _mm_add_ps(__m128 a, __m128 b) +{ + return vreinterpretq_m128_f32( + vaddq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b))); +} + +// adds the scalar single-precision floating point values of a and b. +// https://msdn.microsoft.com/en-us/library/be94x2y6(v=vs.100).aspx +FORCE_INLINE __m128 _mm_add_ss(__m128 a, __m128 b) +{ + float32_t b0 = vgetq_lane_f32(vreinterpretq_f32_m128(b), 0); + float32x4_t value = vsetq_lane_f32(b0, vdupq_n_f32(0), 0); + // the upper values in the result must be the remnants of . + return vreinterpretq_m128_f32(vaddq_f32(a, value)); +} + +// Adds the 4 signed or unsigned 64-bit integers in a to the 4 signed or +// unsigned 32-bit integers in b. +// https://msdn.microsoft.com/en-us/library/vstudio/09xs4fkk(v=vs.100).aspx +FORCE_INLINE __m128i _mm_add_epi64(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s64( + vaddq_s64(vreinterpretq_s64_m128i(a), vreinterpretq_s64_m128i(b))); +} + +// Adds the 4 signed or unsigned 32-bit integers in a to the 4 signed or +// unsigned 32-bit integers in b. +// +// r0 := a0 + b0 +// r1 := a1 + b1 +// r2 := a2 + b2 +// r3 := a3 + b3 +// +// https://msdn.microsoft.com/en-us/library/vstudio/09xs4fkk(v=vs.100).aspx +FORCE_INLINE __m128i _mm_add_epi32(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s32( + vaddq_s32(vreinterpretq_s32_m128i(a), vreinterpretq_s32_m128i(b))); +} + +// Adds the 8 signed or unsigned 16-bit integers in a to the 8 signed or +// unsigned 16-bit integers in b. +// https://msdn.microsoft.com/en-us/library/fceha5k4(v=vs.100).aspx +FORCE_INLINE __m128i _mm_add_epi16(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s16( + vaddq_s16(vreinterpretq_s16_m128i(a), vreinterpretq_s16_m128i(b))); +} + +// Adds the 16 signed or unsigned 8-bit integers in a to the 16 signed or +// unsigned 8-bit integers in b. +// https://technet.microsoft.com/en-us/subscriptions/yc7tcyzs(v=vs.90) +FORCE_INLINE __m128i _mm_add_epi8(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s8( + vaddq_s8(vreinterpretq_s8_m128i(a), vreinterpretq_s8_m128i(b))); +} + +// Adds the 8 signed 16-bit integers in a to the 8 signed 16-bit integers in b +// and saturates. +// +// r0 := SignedSaturate(a0 + b0) +// r1 := SignedSaturate(a1 + b1) +// ... +// r7 := SignedSaturate(a7 + b7) +// +// https://msdn.microsoft.com/en-us/library/1a306ef8(v=vs.100).aspx +FORCE_INLINE __m128i _mm_adds_epi16(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s16( + vqaddq_s16(vreinterpretq_s16_m128i(a), vreinterpretq_s16_m128i(b))); +} + +// Adds the 16 unsigned 8-bit integers in a to the 16 unsigned 8-bit integers in +// b and saturates.. +// https://msdn.microsoft.com/en-us/library/9hahyddy(v=vs.100).aspx +FORCE_INLINE __m128i _mm_adds_epu8(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u8( + vqaddq_u8(vreinterpretq_u8_m128i(a), vreinterpretq_u8_m128i(b))); +} + +// Multiplies the 8 signed or unsigned 16-bit integers from a by the 8 signed or +// unsigned 16-bit integers from b. +// +// r0 := (a0 * b0)[15:0] +// r1 := (a1 * b1)[15:0] +// ... +// r7 := (a7 * b7)[15:0] +// +// https://msdn.microsoft.com/en-us/library/vstudio/9ks1472s(v=vs.100).aspx +FORCE_INLINE __m128i _mm_mullo_epi16(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s16( + vmulq_s16(vreinterpretq_s16_m128i(a), vreinterpretq_s16_m128i(b))); +} + +// Multiplies the 4 signed or unsigned 32-bit integers from a by the 4 signed or +// unsigned 32-bit integers from b. +// https://msdn.microsoft.com/en-us/library/vstudio/bb531409(v=vs.100).aspx +FORCE_INLINE __m128i _mm_mullo_epi32(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s32( + vmulq_s32(vreinterpretq_s32_m128i(a), vreinterpretq_s32_m128i(b))); +} + +// Multiplies the four single-precision, floating-point values of a and b. +// +// r0 := a0 * b0 +// r1 := a1 * b1 +// r2 := a2 * b2 +// r3 := a3 * b3 +// +// https://msdn.microsoft.com/en-us/library/vstudio/22kbk6t9(v=vs.100).aspx +FORCE_INLINE __m128 _mm_mul_ps(__m128 a, __m128 b) +{ + return vreinterpretq_m128_f32( + vmulq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b))); +} + +// Multiply the low unsigned 32-bit integers from each packed 64-bit element in +// a and b, and store the unsigned 64-bit results in dst. +// +// r0 := (a0 & 0xFFFFFFFF) * (b0 & 0xFFFFFFFF) +// r1 := (a2 & 0xFFFFFFFF) * (b2 & 0xFFFFFFFF) +FORCE_INLINE __m128i _mm_mul_epu32(__m128i a, __m128i b) +{ + // vmull_u32 upcasts instead of masking, so we downcast. + uint32x2_t a_lo = vmovn_u64(vreinterpretq_u64_m128i(a)); + uint32x2_t b_lo = vmovn_u64(vreinterpretq_u64_m128i(b)); + return vreinterpretq_m128i_u64(vmull_u32(a_lo, b_lo)); +} + +// Multiply the low signed 32-bit integers from each packed 64-bit element in +// a and b, and store the signed 64-bit results in dst. +// +// r0 := (int64_t)(int32_t)a0 * (int64_t)(int32_t)b0 +// r1 := (int64_t)(int32_t)a2 * (int64_t)(int32_t)b2 +FORCE_INLINE __m128i _mm_mul_epi32(__m128i a, __m128i b) +{ + // vmull_s32 upcasts instead of masking, so we downcast. + int32x2_t a_lo = vmovn_s64(vreinterpretq_s64_m128i(a)); + int32x2_t b_lo = vmovn_s64(vreinterpretq_s64_m128i(b)); + return vreinterpretq_m128i_s64(vmull_s32(a_lo, b_lo)); +} + +// Multiplies the 8 signed 16-bit integers from a by the 8 signed 16-bit +// integers from b. +// +// r0 := (a0 * b0) + (a1 * b1) +// r1 := (a2 * b2) + (a3 * b3) +// r2 := (a4 * b4) + (a5 * b5) +// r3 := (a6 * b6) + (a7 * b7) +// https://msdn.microsoft.com/en-us/library/yht36sa6(v=vs.90).aspx +FORCE_INLINE __m128i _mm_madd_epi16(__m128i a, __m128i b) +{ + int32x4_t low = vmull_s16(vget_low_s16(vreinterpretq_s16_m128i(a)), + vget_low_s16(vreinterpretq_s16_m128i(b))); + int32x4_t high = vmull_s16(vget_high_s16(vreinterpretq_s16_m128i(a)), + vget_high_s16(vreinterpretq_s16_m128i(b))); + + int32x2_t low_sum = vpadd_s32(vget_low_s32(low), vget_high_s32(low)); + int32x2_t high_sum = vpadd_s32(vget_low_s32(high), vget_high_s32(high)); + + return vreinterpretq_m128i_s32(vcombine_s32(low_sum, high_sum)); +} + +// Multiply packed signed 16-bit integers in a and b, producing intermediate +// signed 32-bit integers. Shift right by 15 bits while rounding up, and store +// the packed 16-bit integers in dst. +// +// r0 := Round(((int32_t)a0 * (int32_t)b0) >> 15) +// r1 := Round(((int32_t)a1 * (int32_t)b1) >> 15) +// r2 := Round(((int32_t)a2 * (int32_t)b2) >> 15) +// ... +// r7 := Round(((int32_t)a7 * (int32_t)b7) >> 15) +FORCE_INLINE __m128i _mm_mulhrs_epi16(__m128i a, __m128i b) +{ + // Has issues due to saturation + // return vreinterpretq_m128i_s16(vqrdmulhq_s16(a, b)); + + // Multiply + int32x4_t mul_lo = vmull_s16(vget_low_s16(vreinterpretq_s16_m128i(a)), + vget_low_s16(vreinterpretq_s16_m128i(b))); + int32x4_t mul_hi = vmull_s16(vget_high_s16(vreinterpretq_s16_m128i(a)), + vget_high_s16(vreinterpretq_s16_m128i(b))); + + // Rounding narrowing shift right + // narrow = (int16_t)((mul + 16384) >> 15); + int16x4_t narrow_lo = vrshrn_n_s32(mul_lo, 15); + int16x4_t narrow_hi = vrshrn_n_s32(mul_hi, 15); + + // Join together + return vreinterpretq_m128i_s16(vcombine_s16(narrow_lo, narrow_hi)); +} + +// Vertically multiply each unsigned 8-bit integer from a with the corresponding +// signed 8-bit integer from b, producing intermediate signed 16-bit integers. +// Horizontally add adjacent pairs of intermediate signed 16-bit integers, +// and pack the saturated results in dst. +// +// FOR j := 0 to 7 +// i := j*16 +// dst[i+15:i] := Saturate_To_Int16( a[i+15:i+8]*b[i+15:i+8] + +// a[i+7:i]*b[i+7:i] ) +// ENDFOR +FORCE_INLINE __m128i _mm_maddubs_epi16(__m128i _a, __m128i _b) +{ + // This would be much simpler if x86 would choose to zero extend OR sign + // extend, not both. This could probably be optimized better. + uint16x8_t a = vreinterpretq_u16_m128i(_a); + int16x8_t b = vreinterpretq_s16_m128i(_b); + + // Zero extend a + int16x8_t a_odd = vreinterpretq_s16_u16(vshrq_n_u16(a, 8)); + int16x8_t a_even = vreinterpretq_s16_u16(vbicq_u16(a, vdupq_n_u16(0xff00))); + + // Sign extend by shifting left then shifting right. + int16x8_t b_even = vshrq_n_s16(vshlq_n_s16(b, 8), 8); + int16x8_t b_odd = vshrq_n_s16(b, 8); + + // multiply + int16x8_t prod1 = vmulq_s16(a_even, b_even); + int16x8_t prod2 = vmulq_s16(a_odd, b_odd); + + // saturated add + return vreinterpretq_m128i_s16(vqaddq_s16(prod1, prod2)); +} + +// Computes the absolute difference of the 16 unsigned 8-bit integers from a +// and the 16 unsigned 8-bit integers from b. +// +// Return Value +// Sums the upper 8 differences and lower 8 differences and packs the +// resulting 2 unsigned 16-bit integers into the upper and lower 64-bit +// elements. +// +// r0 := abs(a0 - b0) + abs(a1 - b1) +...+ abs(a7 - b7) +// r1 := 0x0 +// r2 := 0x0 +// r3 := 0x0 +// r4 := abs(a8 - b8) + abs(a9 - b9) +...+ abs(a15 - b15) +// r5 := 0x0 +// r6 := 0x0 +// r7 := 0x0 +FORCE_INLINE __m128i _mm_sad_epu8(__m128i a, __m128i b) +{ + uint16x8_t t = vpaddlq_u8(vabdq_u8((uint8x16_t) a, (uint8x16_t) b)); + uint16_t r0 = t[0] + t[1] + t[2] + t[3]; + uint16_t r4 = t[4] + t[5] + t[6] + t[7]; + uint16x8_t r = vsetq_lane_u16(r0, vdupq_n_u16(0), 0); + return (__m128i) vsetq_lane_u16(r4, r, 4); +} + +// Divides the four single-precision, floating-point values of a and b. +// +// r0 := a0 / b0 +// r1 := a1 / b1 +// r2 := a2 / b2 +// r3 := a3 / b3 +// +// https://msdn.microsoft.com/en-us/library/edaw8147(v=vs.100).aspx +FORCE_INLINE __m128 _mm_div_ps(__m128 a, __m128 b) +{ + float32x4_t recip0 = vrecpeq_f32(vreinterpretq_f32_m128(b)); + float32x4_t recip1 = + vmulq_f32(recip0, vrecpsq_f32(recip0, vreinterpretq_f32_m128(b))); + return vreinterpretq_m128_f32(vmulq_f32(vreinterpretq_f32_m128(a), recip1)); +} + +// Divides the scalar single-precision floating point value of a by b. +// https://msdn.microsoft.com/en-us/library/4y73xa49(v=vs.100).aspx +FORCE_INLINE __m128 _mm_div_ss(__m128 a, __m128 b) +{ + float32_t value = + vgetq_lane_f32(vreinterpretq_f32_m128(_mm_div_ps(a, b)), 0); + return vreinterpretq_m128_f32( + vsetq_lane_f32(value, vreinterpretq_f32_m128(a), 0)); +} + +// Computes the approximations of reciprocals of the four single-precision, +// floating-point values of a. +// https://msdn.microsoft.com/en-us/library/vstudio/796k1tty(v=vs.100).aspx +FORCE_INLINE __m128 _mm_rcp_ps(__m128 in) +{ + float32x4_t recip = vrecpeq_f32(vreinterpretq_f32_m128(in)); + recip = vmulq_f32(recip, vrecpsq_f32(recip, vreinterpretq_f32_m128(in))); + return vreinterpretq_m128_f32(recip); +} + +// Computes the approximations of square roots of the four single-precision, +// floating-point values of a. First computes reciprocal square roots and then +// reciprocals of the four values. +// +// r0 := sqrt(a0) +// r1 := sqrt(a1) +// r2 := sqrt(a2) +// r3 := sqrt(a3) +// +// https://msdn.microsoft.com/en-us/library/vstudio/8z67bwwk(v=vs.100).aspx +FORCE_INLINE __m128 _mm_sqrt_ps(__m128 in) +{ + float32x4_t recipsq = vrsqrteq_f32(vreinterpretq_f32_m128(in)); + float32x4_t sq = vrecpeq_f32(recipsq); + // ??? use step versions of both sqrt and recip for better accuracy? + return vreinterpretq_m128_f32(sq); +} + +// Computes the approximation of the square root of the scalar single-precision +// floating point value of in. +// https://msdn.microsoft.com/en-us/library/ahfsc22d(v=vs.100).aspx +FORCE_INLINE __m128 _mm_sqrt_ss(__m128 in) +{ + float32_t value = + vgetq_lane_f32(vreinterpretq_f32_m128(_mm_sqrt_ps(in)), 0); + return vreinterpretq_m128_f32( + vsetq_lane_f32(value, vreinterpretq_f32_m128(in), 0)); +} + +// Computes the approximations of the reciprocal square roots of the four +// single-precision floating point values of in. +// https://msdn.microsoft.com/en-us/library/22hfsh53(v=vs.100).aspx +FORCE_INLINE __m128 _mm_rsqrt_ps(__m128 in) +{ + return vreinterpretq_m128_f32(vrsqrteq_f32(vreinterpretq_f32_m128(in))); +} + +// Computes the maximums of the four single-precision, floating-point values of +// a and b. +// https://msdn.microsoft.com/en-us/library/vstudio/ff5d607a(v=vs.100).aspx +FORCE_INLINE __m128 _mm_max_ps(__m128 a, __m128 b) +{ + return vreinterpretq_m128_f32( + vmaxq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b))); +} + +// Computes the minima of the four single-precision, floating-point values of a +// and b. +// https://msdn.microsoft.com/en-us/library/vstudio/wh13kadz(v=vs.100).aspx +FORCE_INLINE __m128 _mm_min_ps(__m128 a, __m128 b) +{ + return vreinterpretq_m128_f32( + vminq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b))); +} + +// Computes the maximum of the two lower scalar single-precision floating point +// values of a and b. +// https://msdn.microsoft.com/en-us/library/s6db5esz(v=vs.100).aspx +FORCE_INLINE __m128 _mm_max_ss(__m128 a, __m128 b) +{ + float32_t value = vgetq_lane_f32( + vmaxq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b)), 0); + return vreinterpretq_m128_f32( + vsetq_lane_f32(value, vreinterpretq_f32_m128(a), 0)); +} + +// Computes the minimum of the two lower scalar single-precision floating point +// values of a and b. +// https://msdn.microsoft.com/en-us/library/0a9y7xaa(v=vs.100).aspx +FORCE_INLINE __m128 _mm_min_ss(__m128 a, __m128 b) +{ + float32_t value = vgetq_lane_f32( + vminq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b)), 0); + return vreinterpretq_m128_f32( + vsetq_lane_f32(value, vreinterpretq_f32_m128(a), 0)); +} + +// Computes the pairwise maxima of the 16 unsigned 8-bit integers from a and the +// 16 unsigned 8-bit integers from b. +// https://msdn.microsoft.com/en-us/library/st6634za(v=vs.100).aspx +FORCE_INLINE __m128i _mm_max_epu8(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u8( + vmaxq_u8(vreinterpretq_u8_m128i(a), vreinterpretq_u8_m128i(b))); +} + +// Computes the pairwise minima of the 16 unsigned 8-bit integers from a and the +// 16 unsigned 8-bit integers from b. +// https://msdn.microsoft.com/ko-kr/library/17k8cf58(v=vs.100).aspxx +FORCE_INLINE __m128i _mm_min_epu8(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u8( + vminq_u8(vreinterpretq_u8_m128i(a), vreinterpretq_u8_m128i(b))); +} + +// Computes the pairwise minima of the 8 signed 16-bit integers from a and the 8 +// signed 16-bit integers from b. +// https://msdn.microsoft.com/en-us/library/vstudio/6te997ew(v=vs.100).aspx +FORCE_INLINE __m128i _mm_min_epi16(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s16( + vminq_s16(vreinterpretq_s16_m128i(a), vreinterpretq_s16_m128i(b))); +} + +// Computes the pairwise maxima of the 8 signed 16-bit integers from a and the 8 +// signed 16-bit integers from b. +// https://msdn.microsoft.com/en-us/LIBRary/3x060h7c(v=vs.100).aspx +FORCE_INLINE __m128i _mm_max_epi16(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s16( + vmaxq_s16(vreinterpretq_s16_m128i(a), vreinterpretq_s16_m128i(b))); +} + +// epi versions of min/max +// Computes the pariwise maximums of the four signed 32-bit integer values of a +// and b. +// +// A 128-bit parameter that can be defined with the following equations: +// r0 := (a0 > b0) ? a0 : b0 +// r1 := (a1 > b1) ? a1 : b1 +// r2 := (a2 > b2) ? a2 : b2 +// r3 := (a3 > b3) ? a3 : b3 +// +// https://msdn.microsoft.com/en-us/library/vstudio/bb514055(v=vs.100).aspx +FORCE_INLINE __m128i _mm_max_epi32(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s32( + vmaxq_s32(vreinterpretq_s32_m128i(a), vreinterpretq_s32_m128i(b))); +} + +// Computes the pariwise minima of the four signed 32-bit integer values of a +// and b. +// +// A 128-bit parameter that can be defined with the following equations: +// r0 := (a0 < b0) ? a0 : b0 +// r1 := (a1 < b1) ? a1 : b1 +// r2 := (a2 < b2) ? a2 : b2 +// r3 := (a3 < b3) ? a3 : b3 +// +// https://msdn.microsoft.com/en-us/library/vstudio/bb531476(v=vs.100).aspx +FORCE_INLINE __m128i _mm_min_epi32(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s32( + vminq_s32(vreinterpretq_s32_m128i(a), vreinterpretq_s32_m128i(b))); +} + +// Multiplies the 8 signed 16-bit integers from a by the 8 signed 16-bit +// integers from b. +// +// r0 := (a0 * b0)[31:16] +// r1 := (a1 * b1)[31:16] +// ... +// r7 := (a7 * b7)[31:16] +// +// https://msdn.microsoft.com/en-us/library/vstudio/59hddw1d(v=vs.100).aspx +FORCE_INLINE __m128i _mm_mulhi_epi16(__m128i a, __m128i b) +{ + /* FIXME: issue with large values because of result saturation */ + // int16x8_t ret = vqdmulhq_s16(vreinterpretq_s16_m128i(a), + // vreinterpretq_s16_m128i(b)); /* =2*a*b */ return + // vreinterpretq_m128i_s16(vshrq_n_s16(ret, 1)); + int16x4_t a3210 = vget_low_s16(vreinterpretq_s16_m128i(a)); + int16x4_t b3210 = vget_low_s16(vreinterpretq_s16_m128i(b)); + int32x4_t ab3210 = vmull_s16(a3210, b3210); /* 3333222211110000 */ + int16x4_t a7654 = vget_high_s16(vreinterpretq_s16_m128i(a)); + int16x4_t b7654 = vget_high_s16(vreinterpretq_s16_m128i(b)); + int32x4_t ab7654 = vmull_s16(a7654, b7654); /* 7777666655554444 */ + uint16x8x2_t r = + vuzpq_u16(vreinterpretq_u16_s32(ab3210), vreinterpretq_u16_s32(ab7654)); + return vreinterpretq_m128i_u16(r.val[1]); +} + +// Computes pairwise add of each argument as single-precision, floating-point +// values a and b. +// https://msdn.microsoft.com/en-us/library/yd9wecaa.aspx +FORCE_INLINE __m128 _mm_hadd_ps(__m128 a, __m128 b) +{ +#if defined(__aarch64__) + return vreinterpretq_m128_f32( + vpaddq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b))); +#else + float32x2_t a10 = vget_low_f32(vreinterpretq_f32_m128(a)); + float32x2_t a32 = vget_high_f32(vreinterpretq_f32_m128(a)); + float32x2_t b10 = vget_low_f32(vreinterpretq_f32_m128(b)); + float32x2_t b32 = vget_high_f32(vreinterpretq_f32_m128(b)); + return vreinterpretq_m128_f32( + vcombine_f32(vpadd_f32(a10, a32), vpadd_f32(b10, b32))); +#endif +} + +// Computes pairwise add of each argument as a 16-bit signed or unsigned integer +// values a and b. +FORCE_INLINE __m128i _mm_hadd_epi16(__m128i _a, __m128i _b) +{ + int16x8_t a = vreinterpretq_s16_m128i(_a); + int16x8_t b = vreinterpretq_s16_m128i(_b); +#if defined(__aarch64__) + return vreinterpretq_m128i_s16(vpaddq_s16(a, b)); +#else + return vreinterpretq_m128i_s16( + vcombine_s16(vpadd_s16(vget_low_s16(a), vget_high_s16(a)), + vpadd_s16(vget_low_s16(b), vget_high_s16(b)))); +#endif +} + +// Computes pairwise difference of each argument as a 16-bit signed or unsigned +// integer values a and b. +FORCE_INLINE __m128i _mm_hsub_epi16(__m128i _a, __m128i _b) +{ + int32x4_t a = vreinterpretq_s32_m128i(_a); + int32x4_t b = vreinterpretq_s32_m128i(_b); + // Interleave using vshrn/vmovn + // [a0|a2|a4|a6|b0|b2|b4|b6] + // [a1|a3|a5|a7|b1|b3|b5|b7] + int16x8_t ab0246 = vcombine_s16(vmovn_s32(a), vmovn_s32(b)); + int16x8_t ab1357 = vcombine_s16(vshrn_n_s32(a, 16), vshrn_n_s32(b, 16)); + // Subtract + return vreinterpretq_m128i_s16(vsubq_s16(ab0246, ab1357)); +} + +// Computes saturated pairwise sub of each argument as a 16-bit signed +// integer values a and b. +FORCE_INLINE __m128i _mm_hadds_epi16(__m128i _a, __m128i _b) +{ + int32x4_t a = vreinterpretq_s32_m128i(_a); + int32x4_t b = vreinterpretq_s32_m128i(_b); + // Interleave using vshrn/vmovn + // [a0|a2|a4|a6|b0|b2|b4|b6] + // [a1|a3|a5|a7|b1|b3|b5|b7] + int16x8_t ab0246 = vcombine_s16(vmovn_s32(a), vmovn_s32(b)); + int16x8_t ab1357 = vcombine_s16(vshrn_n_s32(a, 16), vshrn_n_s32(b, 16)); + // Saturated add + return vreinterpretq_m128i_s16(vqaddq_s16(ab0246, ab1357)); +} + +// Computes saturated pairwise difference of each argument as a 16-bit signed +// integer values a and b. +FORCE_INLINE __m128i _mm_hsubs_epi16(__m128i _a, __m128i _b) +{ + int32x4_t a = vreinterpretq_s32_m128i(_a); + int32x4_t b = vreinterpretq_s32_m128i(_b); + // Interleave using vshrn/vmovn + // [a0|a2|a4|a6|b0|b2|b4|b6] + // [a1|a3|a5|a7|b1|b3|b5|b7] + int16x8_t ab0246 = vcombine_s16(vmovn_s32(a), vmovn_s32(b)); + int16x8_t ab1357 = vcombine_s16(vshrn_n_s32(a, 16), vshrn_n_s32(b, 16)); + // Saturated subtract + return vreinterpretq_m128i_s16(vqsubq_s16(ab0246, ab1357)); +} + +// Computes pairwise add of each argument as a 32-bit signed or unsigned integer +// values a and b. +FORCE_INLINE __m128i _mm_hadd_epi32(__m128i _a, __m128i _b) +{ + int32x4_t a = vreinterpretq_s32_m128i(_a); + int32x4_t b = vreinterpretq_s32_m128i(_b); + return vreinterpretq_m128i_s32( + vcombine_s32(vpadd_s32(vget_low_s32(a), vget_high_s32(a)), + vpadd_s32(vget_low_s32(b), vget_high_s32(b)))); +} + +// Computes pairwise difference of each argument as a 32-bit signed or unsigned +// integer values a and b. +FORCE_INLINE __m128i _mm_hsub_epi32(__m128i _a, __m128i _b) +{ + int64x2_t a = vreinterpretq_s64_m128i(_a); + int64x2_t b = vreinterpretq_s64_m128i(_b); + // Interleave using vshrn/vmovn + // [a0|a2|b0|b2] + // [a1|a2|b1|b3] + int32x4_t ab02 = vcombine_s32(vmovn_s64(a), vmovn_s64(b)); + int32x4_t ab13 = vcombine_s32(vshrn_n_s64(a, 32), vshrn_n_s64(b, 32)); + // Subtract + return vreinterpretq_m128i_s32(vsubq_s32(ab02, ab13)); +} + +/* Compare operations */ + +// Compares for less than +// https://msdn.microsoft.com/en-us/library/vstudio/f330yhc8(v=vs.100).aspx +FORCE_INLINE __m128 _mm_cmplt_ps(__m128 a, __m128 b) +{ + return vreinterpretq_m128_u32( + vcltq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b))); +} + +// Compares for greater than. +// +// r0 := (a0 > b0) ? 0xffffffff : 0x0 +// r1 := (a1 > b1) ? 0xffffffff : 0x0 +// r2 := (a2 > b2) ? 0xffffffff : 0x0 +// r3 := (a3 > b3) ? 0xffffffff : 0x0 +// +// https://msdn.microsoft.com/en-us/library/vstudio/11dy102s(v=vs.100).aspx +FORCE_INLINE __m128 _mm_cmpgt_ps(__m128 a, __m128 b) +{ + return vreinterpretq_m128_u32( + vcgtq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b))); +} + +// Compares for greater than or equal. +// https://msdn.microsoft.com/en-us/library/vstudio/fs813y2t(v=vs.100).aspx +FORCE_INLINE __m128 _mm_cmpge_ps(__m128 a, __m128 b) +{ + return vreinterpretq_m128_u32( + vcgeq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b))); +} + +// Compares for less than or equal. +// +// r0 := (a0 <= b0) ? 0xffffffff : 0x0 +// r1 := (a1 <= b1) ? 0xffffffff : 0x0 +// r2 := (a2 <= b2) ? 0xffffffff : 0x0 +// r3 := (a3 <= b3) ? 0xffffffff : 0x0 +// +// https://msdn.microsoft.com/en-us/library/vstudio/1s75w83z(v=vs.100).aspx +FORCE_INLINE __m128 _mm_cmple_ps(__m128 a, __m128 b) +{ + return vreinterpretq_m128_u32( + vcleq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b))); +} + +// Compares for equality. +// https://msdn.microsoft.com/en-us/library/vstudio/36aectz5(v=vs.100).aspx +FORCE_INLINE __m128 _mm_cmpeq_ps(__m128 a, __m128 b) +{ + return vreinterpretq_m128_u32( + vceqq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b))); +} + +// Compares the 16 signed or unsigned 8-bit integers in a and the 16 signed or +// unsigned 8-bit integers in b for equality. +// https://msdn.microsoft.com/en-us/library/windows/desktop/bz5xk21a(v=vs.90).aspx +FORCE_INLINE __m128i _mm_cmpeq_epi8(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u8( + vceqq_s8(vreinterpretq_s8_m128i(a), vreinterpretq_s8_m128i(b))); +} + +// Compares the 8 signed or unsigned 16-bit integers in a and the 8 signed or +// unsigned 16-bit integers in b for equality. +// https://msdn.microsoft.com/en-us/library/2ay060te(v=vs.100).aspx +FORCE_INLINE __m128i _mm_cmpeq_epi16(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u16( + vceqq_s16(vreinterpretq_s16_m128i(a), vreinterpretq_s16_m128i(b))); +} + +// Compare packed 32-bit integers in a and b for equality, and store the results +// in dst +FORCE_INLINE __m128i _mm_cmpeq_epi32(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u32( + vceqq_s32(vreinterpretq_s32_m128i(a), vreinterpretq_s32_m128i(b))); +} + +// Compare packed 64-bit integers in a and b for equality, and store the results +// in dst +FORCE_INLINE __m128i _mm_cmpeq_epi64(__m128i a, __m128i b) +{ +#if defined(__aarch64__) + return vreinterpretq_m128i_u64( + vceqq_u64(vreinterpretq_u64_m128i(a), vreinterpretq_u64_m128i(b))); +#else + // ARMv7 lacks vceqq_u64 + // (a == b) -> (a_lo == b_lo) && (a_hi == b_hi) + uint32x4_t cmp = + vceqq_u32(vreinterpretq_u32_m128i(a), vreinterpretq_u32_m128i(b)); + uint32x4_t swapped = vrev64q_u32(cmp); + return vreinterpretq_m128i_u32(vandq_u32(cmp, swapped)); +#endif +} + +// Compares the 16 signed 8-bit integers in a and the 16 signed 8-bit integers +// in b for lesser than. +// https://msdn.microsoft.com/en-us/library/windows/desktop/9s46csht(v=vs.90).aspx +FORCE_INLINE __m128i _mm_cmplt_epi8(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u8( + vcltq_s8(vreinterpretq_s8_m128i(a), vreinterpretq_s8_m128i(b))); +} + +// Compares the 16 signed 8-bit integers in a and the 16 signed 8-bit integers +// in b for greater than. +// +// r0 := (a0 > b0) ? 0xff : 0x0 +// r1 := (a1 > b1) ? 0xff : 0x0 +// ... +// r15 := (a15 > b15) ? 0xff : 0x0 +// +// https://msdn.microsoft.com/zh-tw/library/wf45zt2b(v=vs.100).aspx +FORCE_INLINE __m128i _mm_cmpgt_epi8(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u8( + vcgtq_s8(vreinterpretq_s8_m128i(a), vreinterpretq_s8_m128i(b))); +} + +// Compares the 8 signed 16-bit integers in a and the 8 signed 16-bit integers +// in b for less than. +// +// r0 := (a0 < b0) ? 0xffff : 0x0 +// r1 := (a1 < b1) ? 0xffff : 0x0 +// ... +// r7 := (a7 < b7) ? 0xffff : 0x0 +// +// https://technet.microsoft.com/en-us/library/t863edb2(v=vs.100).aspx +FORCE_INLINE __m128i _mm_cmplt_epi16(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u16( + vcltq_s16(vreinterpretq_s16_m128i(a), vreinterpretq_s16_m128i(b))); +} + +// Compares the 8 signed 16-bit integers in a and the 8 signed 16-bit integers +// in b for greater than. +// +// r0 := (a0 > b0) ? 0xffff : 0x0 +// r1 := (a1 > b1) ? 0xffff : 0x0 +// ... +// r7 := (a7 > b7) ? 0xffff : 0x0 +// +// https://technet.microsoft.com/en-us/library/xd43yfsa(v=vs.100).aspx +FORCE_INLINE __m128i _mm_cmpgt_epi16(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u16( + vcgtq_s16(vreinterpretq_s16_m128i(a), vreinterpretq_s16_m128i(b))); +} + + +// Compares the 4 signed 32-bit integers in a and the 4 signed 32-bit integers +// in b for less than. +// https://msdn.microsoft.com/en-us/library/vstudio/4ak0bf5d(v=vs.100).aspx +FORCE_INLINE __m128i _mm_cmplt_epi32(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u32( + vcltq_s32(vreinterpretq_s32_m128i(a), vreinterpretq_s32_m128i(b))); +} + +// Compares the 4 signed 32-bit integers in a and the 4 signed 32-bit integers +// in b for greater than. +// https://msdn.microsoft.com/en-us/library/vstudio/1s9f2z0y(v=vs.100).aspx +FORCE_INLINE __m128i _mm_cmpgt_epi32(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u32( + vcgtq_s32(vreinterpretq_s32_m128i(a), vreinterpretq_s32_m128i(b))); +} + +// Compares the 2 signed 64-bit integers in a and the 2 signed 64-bit integers +// in b for greater than. +FORCE_INLINE __m128i _mm_cmpgt_epi64(__m128i a, __m128i b) +{ +#if defined(__aarch64__) + return vreinterpretq_m128i_u64( + vcgtq_s64(vreinterpretq_s64_m128i(a), vreinterpretq_s64_m128i(b))); +#else + // ARMv7 lacks vcgtq_s64. + // This is based off of Clang's SSE2 polyfill: + // (a > b) -> ((a_hi > b_hi) || (a_lo > b_lo && a_hi == b_hi)) + + // Mask the sign bit out since we need a signed AND an unsigned comparison + // and it is ugly to try and split them. + int32x4_t mask = vreinterpretq_s32_s64(vdupq_n_s64(0x80000000ull)); + int32x4_t a_mask = veorq_s32(vreinterpretq_s32_m128i(a), mask); + int32x4_t b_mask = veorq_s32(vreinterpretq_s32_m128i(b), mask); + // Check if a > b + int64x2_t greater = vreinterpretq_s64_u32(vcgtq_s32(a_mask, b_mask)); + // Copy upper mask to lower mask + // a_hi > b_hi + int64x2_t gt_hi = vshrq_n_s64(greater, 63); + // Copy lower mask to upper mask + // a_lo > b_lo + int64x2_t gt_lo = vsliq_n_s64(greater, greater, 32); + // Compare for equality + int64x2_t equal = vreinterpretq_s64_u32(vceqq_s32(a_mask, b_mask)); + // Copy upper mask to lower mask + // a_hi == b_hi + int64x2_t eq_hi = vshrq_n_s64(equal, 63); + // a_hi > b_hi || (a_lo > b_lo && a_hi == b_hi) + int64x2_t ret = vorrq_s64(gt_hi, vandq_s64(gt_lo, eq_hi)); + return vreinterpretq_m128i_s64(ret); +#endif +} + +// Compares the four 32-bit floats in a and b to check if any values are NaN. +// Ordered compare between each value returns true for "orderable" and false for +// "not orderable" (NaN). +// https://msdn.microsoft.com/en-us/library/vstudio/0h9w00fx(v=vs.100).aspx see +// also: +// http://stackoverflow.com/questions/8627331/what-does-ordered-unordered-comparison-mean +// http://stackoverflow.com/questions/29349621/neon-isnanval-intrinsics +FORCE_INLINE __m128 _mm_cmpord_ps(__m128 a, __m128 b) +{ + // Note: NEON does not have ordered compare builtin + // Need to compare a eq a and b eq b to check for NaN + // Do AND of results to get final + uint32x4_t ceqaa = + vceqq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(a)); + uint32x4_t ceqbb = + vceqq_f32(vreinterpretq_f32_m128(b), vreinterpretq_f32_m128(b)); + return vreinterpretq_m128_u32(vandq_u32(ceqaa, ceqbb)); +} + +// Compares the lower single-precision floating point scalar values of a and b +// using a less than operation. : +// https://msdn.microsoft.com/en-us/library/2kwe606b(v=vs.90).aspx Important +// note!! The documentation on MSDN is incorrect! If either of the values is a +// NAN the docs say you will get a one, but in fact, it will return a zero!! +FORCE_INLINE int _mm_comilt_ss(__m128 a, __m128 b) +{ + uint32x4_t a_not_nan = + vceqq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(a)); + uint32x4_t b_not_nan = + vceqq_f32(vreinterpretq_f32_m128(b), vreinterpretq_f32_m128(b)); + uint32x4_t a_and_b_not_nan = vandq_u32(a_not_nan, b_not_nan); + uint32x4_t a_lt_b = + vcltq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b)); + return (vgetq_lane_u32(vandq_u32(a_and_b_not_nan, a_lt_b), 0) != 0) ? 1 : 0; +} + +// Compares the lower single-precision floating point scalar values of a and b +// using a greater than operation. : +// https://msdn.microsoft.com/en-us/library/b0738e0t(v=vs.100).aspx +FORCE_INLINE int _mm_comigt_ss(__m128 a, __m128 b) +{ + // return vgetq_lane_u32(vcgtq_f32(vreinterpretq_f32_m128(a), + // vreinterpretq_f32_m128(b)), 0); + uint32x4_t a_not_nan = + vceqq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(a)); + uint32x4_t b_not_nan = + vceqq_f32(vreinterpretq_f32_m128(b), vreinterpretq_f32_m128(b)); + uint32x4_t a_and_b_not_nan = vandq_u32(a_not_nan, b_not_nan); + uint32x4_t a_gt_b = + vcgtq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b)); + return (vgetq_lane_u32(vandq_u32(a_and_b_not_nan, a_gt_b), 0) != 0) ? 1 : 0; +} + +// Compares the lower single-precision floating point scalar values of a and b +// using a less than or equal operation. : +// https://msdn.microsoft.com/en-us/library/1w4t7c57(v=vs.90).aspx +FORCE_INLINE int _mm_comile_ss(__m128 a, __m128 b) +{ + // return vgetq_lane_u32(vcleq_f32(vreinterpretq_f32_m128(a), + // vreinterpretq_f32_m128(b)), 0); + uint32x4_t a_not_nan = + vceqq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(a)); + uint32x4_t b_not_nan = + vceqq_f32(vreinterpretq_f32_m128(b), vreinterpretq_f32_m128(b)); + uint32x4_t a_and_b_not_nan = vandq_u32(a_not_nan, b_not_nan); + uint32x4_t a_le_b = + vcleq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b)); + return (vgetq_lane_u32(vandq_u32(a_and_b_not_nan, a_le_b), 0) != 0) ? 1 : 0; +} + +// Compares the lower single-precision floating point scalar values of a and b +// using a greater than or equal operation. : +// https://msdn.microsoft.com/en-us/library/8t80des6(v=vs.100).aspx +FORCE_INLINE int _mm_comige_ss(__m128 a, __m128 b) +{ + // return vgetq_lane_u32(vcgeq_f32(vreinterpretq_f32_m128(a), + // vreinterpretq_f32_m128(b)), 0); + uint32x4_t a_not_nan = + vceqq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(a)); + uint32x4_t b_not_nan = + vceqq_f32(vreinterpretq_f32_m128(b), vreinterpretq_f32_m128(b)); + uint32x4_t a_and_b_not_nan = vandq_u32(a_not_nan, b_not_nan); + uint32x4_t a_ge_b = + vcgeq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b)); + return (vgetq_lane_u32(vandq_u32(a_and_b_not_nan, a_ge_b), 0) != 0) ? 1 : 0; +} + +// Compares the lower single-precision floating point scalar values of a and b +// using an equality operation. : +// https://msdn.microsoft.com/en-us/library/93yx2h2b(v=vs.100).aspx +FORCE_INLINE int _mm_comieq_ss(__m128 a, __m128 b) +{ + // return vgetq_lane_u32(vceqq_f32(vreinterpretq_f32_m128(a), + // vreinterpretq_f32_m128(b)), 0); + uint32x4_t a_not_nan = + vceqq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(a)); + uint32x4_t b_not_nan = + vceqq_f32(vreinterpretq_f32_m128(b), vreinterpretq_f32_m128(b)); + uint32x4_t a_and_b_not_nan = vandq_u32(a_not_nan, b_not_nan); + uint32x4_t a_eq_b = + vceqq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b)); + return (vgetq_lane_u32(vandq_u32(a_and_b_not_nan, a_eq_b), 0) != 0) ? 1 : 0; +} + +// Compares the lower single-precision floating point scalar values of a and b +// using an inequality operation. : +// https://msdn.microsoft.com/en-us/library/bafh5e0a(v=vs.90).aspx +FORCE_INLINE int _mm_comineq_ss(__m128 a, __m128 b) +{ + // return !vgetq_lane_u32(vceqq_f32(vreinterpretq_f32_m128(a), + // vreinterpretq_f32_m128(b)), 0); + uint32x4_t a_not_nan = + vceqq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(a)); + uint32x4_t b_not_nan = + vceqq_f32(vreinterpretq_f32_m128(b), vreinterpretq_f32_m128(b)); + uint32x4_t a_or_b_nan = vmvnq_u32(vandq_u32(a_not_nan, b_not_nan)); + uint32x4_t a_neq_b = vmvnq_u32( + vceqq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b))); + return (vgetq_lane_u32(vorrq_u32(a_or_b_nan, a_neq_b), 0) != 0) ? 1 : 0; +} + +// according to the documentation, these intrinsics behave the same as the +// non-'u' versions. We'll just alias them here. +#define _mm_ucomilt_ss _mm_comilt_ss +#define _mm_ucomile_ss _mm_comile_ss +#define _mm_ucomigt_ss _mm_comigt_ss +#define _mm_ucomige_ss _mm_comige_ss +#define _mm_ucomieq_ss _mm_comieq_ss +#define _mm_ucomineq_ss _mm_comineq_ss + +/* Conversions */ + +// Converts the four single-precision, floating-point values of a to signed +// 32-bit integer values using truncate. +// https://msdn.microsoft.com/en-us/library/vstudio/1h005y6x(v=vs.100).aspx +FORCE_INLINE __m128i _mm_cvttps_epi32(__m128 a) +{ + return vreinterpretq_m128i_s32(vcvtq_s32_f32(vreinterpretq_f32_m128(a))); +} + +// Converts the four signed 32-bit integer values of a to single-precision, +// floating-point values +// https://msdn.microsoft.com/en-us/library/vstudio/36bwxcx5(v=vs.100).aspx +FORCE_INLINE __m128 _mm_cvtepi32_ps(__m128i a) +{ + return vreinterpretq_m128_f32(vcvtq_f32_s32(vreinterpretq_s32_m128i(a))); +} + +// Converts the four unsigned 8-bit integers in the lower 16 bits to four +// unsigned 32-bit integers. +FORCE_INLINE __m128i _mm_cvtepu8_epi16(__m128i a) +{ + uint8x16_t u8x16 = vreinterpretq_u8_m128i(a); /* xxxx xxxx xxxx DCBA */ + uint16x8_t u16x8 = vmovl_u8(vget_low_u8(u8x16)); /* 0x0x 0x0x 0D0C 0B0A */ + return vreinterpretq_m128i_u16(u16x8); +} + +// Converts the four unsigned 8-bit integers in the lower 32 bits to four +// unsigned 32-bit integers. +// https://msdn.microsoft.com/en-us/library/bb531467%28v=vs.100%29.aspx +FORCE_INLINE __m128i _mm_cvtepu8_epi32(__m128i a) +{ + uint8x16_t u8x16 = vreinterpretq_u8_m128i(a); /* xxxx xxxx xxxx DCBA */ + uint16x8_t u16x8 = vmovl_u8(vget_low_u8(u8x16)); /* 0x0x 0x0x 0D0C 0B0A */ + uint32x4_t u32x4 = vmovl_u16(vget_low_u16(u16x8)); /* 000D 000C 000B 000A */ + return vreinterpretq_m128i_u32(u32x4); +} + +// Converts the two unsigned 8-bit integers in the lower 16 bits to two +// unsigned 64-bit integers. +FORCE_INLINE __m128i _mm_cvtepu8_epi64(__m128i a) +{ + uint8x16_t u8x16 = vreinterpretq_u8_m128i(a); /* xxxx xxxx xxxx xxBA */ + uint16x8_t u16x8 = vmovl_u8(vget_low_u8(u8x16)); /* 0x0x 0x0x 0x0x 0B0A */ + uint32x4_t u32x4 = vmovl_u16(vget_low_u16(u16x8)); /* 000x 000x 000B 000A */ + uint64x2_t u64x2 = vmovl_u32(vget_low_u32(u32x4)); /* 0000 000B 0000 000A */ + return vreinterpretq_m128i_u64(u64x2); +} + +// Converts the four unsigned 8-bit integers in the lower 16 bits to four +// unsigned 32-bit integers. +FORCE_INLINE __m128i _mm_cvtepi8_epi16(__m128i a) +{ + int8x16_t s8x16 = vreinterpretq_s8_m128i(a); /* xxxx xxxx xxxx DCBA */ + int16x8_t s16x8 = vmovl_s8(vget_low_s8(s8x16)); /* 0x0x 0x0x 0D0C 0B0A */ + return vreinterpretq_m128i_s16(s16x8); +} + +// Converts the four unsigned 8-bit integers in the lower 32 bits to four +// unsigned 32-bit integers. +FORCE_INLINE __m128i _mm_cvtepi8_epi32(__m128i a) +{ + int8x16_t s8x16 = vreinterpretq_s8_m128i(a); /* xxxx xxxx xxxx DCBA */ + int16x8_t s16x8 = vmovl_s8(vget_low_s8(s8x16)); /* 0x0x 0x0x 0D0C 0B0A */ + int32x4_t s32x4 = vmovl_s16(vget_low_s16(s16x8)); /* 000D 000C 000B 000A */ + return vreinterpretq_m128i_s32(s32x4); +} + +// Converts the two signed 8-bit integers in the lower 32 bits to four +// signed 64-bit integers. +FORCE_INLINE __m128i _mm_cvtepi8_epi64(__m128i a) +{ + int8x16_t s8x16 = vreinterpretq_s8_m128i(a); /* xxxx xxxx xxxx xxBA */ + int16x8_t s16x8 = vmovl_s8(vget_low_s8(s8x16)); /* 0x0x 0x0x 0x0x 0B0A */ + int32x4_t s32x4 = vmovl_s16(vget_low_s16(s16x8)); /* 000x 000x 000B 000A */ + int64x2_t s64x2 = vmovl_s32(vget_low_s32(s32x4)); /* 0000 000B 0000 000A */ + return vreinterpretq_m128i_s64(s64x2); +} + +// Converts the four signed 16-bit integers in the lower 64 bits to four signed +// 32-bit integers. +FORCE_INLINE __m128i _mm_cvtepi16_epi32(__m128i a) +{ + return vreinterpretq_m128i_s32( + vmovl_s16(vget_low_s16(vreinterpretq_s16_m128i(a)))); +} + +// Converts the two signed 16-bit integers in the lower 32 bits two signed +// 32-bit integers. +FORCE_INLINE __m128i _mm_cvtepi16_epi64(__m128i a) +{ + int16x8_t s16x8 = vreinterpretq_s16_m128i(a); /* xxxx xxxx xxxx 0B0A */ + int32x4_t s32x4 = vmovl_s16(vget_low_s16(s16x8)); /* 000x 000x 000B 000A */ + int64x2_t s64x2 = vmovl_s32(vget_low_s32(s32x4)); /* 0000 000B 0000 000A */ + return vreinterpretq_m128i_s64(s64x2); +} + +// Converts the four unsigned 16-bit integers in the lower 64 bits to four +// unsigned 32-bit integers. +FORCE_INLINE __m128i _mm_cvtepu16_epi32(__m128i a) +{ + return vreinterpretq_m128i_u32( + vmovl_u16(vget_low_u16(vreinterpretq_u16_m128i(a)))); +} + +// Converts the two unsigned 16-bit integers in the lower 32 bits to two +// unsigned 64-bit integers. +FORCE_INLINE __m128i _mm_cvtepu16_epi64(__m128i a) +{ + uint16x8_t u16x8 = vreinterpretq_u16_m128i(a); /* xxxx xxxx xxxx 0B0A */ + uint32x4_t u32x4 = vmovl_u16(vget_low_u16(u16x8)); /* 000x 000x 000B 000A */ + uint64x2_t u64x2 = vmovl_u32(vget_low_u32(u32x4)); /* 0000 000B 0000 000A */ + return vreinterpretq_m128i_u64(u64x2); +} + +// Converts the two unsigned 32-bit integers in the lower 64 bits to two +// unsigned 64-bit integers. +FORCE_INLINE __m128i _mm_cvtepu32_epi64(__m128i a) +{ + return vreinterpretq_m128i_u64( + vmovl_u32(vget_low_u32(vreinterpretq_u32_m128i(a)))); +} + +// Converts the two signed 32-bit integers in the lower 64 bits to two signed +// 64-bit integers. +FORCE_INLINE __m128i _mm_cvtepi32_epi64(__m128i a) +{ + return vreinterpretq_m128i_s64( + vmovl_s32(vget_low_s32(vreinterpretq_s32_m128i(a)))); +} + +// Converts the four single-precision, floating-point values of a to signed +// 32-bit integer values. +// +// r0 := (int) a0 +// r1 := (int) a1 +// r2 := (int) a2 +// r3 := (int) a3 +// +// https://msdn.microsoft.com/en-us/library/vstudio/xdc42k5e(v=vs.100).aspx +// *NOTE*. The default rounding mode on SSE is 'round to even', which ARMv7-A +// does not support! It is supported on ARMv8-A however. +FORCE_INLINE __m128i _mm_cvtps_epi32(__m128 a) +{ +#if defined(__aarch64__) + return vreinterpretq_m128i_s32(vcvtnq_s32_f32(a)); +#else + uint32x4_t signmask = vdupq_n_u32(0x80000000); + float32x4_t half = vbslq_f32(signmask, vreinterpretq_f32_m128(a), + vdupq_n_f32(0.5f)); /* +/- 0.5 */ + int32x4_t r_normal = vcvtq_s32_f32(vaddq_f32( + vreinterpretq_f32_m128(a), half)); /* round to integer: [a + 0.5]*/ + int32x4_t r_trunc = + vcvtq_s32_f32(vreinterpretq_f32_m128(a)); /* truncate to integer: [a] */ + int32x4_t plusone = vreinterpretq_s32_u32(vshrq_n_u32( + vreinterpretq_u32_s32(vnegq_s32(r_trunc)), 31)); /* 1 or 0 */ + int32x4_t r_even = vbicq_s32(vaddq_s32(r_trunc, plusone), + vdupq_n_s32(1)); /* ([a] + {0,1}) & ~1 */ + float32x4_t delta = vsubq_f32( + vreinterpretq_f32_m128(a), + vcvtq_f32_s32(r_trunc)); /* compute delta: delta = (a - [a]) */ + uint32x4_t is_delta_half = vceqq_f32(delta, half); /* delta == +/- 0.5 */ + return vreinterpretq_m128i_s32(vbslq_s32(is_delta_half, r_even, r_normal)); +#endif +} + +// Moves the least significant 32 bits of a to a 32-bit integer. +// https://msdn.microsoft.com/en-us/library/5z7a9642%28v=vs.90%29.aspx +FORCE_INLINE int _mm_cvtsi128_si32(__m128i a) +{ + return vgetq_lane_s32(vreinterpretq_s32_m128i(a), 0); +} + +// Extracts the low order 64-bit integer from the parameter. +// https://msdn.microsoft.com/en-us/library/bb531384(v=vs.120).aspx +FORCE_INLINE uint64_t _mm_cvtsi128_si64(__m128i a) +{ + return vgetq_lane_s64(vreinterpretq_s64_m128i(a), 0); +} + +// Moves 32-bit integer a to the least significant 32 bits of an __m128 object, +// zero extending the upper bits. +// +// r0 := a +// r1 := 0x0 +// r2 := 0x0 +// r3 := 0x0 +// +// https://msdn.microsoft.com/en-us/library/ct3539ha%28v=vs.90%29.aspx +FORCE_INLINE __m128i _mm_cvtsi32_si128(int a) +{ + return vreinterpretq_m128i_s32(vsetq_lane_s32(a, vdupq_n_s32(0), 0)); +} + +// Moves 64-bit integer a to the least significant 64 bits of an __m128 object, +// zero extending the upper bits. +// +// r0 := a +// r1 := 0x0 +FORCE_INLINE __m128i _mm_cvtsi64_si128(int64_t a) +{ + return vreinterpretq_m128i_s64(vsetq_lane_s64(a, vdupq_n_s64(0), 0)); +} + +// Applies a type cast to reinterpret four 32-bit floating point values passed +// in as a 128-bit parameter as packed 32-bit integers. +// https://msdn.microsoft.com/en-us/library/bb514099.aspx +FORCE_INLINE __m128i _mm_castps_si128(__m128 a) +{ + return vreinterpretq_m128i_s32(vreinterpretq_s32_m128(a)); +} + +// Applies a type cast to reinterpret four 32-bit integers passed in as a +// 128-bit parameter as packed 32-bit floating point values. +// https://msdn.microsoft.com/en-us/library/bb514029.aspx +FORCE_INLINE __m128 _mm_castsi128_ps(__m128i a) +{ + return vreinterpretq_m128_s32(vreinterpretq_s32_m128i(a)); +} + +// Loads 128-bit value. : +// https://msdn.microsoft.com/en-us/library/atzzad1h(v=vs.80).aspx +FORCE_INLINE __m128i _mm_load_si128(const __m128i *p) +{ + return vreinterpretq_m128i_s32(vld1q_s32((const int32_t *) p)); +} + +// Loads 128-bit value. : +// https://msdn.microsoft.com/zh-cn/library/f4k12ae8(v=vs.90).aspx +FORCE_INLINE __m128i _mm_loadu_si128(const __m128i *p) +{ + return vreinterpretq_m128i_s32(vld1q_s32((const int32_t *) p)); +} + +// _mm_lddqu_si128 functions the same as _mm_loadu_si128. +#define _mm_lddqu_si128 _mm_loadu_si128 + +/* Miscellaneous Operations */ + +// Shifts the 8 signed 16-bit integers in a right by count bits while shifting +// in the sign bit. +// +// r0 := a0 >> count +// r1 := a1 >> count +// ... +// r7 := a7 >> count +// +// https://msdn.microsoft.com/en-us/library/3c9997dk(v%3dvs.90).aspx +FORCE_INLINE __m128i _mm_sra_epi16(__m128i a, __m128i count) +{ + int64_t c = (int64_t) vget_low_s64((int64x2_t) count); + if (c > 15) + return _mm_cmplt_epi16(a, _mm_setzero_si128()); + return vreinterpretq_m128i_s16(vshlq_s16((int16x8_t) a, vdupq_n_s16(-c))); +} + +// Shifts the 4 signed 32-bit integers in a right by count bits while shifting +// in the sign bit. +// +// r0 := a0 >> count +// r1 := a1 >> count +// r2 := a2 >> count +// r3 := a3 >> count +// +// https://msdn.microsoft.com/en-us/library/ce40009e(v%3dvs.100).aspx +FORCE_INLINE __m128i _mm_sra_epi32(__m128i a, __m128i count) +{ + int64_t c = (int64_t) vget_low_s64((int64x2_t) count); + if (c > 31) + return _mm_cmplt_epi32(a, _mm_setzero_si128()); + return vreinterpretq_m128i_s32(vshlq_s32((int32x4_t) a, vdupq_n_s32(-c))); +} + +// Packs the 16 signed 16-bit integers from a and b into 8-bit integers and +// saturates. +// https://msdn.microsoft.com/en-us/library/k4y4f7w5%28v=vs.90%29.aspx +FORCE_INLINE __m128i _mm_packs_epi16(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s8( + vcombine_s8(vqmovn_s16(vreinterpretq_s16_m128i(a)), + vqmovn_s16(vreinterpretq_s16_m128i(b)))); +} + +// Packs the 16 signed 16 - bit integers from a and b into 8 - bit unsigned +// integers and saturates. +// +// r0 := UnsignedSaturate(a0) +// r1 := UnsignedSaturate(a1) +// ... +// r7 := UnsignedSaturate(a7) +// r8 := UnsignedSaturate(b0) +// r9 := UnsignedSaturate(b1) +// ... +// r15 := UnsignedSaturate(b7) +// +// https://msdn.microsoft.com/en-us/library/07ad1wx4(v=vs.100).aspx +FORCE_INLINE __m128i _mm_packus_epi16(const __m128i a, const __m128i b) +{ + return vreinterpretq_m128i_u8( + vcombine_u8(vqmovun_s16(vreinterpretq_s16_m128i(a)), + vqmovun_s16(vreinterpretq_s16_m128i(b)))); +} + +// Packs the 8 signed 32-bit integers from a and b into signed 16-bit integers +// and saturates. +// +// r0 := SignedSaturate(a0) +// r1 := SignedSaturate(a1) +// r2 := SignedSaturate(a2) +// r3 := SignedSaturate(a3) +// r4 := SignedSaturate(b0) +// r5 := SignedSaturate(b1) +// r6 := SignedSaturate(b2) +// r7 := SignedSaturate(b3) +// +// https://msdn.microsoft.com/en-us/library/393t56f9%28v=vs.90%29.aspx +FORCE_INLINE __m128i _mm_packs_epi32(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s16( + vcombine_s16(vqmovn_s32(vreinterpretq_s32_m128i(a)), + vqmovn_s32(vreinterpretq_s32_m128i(b)))); +} + +// Packs the 8 unsigned 32-bit integers from a and b into unsigned 16-bit +// integers and saturates. +// +// r0 := UnsignedSaturate(a0) +// r1 := UnsignedSaturate(a1) +// r2 := UnsignedSaturate(a2) +// r3 := UnsignedSaturate(a3) +// r4 := UnsignedSaturate(b0) +// r5 := UnsignedSaturate(b1) +// r6 := UnsignedSaturate(b2) +// r7 := UnsignedSaturate(b3) +FORCE_INLINE __m128i _mm_packus_epi32(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u16( + vcombine_u16(vqmovn_u32(vreinterpretq_u32_m128i(a)), + vqmovn_u32(vreinterpretq_u32_m128i(b)))); +} + +// Interleaves the lower 8 signed or unsigned 8-bit integers in a with the lower +// 8 signed or unsigned 8-bit integers in b. +// +// r0 := a0 +// r1 := b0 +// r2 := a1 +// r3 := b1 +// ... +// r14 := a7 +// r15 := b7 +// +// https://msdn.microsoft.com/en-us/library/xf7k860c%28v=vs.90%29.aspx +FORCE_INLINE __m128i _mm_unpacklo_epi8(__m128i a, __m128i b) +{ +#if defined(__aarch64__) + return vreinterpretq_m128i_s8( + vzip1q_s8(vreinterpretq_s8_m128i(a), vreinterpretq_s8_m128i(b))); +#else + int8x8_t a1 = vreinterpret_s8_s16(vget_low_s16(vreinterpretq_s16_m128i(a))); + int8x8_t b1 = vreinterpret_s8_s16(vget_low_s16(vreinterpretq_s16_m128i(b))); + int8x8x2_t result = vzip_s8(a1, b1); + return vreinterpretq_m128i_s8(vcombine_s8(result.val[0], result.val[1])); +#endif +} + +// Interleaves the lower 4 signed or unsigned 16-bit integers in a with the +// lower 4 signed or unsigned 16-bit integers in b. +// +// r0 := a0 +// r1 := b0 +// r2 := a1 +// r3 := b1 +// r4 := a2 +// r5 := b2 +// r6 := a3 +// r7 := b3 +// +// https://msdn.microsoft.com/en-us/library/btxb17bw%28v=vs.90%29.aspx +FORCE_INLINE __m128i _mm_unpacklo_epi16(__m128i a, __m128i b) +{ +#if defined(__aarch64__) + return vreinterpretq_m128i_s16( + vzip1q_s16(vreinterpretq_s16_m128i(a), vreinterpretq_s16_m128i(b))); +#else + int16x4_t a1 = vget_low_s16(vreinterpretq_s16_m128i(a)); + int16x4_t b1 = vget_low_s16(vreinterpretq_s16_m128i(b)); + int16x4x2_t result = vzip_s16(a1, b1); + return vreinterpretq_m128i_s16(vcombine_s16(result.val[0], result.val[1])); +#endif +} + +// Interleaves the lower 2 signed or unsigned 32 - bit integers in a with the +// lower 2 signed or unsigned 32 - bit integers in b. +// +// r0 := a0 +// r1 := b0 +// r2 := a1 +// r3 := b1 +// +// https://msdn.microsoft.com/en-us/library/x8atst9d(v=vs.100).aspx +FORCE_INLINE __m128i _mm_unpacklo_epi32(__m128i a, __m128i b) +{ +#if defined(__aarch64__) + return vreinterpretq_m128i_s32( + vzip1q_s32(vreinterpretq_s32_m128i(a), vreinterpretq_s32_m128i(b))); +#else + int32x2_t a1 = vget_low_s32(vreinterpretq_s32_m128i(a)); + int32x2_t b1 = vget_low_s32(vreinterpretq_s32_m128i(b)); + int32x2x2_t result = vzip_s32(a1, b1); + return vreinterpretq_m128i_s32(vcombine_s32(result.val[0], result.val[1])); +#endif +} + +FORCE_INLINE __m128i _mm_unpacklo_epi64(__m128i a, __m128i b) +{ + int64x1_t a_l = vget_low_s64(vreinterpretq_s64_m128i(a)); + int64x1_t b_l = vget_low_s64(vreinterpretq_s64_m128i(b)); + return vreinterpretq_m128i_s64(vcombine_s64(a_l, b_l)); +} + +// Selects and interleaves the lower two single-precision, floating-point values +// from a and b. +// +// r0 := a0 +// r1 := b0 +// r2 := a1 +// r3 := b1 +// +// https://msdn.microsoft.com/en-us/library/25st103b%28v=vs.90%29.aspx +FORCE_INLINE __m128 _mm_unpacklo_ps(__m128 a, __m128 b) +{ +#if defined(__aarch64__) + return vreinterpretq_m128_f32( + vzip1q_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b))); +#else + float32x2_t a1 = vget_low_f32(vreinterpretq_f32_m128(a)); + float32x2_t b1 = vget_low_f32(vreinterpretq_f32_m128(b)); + float32x2x2_t result = vzip_f32(a1, b1); + return vreinterpretq_m128_f32(vcombine_f32(result.val[0], result.val[1])); +#endif +} + +// Selects and interleaves the upper two single-precision, floating-point values +// from a and b. +// +// r0 := a2 +// r1 := b2 +// r2 := a3 +// r3 := b3 +// +// https://msdn.microsoft.com/en-us/library/skccxx7d%28v=vs.90%29.aspx +FORCE_INLINE __m128 _mm_unpackhi_ps(__m128 a, __m128 b) +{ +#if defined(__aarch64__) + return vreinterpretq_m128_f32( + vzip2q_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b))); +#else + float32x2_t a1 = vget_high_f32(vreinterpretq_f32_m128(a)); + float32x2_t b1 = vget_high_f32(vreinterpretq_f32_m128(b)); + float32x2x2_t result = vzip_f32(a1, b1); + return vreinterpretq_m128_f32(vcombine_f32(result.val[0], result.val[1])); +#endif +} + +// Interleaves the upper 8 signed or unsigned 8-bit integers in a with the upper +// 8 signed or unsigned 8-bit integers in b. +// +// r0 := a8 +// r1 := b8 +// r2 := a9 +// r3 := b9 +// ... +// r14 := a15 +// r15 := b15 +// +// https://msdn.microsoft.com/en-us/library/t5h7783k(v=vs.100).aspx +FORCE_INLINE __m128i _mm_unpackhi_epi8(__m128i a, __m128i b) +{ +#if defined(__aarch64__) + return vreinterpretq_m128i_s8( + vzip2q_s8(vreinterpretq_s8_m128i(a), vreinterpretq_s8_m128i(b))); +#else + int8x8_t a1 = + vreinterpret_s8_s16(vget_high_s16(vreinterpretq_s16_m128i(a))); + int8x8_t b1 = + vreinterpret_s8_s16(vget_high_s16(vreinterpretq_s16_m128i(b))); + int8x8x2_t result = vzip_s8(a1, b1); + return vreinterpretq_m128i_s8(vcombine_s8(result.val[0], result.val[1])); +#endif +} + +// Interleaves the upper 4 signed or unsigned 16-bit integers in a with the +// upper 4 signed or unsigned 16-bit integers in b. +// +// r0 := a4 +// r1 := b4 +// r2 := a5 +// r3 := b5 +// r4 := a6 +// r5 := b6 +// r6 := a7 +// r7 := b7 +// +// https://msdn.microsoft.com/en-us/library/03196cz7(v=vs.100).aspx +FORCE_INLINE __m128i _mm_unpackhi_epi16(__m128i a, __m128i b) +{ +#if defined(__aarch64__) + return vreinterpretq_m128i_s16( + vzip2q_s16(vreinterpretq_s16_m128i(a), vreinterpretq_s16_m128i(b))); +#else + int16x4_t a1 = vget_high_s16(vreinterpretq_s16_m128i(a)); + int16x4_t b1 = vget_high_s16(vreinterpretq_s16_m128i(b)); + int16x4x2_t result = vzip_s16(a1, b1); + return vreinterpretq_m128i_s16(vcombine_s16(result.val[0], result.val[1])); +#endif +} + +// Interleaves the upper 2 signed or unsigned 32-bit integers in a with the +// upper 2 signed or unsigned 32-bit integers in b. +// https://msdn.microsoft.com/en-us/library/65sa7cbs(v=vs.100).aspx +FORCE_INLINE __m128i _mm_unpackhi_epi32(__m128i a, __m128i b) +{ +#if defined(__aarch64__) + return vreinterpretq_m128i_s32( + vzip2q_s32(vreinterpretq_s32_m128i(a), vreinterpretq_s32_m128i(b))); +#else + int32x2_t a1 = vget_high_s32(vreinterpretq_s32_m128i(a)); + int32x2_t b1 = vget_high_s32(vreinterpretq_s32_m128i(b)); + int32x2x2_t result = vzip_s32(a1, b1); + return vreinterpretq_m128i_s32(vcombine_s32(result.val[0], result.val[1])); +#endif +} + +// Interleaves the upper signed or unsigned 64-bit integer in a with the +// upper signed or unsigned 64-bit integer in b. +// +// r0 := a1 +// r1 := b1 +FORCE_INLINE __m128i _mm_unpackhi_epi64(__m128i a, __m128i b) +{ + int64x1_t a_h = vget_high_s64(vreinterpretq_s64_m128i(a)); + int64x1_t b_h = vget_high_s64(vreinterpretq_s64_m128i(b)); + return vreinterpretq_m128i_s64(vcombine_s64(a_h, b_h)); +} + +// Horizontally compute the minimum amongst the packed unsigned 16-bit integers +// in a, store the minimum and index in dst, and zero the remaining bits in dst. +// +// index[2:0] := 0 +// min[15:0] := a[15:0] +// FOR j := 0 to 7 +// i := j*16 +// IF a[i+15:i] < min[15:0] +// index[2:0] := j +// min[15:0] := a[i+15:i] +// FI +// ENDFOR +// dst[15:0] := min[15:0] +// dst[18:16] := index[2:0] +// dst[127:19] := 0 +// +// https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_minpos_epu16&expand=3789 +FORCE_INLINE __m128i _mm_minpos_epu16(__m128i a) +{ + __m128i dst; + uint16_t min, idx = 0; + // Find the minimum value +#if defined(__aarch64__) + min = vminvq_u16(vreinterpretq_u16_m128i(a)); +#else + __m64i tmp; + tmp = vreinterpret_m64i_u16( + vmin_u16(vget_low_u16(vreinterpretq_u16_m128i(a)), + vget_high_u16(vreinterpretq_u16_m128i(a)))); + tmp = vreinterpret_m64i_u16( + vpmin_u16(vreinterpret_u16_m64i(tmp), vreinterpret_u16_m64i(tmp))); + tmp = vreinterpret_m64i_u16( + vpmin_u16(vreinterpret_u16_m64i(tmp), vreinterpret_u16_m64i(tmp))); + min = vget_lane_u16(vreinterpret_u16_m64i(tmp), 0); +#endif + // Get the index of the minimum value + int i; + for (i = 0; i < 8; i++) { + if (min == vgetq_lane_u16(vreinterpretq_u16_m128i(a), 0)) { + idx = (uint16_t) i; + break; + } + a = _mm_srli_si128(a, 2); + } + // Generate result + dst = _mm_setzero_si128(); + dst = vreinterpretq_m128i_u16( + vsetq_lane_u16(min, vreinterpretq_u16_m128i(dst), 0)); + dst = vreinterpretq_m128i_u16( + vsetq_lane_u16(idx, vreinterpretq_u16_m128i(dst), 1)); + return dst; +} + +// shift to right +// https://msdn.microsoft.com/en-us/library/bb514041(v=vs.120).aspx +// http://blog.csdn.net/hemmingway/article/details/44828303 +// Clang requires a macro here, as it is extremely picky about c being a +// literal. +//#define _mm_alignr_epi8(a, b, c) \ + ((__m128i) vextq_s8((int8x16_t)(b), (int8x16_t)(a), (c))) + +#define _mm_alignr_epi8(a, b, c) \ + (vreinterpretq_m128i_s8(vextq_s8(vreinterpretq_s8_m128i(b), vreinterpretq_s8_m128i(a), (c)))) + +// Extracts the selected signed or unsigned 8-bit integer from a and zero +// extends. +// FORCE_INLINE int _mm_extract_epi8(__m128i a, __constrange(0,16) int imm) +#define _mm_extract_epi8(a, imm) vgetq_lane_u8(vreinterpretq_u8_m128i(a), (imm)) + +// Inserts the least significant 8 bits of b into the selected 8-bit integer +// of a. +// FORCE_INLINE __m128i _mm_insert_epi8(__m128i a, int b, +// __constrange(0,16) int imm) +#define _mm_insert_epi8(a, b, imm) \ + __extension__({ \ + vreinterpretq_m128i_s8( \ + vsetq_lane_s8((b), vreinterpretq_s8_m128i(a), (imm))); \ + }) + +// Extracts the selected signed or unsigned 16-bit integer from a and zero +// extends. +// https://msdn.microsoft.com/en-us/library/6dceta0c(v=vs.100).aspx +// FORCE_INLINE int _mm_extract_epi16(__m128i a, __constrange(0,8) int imm) +#define _mm_extract_epi16(a, imm) \ + vgetq_lane_u16(vreinterpretq_u16_m128i(a), (imm)) + +// Inserts the least significant 16 bits of b into the selected 16-bit integer +// of a. +// https://msdn.microsoft.com/en-us/library/kaze8hz1%28v=vs.100%29.aspx +// FORCE_INLINE __m128i _mm_insert_epi16(__m128i a, int b, +// __constrange(0,8) int imm) +#define _mm_insert_epi16(a, b, imm) \ + __extension__({ \ + vreinterpretq_m128i_s16( \ + vsetq_lane_s16((b), vreinterpretq_s16_m128i(a), (imm))); \ + }) + +// Extracts the selected signed or unsigned 32-bit integer from a and zero +// extends. +// FORCE_INLINE int _mm_extract_epi32(__m128i a, __constrange(0,4) int imm) +#define _mm_extract_epi32(a, imm) \ + vgetq_lane_s32(vreinterpretq_s32_m128i(a), (imm)) + +// Extracts the selected single-precision (32-bit) floating-point from a. +// FORCE_INLINE int _mm_extract_ps(__m128 a, __constrange(0,4) int imm) +#define _mm_extract_ps(a, imm) vgetq_lane_s32(vreinterpretq_s32_m128(a), (imm)) + +// Inserts the least significant 32 bits of b into the selected 32-bit integer +// of a. +// FORCE_INLINE __m128i _mm_insert_epi32(__m128i a, int b, +// __constrange(0,4) int imm) +#define _mm_insert_epi32(a, b, imm) \ + __extension__({ \ + vreinterpretq_m128i_s32( \ + vsetq_lane_s32((b), vreinterpretq_s32_m128i(a), (imm))); \ + }) + +// Extracts the selected signed or unsigned 64-bit integer from a and zero +// extends. +// FORCE_INLINE __int64 _mm_extract_epi64(__m128i a, __constrange(0,2) int imm) +#define _mm_extract_epi64(a, imm) \ + vgetq_lane_s64(vreinterpretq_s64_m128i(a), (imm)) + +// Inserts the least significant 64 bits of b into the selected 64-bit integer +// of a. +// FORCE_INLINE __m128i _mm_insert_epi64(__m128i a, __int64 b, +// __constrange(0,2) int imm) +#define _mm_insert_epi64(a, b, imm) \ + __extension__({ \ + vreinterpretq_m128i_s64( \ + vsetq_lane_s64((b), vreinterpretq_s64_m128i(a), (imm))); \ + }) + +// Count the number of bits set to 1 in unsigned 32-bit integer a, and +// return that count in dst. +// https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_popcnt_u32 +FORCE_INLINE int _mm_popcnt_u32(unsigned int a) +{ +#if defined(__aarch64__) + return (int) vaddlv_u8(vcnt_u8(vcreate_u8((uint64_t) a))); +#else + uint32_t count = 0; + uint8x8_t input_val, count8x8_val; + uint16x4_t count16x4_val; + uint32x2_t count32x2_val; + + input_val = vld1_u8((uint8_t *) &a); + count8x8_val = vcnt_u8(input_val); + count16x4_val = vpaddl_u8(count8x8_val); + count32x2_val = vpaddl_u16(count16x4_val); + + vst1_u32(&count, count32x2_val); + return count; +#endif +} + +// Count the number of bits set to 1 in unsigned 64-bit integer a, and +// return that count in dst. +// https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_popcnt_u64 +FORCE_INLINE int64_t _mm_popcnt_u64(uint64_t a) +{ +#if defined(__aarch64__) + return (int64_t) vaddlv_u8(vcnt_u8(vcreate_u8(a))); +#else + uint64_t count = 0; + uint8x8_t input_val, count8x8_val; + uint16x4_t count16x4_val; + uint32x2_t count32x2_val; + uint64x1_t count64x1_val; + + input_val = vld1_u8((uint8_t *) &a); + count8x8_val = vcnt_u8(input_val); + count16x4_val = vpaddl_u8(count8x8_val); + count32x2_val = vpaddl_u16(count16x4_val); + count64x1_val = vpaddl_u32(count32x2_val); + vst1_u64(&count, count64x1_val); + return count; +#endif +} + +// Macro: Transpose the 4x4 matrix formed by the 4 rows of single-precision +// (32-bit) floating-point elements in row0, row1, row2, and row3, and store the +// transposed matrix in these vectors (row0 now contains column 0, etc.). +// https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=MM_TRANSPOSE4_PS&expand=5949 +#define _MM_TRANSPOSE4_PS(row0, row1, row2, row3) \ + do { \ + __m128 tmp0, tmp1, tmp2, tmp3; \ + tmp0 = _mm_unpacklo_ps(row0, row1); \ + tmp2 = _mm_unpacklo_ps(row2, row3); \ + tmp1 = _mm_unpackhi_ps(row0, row1); \ + tmp3 = _mm_unpackhi_ps(row2, row3); \ + row0 = _mm_movelh_ps(tmp0, tmp2); \ + row1 = _mm_movehl_ps(tmp2, tmp0); \ + row2 = _mm_movelh_ps(tmp1, tmp3); \ + row3 = _mm_movehl_ps(tmp3, tmp1); \ + } while (0) + +/* Crypto Extensions */ + +#if defined(__ARM_FEATURE_CRYPTO) +// Wraps vmull_p64 +FORCE_INLINE uint64x2_t _sse2neon_vmull_p64(uint64x1_t _a, uint64x1_t _b) +{ + poly64_t a = vget_lane_p64(vreinterpret_p64_u64(_a), 0); + poly64_t b = vget_lane_p64(vreinterpret_p64_u64(_b), 0); + return vreinterpretq_u64_p128(vmull_p64(a, b)); +} +#else // ARMv7 polyfill +// ARMv7/some A64 lacks vmull_p64, but it has vmull_p8. +// +// vmull_p8 calculates 8 8-bit->16-bit polynomial multiplies, but we need a +// 64-bit->128-bit polynomial multiply. +// +// It needs some work and is somewhat slow, but it is still faster than all +// known scalar methods. +// +// Algorithm adapted to C from +// https://www.workofard.com/2017/07/ghash-for-low-end-cores/, which is adapted +// from "Fast Software Polynomial Multiplication on ARM Processors Using the +// NEON Engine" by Danilo Camara, Conrado Gouvea, Julio Lopez and Ricardo Dahab +// (https://hal.inria.fr/hal-01506572) +static uint64x2_t _sse2neon_vmull_p64(uint64x1_t _a, uint64x1_t _b) +{ + poly8x8_t a = vreinterpret_p8_u64(_a); + poly8x8_t b = vreinterpret_p8_u64(_b); + + // Masks + uint8x16_t k48_32 = vcombine_u8(vcreate_u8(0x0000ffffffffffff), + vcreate_u8(0x00000000ffffffff)); + uint8x16_t k16_00 = vcombine_u8(vcreate_u8(0x000000000000ffff), + vcreate_u8(0x0000000000000000)); + + // Do the multiplies, rotating with vext to get all combinations + uint8x16_t d = vreinterpretq_u8_p16(vmull_p8(a, b)); // D = A0 * B0 + uint8x16_t e = + vreinterpretq_u8_p16(vmull_p8(a, vext_p8(b, b, 1))); // E = A0 * B1 + uint8x16_t f = + vreinterpretq_u8_p16(vmull_p8(vext_p8(a, a, 1), b)); // F = A1 * B0 + uint8x16_t g = + vreinterpretq_u8_p16(vmull_p8(a, vext_p8(b, b, 2))); // G = A0 * B2 + uint8x16_t h = + vreinterpretq_u8_p16(vmull_p8(vext_p8(a, a, 2), b)); // H = A2 * B0 + uint8x16_t i = + vreinterpretq_u8_p16(vmull_p8(a, vext_p8(b, b, 3))); // I = A0 * B3 + uint8x16_t j = + vreinterpretq_u8_p16(vmull_p8(vext_p8(a, a, 3), b)); // J = A3 * B0 + uint8x16_t k = + vreinterpretq_u8_p16(vmull_p8(a, vext_p8(b, b, 4))); // L = A0 * B4 + + // Add cross products + uint8x16_t l = veorq_u8(e, f); // L = E + F + uint8x16_t m = veorq_u8(g, h); // M = G + H + uint8x16_t n = veorq_u8(i, j); // N = I + J + + // Interleave. Using vzip1 and vzip2 prevents Clang from emitting TBL + // instructions. +#if defined(__aarch64__) + uint8x16_t lm_p0 = vreinterpretq_u8_u64( + vzip1q_u64(vreinterpretq_u64_u8(l), vreinterpretq_u64_u8(m))); + uint8x16_t lm_p1 = vreinterpretq_u8_u64( + vzip2q_u64(vreinterpretq_u64_u8(l), vreinterpretq_u64_u8(m))); + uint8x16_t nk_p0 = vreinterpretq_u8_u64( + vzip1q_u64(vreinterpretq_u64_u8(n), vreinterpretq_u64_u8(k))); + uint8x16_t nk_p1 = vreinterpretq_u8_u64( + vzip2q_u64(vreinterpretq_u64_u8(n), vreinterpretq_u64_u8(k))); +#else + uint8x16_t lm_p0 = vcombine_u8(vget_low_u8(l), vget_low_u8(m)); + uint8x16_t lm_p1 = vcombine_u8(vget_high_u8(l), vget_high_u8(m)); + uint8x16_t nk_p0 = vcombine_u8(vget_low_u8(n), vget_low_u8(k)); + uint8x16_t nk_p1 = vcombine_u8(vget_high_u8(n), vget_high_u8(k)); +#endif + // t0 = (L) (P0 + P1) << 8 + // t1 = (M) (P2 + P3) << 16 + uint8x16_t t0t1_tmp = veorq_u8(lm_p0, lm_p1); + uint8x16_t t0t1_h = vandq_u8(lm_p1, k48_32); + uint8x16_t t0t1_l = veorq_u8(t0t1_tmp, t0t1_h); + + // t2 = (N) (P4 + P5) << 24 + // t3 = (K) (P6 + P7) << 32 + uint8x16_t t2t3_tmp = veorq_u8(nk_p0, nk_p1); + uint8x16_t t2t3_h = vandq_u8(nk_p1, k16_00); + uint8x16_t t2t3_l = veorq_u8(t2t3_tmp, t2t3_h); + + // De-interleave +#if defined(__aarch64__) + uint8x16_t t0 = vreinterpretq_u8_u64( + vuzp1q_u64(vreinterpretq_u64_u8(t0t1_l), vreinterpretq_u64_u8(t0t1_h))); + uint8x16_t t1 = vreinterpretq_u8_u64( + vuzp2q_u64(vreinterpretq_u64_u8(t0t1_l), vreinterpretq_u64_u8(t0t1_h))); + uint8x16_t t2 = vreinterpretq_u8_u64( + vuzp1q_u64(vreinterpretq_u64_u8(t2t3_l), vreinterpretq_u64_u8(t2t3_h))); + uint8x16_t t3 = vreinterpretq_u8_u64( + vuzp2q_u64(vreinterpretq_u64_u8(t2t3_l), vreinterpretq_u64_u8(t2t3_h))); +#else + uint8x16_t t1 = vcombine_u8(vget_high_u8(t0t1_l), vget_high_u8(t0t1_h)); + uint8x16_t t0 = vcombine_u8(vget_low_u8(t0t1_l), vget_low_u8(t0t1_h)); + uint8x16_t t3 = vcombine_u8(vget_high_u8(t2t3_l), vget_high_u8(t2t3_h)); + uint8x16_t t2 = vcombine_u8(vget_low_u8(t2t3_l), vget_low_u8(t2t3_h)); +#endif + // Shift the cross products + uint8x16_t t0_shift = vextq_u8(t0, t0, 15); // t0 << 8 + uint8x16_t t1_shift = vextq_u8(t1, t1, 14); // t1 << 16 + uint8x16_t t2_shift = vextq_u8(t2, t2, 13); // t2 << 24 + uint8x16_t t3_shift = vextq_u8(t3, t3, 12); // t3 << 32 + + // Accumulate the products + uint8x16_t cross1 = veorq_u8(t0_shift, t1_shift); + uint8x16_t cross2 = veorq_u8(t2_shift, t3_shift); + uint8x16_t mix = veorq_u8(d, cross1); + uint8x16_t r = veorq_u8(mix, cross2); + return vreinterpretq_u64_u8(r); +} +#endif // ARMv7 polyfill + +FORCE_INLINE __m128i _mm_clmulepi64_si128(__m128i _a, __m128i _b, const int imm) +{ + uint64x2_t a = vreinterpretq_u64_m128i(_a); + uint64x2_t b = vreinterpretq_u64_m128i(_b); + switch (imm & 0x11) { + case 0x00: + return vreinterpretq_m128i_u64( + _sse2neon_vmull_p64(vget_low_u64(a), vget_low_u64(b))); + case 0x01: + return vreinterpretq_m128i_u64( + _sse2neon_vmull_p64(vget_high_u64(a), vget_low_u64(b))); + case 0x10: + return vreinterpretq_m128i_u64( + _sse2neon_vmull_p64(vget_low_u64(a), vget_high_u64(b))); + case 0x11: + return vreinterpretq_m128i_u64( + _sse2neon_vmull_p64(vget_high_u64(a), vget_high_u64(b))); + default: + abort(); + } +} + +#if !defined(__ARM_FEATURE_CRYPTO) && defined(__aarch64__) +// In the absence of crypto extensions, implement aesenc using regular neon +// intrinsics instead. See: +// https://www.workofard.com/2017/01/accelerated-aes-for-the-arm64-linux-kernel/ +// https://www.workofard.com/2017/07/ghash-for-low-end-cores/ and +// https://github.com/ColinIanKing/linux-next-mirror/blob/b5f466091e130caaf0735976648f72bd5e09aa84/crypto/aegis128-neon-inner.c#L52 +// for more information Reproduced with permission of the author. +FORCE_INLINE __m128i _mm_aesenc_si128(__m128i EncBlock, __m128i RoundKey) +{ + static const uint8_t crypto_aes_sbox[256] = { + 0x63, 0x7c, 0x77, 0x7b, 0xf2, 0x6b, 0x6f, 0xc5, 0x30, 0x01, 0x67, 0x2b, + 0xfe, 0xd7, 0xab, 0x76, 0xca, 0x82, 0xc9, 0x7d, 0xfa, 0x59, 0x47, 0xf0, + 0xad, 0xd4, 0xa2, 0xaf, 0x9c, 0xa4, 0x72, 0xc0, 0xb7, 0xfd, 0x93, 0x26, + 0x36, 0x3f, 0xf7, 0xcc, 0x34, 0xa5, 0xe5, 0xf1, 0x71, 0xd8, 0x31, 0x15, + 0x04, 0xc7, 0x23, 0xc3, 0x18, 0x96, 0x05, 0x9a, 0x07, 0x12, 0x80, 0xe2, + 0xeb, 0x27, 0xb2, 0x75, 0x09, 0x83, 0x2c, 0x1a, 0x1b, 0x6e, 0x5a, 0xa0, + 0x52, 0x3b, 0xd6, 0xb3, 0x29, 0xe3, 0x2f, 0x84, 0x53, 0xd1, 0x00, 0xed, + 0x20, 0xfc, 0xb1, 0x5b, 0x6a, 0xcb, 0xbe, 0x39, 0x4a, 0x4c, 0x58, 0xcf, + 0xd0, 0xef, 0xaa, 0xfb, 0x43, 0x4d, 0x33, 0x85, 0x45, 0xf9, 0x02, 0x7f, + 0x50, 0x3c, 0x9f, 0xa8, 0x51, 0xa3, 0x40, 0x8f, 0x92, 0x9d, 0x38, 0xf5, + 0xbc, 0xb6, 0xda, 0x21, 0x10, 0xff, 0xf3, 0xd2, 0xcd, 0x0c, 0x13, 0xec, + 0x5f, 0x97, 0x44, 0x17, 0xc4, 0xa7, 0x7e, 0x3d, 0x64, 0x5d, 0x19, 0x73, + 0x60, 0x81, 0x4f, 0xdc, 0x22, 0x2a, 0x90, 0x88, 0x46, 0xee, 0xb8, 0x14, + 0xde, 0x5e, 0x0b, 0xdb, 0xe0, 0x32, 0x3a, 0x0a, 0x49, 0x06, 0x24, 0x5c, + 0xc2, 0xd3, 0xac, 0x62, 0x91, 0x95, 0xe4, 0x79, 0xe7, 0xc8, 0x37, 0x6d, + 0x8d, 0xd5, 0x4e, 0xa9, 0x6c, 0x56, 0xf4, 0xea, 0x65, 0x7a, 0xae, 0x08, + 0xba, 0x78, 0x25, 0x2e, 0x1c, 0xa6, 0xb4, 0xc6, 0xe8, 0xdd, 0x74, 0x1f, + 0x4b, 0xbd, 0x8b, 0x8a, 0x70, 0x3e, 0xb5, 0x66, 0x48, 0x03, 0xf6, 0x0e, + 0x61, 0x35, 0x57, 0xb9, 0x86, 0xc1, 0x1d, 0x9e, 0xe1, 0xf8, 0x98, 0x11, + 0x69, 0xd9, 0x8e, 0x94, 0x9b, 0x1e, 0x87, 0xe9, 0xce, 0x55, 0x28, 0xdf, + 0x8c, 0xa1, 0x89, 0x0d, 0xbf, 0xe6, 0x42, 0x68, 0x41, 0x99, 0x2d, 0x0f, + 0xb0, 0x54, 0xbb, 0x16}; + static const uint8_t shift_rows[] = {0x0, 0x5, 0xa, 0xf, 0x4, 0x9, + 0xe, 0x3, 0x8, 0xd, 0x2, 0x7, + 0xc, 0x1, 0x6, 0xb}; + static const uint8_t ror32by8[] = {0x1, 0x2, 0x3, 0x0, 0x5, 0x6, 0x7, 0x4, + 0x9, 0xa, 0xb, 0x8, 0xd, 0xe, 0xf, 0xc}; + + uint8x16_t v; + uint8x16_t w = vreinterpretq_u8_m128i(EncBlock); + + // shift rows + w = vqtbl1q_u8(w, vld1q_u8(shift_rows)); + + // sub bytes + v = vqtbl4q_u8(vld1q_u8_x4(crypto_aes_sbox), w); + v = vqtbx4q_u8(v, vld1q_u8_x4(crypto_aes_sbox + 0x40), w - 0x40); + v = vqtbx4q_u8(v, vld1q_u8_x4(crypto_aes_sbox + 0x80), w - 0x80); + v = vqtbx4q_u8(v, vld1q_u8_x4(crypto_aes_sbox + 0xc0), w - 0xc0); + + // mix columns + w = (v << 1) ^ (uint8x16_t)(((int8x16_t) v >> 7) & 0x1b); + w ^= (uint8x16_t) vrev32q_u16((uint16x8_t) v); + w ^= vqtbl1q_u8(v ^ w, vld1q_u8(ror32by8)); + + // add round key + return vreinterpretq_m128i_u8(w) ^ RoundKey; +} +#elif defined(__ARM_FEATURE_CRYPTO) +// Implements equivalent of 'aesenc' by combining AESE (with an empty key) and +// AESMC and then manually applying the real key as an xor operation This +// unfortunately means an additional xor op; the compiler should be able to +// optimise this away for repeated calls however See +// https://blog.michaelbrase.com/2018/05/08/emulating-x86-aes-intrinsics-on-armv8-a +// for more details. +inline __m128i _mm_aesenc_si128(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u8( + vaesmcq_u8(vaeseq_u8(vreinterpretq_u8_m128i(a), vdupq_n_u8(0))) ^ + vreinterpretq_u8_m128i(b)); +} +#endif + +/* Streaming Extensions */ + +// Guarantees that every preceding store is globally visible before any +// subsequent store. +// https://msdn.microsoft.com/en-us/library/5h2w73d1%28v=vs.90%29.aspx +FORCE_INLINE void _mm_sfence(void) +{ + __sync_synchronize(); +} + +// Stores the data in a to the address p without polluting the caches. If the +// cache line containing address p is already in the cache, the cache will be +// updated.Address p must be 16 - byte aligned. +// https://msdn.microsoft.com/en-us/library/ba08y07y%28v=vs.90%29.aspx +FORCE_INLINE void _mm_stream_si128(__m128i *p, __m128i a) +{ +#if __has_builtin(__builtin_nontemporal_store) + __builtin_nontemporal_store(a, p); +#else + vst1q_s64((int64_t *) p, vreinterpretq_s64_m128i(a)); +#endif +} + +// Cache line containing p is flushed and invalidated from all caches in the +// coherency domain. : +// https://msdn.microsoft.com/en-us/library/ba08y07y(v=vs.100).aspx +FORCE_INLINE void _mm_clflush(void const *p) +{ + (void) p; + // no corollary for Neon? +} + +// Allocate aligned blocks of memory. +// https://software.intel.com/en-us/ +// cpp-compiler-developer-guide-and-reference-allocating-and-freeing-aligned-memory-blocks +FORCE_INLINE void *_mm_malloc(size_t size, size_t align) +{ + void *ptr; + if (align == 1) + return malloc(size); + if (align == 2 || (sizeof(void *) == 8 && align == 4)) + align = sizeof(void *); + if (!posix_memalign(&ptr, align, size)) + return ptr; + return NULL; +} + +FORCE_INLINE void _mm_free(void *addr) +{ + free(addr); +} + +// Starting with the initial value in crc, accumulates a CRC32 value for +// unsigned 8-bit integer v. +// https://msdn.microsoft.com/en-us/library/bb514036(v=vs.100) +FORCE_INLINE uint32_t _mm_crc32_u8(uint32_t crc, uint8_t v) +{ +#if defined(__aarch64__) && defined(__ARM_FEATURE_CRC32) + __asm__ __volatile__("crc32cb %w[c], %w[c], %w[v]\n\t" + : [c] "+r"(crc) + : [v] "r"(v)); +#else + crc ^= v; + for (int bit = 0; bit < 8; bit++) { + if (crc & 1) + crc = (crc >> 1) ^ uint32_t(0x82f63b78); + else + crc = (crc >> 1); + } +#endif + return crc; +} + +// Starting with the initial value in crc, accumulates a CRC32 value for +// unsigned 16-bit integer v. +// https://msdn.microsoft.com/en-us/library/bb531411(v=vs.100) +FORCE_INLINE uint32_t _mm_crc32_u16(uint32_t crc, uint16_t v) +{ +#if defined(__aarch64__) && defined(__ARM_FEATURE_CRC32) + __asm__ __volatile__("crc32ch %w[c], %w[c], %w[v]\n\t" + : [c] "+r"(crc) + : [v] "r"(v)); +#else + crc = _mm_crc32_u8(crc, v & 0xff); + crc = _mm_crc32_u8(crc, (v >> 8) & 0xff); +#endif + return crc; +} + +// Starting with the initial value in crc, accumulates a CRC32 value for +// unsigned 32-bit integer v. +// https://msdn.microsoft.com/en-us/library/bb531394(v=vs.100) +FORCE_INLINE uint32_t _mm_crc32_u32(uint32_t crc, uint32_t v) +{ +#if defined(__aarch64__) && defined(__ARM_FEATURE_CRC32) + __asm__ __volatile__("crc32cw %w[c], %w[c], %w[v]\n\t" + : [c] "+r"(crc) + : [v] "r"(v)); +#else + crc = _mm_crc32_u16(crc, v & 0xffff); + crc = _mm_crc32_u16(crc, (v >> 16) & 0xffff); +#endif + return crc; +} + +// Starting with the initial value in crc, accumulates a CRC32 value for +// unsigned 64-bit integer v. +// https://msdn.microsoft.com/en-us/library/bb514033(v=vs.100) +FORCE_INLINE uint64_t _mm_crc32_u64(uint64_t crc, uint64_t v) +{ +#if defined(__aarch64__) && defined(__ARM_FEATURE_CRC32) + __asm__ __volatile__("crc32cx %w[c], %w[c], %x[v]\n\t" + : [c] "+r"(crc) + : [v] "r"(v)); +#else + crc = _mm_crc32_u32((uint32_t)(crc), v & 0xffffffff); + crc = _mm_crc32_u32((uint32_t)(crc), (v >> 32) & 0xffffffff); +#endif + return crc; +} + +// ------------------------------------ IQ-TREE additional functionality by Joshua Measure-Hughes (2020) ----------------------------------------------- // + +/* +FORCE_INLINE __m128d _mm_sqrt_pd(const double a) +{ + return vsqrtq_f64(vdupq_n_f64(a)); +} +*/ +FORCE_INLINE __m128i _mm_adds_epi8(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s8(vqaddq_s8(vreinterpretq_s8_m128i(a), vreinterpretq_s8_m128i(b))); +} + +FORCE_INLINE __m128i _mm_max_epi8(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s8(vmaxq_s8(vreinterpretq_s8_m128i(a), vreinterpretq_s8_m128i(b))); +} + +FORCE_INLINE __m128i _mm_min_epi8(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s8(vminq_s8(vreinterpretq_s8_m128i(a), vreinterpretq_s8_m128i(b))); +} + +FORCE_INLINE __m128i _mm_max_epu16(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u16(vmaxq_u16(vreinterpretq_u16_m128i(a), vreinterpretq_u16_m128i(b))); +} + +FORCE_INLINE __m128i _mm_min_epu16(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u16(vminq_u16(vreinterpretq_u16_m128i(a), vreinterpretq_u16_m128i(b))); +} + +FORCE_INLINE __m128i _mm_max_epu32(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u32(vmaxq_u32(vreinterpretq_u32_m128i(a), vreinterpretq_u32_m128i(b))); +} + +FORCE_INLINE __m128i _mm_min_epu32(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u32(vminq_u32(vreinterpretq_u32_m128i(a), vreinterpretq_u32_m128i(b))); +} + +FORCE_INLINE __m128d _mm_max_pd(__m128d a, __m128d b) +{ + return vmaxq_f64(a, b); //vreinterpretq_m128_f64(vmaxq_f64(vreinterpretq_f64_m128(a), vreinterpretq_f64_m128(b))); +} + +FORCE_INLINE __m128d _mm_min_pd(__m128d a, __m128d b) +{ + return vminq_f64(a, b); //vreinterpretq_m128_f64(vminq_f64(vreinterpretq_f64_m128(a), vreinterpretq_f64_m128(b))); +} + +#define _MM_FROUND_TO_NEAREST_INT 0x00 +#define _MM_FROUND_TO_NEG_INF 0x01 +#define _MM_FROUND_TO_POS_INF 0x02 +#define _MM_FROUND_TO_ZERO 0x03 +#define _MM_FROUND_CUR_DIRECTION 0x04 +#define _MM_FROUND_RAISE_EXC 0x00 +#define _MM_FROUND_NO_EXC 0x08 + +// aarch64 +FORCE_INLINE __m128 _mm_round_ps(__m128 a, int rounding) +{ + //assert((rounding == (_MM_FROUND_TO_NEAREST_INT | _MM_FROUND_NO_EXC)) || (rounding == (_MM_FROUND_TO_NEG_INF | _MM_FROUND_NO_EXC)) || (rounding == (_MM_FROUND_TO_POS_INF | _MM_FROUND_NO_EXC )) || (rounding == (_MM_FROUND_TO_ZERO | _MM_FROUND_NO_EXC)) || (rounding == _MM_FROUND_CUR_DIRECTION)); + if (rounding == (_MM_FROUND_TO_NEAREST_INT | _MM_FROUND_NO_EXC)) return vreinterpretq_m128_f32(vrndnq_f32(vreinterpretq_f32_m128(a))); + if (rounding == (_MM_FROUND_TO_NEG_INF | _MM_FROUND_NO_EXC)) return vreinterpretq_m128_f32(vrndmq_f32(vreinterpretq_f32_m128(a))); + if (rounding == (_MM_FROUND_TO_POS_INF | _MM_FROUND_NO_EXC)) return vreinterpretq_m128_f32(vrndpq_f32(vreinterpretq_f32_m128(a))); + if (rounding == (_MM_FROUND_TO_ZERO | _MM_FROUND_NO_EXC)) return vreinterpretq_m128_f32(vrndq_f32(vreinterpretq_f32_m128(a))); + //-- if (rounding == _MM_FROUND_CUR_DIRECTION) :-- + else return vreinterpretq_m128_f32(vrndiq_f32(vreinterpretq_f32_m128(a))); +} + +FORCE_INLINE __m128d _mm_round_pd(__m128d a, int rounding) +{ + //assert((rounding == (_MM_FROUND_TO_NEAREST_INT | _MM_FROUND_NO_EXC)) || (rounding == (_MM_FROUND_TO_NEG_INF | _MM_FROUND_NO_EXC)) || (rounding == (_MM_FROUND_TO_POS_INF | _MM_FROUND_NO_EXC )) || (rounding == (_MM_FROUND_TO_ZERO | _MM_FROUND_NO_EXC)) || (rounding == _MM_FROUND_CUR_DIRECTION)); + if (rounding == (_MM_FROUND_TO_NEAREST_INT | _MM_FROUND_NO_EXC)) return vrndnq_f64(a); + if (rounding == (_MM_FROUND_TO_NEG_INF | _MM_FROUND_NO_EXC)) return vrndmq_f64(a); + if (rounding == (_MM_FROUND_TO_POS_INF | _MM_FROUND_NO_EXC)) return vrndpq_f64(a); + if (rounding == (_MM_FROUND_TO_ZERO | _MM_FROUND_NO_EXC)) return vrndq_f64(a); + //-- if (rounding == _MM_FROUND_CUR_DIRECTION) + else return vrndiq_f64(a); +} + +FORCE_INLINE __m128d _mm_loadu_pd(const double* ptr) +{ + return (__m128d)vld1q_f64(ptr); +} + +FORCE_INLINE __m128d _mm_load_pd(const double* ptr) +{ + return (__m128d)vld1q_f64(ptr); +} + +FORCE_INLINE void _mm_storeu_pd(double* mem_addr, __m128d a) +{ + vst1q_f64(mem_addr, (__m128d)(a)); +} + +FORCE_INLINE void _mm_store_pd(double* mem_addr, __m128d a) +{ + vst1q_f64(mem_addr, (__m128d)(a)); +} + +FORCE_INLINE __m128 _mm_insert_ps(__m128 a, __m128 b, const int imm8) +{ + const int imm8_76 = (((1 << 2) -1 ) & (imm8 >> 6)); + const int imm8_54 = (((1 << 2) - 1) & (imm8 >> 4)); + __m128 tmp2 = a; + float tmp1; + switch(imm8_76) { + case 0: + tmp1 = vgetq_lane_f32(vreinterpretq_f32_m128(b), 0); + break; + case 1: + tmp1 = vgetq_lane_f32(vreinterpretq_f32_m128(b), 1); + break; + case 2: + tmp1 = vgetq_lane_f32(vreinterpretq_f32_m128(b), 2); + break; + case 3: + tmp1 = vgetq_lane_f32(vreinterpretq_f32_m128(b), 3); + break; + } + // float tmp1 = vgetq_lane_f32(vreinterpretq_f32_m128(b), (imm8_76)); + switch(imm8_54) { + case 0: + tmp2 = vreinterpretq_m128_f32(vsetq_lane_f32(tmp1, vreinterpretq_f32_m128(tmp2), 0)); + break; + case 1: + tmp2 = vreinterpretq_m128_f32(vsetq_lane_f32(tmp1, vreinterpretq_f32_m128(tmp2), 1)); + break; + case 2: + tmp2 = vreinterpretq_m128_f32(vsetq_lane_f32(tmp1, vreinterpretq_f32_m128(tmp2), 2)); + break; + case 3: + tmp2 = vreinterpretq_m128_f32(vsetq_lane_f32(tmp1, vreinterpretq_f32_m128(tmp2), 3)); + break; + } + //tmp2 = vreinterpretq_m128_f32(vsetq_lane_f32(tmp1, vreinterpretq_f32_m128(tmp2), (imm8_54))); + __m128 dst; + //for (int j = 0; j < 4; j++) + // { + // int i = j*32; + // if ((imm8 >> j) & 0x01 ) dst = vreinterpretq_m128_f32(vsetq_lane_f32(0.0f, vreinterpretq_f32_m128(dst), (j))); + // else dst = vreinterpretq_m128_f32(vsetq_lane_f32(vgetq_lane_f32(vreinterpretq_f32_m128(tmp2), (j)), vreinterpretq_f32_m128(dst), (j))); + // } + + if ((imm8 >> 0) & 0x01 ) dst = vreinterpretq_m128_f32(vsetq_lane_f32(0.0f, vreinterpretq_f32_m128(dst), 0)); + else dst = vreinterpretq_m128_f32(vsetq_lane_f32(vgetq_lane_f32(vreinterpretq_f32_m128(tmp2), 0), vreinterpretq_f32_m128(dst), 0)); + + if ((imm8 >> 1) & 0x01 ) dst = vreinterpretq_m128_f32(vsetq_lane_f32(0.0f, vreinterpretq_f32_m128(dst), 1)); + else dst = vreinterpretq_m128_f32(vsetq_lane_f32(vgetq_lane_f32(vreinterpretq_f32_m128(tmp2), 1), vreinterpretq_f32_m128(dst), 1)); + + if ((imm8 >> 2) & 0x01 ) dst = vreinterpretq_m128_f32(vsetq_lane_f32(0.0f, vreinterpretq_f32_m128(dst), 2)); + else dst = vreinterpretq_m128_f32(vsetq_lane_f32(vgetq_lane_f32(vreinterpretq_f32_m128(tmp2), 2), vreinterpretq_f32_m128(dst), 2)); + + if ((imm8 >> 3) & 0x01 ) dst = vreinterpretq_m128_f32(vsetq_lane_f32(0.0f, vreinterpretq_f32_m128(dst), 3)); + else dst = vreinterpretq_m128_f32(vsetq_lane_f32(vgetq_lane_f32(vreinterpretq_f32_m128(tmp2), 3), vreinterpretq_f32_m128(dst), 3)); + + return dst; + //__transfersize(1) float32_t const* ptr = &b; + // b = _mm_set1_ps(*(ptr)); + //const int lane = imm8 >> 4; + // imm8 = _INSERTPS_NDX(0, lane) = (((0) << 6 | ((lane) << 4))) + //return vreinterpretq_m128_f32(vld1q_lane_f32(ptr, vreinterpretq_f32_m128(a), lane)); + //return vreinterpretq_m128_f32(vsetq_lane_f32((b), vreinterpretq_f32_m128(a), (imm8))); +} + +FORCE_INLINE __m128d _mm_sqrt_pd(__m128d a) +{ + return vsqrtq_f64(a); +} + + +FORCE_INLINE __m128d _mm_xor_pd(__m128d a, __m128d b) +{ + //__m128d c; + //__asm("EORS a, b" + // : "=r" (c)); + //return c; + // + /* uint64x1_t first = veor_u64(vreinterpret_u64_f64(vget_low_f64(a)), vreinterpret_u64_f64(vget_low_f64(b))); + uint64x1_t second = veor_u64(vreinterpret_u64_f64(vget_high_f64(a)), vreinterpret_u64_f64(vget_high_f64(b))); + uint64x2_t inter = veorq_u64(vreinterpretq_u64_f64(a), vreinterpretq_u64_f64(b)); + float64x2_t r = vreinterpretq_f64_u64(inter); + float64x1_t ff = vreinterpret_f64_u64(first); + float64x1_t ss = vreinterpret_f64_u64(second); + + uint64x2_t _a = vreinterpretq_u64_f64(a); + uint64x2_t _b = vreinterpretq_u64_f64(b); + uint64x2_t _r = _a ^ _b; + float64x2_t res = vreinterpretq_f64_u64(_r); + //float64x2_t r = reinterpret_cast( inter ); + //__builtin_memcpy(&r, &inter, sizeof inter); + //r[0] = (double)inter[0]; + //r[1] = (double)inter[1]; + double x = -2.01102e-302; + double y = 2.15716e-290; + double z = 0.f; + // if (r[0] == z) printf("true \n"); + // if (r[1] == z) printf("rue \n"); + union { + uint64x2_t inter; + float64x2_t r; + } u = { inter }; + +// printf("\n \n %f %f %f %f %lu %lu %.10e %.10e %.10e %.10e : %.10e %.10e A:B:C \n \n", a[0], a[1], b[0], b[1], inter[0], inter[1], r[0], r[1], res[0], res[1], x, y); + +*/ + return vreinterpretq_f64_u64(veorq_u64(vreinterpretq_u64_f64(a), vreinterpretq_u64_f64(b))); + +// return vreinterpretq_f64_f32(vreinterpretq_f32_s32(veorq_s32(vreinterpretq_s32_f32(vreinterpretq_f32_f64(a)), vreinterpretq_s32_f32(vreinterpretq_f32_f64(b))))); +} + +FORCE_INLINE __m128d _mm_sub_pd(__m128d a, __m128d b) +{ + return vsubq_f64(a, b); +} + +FORCE_INLINE __m128d _mm_add_pd(__m128d a, __m128d b) +{ + return vaddq_f64(a, b); +} + +/*FORCE_INLINE int _mm_testc_si128(__m128i a, __m128i b) +{ + int32x4_t ZF_interim = vandq_s32(vreinterpretq_s32_m128i(a), vreinterpretq_s32_m128i(b)); + int ZF; + if (ZF_interim[0] == 0 && ZF_interim[1] == 0 && ZF_interim[2] == 0 && ZF_interim[3] == 0) + { + ZF = 1; + } + else + { + ZF = 0; + } + int32x4_t CF_interim = vandq_s32(vmvnq_s32(vreinterpretq_s32_m128i(a)), vreinterpretq_s32_m128i(b)); + int CF; + if (CF_interim[0] == 0 && CF_interim[1] == 0 && CF_interim[2] == 0 && CF_interim[3] == 0) + { + CF = 1; + } + else + { + CF = 0; + } + return CF; +}*/ + +FORCE_INLINE int _mm_testz_si128(__m128i a, __m128i b) +{ + int64x2_t s64 = vandq_s64(vreinterpretq_s64_m128i(a), vreinterpretq_s64_m128i(b)); + return !(vgetq_lane_s64(s64, 0) | vgetq_lane_s64(s64, 1)); +} + +FORCE_INLINE int _mm_testc_si128(__m128i a, __m128i b) +{ + int64x2_t s64 = vandq_s64(vreinterpretq_s64_s32(vmvnq_s32(vreinterpretq_s32_m128i(a))), vreinterpretq_s64_m128i(b)); + return !(vgetq_lane_s64(s64, 0) | vgetq_lane_s64(s64, 1)); +} + +/*FORCE_INLINE int _mm_testz_si128(__m128i a, __m128i b) +{ + int32x4_t ZF_interim = vandq_s32(vreinterpretq_s32_m128i(a), vreinterpretq_s32_m128i(b)); + int ZF; + if (ZF_interim[0] == 0 && ZF_interim[1] == 0 && ZF_interim[2] == 0 && ZF_interim[3] == 0) + { + ZF = 1; + } + else + { + ZF = 0; + } + int32x4_t CF_interim = vandq_s32(vmvnq_s32(vreinterpretq_s32_m128i(a)), vreinterpretq_s32_m128i(b)); + int CF; + if (CF_interim[0] == 0 && CF_interim[1] == 0 && CF_interim[2] == 0 && CF_interim[3] == 0) + { + CF = 1; + } + else + { + CF = 0; + } + return ZF; + int64x2_t s64 = vandq_s64(vreinterpretq_s64_m128i(a), vreinterpretq_s64_m128i(b)); + return !(vgetq_lane_s64(s64, 0) | vgetq_lane_s64(s64, 1)); +}*/ + +FORCE_INLINE __m128d _mm_andnot_pd(__m128d a, __m128d b) +{ + return vreinterpretq_f64_u32(vandq_u32(vmvnq_u32(vreinterpretq_u32_f64(a)), vreinterpretq_u32_f64(b))); +} + +FORCE_INLINE __m128d _mm_and_pd(__m128d a, __m128d b) +{ + return vreinterpretq_f64_u64(vandq_u64(vreinterpretq_u64_f64(a), vreinterpretq_u64_f64(b))); +} + +FORCE_INLINE __m128 _mm_castpd_ps(__m128d a) +{ + return vreinterpretq_m128_f64(a); +} + +FORCE_INLINE __m128d _mm_castps_pd(__m128 a) +{ + return vreinterpretq_f64_m128(a); +} + +FORCE_INLINE __m128i _mm_castpd_si128(__m128d a) +{ + return vreinterpretq_m128i_s64(vreinterpretq_s64_f64(a)); +} + +FORCE_INLINE __m128d _mm_castsi128_pd(__m128i a) +{ + return vreinterpretq_f64_s64(vreinterpretq_s64_m128i(a)); +} + +FORCE_INLINE __m128d _mm_cmpeq_pd(__m128d a, __m128d b) +{ + uint64x2_t res = vceqq_f64(a, b); + __m128d ret; + ret[0] = (res[0] == 0) ? 0 : 1; + ret[1] = (res[1] == 0) ? 0 : 1; + return ret; + //return (__m128d) vreinterpretq_m128_u64(vceqq_f64(a, b)); +} + +FORCE_INLINE __m128d _mm_cmple_pd(__m128d a, __m128d b) +{ + uint64x2_t res = vcleq_f64(a, b); + __m128d ret; + ret[0] = (res[0] == 0) ? 0 : 1; + ret[1] = (res[1] == 0) ? 0 : 1; + return ret; + // return vcvtq_f64_u64(vcleq_f64(a, b)); +} + +FORCE_INLINE __m128d _mm_cmplt_pd(__m128d a, __m128d b) +{ + uint64x2_t res = vcltq_f64(a, b); + __m128d ret; + ret[0] = (res[0] == 0) ? 0 : 1; + ret[1] = (res[1] == 0) ? 0 : 1; + return ret; + //return vreinterpretq_f64_m128(vreinterpretq_m128_u64(vcltq_f64(a, b))); +} + +FORCE_INLINE __m128d _mm_cmpneq_pd(__m128d a, __m128d b) +{ + uint64x2_t res = vceqq_f64(a, b); + __m128d ret; + ret[0] = (res[0] == 0) ? 1 : 0; + ret[1] = (res[1] == 0) ? 1 : 0; + return ret; + //return vreinterpretq_f64_u32(vmvnq_u32(vreinterpretq_u32_u64(vceqq_f64(a, b)))); +} + +FORCE_INLINE __m128d _mm_hadd_pd(__m128d a, __m128d b) +{ +//#if defined(__aarch64__) + return vpaddq_f64(a, b); +//#else +// return false; +//#endif +/*#else + float64x2_t a10 = vget_low_f64(a); + float64x2_t a64 = vget_high_f64(a); + float64x2_t b10 = vget_low_f64(b); + float64x2_t b64 = vget_high_f64(b); + return vcombine_f64(vpadd_f64(a10, a64), vpadd_f64(b10, b64)); // no vpadd_f64 intrinsic +#endif*/ +} + +FORCE_INLINE __m128d _mm_or_pd(__m128d a, __m128d b) +{ + return vreinterpretq_f64_u64(vorrq_u64(vreinterpretq_u64_f64(a), vreinterpretq_u64_f64(b))); +} + +FORCE_INLINE __m128i _mm_mulhi_epu16(__m128i a, __m128i b) +{ + uint16x4_t a3210 = vget_low_u16(vreinterpretq_u16_m128i(a)); + uint16x4_t b3210 = vget_low_u16(vreinterpretq_u16_m128i(b)); + uint32x4_t ab3210 = vmull_u16(a3210, b3210); /* 3333222211110000 */ + uint16x4_t a7654 = vget_high_u16(vreinterpretq_u16_m128i(a)); + uint16x4_t b7654 = vget_high_u16(vreinterpretq_u16_m128i(b)); + uint32x4_t ab7654 = vmull_u16(a7654, b7654); /* 7777666655554444 */ + uint16x8x2_t r = + vuzpq_u16(vreinterpretq_u16_u32(ab3210), vreinterpretq_u16_u32(ab7654)); + return vreinterpretq_m128i_u16(r.val[1]); +} + +FORCE_INLINE __m128d _mm_setr_pd(double e1, double e0) +{ + double ALIGN_STRUCT(16) data[2] = {e1, e0}; + return vld1q_f64(data); +} + +FORCE_INLINE __m128d _mm_setzero_pd(void) +{ + return vdupq_n_f64(0); +} + +FORCE_INLINE __m128d _mm_set1_pd(double a) +{ + return vdupq_n_f64(a); +} + +FORCE_INLINE __m128d _mm_set_sd(double a) +{ + double ALIGN_STRUCT(16) data[2] = {a, 0}; + return vld1q_f64(data); +} + +FORCE_INLINE __m128d _mm_div_pd(__m128d a, __m128d b) +{ + float64x2_t recip0 = vrecpeq_f64(b); + float64x2_t recip1 = + vmulq_f64(recip0, vrecpsq_f64(recip0, b)); + return vdivq_f64(a, b); //vmulq_f64(a, recip1); +} + +FORCE_INLINE __m128d _mm_mul_pd(__m128d a, __m128d b) +{ + return vmulq_f64(a, b); +} + +FORCE_INLINE int _mm_movemask_pd(__m128d a) +{ + uint64x2_t input = vreinterpretq_u64_f64(a); + static const int64x2_t shift = {-63, -62}; + static const uint64x2_t highbit = {0x8000000000000000, 0x8000000000000000}; + return vaddvq_u64(vshlq_u64(vandq_u64(input, highbit), shift)); +} + +FORCE_INLINE __m128d _mm_shuffle_pd(__m128d a, __m128d b, int imm8) +{ + float64x1_t fst = (imm8 % 2 == 0) ? vget_low_f64(a) : vget_high_f64(a); + float64x1_t snd = ((imm8 >> 1) % 2 == 0) ? vget_low_f64(b) : vget_high_f64(b); + return vcombine_f64(fst, snd); +} + +FORCE_INLINE void _mm_store_sd(double * ptr, __m128d a) +{ + return vst1_f64(ptr, vget_low_f64(a)); +} + +FORCE_INLINE double _mm_cvtsd_f64(__m128d a) +{ + return vgetq_lane_f64(a, 0); +} + +FORCE_INLINE __m128i _mm_cvttpd_epi32(__m128d a) +{ + return vcvtq_s64_f64(a); //return vreinterpretq_m128i_s32(vcvtq_s32_f32(vreinterpretq_f32_f64(a))); +} + +FORCE_INLINE __m128i _mm_cvtpd_epi32(__m128d a) +{ +//#if defined(__aarch64__) + return vcvtq_s64_f64(a); +//#else +// return false; // ARMv8-A has 'round to even' support, ARMv7-A does not, needs further functionality. +//#endif +} + +FORCE_INLINE __m128d _mm_cvtepi32_pd(__m128i a) +{ + //float64x1_t a0 = (float64x1_t)a[0]; + //float64x1_t a1 = (float64x1_t)a[1]; + // printf("%lld %lld %d %d\n\n", a[0], a[1], a[4], a[5]); + //int64x2_t b = vreinterpretq_s64_m128i(a); + // int64x1_t z = vset_lane_s64((int64_t) 0, z, 0); + // int64x2_t _a = vcombine_s64(z, z); + //= vsetq_lane_s64(a, vdupq_n_s64(0), 0); + return vcvtq_f64_s64(a); +} + +FORCE_INLINE __m128i _mm_set_epi64(__m64 i1, __m64 i2) +{ + return _mm_set_epi64x((int64_t) i1, (int64_t) i2); +} + +FORCE_INLINE __m128 _mm_cvtpd_ps(__m128d a) +{ + //printf("%.10e %.10e a \n", a[0], a[1]); + float32x2_t r = {1.0f, 1.0f}; + float32x4_t temp = vcvt_high_f32_f64(r, (float64x2_t) a); + //printf("TEMP: %.10e %.10e %.10e %.10e\n", temp[0], temp[1], temp[2], temp[3]); + //printf("%.10e %.10e temp\n", temp[0], temp[1]); + float32x2_t z = {0.0f, 0.0f}; + float32x4_t fin = {temp[2], temp[3], 0.0f, 0.0f}; + //float32x4_t res = {(float32_t)a[0]+0.5, (float32_t)a[1], 0.0f, 0.0f}; + return vreinterpretq_m128_f32(fin); //vcombine_f32(temp, z)); + //return (__m128) _mm_set_epi64(z, temp); +} + +FORCE_INLINE __m128d _mm_cvtps_pd(__m128 a) +{ + return (__m128d) vcvt_high_f64_f32((float32x4_t) a); +} + +FORCE_INLINE unsigned int _mm_getcsr(void) +{ + //printf("GET CSR \n"); + return 0; +} + +FORCE_INLINE void _mm_setcsr(unsigned int a) +{ + //printf("%d \n", a); + //return; +} + + +/// need to test lost precision, find a way keeping in floats + +FORCE_INLINE __m128 _mm_blendv_ps(__m128 _a, __m128 _b, __m128 _mask) +{ + //uint32x4_t mask = vreinterpretq_u32_s32(vshrq_n_s32(vreinterpretq_s32_m128(_mask), 31)); + //uint32x4_t a = vreinterpretq_u32_m128(_a); + //uint32x4_t b = vreinterpretq_u32_m128(_b); + //return vreinterpretq_m128_u32(vbslq_u32(mask, b, a)); + uint32x4_t mask; + for (int i = 0; i < 4; i++) + { + if(_mask[i] < 0) + { + mask[i] = -1; + } + else { + mask[i] = 0; + } + } + // printf("%u %u %u %u MASK\n", mask[0], mask[1], mask[2], mask[3]); + return vbslq_f32(mask, _b, _a); + //return vreinterpretq_m128_f32(vbslq_f32(vreinterpretq_u32_m128(_mask), vreinterpretq_f32_m128(_a), vreinterpretq_f32_m128(_b))); +} + +FORCE_INLINE __m128d _mm_blendv_pd(__m128d _a, __m128d _b, __m128d _mask) +{ + //uint64x2_t mask = vreinterpretq_u64_s64(vshrq_n_s64(vreinterpretq_s64_f64(_mask), 63)); + uint64x2_t mask; + mask[0] = (_mask[0] < 0) ? -1 : 0; + mask[1] = (_mask[1] < 0) ? -1 : 0; + + //printf("%u %u : %f %f MASK : _mask\n", mask[0], mask[1], _mask[0], _mask[1]); + //int64x2_t a = vreinterpretq_64_f64(_a); + //int64x2_t b = vreinterpretq_u64_f64(_b); + //return (__m128d) vbslq_f64(mask, _b, _a); + return vbslq_f64(mask, _b, _a); +} + +FORCE_INLINE __m128d _mm_set_pd(double e1, double e0) +{ + float64x2_t ret; + ret = vsetq_lane_f64(e0, ret, 0); + ret = vsetq_lane_f64(e1, ret, 1); + return ret; +} + +FORCE_INLINE void _mm_storel_pd(double *p, __m128d a) +{ + *p = vgetq_lane_f64(a, 0); +} + +/* +#define _mm_sqrt_pd vsqrtq_f64 +*/ + +// ----------------------------------- IQ-TREE end of additions -------------------------------------------------------- // + +#if defined(__GNUC__) || defined(__clang__) +#pragma pop_macro("ALIGN_STRUCT") +#pragma pop_macro("FORCE_INLINE") +#endif + +#endif +#endif diff --git a/tree/phylokernel.h b/tree/phylokernel.h index cf2228345..88160ed25 100644 --- a/tree/phylokernel.h +++ b/tree/phylokernel.h @@ -1410,7 +1410,7 @@ inline UINT fast_popcount(Vec4ui &x) { } inline UINT fast_popcount(Vec8ui &x) { -#if defined (__GNUC__) || defined(__clang__) +#if (defined (__GNUC__) || defined(__clang__)) && !defined(__ARM_NEON) MEM_ALIGN_BEGIN uint64_t vec[4] MEM_ALIGN_END; MEM_ALIGN_BEGIN uint64_t res[4] MEM_ALIGN_END; Vec8ui y; diff --git a/tree/phylokernelfma.cpp b/tree/phylokernelfma.cpp index 9806a9ef9..7b359fee0 100644 --- a/tree/phylokernelfma.cpp +++ b/tree/phylokernelfma.cpp @@ -20,7 +20,7 @@ #include "phylokernelnew.h" #include "phylokernelnonrev.h" -#if !defined(__AVX2__) && !defined(__FMA__) +#if !defined(__AVX2__) && !defined(__FMA__) && !defined(__ARM_NEON) #error "You must compile this file with AVX2 or FMA enabled!" #endif diff --git a/tree/phylokernelsse.cpp b/tree/phylokernelsse.cpp index f3838ac3f..0f8334059 100644 --- a/tree/phylokernelsse.cpp +++ b/tree/phylokernelsse.cpp @@ -21,7 +21,7 @@ #include "phylokernelnonrev.h" -#if !defined ( __SSE2__ ) && !defined ( __x86_64__ ) +#if !defined ( __SSE2__ ) && !defined ( __x86_64__ ) && !defined ( __ARM_NEON ) #error "You must compile this file with SSE2 enabled!" #endif diff --git a/tree/phylotreeavx.cpp b/tree/phylotreeavx.cpp index ecaa9970a..f36bc85b4 100644 --- a/tree/phylotreeavx.cpp +++ b/tree/phylotreeavx.cpp @@ -20,9 +20,11 @@ #include "phylokernelnew.h" #include "phylokernelnonrev.h" -#ifndef __AVX__ +#ifndef __AVX__ +#if !defined(__ARM_NEON) #error "You must compile this file with AVX enabled!" #endif +#endif void PhyloTree::setParsimonyKernelAVX() { computeParsimonyBranchPointer = &PhyloTree::computeParsimonyBranchFastSIMD; diff --git a/vectorclass/.!15407!vectormath_common.h b/vectorclass/.!15407!vectormath_common.h new file mode 100755 index 000000000..5e6a2ce5c --- /dev/null +++ b/vectorclass/.!15407!vectormath_common.h @@ -0,0 +1,18 @@ +/*************************** vectormath_common.h **************************** +* Author: Agner Fog +* Date created: 2014-04-18 +* Last modified: 2016-11-25 +* Version: 1.25 +* Project: vector classes +* Description: +* Header file containing common code for inline version of mathematical functions. +* +* Theory, methods and inspiration based partially on these sources: +* > Moshier, Stephen Lloyd Baluk: Methods and programs for mathematical functions. +* Ellis Horwood, 1989. +* > VDT library developed on CERN by Danilo Piparo, Thomas Hauth and +* Vincenzo Innocente, 2012, https://svnweb.cern.ch/trac/vdt +* > Cephes math library by Stephen L. Moshier 1992, +* http://www.netlib.org/cephes/ +* +* Calculation methods: diff --git a/vectorclass/.!3173!vectormath_common.h b/vectorclass/.!3173!vectormath_common.h new file mode 100755 index 000000000..5e6a2ce5c --- /dev/null +++ b/vectorclass/.!3173!vectormath_common.h @@ -0,0 +1,18 @@ +/*************************** vectormath_common.h **************************** +* Author: Agner Fog +* Date created: 2014-04-18 +* Last modified: 2016-11-25 +* Version: 1.25 +* Project: vector classes +* Description: +* Header file containing common code for inline version of mathematical functions. +* +* Theory, methods and inspiration based partially on these sources: +* > Moshier, Stephen Lloyd Baluk: Methods and programs for mathematical functions. +* Ellis Horwood, 1989. +* > VDT library developed on CERN by Danilo Piparo, Thomas Hauth and +* Vincenzo Innocente, 2012, https://svnweb.cern.ch/trac/vdt +* > Cephes math library by Stephen L. Moshier 1992, +* http://www.netlib.org/cephes/ +* +* Calculation methods: diff --git a/vectorclass/.!3173!vectormath_common.hr b/vectorclass/.!3173!vectormath_common.hr new file mode 100755 index 000000000..5e6a2ce5c --- /dev/null +++ b/vectorclass/.!3173!vectormath_common.hr @@ -0,0 +1,18 @@ +/*************************** vectormath_common.h **************************** +* Author: Agner Fog +* Date created: 2014-04-18 +* Last modified: 2016-11-25 +* Version: 1.25 +* Project: vector classes +* Description: +* Header file containing common code for inline version of mathematical functions. +* +* Theory, methods and inspiration based partially on these sources: +* > Moshier, Stephen Lloyd Baluk: Methods and programs for mathematical functions. +* Ellis Horwood, 1989. +* > VDT library developed on CERN by Danilo Piparo, Thomas Hauth and +* Vincenzo Innocente, 2012, https://svnweb.cern.ch/trac/vdt +* > Cephes math library by Stephen L. Moshier 1992, +* http://www.netlib.org/cephes/ +* +* Calculation methods: diff --git a/vectorclass/.!6455!vectormath_common.h b/vectorclass/.!6455!vectormath_common.h new file mode 100755 index 000000000..5e6a2ce5c --- /dev/null +++ b/vectorclass/.!6455!vectormath_common.h @@ -0,0 +1,18 @@ +/*************************** vectormath_common.h **************************** +* Author: Agner Fog +* Date created: 2014-04-18 +* Last modified: 2016-11-25 +* Version: 1.25 +* Project: vector classes +* Description: +* Header file containing common code for inline version of mathematical functions. +* +* Theory, methods and inspiration based partially on these sources: +* > Moshier, Stephen Lloyd Baluk: Methods and programs for mathematical functions. +* Ellis Horwood, 1989. +* > VDT library developed on CERN by Danilo Piparo, Thomas Hauth and +* Vincenzo Innocente, 2012, https://svnweb.cern.ch/trac/vdt +* > Cephes math library by Stephen L. Moshier 1992, +* http://www.netlib.org/cephes/ +* +* Calculation methods: diff --git a/vectorclass/.!7983!vectormath_common.h b/vectorclass/.!7983!vectormath_common.h new file mode 100755 index 000000000..5e6a2ce5c --- /dev/null +++ b/vectorclass/.!7983!vectormath_common.h @@ -0,0 +1,18 @@ +/*************************** vectormath_common.h **************************** +* Author: Agner Fog +* Date created: 2014-04-18 +* Last modified: 2016-11-25 +* Version: 1.25 +* Project: vector classes +* Description: +* Header file containing common code for inline version of mathematical functions. +* +* Theory, methods and inspiration based partially on these sources: +* > Moshier, Stephen Lloyd Baluk: Methods and programs for mathematical functions. +* Ellis Horwood, 1989. +* > VDT library developed on CERN by Danilo Piparo, Thomas Hauth and +* Vincenzo Innocente, 2012, https://svnweb.cern.ch/trac/vdt +* > Cephes math library by Stephen L. Moshier 1992, +* http://www.netlib.org/cephes/ +* +* Calculation methods: diff --git a/vectorclass/instrset.h b/vectorclass/instrset.h index 8204fff29..3a3559f99 100755 --- a/vectorclass/instrset.h +++ b/vectorclass/instrset.h @@ -34,7 +34,7 @@ #define INSTRSET 8 #elif defined ( __AVX__ ) #define INSTRSET 7 -#elif defined ( __SSE4_2__ ) +#elif defined ( __SSE4_2__ ) || defined ( __ARM_NEON ) // set INSTRSET value to 6 if ARM_NEON, to include intrinsics from SSE4.2 and below #define INSTRSET 6 #elif defined ( __SSE4_1__ ) #define INSTRSET 5 @@ -65,17 +65,41 @@ #elif INSTRSET == 7 #include // AVX #elif INSTRSET == 6 +#if defined(__ARM_NEON) +#include "sse2neon.h" // SSE4.2 +#else #include // SSE4.2 +#endif #elif INSTRSET == 5 -#include // SSE4.1 +#if defined(__ARM_NEON) +#include "sse2neon.h" // SSE4.1 +#else +#include // SSE4.1 +#endif #elif INSTRSET == 4 -#include // SSSE3 +#if defined(__ARM_NEON) +#include "sse2neon.h" // SSSE3 +#else +#include // SSSE3 +#endif #elif INSTRSET == 3 -#include // SSE3 +#if defined(__ARM_NEON) +#include "sse2neon.h" // SSE3 +#else +#include // SSE3 +#endif #elif INSTRSET == 2 -#include // SSE2 +#if defined(__ARM_NEON) +#include "sse2neon.h" // SSE2 +#else +#include // SSE2 +#endif #elif INSTRSET == 1 -#include // SSE +#if defined(__ARM_NEON) +#include "sse2neon.h" // SSE +#else +#include // SSE +#endif #endif // INSTRSET #if INSTRSET >= 8 && !defined(__FMA__) diff --git a/vectorclass/instrset_detect.cpp b/vectorclass/instrset_detect.cpp index b6be412f2..dae40bc44 100755 --- a/vectorclass/instrset_detect.cpp +++ b/vectorclass/instrset_detect.cpp @@ -20,7 +20,7 @@ namespace VCL_NAMESPACE { // input: eax = functionnumber, ecx = 0 // output: eax = output[0], ebx = output[1], ecx = output[2], edx = output[3] static inline void cpuid (int output[4], int functionnumber) { -#if defined(__GNUC__) || defined(__clang__) // use inline assembly, Gnu/AT&T syntax +#if defined(__GNUC__) && !defined ( __ARM_NEON ) || defined(__clang__) && !defined ( __ARM_NEON ) // use inline assembly, Gnu/AT&T syntax int a, b, c, d; __asm("cpuid" : "=a"(a),"=b"(b),"=c"(c),"=d"(d) : "a"(functionnumber),"c"(0) : ); @@ -33,7 +33,7 @@ static inline void cpuid (int output[4], int functionnumber) { __cpuidex(output, functionnumber, 0); // intrinsic function for CPUID -#else // unknown platform. try inline assembly with masm/intel syntax +#elif !defined ( __ARM_NEON ) // unknown platform. try inline assembly with masm/intel syntax __asm { mov eax, functionnumber @@ -55,13 +55,13 @@ static inline int64_t xgetbv (int ctr) { return _xgetbv(ctr); // intrinsic function for XGETBV -#elif defined(__GNUC__) // use inline assembly, Gnu/AT&T syntax +#elif defined(__GNUC__) && !defined ( __ARM_NEON ) // use inline assembly, Gnu/AT&T syntax uint32_t a, d; __asm("xgetbv" : "=a"(a),"=d"(d) : "c"(ctr) : ); return a | (uint64_t(d) << 32); -#else // #elif defined (_WIN32) // other compiler. try inline assembly with masm/intel/MS syntax +#elif !defined ( __ARM_NEON ) // #elif defined (_WIN32) // other compiler. try inline assembly with masm/intel/MS syntax uint32_t a, d; __asm { @@ -75,6 +75,7 @@ static inline int64_t xgetbv (int ctr) { return a | (uint64_t(d) << 32); #endif + return 0; } @@ -99,6 +100,9 @@ int instrset_detect(void) { if (iset >= 0) { return iset; // called before } +#if defined( __ARM_NEON ) + iset = 6; // no SSE4.2 for sse2neon.h +#else iset = 0; // default value int abcd[4] = {0,0,0,0}; // cpuid results cpuid(abcd, 0); // call cpuid function 0 @@ -137,6 +141,7 @@ int instrset_detect(void) { iset = 10; if ((abcd[1] & 0x40020000) != 0x40020000) return iset; // no AVX512BW, AVX512DQ iset = 11; +#endif return iset; } diff --git a/vectorclass/sse2neon.h b/vectorclass/sse2neon.h new file mode 100644 index 000000000..b310d9bfd --- /dev/null +++ b/vectorclass/sse2neon.h @@ -0,0 +1,4610 @@ +#ifndef SSE2NEON_H +#define SSE2NEON_H + +// This header file provides a simple API translation layer +// between SSE intrinsics to their corresponding Arm/Aarch64 NEON versions +// +// This header file does not yet translate all of the SSE intrinsics. +// +// Contributors to this work are: +// John W. Ratcliff +// Brandon Rowlett +// Ken Fast +// Eric van Beurden +// Alexander Potylitsin +// Hasindu Gamaarachchi +// Jim Huang +// Mark Cheng +// Malcolm James MacLeod +// Devin Hussey (easyaspi314) +// Sebastian Pop +// Developer Ecosystem Engineering + +/* + * The MIT license: + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + +#if defined(__GNUC__) || defined(__clang__) +#pragma push_macro("FORCE_INLINE") +#pragma push_macro("ALIGN_STRUCT") +#define FORCE_INLINE static inline __attribute__((always_inline)) +#define ALIGN_STRUCT(x) __attribute__((aligned(x))) +#else +#error "Macro name collisions may happens with unknown compiler" +#ifdef FORCE_INLINE +#undef FORCE_INLINE +#endif +#define FORCE_INLINE static inline +#ifndef ALIGN_STRUCT +#define ALIGN_STRUCT(x) __declspec(align(x)) +#endif +#endif + +#include +#include +//#include + +#include + +/* "__has_builtin" can be used to query support for built-in functions + * provided by gcc/clang and other compilers that support it. + */ +#ifndef __has_builtin +#define __has_builtin(x) 0 // Compatibility with non-{clang,gcc-10} compilers +#endif + +/** + * MACRO for shuffle parameter for _mm_shuffle_ps(). + * Argument fp3 is a digit[0123] that represents the fp from argument "b" + * of mm_shuffle_ps that will be placed in fp3 of result. fp2 is the same + * for fp2 in result. fp1 is a digit[0123] that represents the fp from + * argument "a" of mm_shuffle_ps that will be places in fp1 of result. + * fp0 is the same for fp0 of result. + */ +#define _MM_SHUFFLE(fp3, fp2, fp1, fp0) \ + (((fp3) << 6) | ((fp2) << 4) | ((fp1) << 2) | ((fp0))) + +/* indicate immediate constant argument in a given range */ +#define __constrange(min, max) const +#define __transfersize(size) +/* A few intrinsics accept traditional data types like ints or floats, but + * most operate on data types that are specific to SSE. + * If a vector type ends in d, it contains doubles, and if it does not have + * a suffix, it contains floats. An integer vector type can contain any type + * of integer, from chars to shorts to unsigned long longs. + */ +typedef float32x2_t __m64; +typedef float32x4_t __m128; /* 128-bit vector containing 4 floats */ +// On ARM 32-bit architecture, the float64x2_t is not supported. +// The data type __m128d should be represented in a different way for related +// intrinsic conversion. +#if defined(__aarch64__) +typedef float64x2_t __m128d; /* 128-bit vector containing 2 doubles */ +#else +typedef float32x4_t __m128d; +#endif +typedef int64x1_t __m64i; +typedef int64x2_t __m128i; /* 128-bit vector containing integers */ + +/* type-safe casting between types */ + +#define vreinterpretq_m128_f16(x) vreinterpretq_f32_f16(x) +#define vreinterpretq_m128_f32(x) (x) +#define vreinterpretq_m128_f64(x) vreinterpretq_f32_f64(x) + +#define vreinterpretq_m128_u8(x) vreinterpretq_f32_u8(x) +#define vreinterpretq_m128_u16(x) vreinterpretq_f32_u16(x) +#define vreinterpretq_m128_u32(x) vreinterpretq_f32_u32(x) +#define vreinterpretq_m128_u64(x) vreinterpretq_f32_u64(x) + +#define vreinterpretq_m128_s8(x) vreinterpretq_f32_s8(x) +#define vreinterpretq_m128_s16(x) vreinterpretq_f32_s16(x) +#define vreinterpretq_m128_s32(x) vreinterpretq_f32_s32(x) +#define vreinterpretq_m128_s64(x) vreinterpretq_f32_s64(x) + +#define vreinterpretq_f16_m128(x) vreinterpretq_f16_f32(x) +#define vreinterpretq_f32_m128(x) (x) +#define vreinterpretq_f64_m128(x) vreinterpretq_f64_f32(x) + +#define vreinterpretq_u8_m128(x) vreinterpretq_u8_f32(x) +#define vreinterpretq_u16_m128(x) vreinterpretq_u16_f32(x) +#define vreinterpretq_u32_m128(x) vreinterpretq_u32_f32(x) +#define vreinterpretq_u64_m128(x) vreinterpretq_u64_f32(x) + +#define vreinterpretq_s8_m128(x) vreinterpretq_s8_f32(x) +#define vreinterpretq_s16_m128(x) vreinterpretq_s16_f32(x) +#define vreinterpretq_s32_m128(x) vreinterpretq_s32_f32(x) +#define vreinterpretq_s64_m128(x) vreinterpretq_s64_f32(x) + +#define vreinterpretq_m128i_s8(x) vreinterpretq_s64_s8(x) +#define vreinterpretq_m128i_s16(x) vreinterpretq_s64_s16(x) +#define vreinterpretq_m128i_s32(x) vreinterpretq_s64_s32(x) +#define vreinterpretq_m128i_s64(x) (x) + +#define vreinterpretq_m128i_u8(x) vreinterpretq_s64_u8(x) +#define vreinterpretq_m128i_u16(x) vreinterpretq_s64_u16(x) +#define vreinterpretq_m128i_u32(x) vreinterpretq_s64_u32(x) +#define vreinterpretq_m128i_u64(x) vreinterpretq_s64_u64(x) + +#define vreinterpretq_s8_m128i(x) vreinterpretq_s8_s64(x) +#define vreinterpretq_s16_m128i(x) vreinterpretq_s16_s64(x) +#define vreinterpretq_s32_m128i(x) vreinterpretq_s32_s64(x) +#define vreinterpretq_s64_m128i(x) (x) + +#define vreinterpretq_u8_m128i(x) vreinterpretq_u8_s64(x) +#define vreinterpretq_u16_m128i(x) vreinterpretq_u16_s64(x) +#define vreinterpretq_u32_m128i(x) vreinterpretq_u32_s64(x) +#define vreinterpretq_u64_m128i(x) vreinterpretq_u64_s64(x) + +#define vreinterpret_m64i_s8(x) vreinterpret_s64_s8(x) +#define vreinterpret_m64i_s16(x) vreinterpret_s64_s16(x) +#define vreinterpret_m64i_s32(x) vreinterpret_s64_s32(x) +#define vreinterpret_m64i_s64(x) (x) + +#define vreinterpret_m64i_u8(x) vreinterpret_s64_u8(x) +#define vreinterpret_m64i_u16(x) vreinterpret_s64_u16(x) +#define vreinterpret_m64i_u32(x) vreinterpret_s64_u32(x) +#define vreinterpret_m64i_u64(x) vreinterpret_s64_u64(x) + +#define vreinterpret_u8_m64i(x) vreinterpret_u8_s64(x) +#define vreinterpret_u16_m64i(x) vreinterpret_u16_s64(x) +#define vreinterpret_u32_m64i(x) vreinterpret_u32_s64(x) +#define vreinterpret_u64_m64i(x) vreinterpret_u64_s64(x) + +#define vreinterpret_s8_m64i(x) vreinterpret_s8_s64(x) +#define vreinterpret_s16_m64i(x) vreinterpret_s16_s64(x) +#define vreinterpret_s32_m64i(x) vreinterpret_s32_s64(x) +#define vreinterpret_s64_m64i(x) (x) + +// A struct is defined in this header file called 'SIMDVec' which can be used +// by applications which attempt to access the contents of an _m128 struct +// directly. It is important to note that accessing the __m128 struct directly +// is bad coding practice by Microsoft: @see: +// https://msdn.microsoft.com/en-us/library/ayeb3ayc.aspx +// +// However, some legacy source code may try to access the contents of an __m128 +// struct directly so the developer can use the SIMDVec as an alias for it. Any +// casting must be done manually by the developer, as you cannot cast or +// otherwise alias the base NEON data type for intrinsic operations. +// +// union intended to allow direct access to an __m128 variable using the names +// that the MSVC compiler provides. This union should really only be used when +// trying to access the members of the vector as integer values. GCC/clang +// allow native access to the float members through a simple array access +// operator (in C since 4.6, in C++ since 4.8). +// +// Ideally direct accesses to SIMD vectors should not be used since it can cause +// a performance hit. If it really is needed however, the original __m128 +// variable can be aliased with a pointer to this union and used to access +// individual components. The use of this union should be hidden behind a macro +// that is used throughout the codebase to access the members instead of always +// declaring this type of variable. +typedef union ALIGN_STRUCT(16) SIMDVec { + float m128_f32[4]; // as floats - DON'T USE. Added for convenience. + int8_t m128_i8[16]; // as signed 8-bit integers. + int16_t m128_i16[8]; // as signed 16-bit integers. + int32_t m128_i32[4]; // as signed 32-bit integers. + int64_t m128_i64[2]; // as signed 64-bit integers. + uint8_t m128_u8[16]; // as unsigned 8-bit integers. + uint16_t m128_u16[8]; // as unsigned 16-bit integers. + uint32_t m128_u32[4]; // as unsigned 32-bit integers. + uint64_t m128_u64[2]; // as unsigned 64-bit integers. +} SIMDVec; + +// casting using SIMDVec +#define vreinterpretq_nth_u64_m128i(x, n) (((SIMDVec *) &x)->m128_u64[n]) +#define vreinterpretq_nth_u32_m128i(x, n) (((SIMDVec *) &x)->m128_u32[n]) + +/* Backwards compatibility for compilers with lack of specific type support */ + +// Older gcc does not define vld1q_u8_x4 type +#if defined(__GNUC__) && !defined(__clang__) +#if __GNUC__ <= 9 +FORCE_INLINE uint8x16x4_t vld1q_u8_x4(const uint8_t *p) +{ + uint8x16x4_t ret; + ret.val[0] = vld1q_u8(p + 0); + ret.val[1] = vld1q_u8(p + 16); + ret.val[2] = vld1q_u8(p + 32); + ret.val[3] = vld1q_u8(p + 48); + return ret; +} +#endif +#endif + +/* Function Naming Conventions + * The naming convention of SSE intrinsics is straightforward. A generic SSE + * intrinsic function is given as follows: + * _mm__ + * + * The parts of this format are given as follows: + * 1. describes the operation performed by the intrinsic + * 2. identifies the data type of the function's primary arguments + * + * This last part, , is a little complicated. It identifies the + * content of the input values, and can be set to any of the following values: + * + ps - vectors contain floats (ps stands for packed single-precision) + * + pd - vectors cantain doubles (pd stands for packed double-precision) + * + epi8/epi16/epi32/epi64 - vectors contain 8-bit/16-bit/32-bit/64-bit + * signed integers + * + epu8/epu16/epu32/epu64 - vectors contain 8-bit/16-bit/32-bit/64-bit + * unsigned integers + * + si128 - unspecified 128-bit vector or 256-bit vector + * + m128/m128i/m128d - identifies input vector types when they are different + * than the type of the returned vector + * + * For example, _mm_setzero_ps. The _mm implies that the function returns + * a 128-bit vector. The _ps at the end implies that the argument vectors + * contain floats. + * + * A complete example: Byte Shuffle - pshufb (_mm_shuffle_epi8) + * // Set packed 16-bit integers. 128 bits, 8 short, per 16 bits + * __m128i v_in = _mm_setr_epi16(1, 2, 3, 4, 5, 6, 7, 8); + * // Set packed 8-bit integers + * // 128 bits, 16 chars, per 8 bits + * __m128i v_perm = _mm_setr_epi8(1, 0, 2, 3, 8, 9, 10, 11, + * 4, 5, 12, 13, 6, 7, 14, 15); + * // Shuffle packed 8-bit integers + * __m128i v_out = _mm_shuffle_epi8(v_in, v_perm); // pshufb + * + * Data (Number, Binary, Byte Index): + +------+------+-------------+------+------+-------------+ + | 1 | 2 | 3 | 4 | Number + +------+------+------+------+------+------+------+------+ + | 0000 | 0001 | 0000 | 0010 | 0000 | 0011 | 0000 | 0100 | Binary + +------+------+------+------+------+------+------+------+ + | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | Index + +------+------+------+------+------+------+------+------+ + + +------+------+------+------+------+------+------+------+ + | 5 | 6 | 7 | 8 | Number + +------+------+------+------+------+------+------+------+ + | 0000 | 0101 | 0000 | 0110 | 0000 | 0111 | 0000 | 1000 | Binary + +------+------+------+------+------+------+------+------+ + | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | Index + +------+------+------+------+------+------+------+------+ + * Index (Byte Index): + +------+------+------+------+------+------+------+------+ + | 1 | 0 | 2 | 3 | 8 | 9 | 10 | 11 | + +------+------+------+------+------+------+------+------+ + + +------+------+------+------+------+------+------+------+ + | 4 | 5 | 12 | 13 | 6 | 7 | 14 | 15 | + +------+------+------+------+------+------+------+------+ + * Result: + +------+------+------+------+------+------+------+------+ + | 1 | 0 | 2 | 3 | 8 | 9 | 10 | 11 | Index + +------+------+------+------+------+------+------+------+ + | 0001 | 0000 | 0000 | 0010 | 0000 | 0101 | 0000 | 0110 | Binary + +------+------+------+------+------+------+------+------+ + | 256 | 2 | 5 | 6 | Number + +------+------+------+------+------+------+------+------+ + + +------+------+------+------+------+------+------+------+ + | 4 | 5 | 12 | 13 | 6 | 7 | 14 | 15 | Index + +------+------+------+------+------+------+------+------+ + | 0000 | 0011 | 0000 | 0111 | 0000 | 0100 | 0000 | 1000 | Binary + +------+------+------+------+------+------+------+------+ + | 3 | 7 | 4 | 8 | Number + +------+------+------+------+------+------+-------------+ + */ + +/* Set/get methods */ + +/* Constants for use with _mm_prefetch. */ +enum _mm_hint { + _MM_HINT_NTA = 0, /* load data to L1 and L2 cache, mark it as NTA */ + _MM_HINT_T0 = 1, /* load data to L1 and L2 cache */ + _MM_HINT_T1 = 2, /* load data to L2 cache only */ + _MM_HINT_T2 = 3, /* load data to L2 cache only, mark it as NTA */ + _MM_HINT_ENTA = 4, /* exclusive version of _MM_HINT_NTA */ + _MM_HINT_ET0 = 5, /* exclusive version of _MM_HINT_T0 */ + _MM_HINT_ET1 = 6, /* exclusive version of _MM_HINT_T1 */ + _MM_HINT_ET2 = 7 /* exclusive version of _MM_HINT_T2 */ +}; + +// Loads one cache line of data from address p to a location closer to the +// processor. https://msdn.microsoft.com/en-us/library/84szxsww(v=vs.100).aspx +FORCE_INLINE void _mm_prefetch(const void *p, int i) +{ + (void) i; + __builtin_prefetch(p); +} + +// extracts the lower order floating point value from the parameter : +// https://msdn.microsoft.com/en-us/library/bb514059%28v=vs.120%29.aspx?f=255&MSPPError=-2147217396 +FORCE_INLINE float _mm_cvtss_f32(__m128 a) +{ + return vgetq_lane_f32(vreinterpretq_f32_m128(a), 0); +} + +// Sets the 128-bit value to zero +// https://msdn.microsoft.com/en-us/library/vstudio/ys7dw0kh(v=vs.100).aspx +FORCE_INLINE __m128i _mm_setzero_si128(void) +{ + return vreinterpretq_m128i_s32(vdupq_n_s32(0)); +} + +// Clears the four single-precision, floating-point values. +// https://msdn.microsoft.com/en-us/library/vstudio/tk1t2tbz(v=vs.100).aspx +FORCE_INLINE __m128 _mm_setzero_ps(void) +{ + return vreinterpretq_m128_f32(vdupq_n_f32(0)); +} + +// Sets the four single-precision, floating-point values to w. +// +// r0 := r1 := r2 := r3 := w +// +// https://msdn.microsoft.com/en-us/library/vstudio/2x1se8ha(v=vs.100).aspx +FORCE_INLINE __m128 _mm_set1_ps(float _w) +{ + return vreinterpretq_m128_f32(vdupq_n_f32(_w)); +} + +// Sets the four single-precision, floating-point values to w. +// https://msdn.microsoft.com/en-us/library/vstudio/2x1se8ha(v=vs.100).aspx +FORCE_INLINE __m128 _mm_set_ps1(float _w) +{ + return vreinterpretq_m128_f32(vdupq_n_f32(_w)); +} + +// Sets the four single-precision, floating-point values to the four inputs. +// https://msdn.microsoft.com/en-us/library/vstudio/afh0zf75(v=vs.100).aspx +FORCE_INLINE __m128 _mm_set_ps(float w, float z, float y, float x) +{ + float ALIGN_STRUCT(16) data[4] = {x, y, z, w}; + return vreinterpretq_m128_f32(vld1q_f32(data)); +} + +// Copy single-precision (32-bit) floating-point element a to the lower element +// of dst, and zero the upper 3 elements. +// https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_set_ss&expand=4901,4895,4901 +FORCE_INLINE __m128 _mm_set_ss(float a) +{ + float ALIGN_STRUCT(16) data[4] = {a, 0, 0, 0}; + return vreinterpretq_m128_f32(vld1q_f32(data)); +} + +// Sets the four single-precision, floating-point values to the four inputs in +// reverse order. +// https://msdn.microsoft.com/en-us/library/vstudio/d2172ct3(v=vs.100).aspx +FORCE_INLINE __m128 _mm_setr_ps(float w, float z, float y, float x) +{ + float ALIGN_STRUCT(16) data[4] = {w, z, y, x}; + return vreinterpretq_m128_f32(vld1q_f32(data)); +} + +// Sets the 8 signed 16-bit integer values in reverse order. +// +// Return Value +// r0 := w0 +// r1 := w1 +// ... +// r7 := w7 +FORCE_INLINE __m128i _mm_setr_epi16(short w0, + short w1, + short w2, + short w3, + short w4, + short w5, + short w6, + short w7) +{ + int16_t ALIGN_STRUCT(16) data[8] = {w0, w1, w2, w3, w4, w5, w6, w7}; + return vreinterpretq_m128i_s16(vld1q_s16((int16_t *) data)); +} + +// Sets the 4 signed 32-bit integer values in reverse order +// https://technet.microsoft.com/en-us/library/security/27yb3ee5(v=vs.90).aspx +FORCE_INLINE __m128i _mm_setr_epi32(int i3, int i2, int i1, int i0) +{ + int32_t ALIGN_STRUCT(16) data[4] = {i3, i2, i1, i0}; + return vreinterpretq_m128i_s32(vld1q_s32(data)); +} + +// Sets the 16 signed 8-bit integer values to b. +// +// r0 := b +// r1 := b +// ... +// r15 := b +// +// https://msdn.microsoft.com/en-us/library/6e14xhyf(v=vs.100).aspx +FORCE_INLINE __m128i _mm_set1_epi8(signed char w) +{ + return vreinterpretq_m128i_s8(vdupq_n_s8(w)); +} + +// Sets the 8 signed 16-bit integer values to w. +// +// r0 := w +// r1 := w +// ... +// r7 := w +// +// https://msdn.microsoft.com/en-us/library/k0ya3x0e(v=vs.90).aspx +FORCE_INLINE __m128i _mm_set1_epi16(short w) +{ + return vreinterpretq_m128i_s16(vdupq_n_s16(w)); +} + +// Sets the 16 signed 8-bit integer values. +// https://msdn.microsoft.com/en-us/library/x0cx8zd3(v=vs.90).aspx +FORCE_INLINE __m128i _mm_set_epi8(signed char b15, + signed char b14, + signed char b13, + signed char b12, + signed char b11, + signed char b10, + signed char b9, + signed char b8, + signed char b7, + signed char b6, + signed char b5, + signed char b4, + signed char b3, + signed char b2, + signed char b1, + signed char b0) +{ + int8_t ALIGN_STRUCT(16) + data[16] = {(int8_t) b0, (int8_t) b1, (int8_t) b2, (int8_t) b3, + (int8_t) b4, (int8_t) b5, (int8_t) b6, (int8_t) b7, + (int8_t) b8, (int8_t) b9, (int8_t) b10, (int8_t) b11, + (int8_t) b12, (int8_t) b13, (int8_t) b14, (int8_t) b15}; + return (__m128i) vld1q_s8(data); +} + +// Sets the 8 signed 16-bit integer values. +// https://msdn.microsoft.com/en-au/library/3e0fek84(v=vs.90).aspx +FORCE_INLINE __m128i _mm_set_epi16(short i7, + short i6, + short i5, + short i4, + short i3, + short i2, + short i1, + short i0) +{ + int16_t ALIGN_STRUCT(16) data[8] = {i0, i1, i2, i3, i4, i5, i6, i7}; + return vreinterpretq_m128i_s16(vld1q_s16(data)); +} + +// Sets the 16 signed 8-bit integer values in reverse order. +// https://msdn.microsoft.com/en-us/library/2khb9c7k(v=vs.90).aspx +FORCE_INLINE __m128i _mm_setr_epi8(signed char b0, + signed char b1, + signed char b2, + signed char b3, + signed char b4, + signed char b5, + signed char b6, + signed char b7, + signed char b8, + signed char b9, + signed char b10, + signed char b11, + signed char b12, + signed char b13, + signed char b14, + signed char b15) +{ + int8_t ALIGN_STRUCT(16) + data[16] = {(int8_t) b0, (int8_t) b1, (int8_t) b2, (int8_t) b3, + (int8_t) b4, (int8_t) b5, (int8_t) b6, (int8_t) b7, + (int8_t) b8, (int8_t) b9, (int8_t) b10, (int8_t) b11, + (int8_t) b12, (int8_t) b13, (int8_t) b14, (int8_t) b15}; + return (__m128i) vld1q_s8(data); +} + +// Sets the 4 signed 32-bit integer values to i. +// +// r0 := i +// r1 := i +// r2 := i +// r3 := I +// +// https://msdn.microsoft.com/en-us/library/vstudio/h4xscxat(v=vs.100).aspx +FORCE_INLINE __m128i _mm_set1_epi32(int _i) +{ + return vreinterpretq_m128i_s32(vdupq_n_s32(_i)); +} + +// Sets the 2 signed 64-bit integer values to i. +// https://docs.microsoft.com/en-us/previous-versions/visualstudio/visual-studio-2010/whtfzhzk(v=vs.100) +FORCE_INLINE __m128i _mm_set1_epi64(int64_t _i) +{ + return vreinterpretq_m128i_s64(vdupq_n_s64(_i)); +} + +// Sets the 2 signed 64-bit integer values to i. +// https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_set1_epi64x&expand=4961 +FORCE_INLINE __m128i _mm_set1_epi64x(int64_t _i) +{ + return vreinterpretq_m128i_s64(vdupq_n_s64(_i)); +} + +// Sets the 4 signed 32-bit integer values. +// https://msdn.microsoft.com/en-us/library/vstudio/019beekt(v=vs.100).aspx +FORCE_INLINE __m128i _mm_set_epi32(int i3, int i2, int i1, int i0) +{ + int32_t ALIGN_STRUCT(16) data[4] = {i0, i1, i2, i3}; + return vreinterpretq_m128i_s32(vld1q_s32(data)); +} + +// Returns the __m128i structure with its two 64-bit integer values +// initialized to the values of the two 64-bit integers passed in. +// https://msdn.microsoft.com/en-us/library/dk2sdw0h(v=vs.120).aspx +FORCE_INLINE __m128i _mm_set_epi64x(int64_t i1, int64_t i2) +{ + int64_t ALIGN_STRUCT(16) data[2] = {i2, i1}; + return vreinterpretq_m128i_s64(vld1q_s64(data)); +} + +// Stores four single-precision, floating-point values. +// https://msdn.microsoft.com/en-us/library/vstudio/s3h4ay6y(v=vs.100).aspx +FORCE_INLINE void _mm_store_ps(float *p, __m128 a) +{ + vst1q_f32(p, vreinterpretq_f32_m128(a)); +} + +// Stores four single-precision, floating-point values. +// https://msdn.microsoft.com/en-us/library/44e30x22(v=vs.100).aspx +FORCE_INLINE void _mm_storeu_ps(float *p, __m128 a) +{ + vst1q_f32(p, vreinterpretq_f32_m128(a)); +} + +// Stores four 32-bit integer values as (as a __m128i value) at the address p. +// https://msdn.microsoft.com/en-us/library/vstudio/edk11s13(v=vs.100).aspx +FORCE_INLINE void _mm_store_si128(__m128i *p, __m128i a) +{ + vst1q_s32((int32_t *) p, vreinterpretq_s32_m128i(a)); +} + +// Stores four 32-bit integer values as (as a __m128i value) at the address p. +// https://msdn.microsoft.com/en-us/library/vstudio/edk11s13(v=vs.100).aspx +FORCE_INLINE void _mm_storeu_si128(__m128i *p, __m128i a) +{ + vst1q_s32((int32_t *) p, vreinterpretq_s32_m128i(a)); +} + +// Stores the lower single - precision, floating - point value. +// https://msdn.microsoft.com/en-us/library/tzz10fbx(v=vs.100).aspx +FORCE_INLINE void _mm_store_ss(float *p, __m128 a) +{ + vst1q_lane_f32(p, vreinterpretq_f32_m128(a), 0); +} + +// Reads the lower 64 bits of b and stores them into the lower 64 bits of a. +// https://msdn.microsoft.com/en-us/library/hhwf428f%28v=vs.90%29.aspx +FORCE_INLINE void _mm_storel_epi64(__m128i *a, __m128i b) +{ + uint64x1_t hi = vget_high_u64(vreinterpretq_u64_m128i(*a)); + uint64x1_t lo = vget_low_u64(vreinterpretq_u64_m128i(b)); + *a = vreinterpretq_m128i_u64(vcombine_u64(lo, hi)); +} + +// Stores the lower two single-precision floating point values of a to the +// address p. +// +// *p0 := a0 +// *p1 := a1 +// +// https://msdn.microsoft.com/en-us/library/h54t98ks(v=vs.90).aspx +FORCE_INLINE void _mm_storel_pi(__m64 *p, __m128 a) +{ + *p = vget_low_f32(a); +} + +// Stores the upper two single-precision, floating-point values of a to the +// address p. +// +// *p0 := a2 +// *p1 := a3 +// +// https://msdn.microsoft.com/en-us/library/a7525fs8(v%3dvs.90).aspx +FORCE_INLINE void _mm_storeh_pi(__m64 *p, __m128 a) +{ + *p = vget_high_f32(a); +} + +// Loads a single single-precision, floating-point value, copying it into all +// four words +// https://msdn.microsoft.com/en-us/library/vstudio/5cdkf716(v=vs.100).aspx +FORCE_INLINE __m128 _mm_load1_ps(const float *p) +{ + return vreinterpretq_m128_f32(vld1q_dup_f32(p)); +} +#define _mm_load_ps1 _mm_load1_ps + +// Sets the lower two single-precision, floating-point values with 64 +// bits of data loaded from the address p; the upper two values are passed +// through from a. +// +// Return Value +// r0 := *p0 +// r1 := *p1 +// r2 := a2 +// r3 := a3 +// +// https://msdn.microsoft.com/en-us/library/s57cyak2(v=vs.100).aspx +FORCE_INLINE __m128 _mm_loadl_pi(__m128 a, __m64 const *p) +{ + return vreinterpretq_m128_f32( + vcombine_f32(vld1_f32((const float32_t *) p), vget_high_f32(a))); +} + +// Sets the upper two single-precision, floating-point values with 64 +// bits of data loaded from the address p; the lower two values are passed +// through from a. +// +// r0 := a0 +// r1 := a1 +// r2 := *p0 +// r3 := *p1 +// +// https://msdn.microsoft.com/en-us/library/w92wta0x(v%3dvs.100).aspx +FORCE_INLINE __m128 _mm_loadh_pi(__m128 a, __m64 const *p) +{ + return vreinterpretq_m128_f32( + vcombine_f32(vget_low_f32(a), vld1_f32((const float32_t *) p))); +} + +// Loads four single-precision, floating-point values. +// https://msdn.microsoft.com/en-us/library/vstudio/zzd50xxt(v=vs.100).aspx +FORCE_INLINE __m128 _mm_load_ps(const float *p) +{ + return vreinterpretq_m128_f32(vld1q_f32(p)); +} + +// Loads four single-precision, floating-point values. +// https://msdn.microsoft.com/en-us/library/x1b16s7z%28v=vs.90%29.aspx +FORCE_INLINE __m128 _mm_loadu_ps(const float *p) +{ + // for neon, alignment doesn't matter, so _mm_load_ps and _mm_loadu_ps are + // equivalent for neon + return vreinterpretq_m128_f32(vld1q_f32(p)); +} + +// Loads a double-precision, floating-point value. +// The upper double-precision, floating-point is set to zero. The address p does +// not need to be 16-byte aligned. +// https://docs.microsoft.com/en-us/previous-versions/visualstudio/visual-studio-2010/574w9fdd(v%3dvs.100) +FORCE_INLINE __m128d _mm_load_sd(const double *p) +{ +#if defined(__aarch64__) + return vsetq_lane_f64(*p, vdupq_n_f64(0), 0); +#else + const float *fp = (const float *) p; + float ALIGN_STRUCT(16) data[4] = {fp[0], fp[1], 0, 0}; + return vld1q_f32(data); +#endif +} + +// Loads an single - precision, floating - point value into the low word and +// clears the upper three words. +// https://msdn.microsoft.com/en-us/library/548bb9h4%28v=vs.90%29.aspx +FORCE_INLINE __m128 _mm_load_ss(const float *p) +{ + return vreinterpretq_m128_f32(vsetq_lane_f32(*p, vdupq_n_f32(0), 0)); +} + +FORCE_INLINE __m128i _mm_loadl_epi64(__m128i const *p) +{ + /* Load the lower 64 bits of the value pointed to by p into the + * lower 64 bits of the result, zeroing the upper 64 bits of the result. + */ + return vreinterpretq_m128i_s32( + vcombine_s32(vld1_s32((int32_t const *) p), vcreate_s32(0))); +} + +/* Logic/Binary operations */ + +// Compares for inequality. +// https://msdn.microsoft.com/en-us/library/sf44thbx(v=vs.100).aspx +FORCE_INLINE __m128 _mm_cmpneq_ps(__m128 a, __m128 b) +{ + return vreinterpretq_m128_u32(vmvnq_u32( + vceqq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b)))); +} + +// Computes the bitwise AND-NOT of the four single-precision, floating-point +// values of a and b. +// +// r0 := ~a0 & b0 +// r1 := ~a1 & b1 +// r2 := ~a2 & b2 +// r3 := ~a3 & b3 +// +// https://msdn.microsoft.com/en-us/library/vstudio/68h7wd02(v=vs.100).aspx +FORCE_INLINE __m128 _mm_andnot_ps(__m128 a, __m128 b) +{ + return vreinterpretq_m128_s32( + vbicq_s32(vreinterpretq_s32_m128(b), + vreinterpretq_s32_m128(a))); // *NOTE* argument swap +} + +// Computes the bitwise AND of the 128-bit value in b and the bitwise NOT of the +// 128-bit value in a. +// +// r := (~a) & b +// +// https://msdn.microsoft.com/en-us/library/vstudio/1beaceh8(v=vs.100).aspx +FORCE_INLINE __m128i _mm_andnot_si128(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s32( + vbicq_s32(vreinterpretq_s32_m128i(b), + vreinterpretq_s32_m128i(a))); // *NOTE* argument swap +} + +// Computes the bitwise AND of the 128-bit value in a and the 128-bit value in +// b. +// +// r := a & b +// +// https://msdn.microsoft.com/en-us/library/vstudio/6d1txsa8(v=vs.100).aspx +FORCE_INLINE __m128i _mm_and_si128(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s32( + vandq_s32(vreinterpretq_s32_m128i(a), vreinterpretq_s32_m128i(b))); +} + +// Computes the bitwise AND of the four single-precision, floating-point values +// of a and b. +// +// r0 := a0 & b0 +// r1 := a1 & b1 +// r2 := a2 & b2 +// r3 := a3 & b3 +// +// https://msdn.microsoft.com/en-us/library/vstudio/73ck1xc5(v=vs.100).aspx +FORCE_INLINE __m128 _mm_and_ps(__m128 a, __m128 b) +{ + return vreinterpretq_m128_s32( + vandq_s32(vreinterpretq_s32_m128(a), vreinterpretq_s32_m128(b))); +} + +// Computes the bitwise OR of the four single-precision, floating-point values +// of a and b. +// https://msdn.microsoft.com/en-us/library/vstudio/7ctdsyy0(v=vs.100).aspx +FORCE_INLINE __m128 _mm_or_ps(__m128 a, __m128 b) +{ + return vreinterpretq_m128_s32( + vorrq_s32(vreinterpretq_s32_m128(a), vreinterpretq_s32_m128(b))); +} + +// Computes bitwise EXOR (exclusive-or) of the four single-precision, +// floating-point values of a and b. +// https://msdn.microsoft.com/en-us/library/ss6k3wk8(v=vs.100).aspx +FORCE_INLINE __m128 _mm_xor_ps(__m128 a, __m128 b) +{ + return vreinterpretq_m128_s32( + veorq_s32(vreinterpretq_s32_m128(a), vreinterpretq_s32_m128(b))); +} + +// Computes the bitwise OR of the 128-bit value in a and the 128-bit value in b. +// +// r := a | b +// +// https://msdn.microsoft.com/en-us/library/vstudio/ew8ty0db(v=vs.100).aspx +FORCE_INLINE __m128i _mm_or_si128(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s32( + vorrq_s32(vreinterpretq_s32_m128i(a), vreinterpretq_s32_m128i(b))); +} + +// Computes the bitwise XOR of the 128-bit value in a and the 128-bit value in +// b. https://msdn.microsoft.com/en-us/library/fzt08www(v=vs.100).aspx +FORCE_INLINE __m128i _mm_xor_si128(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s32( + veorq_s32(vreinterpretq_s32_m128i(a), vreinterpretq_s32_m128i(b))); +} + +// Moves the upper two values of B into the lower two values of A. +// +// r3 := a3 +// r2 := a2 +// r1 := b3 +// r0 := b2 +FORCE_INLINE __m128 _mm_movehl_ps(__m128 __A, __m128 __B) +{ + float32x2_t a32 = vget_high_f32(vreinterpretq_f32_m128(__A)); + float32x2_t b32 = vget_high_f32(vreinterpretq_f32_m128(__B)); + return vreinterpretq_m128_f32(vcombine_f32(b32, a32)); +} + +// Moves the lower two values of B into the upper two values of A. +// +// r3 := b1 +// r2 := b0 +// r1 := a1 +// r0 := a0 +FORCE_INLINE __m128 _mm_movelh_ps(__m128 __A, __m128 __B) +{ + float32x2_t a10 = vget_low_f32(vreinterpretq_f32_m128(__A)); + float32x2_t b10 = vget_low_f32(vreinterpretq_f32_m128(__B)); + return vreinterpretq_m128_f32(vcombine_f32(a10, b10)); +} + +FORCE_INLINE __m128i _mm_abs_epi32(__m128i a) +{ + return vreinterpretq_m128i_s32(vabsq_s32(vreinterpretq_s32_m128i(a))); +} + +FORCE_INLINE __m128i _mm_abs_epi16(__m128i a) +{ + return vreinterpretq_m128i_s16(vabsq_s16(vreinterpretq_s16_m128i(a))); +} + +FORCE_INLINE __m128i _mm_abs_epi8(__m128i a) +{ + return vreinterpretq_m128i_s8(vabsq_s8(vreinterpretq_s8_m128i(a))); +} + +// Takes the upper 64 bits of a and places it in the low end of the result +// Takes the lower 64 bits of b and places it into the high end of the result. +FORCE_INLINE __m128 _mm_shuffle_ps_1032(__m128 a, __m128 b) +{ + float32x2_t a32 = vget_high_f32(vreinterpretq_f32_m128(a)); + float32x2_t b10 = vget_low_f32(vreinterpretq_f32_m128(b)); + return vreinterpretq_m128_f32(vcombine_f32(a32, b10)); +} + +// takes the lower two 32-bit values from a and swaps them and places in high +// end of result takes the higher two 32 bit values from b and swaps them and +// places in low end of result. +FORCE_INLINE __m128 _mm_shuffle_ps_2301(__m128 a, __m128 b) +{ + float32x2_t a01 = vrev64_f32(vget_low_f32(vreinterpretq_f32_m128(a))); + float32x2_t b23 = vrev64_f32(vget_high_f32(vreinterpretq_f32_m128(b))); + return vreinterpretq_m128_f32(vcombine_f32(a01, b23)); +} + +FORCE_INLINE __m128 _mm_shuffle_ps_0321(__m128 a, __m128 b) +{ + float32x2_t a21 = vget_high_f32( + vextq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(a), 3)); + float32x2_t b03 = vget_low_f32( + vextq_f32(vreinterpretq_f32_m128(b), vreinterpretq_f32_m128(b), 3)); + return vreinterpretq_m128_f32(vcombine_f32(a21, b03)); +} + +FORCE_INLINE __m128 _mm_shuffle_ps_2103(__m128 a, __m128 b) +{ + float32x2_t a03 = vget_low_f32( + vextq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(a), 3)); + float32x2_t b21 = vget_high_f32( + vextq_f32(vreinterpretq_f32_m128(b), vreinterpretq_f32_m128(b), 3)); + return vreinterpretq_m128_f32(vcombine_f32(a03, b21)); +} + +FORCE_INLINE __m128 _mm_shuffle_ps_1010(__m128 a, __m128 b) +{ + float32x2_t a10 = vget_low_f32(vreinterpretq_f32_m128(a)); + float32x2_t b10 = vget_low_f32(vreinterpretq_f32_m128(b)); + return vreinterpretq_m128_f32(vcombine_f32(a10, b10)); +} + +FORCE_INLINE __m128 _mm_shuffle_ps_1001(__m128 a, __m128 b) +{ + float32x2_t a01 = vrev64_f32(vget_low_f32(vreinterpretq_f32_m128(a))); + float32x2_t b10 = vget_low_f32(vreinterpretq_f32_m128(b)); + return vreinterpretq_m128_f32(vcombine_f32(a01, b10)); +} + +FORCE_INLINE __m128 _mm_shuffle_ps_0101(__m128 a, __m128 b) +{ + float32x2_t a01 = vrev64_f32(vget_low_f32(vreinterpretq_f32_m128(a))); + float32x2_t b01 = vrev64_f32(vget_low_f32(vreinterpretq_f32_m128(b))); + return vreinterpretq_m128_f32(vcombine_f32(a01, b01)); +} + +// keeps the low 64 bits of b in the low and puts the high 64 bits of a in the +// high +FORCE_INLINE __m128 _mm_shuffle_ps_3210(__m128 a, __m128 b) +{ + float32x2_t a10 = vget_low_f32(vreinterpretq_f32_m128(a)); + float32x2_t b32 = vget_high_f32(vreinterpretq_f32_m128(b)); + return vreinterpretq_m128_f32(vcombine_f32(a10, b32)); +} + +FORCE_INLINE __m128 _mm_shuffle_ps_0011(__m128 a, __m128 b) +{ + float32x2_t a11 = vdup_lane_f32(vget_low_f32(vreinterpretq_f32_m128(a)), 1); + float32x2_t b00 = vdup_lane_f32(vget_low_f32(vreinterpretq_f32_m128(b)), 0); + return vreinterpretq_m128_f32(vcombine_f32(a11, b00)); +} + +FORCE_INLINE __m128 _mm_shuffle_ps_0022(__m128 a, __m128 b) +{ + float32x2_t a22 = + vdup_lane_f32(vget_high_f32(vreinterpretq_f32_m128(a)), 0); + float32x2_t b00 = vdup_lane_f32(vget_low_f32(vreinterpretq_f32_m128(b)), 0); + return vreinterpretq_m128_f32(vcombine_f32(a22, b00)); +} + +FORCE_INLINE __m128 _mm_shuffle_ps_2200(__m128 a, __m128 b) +{ + float32x2_t a00 = vdup_lane_f32(vget_low_f32(vreinterpretq_f32_m128(a)), 0); + float32x2_t b22 = + vdup_lane_f32(vget_high_f32(vreinterpretq_f32_m128(b)), 0); + return vreinterpretq_m128_f32(vcombine_f32(a00, b22)); +} + +FORCE_INLINE __m128 _mm_shuffle_ps_3202(__m128 a, __m128 b) +{ + float32_t a0 = vgetq_lane_f32(vreinterpretq_f32_m128(a), 0); + float32x2_t a22 = + vdup_lane_f32(vget_high_f32(vreinterpretq_f32_m128(a)), 0); + float32x2_t a02 = vset_lane_f32(a0, a22, 1); /* TODO: use vzip ?*/ + float32x2_t b32 = vget_high_f32(vreinterpretq_f32_m128(b)); + return vreinterpretq_m128_f32(vcombine_f32(a02, b32)); +} + +FORCE_INLINE __m128 _mm_shuffle_ps_1133(__m128 a, __m128 b) +{ + float32x2_t a33 = + vdup_lane_f32(vget_high_f32(vreinterpretq_f32_m128(a)), 1); + float32x2_t b11 = vdup_lane_f32(vget_low_f32(vreinterpretq_f32_m128(b)), 1); + return vreinterpretq_m128_f32(vcombine_f32(a33, b11)); +} + +FORCE_INLINE __m128 _mm_shuffle_ps_2010(__m128 a, __m128 b) +{ + float32x2_t a10 = vget_low_f32(vreinterpretq_f32_m128(a)); + float32_t b2 = vgetq_lane_f32(vreinterpretq_f32_m128(b), 2); + float32x2_t b00 = vdup_lane_f32(vget_low_f32(vreinterpretq_f32_m128(b)), 0); + float32x2_t b20 = vset_lane_f32(b2, b00, 1); + return vreinterpretq_m128_f32(vcombine_f32(a10, b20)); +} + +FORCE_INLINE __m128 _mm_shuffle_ps_2001(__m128 a, __m128 b) +{ + float32x2_t a01 = vrev64_f32(vget_low_f32(vreinterpretq_f32_m128(a))); + float32_t b2 = vgetq_lane_f32(b, 2); + float32x2_t b00 = vdup_lane_f32(vget_low_f32(vreinterpretq_f32_m128(b)), 0); + float32x2_t b20 = vset_lane_f32(b2, b00, 1); + return vreinterpretq_m128_f32(vcombine_f32(a01, b20)); +} + +FORCE_INLINE __m128 _mm_shuffle_ps_2032(__m128 a, __m128 b) +{ + float32x2_t a32 = vget_high_f32(vreinterpretq_f32_m128(a)); + float32_t b2 = vgetq_lane_f32(b, 2); + float32x2_t b00 = vdup_lane_f32(vget_low_f32(vreinterpretq_f32_m128(b)), 0); + float32x2_t b20 = vset_lane_f32(b2, b00, 1); + return vreinterpretq_m128_f32(vcombine_f32(a32, b20)); +} + +// NEON does not support a general purpose permute intrinsic +// Selects four specific single-precision, floating-point values from a and b, +// based on the mask i. +// https://msdn.microsoft.com/en-us/library/vstudio/5f0858x0(v=vs.100).aspx +#if 0 /* C version */ +FORCE_INLINE __m128 _mm_shuffle_ps_default(__m128 a, + __m128 b, + __constrange(0, 255) int imm) +{ + __m128 ret; + ret[0] = a[imm & 0x3]; + ret[1] = a[(imm >> 2) & 0x3]; + ret[2] = b[(imm >> 4) & 0x03]; + ret[3] = b[(imm >> 6) & 0x03]; + return ret; +} +#endif +#define _mm_shuffle_ps_default(a, b, imm) \ + __extension__({ \ + float32x4_t ret; \ + ret = vmovq_n_f32( \ + vgetq_lane_f32(vreinterpretq_f32_m128(a), (imm) & (0x3))); \ + ret = vsetq_lane_f32( \ + vgetq_lane_f32(vreinterpretq_f32_m128(a), ((imm) >> 2) & 0x3), \ + ret, 1); \ + ret = vsetq_lane_f32( \ + vgetq_lane_f32(vreinterpretq_f32_m128(b), ((imm) >> 4) & 0x3), \ + ret, 2); \ + ret = vsetq_lane_f32( \ + vgetq_lane_f32(vreinterpretq_f32_m128(b), ((imm) >> 6) & 0x3), \ + ret, 3); \ + vreinterpretq_m128_f32(ret); \ + }) + +// FORCE_INLINE __m128 _mm_shuffle_ps(__m128 a, __m128 b, __constrange(0,255) +// int imm) +#if __has_builtin(__builtin_shufflevector) +#define _mm_shuffle_ps(a, b, imm) \ + __extension__({ \ + float32x4_t _input1 = vreinterpretq_f32_m128(a); \ + float32x4_t _input2 = vreinterpretq_f32_m128(b); \ + float32x4_t _shuf = __builtin_shufflevector( \ + _input1, _input2, (imm) & (0x3), ((imm) >> 2) & 0x3, \ + (((imm) >> 4) & 0x3) + 4, (((imm) >> 6) & 0x3) + 4); \ + vreinterpretq_m128_f32(_shuf); \ + }) +#else // generic +#define _mm_shuffle_ps(a, b, imm) \ + __extension__({ \ + __m128 ret; \ + switch (imm) { \ + case _MM_SHUFFLE(1, 0, 3, 2): \ + ret = _mm_shuffle_ps_1032((a), (b)); \ + break; \ + case _MM_SHUFFLE(2, 3, 0, 1): \ + ret = _mm_shuffle_ps_2301((a), (b)); \ + break; \ + case _MM_SHUFFLE(0, 3, 2, 1): \ + ret = _mm_shuffle_ps_0321((a), (b)); \ + break; \ + case _MM_SHUFFLE(2, 1, 0, 3): \ + ret = _mm_shuffle_ps_2103((a), (b)); \ + break; \ + case _MM_SHUFFLE(1, 0, 1, 0): \ + ret = _mm_movelh_ps((a), (b)); \ + break; \ + case _MM_SHUFFLE(1, 0, 0, 1): \ + ret = _mm_shuffle_ps_1001((a), (b)); \ + break; \ + case _MM_SHUFFLE(0, 1, 0, 1): \ + ret = _mm_shuffle_ps_0101((a), (b)); \ + break; \ + case _MM_SHUFFLE(3, 2, 1, 0): \ + ret = _mm_shuffle_ps_3210((a), (b)); \ + break; \ + case _MM_SHUFFLE(0, 0, 1, 1): \ + ret = _mm_shuffle_ps_0011((a), (b)); \ + break; \ + case _MM_SHUFFLE(0, 0, 2, 2): \ + ret = _mm_shuffle_ps_0022((a), (b)); \ + break; \ + case _MM_SHUFFLE(2, 2, 0, 0): \ + ret = _mm_shuffle_ps_2200((a), (b)); \ + break; \ + case _MM_SHUFFLE(3, 2, 0, 2): \ + ret = _mm_shuffle_ps_3202((a), (b)); \ + break; \ + case _MM_SHUFFLE(3, 2, 3, 2): \ + ret = _mm_movehl_ps((b), (a)); \ + break; \ + case _MM_SHUFFLE(1, 1, 3, 3): \ + ret = _mm_shuffle_ps_1133((a), (b)); \ + break; \ + case _MM_SHUFFLE(2, 0, 1, 0): \ + ret = _mm_shuffle_ps_2010((a), (b)); \ + break; \ + case _MM_SHUFFLE(2, 0, 0, 1): \ + ret = _mm_shuffle_ps_2001((a), (b)); \ + break; \ + case _MM_SHUFFLE(2, 0, 3, 2): \ + ret = _mm_shuffle_ps_2032((a), (b)); \ + break; \ + default: \ + ret = _mm_shuffle_ps_default((a), (b), (imm)); \ + break; \ + } \ + ret; \ + }) +#endif + +// Takes the upper 64 bits of a and places it in the low end of the result +// Takes the lower 64 bits of a and places it into the high end of the result. +FORCE_INLINE __m128i _mm_shuffle_epi_1032(__m128i a) +{ + int32x2_t a32 = vget_high_s32(vreinterpretq_s32_m128i(a)); + int32x2_t a10 = vget_low_s32(vreinterpretq_s32_m128i(a)); + return vreinterpretq_m128i_s32(vcombine_s32(a32, a10)); +} + +// takes the lower two 32-bit values from a and swaps them and places in low end +// of result takes the higher two 32 bit values from a and swaps them and places +// in high end of result. +FORCE_INLINE __m128i _mm_shuffle_epi_2301(__m128i a) +{ + int32x2_t a01 = vrev64_s32(vget_low_s32(vreinterpretq_s32_m128i(a))); + int32x2_t a23 = vrev64_s32(vget_high_s32(vreinterpretq_s32_m128i(a))); + return vreinterpretq_m128i_s32(vcombine_s32(a01, a23)); +} + +// rotates the least significant 32 bits into the most signficant 32 bits, and +// shifts the rest down +FORCE_INLINE __m128i _mm_shuffle_epi_0321(__m128i a) +{ + return vreinterpretq_m128i_s32( + vextq_s32(vreinterpretq_s32_m128i(a), vreinterpretq_s32_m128i(a), 1)); +} + +// rotates the most significant 32 bits into the least signficant 32 bits, and +// shifts the rest up +FORCE_INLINE __m128i _mm_shuffle_epi_2103(__m128i a) +{ + return vreinterpretq_m128i_s32( + vextq_s32(vreinterpretq_s32_m128i(a), vreinterpretq_s32_m128i(a), 3)); +} + +// gets the lower 64 bits of a, and places it in the upper 64 bits +// gets the lower 64 bits of a and places it in the lower 64 bits +FORCE_INLINE __m128i _mm_shuffle_epi_1010(__m128i a) +{ + int32x2_t a10 = vget_low_s32(vreinterpretq_s32_m128i(a)); + return vreinterpretq_m128i_s32(vcombine_s32(a10, a10)); +} + +// gets the lower 64 bits of a, swaps the 0 and 1 elements, and places it in the +// lower 64 bits gets the lower 64 bits of a, and places it in the upper 64 bits +FORCE_INLINE __m128i _mm_shuffle_epi_1001(__m128i a) +{ + int32x2_t a01 = vrev64_s32(vget_low_s32(vreinterpretq_s32_m128i(a))); + int32x2_t a10 = vget_low_s32(vreinterpretq_s32_m128i(a)); + return vreinterpretq_m128i_s32(vcombine_s32(a01, a10)); +} + +// gets the lower 64 bits of a, swaps the 0 and 1 elements and places it in the +// upper 64 bits gets the lower 64 bits of a, swaps the 0 and 1 elements, and +// places it in the lower 64 bits +FORCE_INLINE __m128i _mm_shuffle_epi_0101(__m128i a) +{ + int32x2_t a01 = vrev64_s32(vget_low_s32(vreinterpretq_s32_m128i(a))); + return vreinterpretq_m128i_s32(vcombine_s32(a01, a01)); +} + +FORCE_INLINE __m128i _mm_shuffle_epi_2211(__m128i a) +{ + int32x2_t a11 = vdup_lane_s32(vget_low_s32(vreinterpretq_s32_m128i(a)), 1); + int32x2_t a22 = vdup_lane_s32(vget_high_s32(vreinterpretq_s32_m128i(a)), 0); + return vreinterpretq_m128i_s32(vcombine_s32(a11, a22)); +} + +FORCE_INLINE __m128i _mm_shuffle_epi_0122(__m128i a) +{ + int32x2_t a22 = vdup_lane_s32(vget_high_s32(vreinterpretq_s32_m128i(a)), 0); + int32x2_t a01 = vrev64_s32(vget_low_s32(vreinterpretq_s32_m128i(a))); + return vreinterpretq_m128i_s32(vcombine_s32(a22, a01)); +} + +FORCE_INLINE __m128i _mm_shuffle_epi_3332(__m128i a) +{ + int32x2_t a32 = vget_high_s32(vreinterpretq_s32_m128i(a)); + int32x2_t a33 = vdup_lane_s32(vget_high_s32(vreinterpretq_s32_m128i(a)), 1); + return vreinterpretq_m128i_s32(vcombine_s32(a32, a33)); +} + +// Shuffle packed 8-bit integers in a according to shuffle control mask in the +// corresponding 8-bit element of b, and store the results in dst. +// https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_shuffle_epi8&expand=5146 +FORCE_INLINE __m128i _mm_shuffle_epi8(__m128i a, __m128i b) +{ + int8x16_t tbl = vreinterpretq_s8_m128i(a); // input a + uint8x16_t idx = vreinterpretq_u8_m128i(b); // input b + uint8x16_t idx_masked = + vandq_u8(idx, vdupq_n_u8(0x8F)); // avoid using meaningless bits +#if defined(__aarch64__) + return vreinterpretq_m128i_s8(vqtbl1q_s8(tbl, idx_masked)); +#elif defined(__GNUC__) + int8x16_t ret; + // %e and %f represent the even and odd D registers + // respectively. + __asm__( + " vtbl.8 %e[ret], {%e[tbl], %f[tbl]}, %e[idx]\n" + " vtbl.8 %f[ret], {%e[tbl], %f[tbl]}, %f[idx]\n" + : [ret] "=&w"(ret) + : [tbl] "w"(tbl), [idx] "w"(idx_masked)); + return vreinterpretq_m128i_s8(ret); +#else + // use this line if testing on aarch64 + int8x8x2_t a_split = {vget_low_s8(tbl), vget_high_s8(tbl)}; + return vreinterpretq_m128i_s8( + vcombine_s8(vtbl2_s8(a_split, vget_low_u8(idx_masked)), + vtbl2_s8(a_split, vget_high_u8(idx_masked)))); +#endif +} + +#if 0 /* C version */ +FORCE_INLINE __m128i _mm_shuffle_epi32_default(__m128i a, + __constrange(0, 255) int imm) +{ + __m128i ret; + ret[0] = a[imm & 0x3]; + ret[1] = a[(imm >> 2) & 0x3]; + ret[2] = a[(imm >> 4) & 0x03]; + ret[3] = a[(imm >> 6) & 0x03]; + return ret; +} +#endif +#define _mm_shuffle_epi32_default(a, imm) \ + __extension__({ \ + int32x4_t ret; \ + ret = vmovq_n_s32( \ + vgetq_lane_s32(vreinterpretq_s32_m128i(a), (imm) & (0x3))); \ + ret = vsetq_lane_s32( \ + vgetq_lane_s32(vreinterpretq_s32_m128i(a), ((imm) >> 2) & 0x3), \ + ret, 1); \ + ret = vsetq_lane_s32( \ + vgetq_lane_s32(vreinterpretq_s32_m128i(a), ((imm) >> 4) & 0x3), \ + ret, 2); \ + ret = vsetq_lane_s32( \ + vgetq_lane_s32(vreinterpretq_s32_m128i(a), ((imm) >> 6) & 0x3), \ + ret, 3); \ + vreinterpretq_m128i_s32(ret); \ + }) + +// FORCE_INLINE __m128i _mm_shuffle_epi32_splat(__m128i a, __constrange(0,255) +// int imm) +#if defined(__aarch64__) +#define _mm_shuffle_epi32_splat(a, imm) \ + __extension__({ \ + vreinterpretq_m128i_s32( \ + vdupq_laneq_s32(vreinterpretq_s32_m128i(a), (imm))); \ + }) +#else +#define _mm_shuffle_epi32_splat(a, imm) \ + __extension__({ \ + vreinterpretq_m128i_s32( \ + vdupq_n_s32(vgetq_lane_s32(vreinterpretq_s32_m128i(a), (imm)))); \ + }) +#endif + +// Shuffles the 4 signed or unsigned 32-bit integers in a as specified by imm. +// https://msdn.microsoft.com/en-us/library/56f67xbk%28v=vs.90%29.aspx +// FORCE_INLINE __m128i _mm_shuffle_epi32(__m128i a, +// __constrange(0,255) int imm) +#if __has_builtin(__builtin_shufflevector) +#define _mm_shuffle_epi32(a, imm) \ + __extension__({ \ + int32x4_t _input = vreinterpretq_s32_m128i(a); \ + int32x4_t _shuf = __builtin_shufflevector( \ + _input, _input, (imm) & (0x3), ((imm) >> 2) & 0x3, \ + ((imm) >> 4) & 0x3, ((imm) >> 6) & 0x3); \ + vreinterpretq_m128i_s32(_shuf); \ + }) +#else // generic +#define _mm_shuffle_epi32(a, imm) \ + __extension__({ \ + __m128i ret; \ + switch (imm) { \ + case _MM_SHUFFLE(1, 0, 3, 2): \ + ret = _mm_shuffle_epi_1032((a)); \ + break; \ + case _MM_SHUFFLE(2, 3, 0, 1): \ + ret = _mm_shuffle_epi_2301((a)); \ + break; \ + case _MM_SHUFFLE(0, 3, 2, 1): \ + ret = _mm_shuffle_epi_0321((a)); \ + break; \ + case _MM_SHUFFLE(2, 1, 0, 3): \ + ret = _mm_shuffle_epi_2103((a)); \ + break; \ + case _MM_SHUFFLE(1, 0, 1, 0): \ + ret = _mm_shuffle_epi_1010((a)); \ + break; \ + case _MM_SHUFFLE(1, 0, 0, 1): \ + ret = _mm_shuffle_epi_1001((a)); \ + break; \ + case _MM_SHUFFLE(0, 1, 0, 1): \ + ret = _mm_shuffle_epi_0101((a)); \ + break; \ + case _MM_SHUFFLE(2, 2, 1, 1): \ + ret = _mm_shuffle_epi_2211((a)); \ + break; \ + case _MM_SHUFFLE(0, 1, 2, 2): \ + ret = _mm_shuffle_epi_0122((a)); \ + break; \ + case _MM_SHUFFLE(3, 3, 3, 2): \ + ret = _mm_shuffle_epi_3332((a)); \ + break; \ + case _MM_SHUFFLE(0, 0, 0, 0): \ + ret = _mm_shuffle_epi32_splat((a), 0); \ + break; \ + case _MM_SHUFFLE(1, 1, 1, 1): \ + ret = _mm_shuffle_epi32_splat((a), 1); \ + break; \ + case _MM_SHUFFLE(2, 2, 2, 2): \ + ret = _mm_shuffle_epi32_splat((a), 2); \ + break; \ + case _MM_SHUFFLE(3, 3, 3, 3): \ + ret = _mm_shuffle_epi32_splat((a), 3); \ + break; \ + default: \ + ret = _mm_shuffle_epi32_default((a), (imm)); \ + break; \ + } \ + ret; \ + }) +#endif + +// Shuffles the lower 4 signed or unsigned 16-bit integers in a as specified +// by imm. +// https://docs.microsoft.com/en-us/previous-versions/visualstudio/visual-studio-2010/y41dkk37(v=vs.100) +// FORCE_INLINE __m128i _mm_shufflelo_epi16_function(__m128i a, +// __constrange(0,255) int +// imm) +#define _mm_shufflelo_epi16_function(a, imm) \ + __extension__({ \ + int16x8_t ret = vreinterpretq_s16_m128i(a); \ + int16x4_t lowBits = vget_low_s16(ret); \ + ret = vsetq_lane_s16(vget_lane_s16(lowBits, (imm) & (0x3)), ret, 0); \ + ret = vsetq_lane_s16(vget_lane_s16(lowBits, ((imm) >> 2) & 0x3), ret, \ + 1); \ + ret = vsetq_lane_s16(vget_lane_s16(lowBits, ((imm) >> 4) & 0x3), ret, \ + 2); \ + ret = vsetq_lane_s16(vget_lane_s16(lowBits, ((imm) >> 6) & 0x3), ret, \ + 3); \ + vreinterpretq_m128i_s16(ret); \ + }) + +// FORCE_INLINE __m128i _mm_shufflelo_epi16(__m128i a, +// __constrange(0,255) int imm) +#if __has_builtin(__builtin_shufflevector) +#define _mm_shufflelo_epi16(a, imm) \ + __extension__({ \ + int16x8_t _input = vreinterpretq_s16_m128i(a); \ + int16x8_t _shuf = __builtin_shufflevector( \ + _input, _input, ((imm) & (0x3)), (((imm) >> 2) & 0x3), \ + (((imm) >> 4) & 0x3), (((imm) >> 6) & 0x3), 4, 5, 6, 7); \ + vreinterpretq_m128i_s16(_shuf); \ + }) +#else // generic +#define _mm_shufflelo_epi16(a, imm) _mm_shufflelo_epi16_function((a), (imm)) +#endif + +// Shuffles the upper 4 signed or unsigned 16-bit integers in a as specified +// by imm. +// https://msdn.microsoft.com/en-us/library/13ywktbs(v=vs.100).aspx +// FORCE_INLINE __m128i _mm_shufflehi_epi16_function(__m128i a, +// __constrange(0,255) int +// imm) +#define _mm_shufflehi_epi16_function(a, imm) \ + __extension__({ \ + int16x8_t ret = vreinterpretq_s16_m128i(a); \ + int16x4_t highBits = vget_high_s16(ret); \ + ret = vsetq_lane_s16(vget_lane_s16(highBits, (imm) & (0x3)), ret, 4); \ + ret = vsetq_lane_s16(vget_lane_s16(highBits, ((imm) >> 2) & 0x3), ret, \ + 5); \ + ret = vsetq_lane_s16(vget_lane_s16(highBits, ((imm) >> 4) & 0x3), ret, \ + 6); \ + ret = vsetq_lane_s16(vget_lane_s16(highBits, ((imm) >> 6) & 0x3), ret, \ + 7); \ + vreinterpretq_m128i_s16(ret); \ + }) + +// FORCE_INLINE __m128i _mm_shufflehi_epi16(__m128i a, +// __constrange(0,255) int imm) +#if __has_builtin(__builtin_shufflevector) +#define _mm_shufflehi_epi16(a, imm) \ + __extension__({ \ + int16x8_t _input = vreinterpretq_s16_m128i(a); \ + int16x8_t _shuf = __builtin_shufflevector( \ + _input, _input, 0, 1, 2, 3, ((imm) & (0x3)) + 4, \ + (((imm) >> 2) & 0x3) + 4, (((imm) >> 4) & 0x3) + 4, \ + (((imm) >> 6) & 0x3) + 4); \ + vreinterpretq_m128i_s16(_shuf); \ + }) +#else // generic +#define _mm_shufflehi_epi16(a, imm) _mm_shufflehi_epi16_function((a), (imm)) +#endif + +// Blend packed 16-bit integers from a and b using control mask imm8, and store +// the results in dst. +// +// FOR j := 0 to 7 +// i := j*16 +// IF imm8[j] +// dst[i+15:i] := b[i+15:i] +// ELSE +// dst[i+15:i] := a[i+15:i] +// FI +// ENDFOR +// FORCE_INLINE __m128i _mm_blend_epi16(__m128i a, __m128i b, +// __constrange(0,255) int imm) +#define _mm_blend_epi16(a, b, imm) \ + __extension__({ \ + const uint16_t _mask[8] = {((imm) & (1 << 0)) ? 0xFFFF : 0x0000, \ + ((imm) & (1 << 1)) ? 0xFFFF : 0x0000, \ + ((imm) & (1 << 2)) ? 0xFFFF : 0x0000, \ + ((imm) & (1 << 3)) ? 0xFFFF : 0x0000, \ + ((imm) & (1 << 4)) ? 0xFFFF : 0x0000, \ + ((imm) & (1 << 5)) ? 0xFFFF : 0x0000, \ + ((imm) & (1 << 6)) ? 0xFFFF : 0x0000, \ + ((imm) & (1 << 7)) ? 0xFFFF : 0x0000}; \ + uint16x8_t _mask_vec = vld1q_u16(_mask); \ + uint16x8_t _a = vreinterpretq_u16_m128i(a); \ + uint16x8_t _b = vreinterpretq_u16_m128i(b); \ + vreinterpretq_m128i_u16(vbslq_u16(_mask_vec, _b, _a)); \ + }) + +// Blend packed 8-bit integers from a and b using mask, and store the results in +// dst. +// +// FOR j := 0 to 15 +// i := j*8 +// IF mask[i+7] +// dst[i+7:i] := b[i+7:i] +// ELSE +// dst[i+7:i] := a[i+7:i] +// FI +// ENDFOR +FORCE_INLINE __m128i _mm_blendv_epi8(__m128i _a, __m128i _b, __m128i _mask) +{ + // Use a signed shift right to create a mask with the sign bit + uint8x16_t mask = + vreinterpretq_u8_s8(vshrq_n_s8(vreinterpretq_s8_m128i(_mask), 7)); + uint8x16_t a = vreinterpretq_u8_m128i(_a); + uint8x16_t b = vreinterpretq_u8_m128i(_b); + return vreinterpretq_m128i_u8(vbslq_u8(mask, b, a)); +} + +/* Shifts */ + +// Shifts the 4 signed 32-bit integers in a right by count bits while shifting +// in the sign bit. +// +// r0 := a0 >> count +// r1 := a1 >> count +// r2 := a2 >> count +// r3 := a3 >> count immediate +FORCE_INLINE __m128i _mm_srai_epi32(__m128i a, int count) +{ + return (__m128i) vshlq_s32((int32x4_t) a, vdupq_n_s32(-count)); +} + +// Shifts the 8 signed 16-bit integers in a right by count bits while shifting +// in the sign bit. +// +// r0 := a0 >> count +// r1 := a1 >> count +// ... +// r7 := a7 >> count +FORCE_INLINE __m128i _mm_srai_epi16(__m128i a, int count) +{ + return (__m128i) vshlq_s16((int16x8_t) a, vdupq_n_s16(-count)); +} + +// Shifts the 8 signed or unsigned 16-bit integers in a left by count bits while +// shifting in zeros. +// +// r0 := a0 << count +// r1 := a1 << count +// ... +// r7 := a7 << count +// +// https://msdn.microsoft.com/en-us/library/es73bcsy(v=vs.90).aspx +#define _mm_slli_epi16(a, imm) \ + __extension__({ \ + __m128i ret; \ + if ((imm) <= 0) { \ + ret = a; \ + } else if ((imm) > 31) { \ + ret = _mm_setzero_si128(); \ + } else { \ + ret = vreinterpretq_m128i_s16( \ + vshlq_n_s16(vreinterpretq_s16_m128i(a), (imm))); \ + } \ + ret; \ + }) + +// Shifts the 4 signed or unsigned 32-bit integers in a left by count bits while +// shifting in zeros. : +// https://msdn.microsoft.com/en-us/library/z2k3bbtb%28v=vs.90%29.aspx +// FORCE_INLINE __m128i _mm_slli_epi32(__m128i a, __constrange(0,255) int imm) +#define _mm_slli_epi32(a, imm) \ + __extension__({ \ + __m128i ret; \ + if ((imm) <= 0) { \ + ret = a; \ + } else if ((imm) > 31) { \ + ret = _mm_setzero_si128(); \ + } else { \ + ret = vreinterpretq_m128i_s32( \ + vshlq_n_s32(vreinterpretq_s32_m128i(a), (imm))); \ + } \ + ret; \ + }) + +// Shift packed 64-bit integers in a left by imm8 while shifting in zeros, and +// store the results in dst. +#define _mm_slli_epi64(a, imm) \ + __extension__({ \ + __m128i ret; \ + if ((imm) <= 0) { \ + ret = a; \ + } else if ((imm) > 63) { \ + ret = _mm_setzero_si128(); \ + } else { \ + ret = vreinterpretq_m128i_s64( \ + vshlq_n_s64(vreinterpretq_s64_m128i(a), (imm))); \ + } \ + ret; \ + }) + +// Shifts the 8 signed or unsigned 16-bit integers in a right by count bits +// while shifting in zeros. +// +// r0 := srl(a0, count) +// r1 := srl(a1, count) +// ... +// r7 := srl(a7, count) +// +// https://msdn.microsoft.com/en-us/library/6tcwd38t(v=vs.90).aspx +#define _mm_srli_epi16(a, imm) \ + __extension__({ \ + __m128i ret; \ + if ((imm) <= 0) { \ + ret = a; \ + } else if ((imm) > 31) { \ + ret = _mm_setzero_si128(); \ + } else { \ + ret = vreinterpretq_m128i_u16( \ + vshrq_n_u16(vreinterpretq_u16_m128i(a), (imm))); \ + } \ + ret; \ + }) + +// Shifts the 4 signed or unsigned 32-bit integers in a right by count bits +// while shifting in zeros. +// https://msdn.microsoft.com/en-us/library/w486zcfa(v=vs.100).aspx FORCE_INLINE +// __m128i _mm_srli_epi32(__m128i a, __constrange(0,255) int imm) +#define _mm_srli_epi32(a, imm) \ + __extension__({ \ + __m128i ret; \ + if ((imm) <= 0) { \ + ret = a; \ + } else if ((imm) > 31) { \ + ret = _mm_setzero_si128(); \ + } else { \ + ret = vreinterpretq_m128i_u32( \ + vshrq_n_u32(vreinterpretq_u32_m128i(a), (imm))); \ + } \ + ret; \ + }) + +// Shift packed 64-bit integers in a right by imm8 while shifting in zeros, and +// store the results in dst. +#define _mm_srli_epi64(a, imm) \ + __extension__({ \ + __m128i ret; \ + if ((imm) <= 0) { \ + ret = a; \ + } else if ((imm) > 63) { \ + ret = _mm_setzero_si128(); \ + } else { \ + ret = vreinterpretq_m128i_u64( \ + vshrq_n_u64(vreinterpretq_u64_m128i(a), (imm))); \ + } \ + ret; \ + }) + +// Shifts the 4 signed 32 - bit integers in a right by count bits while shifting +// in the sign bit. +// https://msdn.microsoft.com/en-us/library/z1939387(v=vs.100).aspx +// FORCE_INLINE __m128i _mm_srai_epi32(__m128i a, __constrange(0,255) int imm) +#define _mm_srai_epi32(a, imm) \ + __extension__({ \ + __m128i ret; \ + if ((imm) <= 0) { \ + ret = a; \ + } else if ((imm) > 31) { \ + ret = vreinterpretq_m128i_s32( \ + vshrq_n_s32(vreinterpretq_s32_m128i(a), 16)); \ + ret = vreinterpretq_m128i_s32( \ + vshrq_n_s32(vreinterpretq_s32_m128i(ret), 16)); \ + } else { \ + ret = vreinterpretq_m128i_s32( \ + vshrq_n_s32(vreinterpretq_s32_m128i(a), (imm))); \ + } \ + ret; \ + }) + +// Shifts the 128 - bit value in a right by imm bytes while shifting in +// zeros.imm must be an immediate. +// +// r := srl(a, imm*8) +// +// https://msdn.microsoft.com/en-us/library/305w28yz(v=vs.100).aspx +// FORCE_INLINE _mm_srli_si128(__m128i a, __constrange(0,255) int imm) +#define _mm_srli_si128(a, imm) \ + __extension__({ \ + __m128i ret; \ + if ((imm) <= 0) { \ + ret = a; \ + } else if ((imm) > 15) { \ + ret = _mm_setzero_si128(); \ + } else { \ + ret = vreinterpretq_m128i_s8( \ + vextq_s8(vreinterpretq_s8_m128i(a), vdupq_n_s8(0), (imm))); \ + } \ + ret; \ + }) + +// Shifts the 128-bit value in a left by imm bytes while shifting in zeros. imm +// must be an immediate. +// +// r := a << (imm * 8) +// +// https://msdn.microsoft.com/en-us/library/34d3k2kt(v=vs.100).aspx +// FORCE_INLINE __m128i _mm_slli_si128(__m128i a, __constrange(0,255) int imm) +#define _mm_slli_si128(a, imm) \ + __extension__({ \ + __m128i ret; \ + if ((imm) <= 0) { \ + ret = a; \ + } else if ((imm) > 15) { \ + ret = _mm_setzero_si128(); \ + } else { \ + ret = vreinterpretq_m128i_s8(vextq_s8( \ + vdupq_n_s8(0), vreinterpretq_s8_m128i(a), 16 - (imm))); \ + } \ + ret; \ + }) + +// Shifts the 8 signed or unsigned 16-bit integers in a left by count bits while +// shifting in zeros. +// +// r0 := a0 << count +// r1 := a1 << count +// ... +// r7 := a7 << count +// +// https://msdn.microsoft.com/en-us/library/c79w388h(v%3dvs.90).aspx +FORCE_INLINE __m128i _mm_sll_epi16(__m128i a, __m128i count) +{ + uint64_t c = ((SIMDVec *) &count)->m128_u64[0]; + if (c > 15) + return _mm_setzero_si128(); + + int16x8_t vc = vdupq_n_s16((int16_t) c); + return vreinterpretq_m128i_s16(vshlq_s16(vreinterpretq_s16_m128i(a), vc)); +} + +// Shifts the 4 signed or unsigned 32-bit integers in a left by count bits while +// shifting in zeros. +// +// r0 := a0 << count +// r1 := a1 << count +// r2 := a2 << count +// r3 := a3 << count +// +// https://msdn.microsoft.com/en-us/library/6fe5a6s9(v%3dvs.90).aspx +FORCE_INLINE __m128i _mm_sll_epi32(__m128i a, __m128i count) +{ + uint64_t c = ((SIMDVec *) &count)->m128_u64[0]; + if (c > 31) + return _mm_setzero_si128(); + + int32x4_t vc = vdupq_n_s32((int32_t) c); + return vreinterpretq_m128i_s32(vshlq_s32(vreinterpretq_s32_m128i(a), vc)); +} + +// Shifts the 2 signed or unsigned 64-bit integers in a left by count bits while +// shifting in zeros. +// +// r0 := a0 << count +// r1 := a1 << count +// +// https://msdn.microsoft.com/en-us/library/6ta9dffd(v%3dvs.90).aspx +FORCE_INLINE __m128i _mm_sll_epi64(__m128i a, __m128i count) +{ + uint64_t c = ((SIMDVec *) &count)->m128_u64[0]; + if (c > 63) + return _mm_setzero_si128(); + + int64x2_t vc = vdupq_n_s64((int64_t) c); + return vreinterpretq_m128i_s64(vshlq_s64(vreinterpretq_s64_m128i(a), vc)); +} + +// Shifts the 8 signed or unsigned 16-bit integers in a right by count bits +// while shifting in zeros. +// +// r0 := srl(a0, count) +// r1 := srl(a1, count) +// ... +// r7 := srl(a7, count) +// +// https://msdn.microsoft.com/en-us/library/wd5ax830(v%3dvs.90).aspx +FORCE_INLINE __m128i _mm_srl_epi16(__m128i a, __m128i count) +{ + uint64_t c = ((SIMDVec *) &count)->m128_u64[0]; + if (c > 15) + return _mm_setzero_si128(); + + int16x8_t vc = vdupq_n_s16(-(int16_t) c); + return vreinterpretq_m128i_u16(vshlq_u16(vreinterpretq_u16_m128i(a), vc)); +} + +// Shifts the 4 signed or unsigned 32-bit integers in a right by count bits +// while shifting in zeros. +// +// r0 := srl(a0, count) +// r1 := srl(a1, count) +// r2 := srl(a2, count) +// r3 := srl(a3, count) +// +// https://msdn.microsoft.com/en-us/library/a9cbttf4(v%3dvs.90).aspx +FORCE_INLINE __m128i _mm_srl_epi32(__m128i a, __m128i count) +{ + uint64_t c = ((SIMDVec *) &count)->m128_u64[0]; + if (c > 31) + return _mm_setzero_si128(); + + int32x4_t vc = vdupq_n_s32(-(int32_t) c); + return vreinterpretq_m128i_u32(vshlq_u32(vreinterpretq_u32_m128i(a), vc)); +} + +// Shifts the 2 signed or unsigned 64-bit integers in a right by count bits +// while shifting in zeros. +// +// r0 := srl(a0, count) +// r1 := srl(a1, count) +// +// https://msdn.microsoft.com/en-us/library/yf6cf9k8(v%3dvs.90).aspx +FORCE_INLINE __m128i _mm_srl_epi64(__m128i a, __m128i count) +{ + uint64_t c = ((SIMDVec *) &count)->m128_u64[0]; + if (c > 63) + return _mm_setzero_si128(); + + int64x2_t vc = vdupq_n_s64(-(int64_t) c); + return vreinterpretq_m128i_u64(vshlq_u64(vreinterpretq_u64_m128i(a), vc)); +} + +// NEON does not provide a version of this function. +// Creates a 16-bit mask from the most significant bits of the 16 signed or +// unsigned 8-bit integers in a and zero extends the upper bits. +// https://msdn.microsoft.com/en-us/library/vstudio/s090c8fk(v=vs.100).aspx +FORCE_INLINE int _mm_movemask_epi8(__m128i a) +{ +#if defined(__aarch64__) + uint8x16_t input = vreinterpretq_u8_m128i(a); + const int8_t ALIGN_STRUCT(16) + xr[16] = {-7, -6, -5, -4, -3, -2, -1, 0, -7, -6, -5, -4, -3, -2, -1, 0}; + const uint8x16_t mask_and = vdupq_n_u8(0x80); + const int8x16_t mask_shift = vld1q_s8(xr); + const uint8x16_t mask_result = + vshlq_u8(vandq_u8(input, mask_and), mask_shift); + uint8x8_t lo = vget_low_u8(mask_result); + uint8x8_t hi = vget_high_u8(mask_result); + + return vaddv_u8(lo) + (vaddv_u8(hi) << 8); +#else + // Use increasingly wide shifts+adds to collect the sign bits + // together. + // Since the widening shifts would be rather confusing to follow in little + // endian, everything will be illustrated in big endian order instead. This + // has a different result - the bits would actually be reversed on a big + // endian machine. + + // Starting input (only half the elements are shown): + // 89 ff 1d c0 00 10 99 33 + uint8x16_t input = vreinterpretq_u8_m128i(a); + + // Shift out everything but the sign bits with an unsigned shift right. + // + // Bytes of the vector:: + // 89 ff 1d c0 00 10 99 33 + // \ \ \ \ \ \ \ \ high_bits = (uint16x4_t)(input >> 7) + // | | | | | | | | + // 01 01 00 01 00 00 01 00 + // + // Bits of first important lane(s): + // 10001001 (89) + // \______ + // | + // 00000001 (01) + uint16x8_t high_bits = vreinterpretq_u16_u8(vshrq_n_u8(input, 7)); + + // Merge the even lanes together with a 16-bit unsigned shift right + add. + // 'xx' represents garbage data which will be ignored in the final result. + // In the important bytes, the add functions like a binary OR. + // + // 01 01 00 01 00 00 01 00 + // \_ | \_ | \_ | \_ | paired16 = (uint32x4_t)(input + (input >> 7)) + // \| \| \| \| + // xx 03 xx 01 xx 00 xx 02 + // + // 00000001 00000001 (01 01) + // \_______ | + // \| + // xxxxxxxx xxxxxx11 (xx 03) + uint32x4_t paired16 = + vreinterpretq_u32_u16(vsraq_n_u16(high_bits, high_bits, 7)); + + // Repeat with a wider 32-bit shift + add. + // xx 03 xx 01 xx 00 xx 02 + // \____ | \____ | paired32 = (uint64x1_t)(paired16 + (paired16 >> + // 14)) + // \| \| + // xx xx xx 0d xx xx xx 02 + // + // 00000011 00000001 (03 01) + // \\_____ || + // '----.\|| + // xxxxxxxx xxxx1101 (xx 0d) + uint64x2_t paired32 = + vreinterpretq_u64_u32(vsraq_n_u32(paired16, paired16, 14)); + + // Last, an even wider 64-bit shift + add to get our result in the low 8 bit + // lanes. xx xx xx 0d xx xx xx 02 + // \_________ | paired64 = (uint8x8_t)(paired32 + (paired32 >> + // 28)) + // \| + // xx xx xx xx xx xx xx d2 + // + // 00001101 00000010 (0d 02) + // \ \___ | | + // '---. \| | + // xxxxxxxx 11010010 (xx d2) + uint8x16_t paired64 = + vreinterpretq_u8_u64(vsraq_n_u64(paired32, paired32, 28)); + + // Extract the low 8 bits from each 64-bit lane with 2 8-bit extracts. + // xx xx xx xx xx xx xx d2 + // || return paired64[0] + // d2 + // Note: Little endian would return the correct value 4b (01001011) instead. + return vgetq_lane_u8(paired64, 0) | ((int) vgetq_lane_u8(paired64, 8) << 8); +#endif +} + +// NEON does not provide this method +// Creates a 4-bit mask from the most significant bits of the four +// single-precision, floating-point values. +// https://msdn.microsoft.com/en-us/library/vstudio/4490ys29(v=vs.100).aspx +FORCE_INLINE int _mm_movemask_ps(__m128 a) +{ + uint32x4_t input = vreinterpretq_u32_m128(a); +#if defined(__aarch64__) + static const int32x4_t shift = {-31, -30, -29, -28}; + static const uint32x4_t highbit = {0x80000000, 0x80000000, 0x80000000, + 0x80000000}; + return vaddvq_u32(vshlq_u32(vandq_u32(input, highbit), shift)); +#else + // Uses the exact same method as _mm_movemask_epi8, see that for details. + // Shift out everything but the sign bits with a 32-bit unsigned shift + // right. + uint64x2_t high_bits = vreinterpretq_u64_u32(vshrq_n_u32(input, 31)); + // Merge the two pairs together with a 64-bit unsigned shift right + add. + uint8x16_t paired = + vreinterpretq_u8_u64(vsraq_n_u64(high_bits, high_bits, 31)); + // Extract the result. + return vgetq_lane_u8(paired, 0) | (vgetq_lane_u8(paired, 8) << 2); +#endif +} + +// Compute the bitwise AND of 128 bits (representing integer data) in a and +// mask, and return 1 if the result is zero, otherwise return 0. +// https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_test_all_zeros&expand=5871 +FORCE_INLINE int _mm_test_all_zeros(__m128i a, __m128i mask) +{ + int64x2_t a_and_mask = + vandq_s64(vreinterpretq_s64_m128i(a), vreinterpretq_s64_m128i(mask)); + return (vgetq_lane_s64(a_and_mask, 0) | vgetq_lane_s64(a_and_mask, 1)) ? 0 + : 1; +} + +/* Math operations */ + +// Subtracts the four single-precision, floating-point values of a and b. +// +// r0 := a0 - b0 +// r1 := a1 - b1 +// r2 := a2 - b2 +// r3 := a3 - b3 +// +// https://msdn.microsoft.com/en-us/library/vstudio/1zad2k61(v=vs.100).aspx +FORCE_INLINE __m128 _mm_sub_ps(__m128 a, __m128 b) +{ + return vreinterpretq_m128_f32( + vsubq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b))); +} + +// Subtract 2 packed 64-bit integers in b from 2 packed 64-bit integers in a, +// and store the results in dst. +// r0 := a0 - b0 +// r1 := a1 - b1 +FORCE_INLINE __m128i _mm_sub_epi64(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s64( + vsubq_s64(vreinterpretq_s64_m128i(a), vreinterpretq_s64_m128i(b))); +} + +// Subtracts the 4 signed or unsigned 32-bit integers of b from the 4 signed or +// unsigned 32-bit integers of a. +// +// r0 := a0 - b0 +// r1 := a1 - b1 +// r2 := a2 - b2 +// r3 := a3 - b3 +// +// https://msdn.microsoft.com/en-us/library/vstudio/fhh866h0(v=vs.100).aspx +FORCE_INLINE __m128i _mm_sub_epi32(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s32( + vsubq_s32(vreinterpretq_s32_m128i(a), vreinterpretq_s32_m128i(b))); +} + +FORCE_INLINE __m128i _mm_sub_epi16(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s16( + vsubq_s16(vreinterpretq_s16_m128i(a), vreinterpretq_s16_m128i(b))); +} + +FORCE_INLINE __m128i _mm_sub_epi8(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s8( + vsubq_s8(vreinterpretq_s8_m128i(a), vreinterpretq_s8_m128i(b))); +} + +// Subtracts the 8 unsigned 16-bit integers of bfrom the 8 unsigned 16-bit +// integers of a and saturates.. +// https://technet.microsoft.com/en-us/subscriptions/index/f44y0s19(v=vs.90).aspx +FORCE_INLINE __m128i _mm_subs_epu16(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u16( + vqsubq_u16(vreinterpretq_u16_m128i(a), vreinterpretq_u16_m128i(b))); +} + +// Subtracts the 16 unsigned 8-bit integers of b from the 16 unsigned 8-bit +// integers of a and saturates. +// +// r0 := UnsignedSaturate(a0 - b0) +// r1 := UnsignedSaturate(a1 - b1) +// ... +// r15 := UnsignedSaturate(a15 - b15) +// +// https://technet.microsoft.com/en-us/subscriptions/yadkxc18(v=vs.90) +FORCE_INLINE __m128i _mm_subs_epu8(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u8( + vqsubq_u8(vreinterpretq_u8_m128i(a), vreinterpretq_u8_m128i(b))); +} + +// Subtracts the 16 signed 8-bit integers of b from the 16 signed 8-bit integers +// of a and saturates. +// +// r0 := SignedSaturate(a0 - b0) +// r1 := SignedSaturate(a1 - b1) +// ... +// r15 := SignedSaturate(a15 - b15) +// +// https://technet.microsoft.com/en-us/subscriptions/by7kzks1(v=vs.90) +FORCE_INLINE __m128i _mm_subs_epi8(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s8( + vqsubq_s8(vreinterpretq_s8_m128i(a), vreinterpretq_s8_m128i(b))); +} + +// Subtracts the 8 signed 16-bit integers of b from the 8 signed 16-bit integers +// of a and saturates. +// +// r0 := SignedSaturate(a0 - b0) +// r1 := SignedSaturate(a1 - b1) +// ... +// r7 := SignedSaturate(a7 - b7) +// +// https://technet.microsoft.com/en-us/subscriptions/3247z5b8(v=vs.90) +FORCE_INLINE __m128i _mm_subs_epi16(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s16( + vqsubq_s16(vreinterpretq_s16_m128i(a), vreinterpretq_s16_m128i(b))); +} + +FORCE_INLINE __m128i _mm_adds_epu16(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u16( + vqaddq_u16(vreinterpretq_u16_m128i(a), vreinterpretq_u16_m128i(b))); +} + +// Negate packed 8-bit integers in a when the corresponding signed +// 8-bit integer in b is negative, and store the results in dst. +// Element in dst are zeroed out when the corresponding element +// in b is zero. +// +// for i in 0..15 +// if b[i] < 0 +// r[i] := -a[i] +// else if b[i] == 0 +// r[i] := 0 +// else +// r[i] := a[i] +// fi +// done +FORCE_INLINE __m128i _mm_sign_epi8(__m128i _a, __m128i _b) +{ + int8x16_t a = vreinterpretq_s8_m128i(_a); + int8x16_t b = vreinterpretq_s8_m128i(_b); + + int8x16_t zero = vdupq_n_s8(0); + // signed shift right: faster than vclt + // (b < 0) ? 0xFF : 0 + uint8x16_t ltMask = vreinterpretq_u8_s8(vshrq_n_s8(b, 7)); + // (b == 0) ? 0xFF : 0 + int8x16_t zeroMask = vreinterpretq_s8_u8(vceqq_s8(b, zero)); + // -a + int8x16_t neg = vnegq_s8(a); + // bitwise select either a or neg based on ltMask + int8x16_t masked = vbslq_s8(ltMask, a, neg); + // res = masked & (~zeroMask) + int8x16_t res = vbicq_s8(masked, zeroMask); + return vreinterpretq_m128i_s8(res); +} + +// Negate packed 16-bit integers in a when the corresponding signed +// 16-bit integer in b is negative, and store the results in dst. +// Element in dst are zeroed out when the corresponding element +// in b is zero. +// +// for i in 0..7 +// if b[i] < 0 +// r[i] := -a[i] +// else if b[i] == 0 +// r[i] := 0 +// else +// r[i] := a[i] +// fi +// done +FORCE_INLINE __m128i _mm_sign_epi16(__m128i _a, __m128i _b) +{ + int16x8_t a = vreinterpretq_s16_m128i(_a); + int16x8_t b = vreinterpretq_s16_m128i(_b); + + int16x8_t zero = vdupq_n_s16(0); + // signed shift right: faster than vclt + // (b < 0) ? 0xFFFF : 0 + uint16x8_t ltMask = vreinterpretq_u16_s16(vshrq_n_s16(b, 15)); + // (b == 0) ? 0xFFFF : 0 + int16x8_t zeroMask = vreinterpretq_s16_u16(vceqq_s16(b, zero)); + // -a + int16x8_t neg = vnegq_s16(a); + // bitwise select either a or neg based on ltMask + int16x8_t masked = vbslq_s16(ltMask, a, neg); + // res = masked & (~zeroMask) + int16x8_t res = vbicq_s16(masked, zeroMask); + return vreinterpretq_m128i_s16(res); +} + +// Negate packed 32-bit integers in a when the corresponding signed +// 32-bit integer in b is negative, and store the results in dst. +// Element in dst are zeroed out when the corresponding element +// in b is zero. +// +// for i in 0..3 +// if b[i] < 0 +// r[i] := -a[i] +// else if b[i] == 0 +// r[i] := 0 +// else +// r[i] := a[i] +// fi +// done +FORCE_INLINE __m128i _mm_sign_epi32(__m128i _a, __m128i _b) +{ + int32x4_t a = vreinterpretq_s32_m128i(_a); + int32x4_t b = vreinterpretq_s32_m128i(_b); + + int32x4_t zero = vdupq_n_s32(0); + // signed shift right: faster than vclt + // (b < 0) ? 0xFFFFFFFF : 0 + uint32x4_t ltMask = vreinterpretq_u32_s32(vshrq_n_s32(b, 31)); + // (b == 0) ? 0xFFFFFFFF : 0 + int32x4_t zeroMask = vreinterpretq_s32_u32(vceqq_s32(b, zero)); + // neg = -a + int32x4_t neg = vnegq_s32(a); + // bitwise select either a or neg based on ltMask + int32x4_t masked = vbslq_s32(ltMask, a, neg); + // res = masked & (~zeroMask) + int32x4_t res = vbicq_s32(masked, zeroMask); + return vreinterpretq_m128i_s32(res); +} + +// Computes the average of the 16 unsigned 8-bit integers in a and the 16 +// unsigned 8-bit integers in b and rounds. +// +// r0 := (a0 + b0) / 2 +// r1 := (a1 + b1) / 2 +// ... +// r15 := (a15 + b15) / 2 +// +// https://msdn.microsoft.com/en-us/library/vstudio/8zwh554a(v%3dvs.90).aspx +FORCE_INLINE __m128i _mm_avg_epu8(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u8( + vrhaddq_u8(vreinterpretq_u8_m128i(a), vreinterpretq_u8_m128i(b))); +} + +// Computes the average of the 8 unsigned 16-bit integers in a and the 8 +// unsigned 16-bit integers in b and rounds. +// +// r0 := (a0 + b0) / 2 +// r1 := (a1 + b1) / 2 +// ... +// r7 := (a7 + b7) / 2 +// +// https://msdn.microsoft.com/en-us/library/vstudio/y13ca3c8(v=vs.90).aspx +FORCE_INLINE __m128i _mm_avg_epu16(__m128i a, __m128i b) +{ + return (__m128i) vrhaddq_u16(vreinterpretq_u16_m128i(a), + vreinterpretq_u16_m128i(b)); +} + +// Adds the four single-precision, floating-point values of a and b. +// +// r0 := a0 + b0 +// r1 := a1 + b1 +// r2 := a2 + b2 +// r3 := a3 + b3 +// +// https://msdn.microsoft.com/en-us/library/vstudio/c9848chc(v=vs.100).aspx +FORCE_INLINE __m128 _mm_add_ps(__m128 a, __m128 b) +{ + return vreinterpretq_m128_f32( + vaddq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b))); +} + +// adds the scalar single-precision floating point values of a and b. +// https://msdn.microsoft.com/en-us/library/be94x2y6(v=vs.100).aspx +FORCE_INLINE __m128 _mm_add_ss(__m128 a, __m128 b) +{ + float32_t b0 = vgetq_lane_f32(vreinterpretq_f32_m128(b), 0); + float32x4_t value = vsetq_lane_f32(b0, vdupq_n_f32(0), 0); + // the upper values in the result must be the remnants of . + return vreinterpretq_m128_f32(vaddq_f32(a, value)); +} + +// Adds the 4 signed or unsigned 64-bit integers in a to the 4 signed or +// unsigned 32-bit integers in b. +// https://msdn.microsoft.com/en-us/library/vstudio/09xs4fkk(v=vs.100).aspx +FORCE_INLINE __m128i _mm_add_epi64(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s64( + vaddq_s64(vreinterpretq_s64_m128i(a), vreinterpretq_s64_m128i(b))); +} + +// Adds the 4 signed or unsigned 32-bit integers in a to the 4 signed or +// unsigned 32-bit integers in b. +// +// r0 := a0 + b0 +// r1 := a1 + b1 +// r2 := a2 + b2 +// r3 := a3 + b3 +// +// https://msdn.microsoft.com/en-us/library/vstudio/09xs4fkk(v=vs.100).aspx +FORCE_INLINE __m128i _mm_add_epi32(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s32( + vaddq_s32(vreinterpretq_s32_m128i(a), vreinterpretq_s32_m128i(b))); +} + +// Adds the 8 signed or unsigned 16-bit integers in a to the 8 signed or +// unsigned 16-bit integers in b. +// https://msdn.microsoft.com/en-us/library/fceha5k4(v=vs.100).aspx +FORCE_INLINE __m128i _mm_add_epi16(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s16( + vaddq_s16(vreinterpretq_s16_m128i(a), vreinterpretq_s16_m128i(b))); +} + +// Adds the 16 signed or unsigned 8-bit integers in a to the 16 signed or +// unsigned 8-bit integers in b. +// https://technet.microsoft.com/en-us/subscriptions/yc7tcyzs(v=vs.90) +FORCE_INLINE __m128i _mm_add_epi8(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s8( + vaddq_s8(vreinterpretq_s8_m128i(a), vreinterpretq_s8_m128i(b))); +} + +// Adds the 8 signed 16-bit integers in a to the 8 signed 16-bit integers in b +// and saturates. +// +// r0 := SignedSaturate(a0 + b0) +// r1 := SignedSaturate(a1 + b1) +// ... +// r7 := SignedSaturate(a7 + b7) +// +// https://msdn.microsoft.com/en-us/library/1a306ef8(v=vs.100).aspx +FORCE_INLINE __m128i _mm_adds_epi16(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s16( + vqaddq_s16(vreinterpretq_s16_m128i(a), vreinterpretq_s16_m128i(b))); +} + +// Adds the 16 unsigned 8-bit integers in a to the 16 unsigned 8-bit integers in +// b and saturates.. +// https://msdn.microsoft.com/en-us/library/9hahyddy(v=vs.100).aspx +FORCE_INLINE __m128i _mm_adds_epu8(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u8( + vqaddq_u8(vreinterpretq_u8_m128i(a), vreinterpretq_u8_m128i(b))); +} + +// Multiplies the 8 signed or unsigned 16-bit integers from a by the 8 signed or +// unsigned 16-bit integers from b. +// +// r0 := (a0 * b0)[15:0] +// r1 := (a1 * b1)[15:0] +// ... +// r7 := (a7 * b7)[15:0] +// +// https://msdn.microsoft.com/en-us/library/vstudio/9ks1472s(v=vs.100).aspx +FORCE_INLINE __m128i _mm_mullo_epi16(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s16( + vmulq_s16(vreinterpretq_s16_m128i(a), vreinterpretq_s16_m128i(b))); +} + +// Multiplies the 4 signed or unsigned 32-bit integers from a by the 4 signed or +// unsigned 32-bit integers from b. +// https://msdn.microsoft.com/en-us/library/vstudio/bb531409(v=vs.100).aspx +FORCE_INLINE __m128i _mm_mullo_epi32(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s32( + vmulq_s32(vreinterpretq_s32_m128i(a), vreinterpretq_s32_m128i(b))); +} + +// Multiplies the four single-precision, floating-point values of a and b. +// +// r0 := a0 * b0 +// r1 := a1 * b1 +// r2 := a2 * b2 +// r3 := a3 * b3 +// +// https://msdn.microsoft.com/en-us/library/vstudio/22kbk6t9(v=vs.100).aspx +FORCE_INLINE __m128 _mm_mul_ps(__m128 a, __m128 b) +{ + return vreinterpretq_m128_f32( + vmulq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b))); +} + +// Multiply the low unsigned 32-bit integers from each packed 64-bit element in +// a and b, and store the unsigned 64-bit results in dst. +// +// r0 := (a0 & 0xFFFFFFFF) * (b0 & 0xFFFFFFFF) +// r1 := (a2 & 0xFFFFFFFF) * (b2 & 0xFFFFFFFF) +FORCE_INLINE __m128i _mm_mul_epu32(__m128i a, __m128i b) +{ + // vmull_u32 upcasts instead of masking, so we downcast. + uint32x2_t a_lo = vmovn_u64(vreinterpretq_u64_m128i(a)); + uint32x2_t b_lo = vmovn_u64(vreinterpretq_u64_m128i(b)); + return vreinterpretq_m128i_u64(vmull_u32(a_lo, b_lo)); +} + +// Multiply the low signed 32-bit integers from each packed 64-bit element in +// a and b, and store the signed 64-bit results in dst. +// +// r0 := (int64_t)(int32_t)a0 * (int64_t)(int32_t)b0 +// r1 := (int64_t)(int32_t)a2 * (int64_t)(int32_t)b2 +FORCE_INLINE __m128i _mm_mul_epi32(__m128i a, __m128i b) +{ + // vmull_s32 upcasts instead of masking, so we downcast. + int32x2_t a_lo = vmovn_s64(vreinterpretq_s64_m128i(a)); + int32x2_t b_lo = vmovn_s64(vreinterpretq_s64_m128i(b)); + return vreinterpretq_m128i_s64(vmull_s32(a_lo, b_lo)); +} + +// Multiplies the 8 signed 16-bit integers from a by the 8 signed 16-bit +// integers from b. +// +// r0 := (a0 * b0) + (a1 * b1) +// r1 := (a2 * b2) + (a3 * b3) +// r2 := (a4 * b4) + (a5 * b5) +// r3 := (a6 * b6) + (a7 * b7) +// https://msdn.microsoft.com/en-us/library/yht36sa6(v=vs.90).aspx +FORCE_INLINE __m128i _mm_madd_epi16(__m128i a, __m128i b) +{ + int32x4_t low = vmull_s16(vget_low_s16(vreinterpretq_s16_m128i(a)), + vget_low_s16(vreinterpretq_s16_m128i(b))); + int32x4_t high = vmull_s16(vget_high_s16(vreinterpretq_s16_m128i(a)), + vget_high_s16(vreinterpretq_s16_m128i(b))); + + int32x2_t low_sum = vpadd_s32(vget_low_s32(low), vget_high_s32(low)); + int32x2_t high_sum = vpadd_s32(vget_low_s32(high), vget_high_s32(high)); + + return vreinterpretq_m128i_s32(vcombine_s32(low_sum, high_sum)); +} + +// Multiply packed signed 16-bit integers in a and b, producing intermediate +// signed 32-bit integers. Shift right by 15 bits while rounding up, and store +// the packed 16-bit integers in dst. +// +// r0 := Round(((int32_t)a0 * (int32_t)b0) >> 15) +// r1 := Round(((int32_t)a1 * (int32_t)b1) >> 15) +// r2 := Round(((int32_t)a2 * (int32_t)b2) >> 15) +// ... +// r7 := Round(((int32_t)a7 * (int32_t)b7) >> 15) +FORCE_INLINE __m128i _mm_mulhrs_epi16(__m128i a, __m128i b) +{ + // Has issues due to saturation + // return vreinterpretq_m128i_s16(vqrdmulhq_s16(a, b)); + + // Multiply + int32x4_t mul_lo = vmull_s16(vget_low_s16(vreinterpretq_s16_m128i(a)), + vget_low_s16(vreinterpretq_s16_m128i(b))); + int32x4_t mul_hi = vmull_s16(vget_high_s16(vreinterpretq_s16_m128i(a)), + vget_high_s16(vreinterpretq_s16_m128i(b))); + + // Rounding narrowing shift right + // narrow = (int16_t)((mul + 16384) >> 15); + int16x4_t narrow_lo = vrshrn_n_s32(mul_lo, 15); + int16x4_t narrow_hi = vrshrn_n_s32(mul_hi, 15); + + // Join together + return vreinterpretq_m128i_s16(vcombine_s16(narrow_lo, narrow_hi)); +} + +// Vertically multiply each unsigned 8-bit integer from a with the corresponding +// signed 8-bit integer from b, producing intermediate signed 16-bit integers. +// Horizontally add adjacent pairs of intermediate signed 16-bit integers, +// and pack the saturated results in dst. +// +// FOR j := 0 to 7 +// i := j*16 +// dst[i+15:i] := Saturate_To_Int16( a[i+15:i+8]*b[i+15:i+8] + +// a[i+7:i]*b[i+7:i] ) +// ENDFOR +FORCE_INLINE __m128i _mm_maddubs_epi16(__m128i _a, __m128i _b) +{ + // This would be much simpler if x86 would choose to zero extend OR sign + // extend, not both. This could probably be optimized better. + uint16x8_t a = vreinterpretq_u16_m128i(_a); + int16x8_t b = vreinterpretq_s16_m128i(_b); + + // Zero extend a + int16x8_t a_odd = vreinterpretq_s16_u16(vshrq_n_u16(a, 8)); + int16x8_t a_even = vreinterpretq_s16_u16(vbicq_u16(a, vdupq_n_u16(0xff00))); + + // Sign extend by shifting left then shifting right. + int16x8_t b_even = vshrq_n_s16(vshlq_n_s16(b, 8), 8); + int16x8_t b_odd = vshrq_n_s16(b, 8); + + // multiply + int16x8_t prod1 = vmulq_s16(a_even, b_even); + int16x8_t prod2 = vmulq_s16(a_odd, b_odd); + + // saturated add + return vreinterpretq_m128i_s16(vqaddq_s16(prod1, prod2)); +} + +// Computes the absolute difference of the 16 unsigned 8-bit integers from a +// and the 16 unsigned 8-bit integers from b. +// +// Return Value +// Sums the upper 8 differences and lower 8 differences and packs the +// resulting 2 unsigned 16-bit integers into the upper and lower 64-bit +// elements. +// +// r0 := abs(a0 - b0) + abs(a1 - b1) +...+ abs(a7 - b7) +// r1 := 0x0 +// r2 := 0x0 +// r3 := 0x0 +// r4 := abs(a8 - b8) + abs(a9 - b9) +...+ abs(a15 - b15) +// r5 := 0x0 +// r6 := 0x0 +// r7 := 0x0 +FORCE_INLINE __m128i _mm_sad_epu8(__m128i a, __m128i b) +{ + uint16x8_t t = vpaddlq_u8(vabdq_u8((uint8x16_t) a, (uint8x16_t) b)); + uint16_t r0 = t[0] + t[1] + t[2] + t[3]; + uint16_t r4 = t[4] + t[5] + t[6] + t[7]; + uint16x8_t r = vsetq_lane_u16(r0, vdupq_n_u16(0), 0); + return (__m128i) vsetq_lane_u16(r4, r, 4); +} + +// Divides the four single-precision, floating-point values of a and b. +// +// r0 := a0 / b0 +// r1 := a1 / b1 +// r2 := a2 / b2 +// r3 := a3 / b3 +// +// https://msdn.microsoft.com/en-us/library/edaw8147(v=vs.100).aspx +FORCE_INLINE __m128 _mm_div_ps(__m128 a, __m128 b) +{ + float32x4_t recip0 = vrecpeq_f32(vreinterpretq_f32_m128(b)); + float32x4_t recip1 = + vmulq_f32(recip0, vrecpsq_f32(recip0, vreinterpretq_f32_m128(b))); + return vreinterpretq_m128_f32(vmulq_f32(vreinterpretq_f32_m128(a), recip1)); +} + +// Divides the scalar single-precision floating point value of a by b. +// https://msdn.microsoft.com/en-us/library/4y73xa49(v=vs.100).aspx +FORCE_INLINE __m128 _mm_div_ss(__m128 a, __m128 b) +{ + float32_t value = + vgetq_lane_f32(vreinterpretq_f32_m128(_mm_div_ps(a, b)), 0); + return vreinterpretq_m128_f32( + vsetq_lane_f32(value, vreinterpretq_f32_m128(a), 0)); +} + +// Computes the approximations of reciprocals of the four single-precision, +// floating-point values of a. +// https://msdn.microsoft.com/en-us/library/vstudio/796k1tty(v=vs.100).aspx +FORCE_INLINE __m128 _mm_rcp_ps(__m128 in) +{ + float32x4_t recip = vrecpeq_f32(vreinterpretq_f32_m128(in)); + recip = vmulq_f32(recip, vrecpsq_f32(recip, vreinterpretq_f32_m128(in))); + return vreinterpretq_m128_f32(recip); +} + +// Computes the approximations of square roots of the four single-precision, +// floating-point values of a. First computes reciprocal square roots and then +// reciprocals of the four values. +// +// r0 := sqrt(a0) +// r1 := sqrt(a1) +// r2 := sqrt(a2) +// r3 := sqrt(a3) +// +// https://msdn.microsoft.com/en-us/library/vstudio/8z67bwwk(v=vs.100).aspx +FORCE_INLINE __m128 _mm_sqrt_ps(__m128 in) +{ + float32x4_t recipsq = vrsqrteq_f32(vreinterpretq_f32_m128(in)); + float32x4_t sq = vrecpeq_f32(recipsq); + // ??? use step versions of both sqrt and recip for better accuracy? + return vreinterpretq_m128_f32(sq); +} + +// Computes the approximation of the square root of the scalar single-precision +// floating point value of in. +// https://msdn.microsoft.com/en-us/library/ahfsc22d(v=vs.100).aspx +FORCE_INLINE __m128 _mm_sqrt_ss(__m128 in) +{ + float32_t value = + vgetq_lane_f32(vreinterpretq_f32_m128(_mm_sqrt_ps(in)), 0); + return vreinterpretq_m128_f32( + vsetq_lane_f32(value, vreinterpretq_f32_m128(in), 0)); +} + +// Computes the approximations of the reciprocal square roots of the four +// single-precision floating point values of in. +// https://msdn.microsoft.com/en-us/library/22hfsh53(v=vs.100).aspx +FORCE_INLINE __m128 _mm_rsqrt_ps(__m128 in) +{ + return vreinterpretq_m128_f32(vrsqrteq_f32(vreinterpretq_f32_m128(in))); +} + +// Computes the maximums of the four single-precision, floating-point values of +// a and b. +// https://msdn.microsoft.com/en-us/library/vstudio/ff5d607a(v=vs.100).aspx +FORCE_INLINE __m128 _mm_max_ps(__m128 a, __m128 b) +{ + return vreinterpretq_m128_f32( + vmaxq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b))); +} + +// Computes the minima of the four single-precision, floating-point values of a +// and b. +// https://msdn.microsoft.com/en-us/library/vstudio/wh13kadz(v=vs.100).aspx +FORCE_INLINE __m128 _mm_min_ps(__m128 a, __m128 b) +{ + return vreinterpretq_m128_f32( + vminq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b))); +} + +// Computes the maximum of the two lower scalar single-precision floating point +// values of a and b. +// https://msdn.microsoft.com/en-us/library/s6db5esz(v=vs.100).aspx +FORCE_INLINE __m128 _mm_max_ss(__m128 a, __m128 b) +{ + float32_t value = vgetq_lane_f32( + vmaxq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b)), 0); + return vreinterpretq_m128_f32( + vsetq_lane_f32(value, vreinterpretq_f32_m128(a), 0)); +} + +// Computes the minimum of the two lower scalar single-precision floating point +// values of a and b. +// https://msdn.microsoft.com/en-us/library/0a9y7xaa(v=vs.100).aspx +FORCE_INLINE __m128 _mm_min_ss(__m128 a, __m128 b) +{ + float32_t value = vgetq_lane_f32( + vminq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b)), 0); + return vreinterpretq_m128_f32( + vsetq_lane_f32(value, vreinterpretq_f32_m128(a), 0)); +} + +// Computes the pairwise maxima of the 16 unsigned 8-bit integers from a and the +// 16 unsigned 8-bit integers from b. +// https://msdn.microsoft.com/en-us/library/st6634za(v=vs.100).aspx +FORCE_INLINE __m128i _mm_max_epu8(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u8( + vmaxq_u8(vreinterpretq_u8_m128i(a), vreinterpretq_u8_m128i(b))); +} + +// Computes the pairwise minima of the 16 unsigned 8-bit integers from a and the +// 16 unsigned 8-bit integers from b. +// https://msdn.microsoft.com/ko-kr/library/17k8cf58(v=vs.100).aspxx +FORCE_INLINE __m128i _mm_min_epu8(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u8( + vminq_u8(vreinterpretq_u8_m128i(a), vreinterpretq_u8_m128i(b))); +} + +// Computes the pairwise minima of the 8 signed 16-bit integers from a and the 8 +// signed 16-bit integers from b. +// https://msdn.microsoft.com/en-us/library/vstudio/6te997ew(v=vs.100).aspx +FORCE_INLINE __m128i _mm_min_epi16(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s16( + vminq_s16(vreinterpretq_s16_m128i(a), vreinterpretq_s16_m128i(b))); +} + +// Computes the pairwise maxima of the 8 signed 16-bit integers from a and the 8 +// signed 16-bit integers from b. +// https://msdn.microsoft.com/en-us/LIBRary/3x060h7c(v=vs.100).aspx +FORCE_INLINE __m128i _mm_max_epi16(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s16( + vmaxq_s16(vreinterpretq_s16_m128i(a), vreinterpretq_s16_m128i(b))); +} + +// epi versions of min/max +// Computes the pariwise maximums of the four signed 32-bit integer values of a +// and b. +// +// A 128-bit parameter that can be defined with the following equations: +// r0 := (a0 > b0) ? a0 : b0 +// r1 := (a1 > b1) ? a1 : b1 +// r2 := (a2 > b2) ? a2 : b2 +// r3 := (a3 > b3) ? a3 : b3 +// +// https://msdn.microsoft.com/en-us/library/vstudio/bb514055(v=vs.100).aspx +FORCE_INLINE __m128i _mm_max_epi32(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s32( + vmaxq_s32(vreinterpretq_s32_m128i(a), vreinterpretq_s32_m128i(b))); +} + +// Computes the pariwise minima of the four signed 32-bit integer values of a +// and b. +// +// A 128-bit parameter that can be defined with the following equations: +// r0 := (a0 < b0) ? a0 : b0 +// r1 := (a1 < b1) ? a1 : b1 +// r2 := (a2 < b2) ? a2 : b2 +// r3 := (a3 < b3) ? a3 : b3 +// +// https://msdn.microsoft.com/en-us/library/vstudio/bb531476(v=vs.100).aspx +FORCE_INLINE __m128i _mm_min_epi32(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s32( + vminq_s32(vreinterpretq_s32_m128i(a), vreinterpretq_s32_m128i(b))); +} + +// Multiplies the 8 signed 16-bit integers from a by the 8 signed 16-bit +// integers from b. +// +// r0 := (a0 * b0)[31:16] +// r1 := (a1 * b1)[31:16] +// ... +// r7 := (a7 * b7)[31:16] +// +// https://msdn.microsoft.com/en-us/library/vstudio/59hddw1d(v=vs.100).aspx +FORCE_INLINE __m128i _mm_mulhi_epi16(__m128i a, __m128i b) +{ + /* FIXME: issue with large values because of result saturation */ + // int16x8_t ret = vqdmulhq_s16(vreinterpretq_s16_m128i(a), + // vreinterpretq_s16_m128i(b)); /* =2*a*b */ return + // vreinterpretq_m128i_s16(vshrq_n_s16(ret, 1)); + int16x4_t a3210 = vget_low_s16(vreinterpretq_s16_m128i(a)); + int16x4_t b3210 = vget_low_s16(vreinterpretq_s16_m128i(b)); + int32x4_t ab3210 = vmull_s16(a3210, b3210); /* 3333222211110000 */ + int16x4_t a7654 = vget_high_s16(vreinterpretq_s16_m128i(a)); + int16x4_t b7654 = vget_high_s16(vreinterpretq_s16_m128i(b)); + int32x4_t ab7654 = vmull_s16(a7654, b7654); /* 7777666655554444 */ + uint16x8x2_t r = + vuzpq_u16(vreinterpretq_u16_s32(ab3210), vreinterpretq_u16_s32(ab7654)); + return vreinterpretq_m128i_u16(r.val[1]); +} + +// Computes pairwise add of each argument as single-precision, floating-point +// values a and b. +// https://msdn.microsoft.com/en-us/library/yd9wecaa.aspx +FORCE_INLINE __m128 _mm_hadd_ps(__m128 a, __m128 b) +{ +#if defined(__aarch64__) + return vreinterpretq_m128_f32( + vpaddq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b))); +#else + float32x2_t a10 = vget_low_f32(vreinterpretq_f32_m128(a)); + float32x2_t a32 = vget_high_f32(vreinterpretq_f32_m128(a)); + float32x2_t b10 = vget_low_f32(vreinterpretq_f32_m128(b)); + float32x2_t b32 = vget_high_f32(vreinterpretq_f32_m128(b)); + return vreinterpretq_m128_f32( + vcombine_f32(vpadd_f32(a10, a32), vpadd_f32(b10, b32))); +#endif +} + +// Computes pairwise add of each argument as a 16-bit signed or unsigned integer +// values a and b. +FORCE_INLINE __m128i _mm_hadd_epi16(__m128i _a, __m128i _b) +{ + int16x8_t a = vreinterpretq_s16_m128i(_a); + int16x8_t b = vreinterpretq_s16_m128i(_b); +#if defined(__aarch64__) + return vreinterpretq_m128i_s16(vpaddq_s16(a, b)); +#else + return vreinterpretq_m128i_s16( + vcombine_s16(vpadd_s16(vget_low_s16(a), vget_high_s16(a)), + vpadd_s16(vget_low_s16(b), vget_high_s16(b)))); +#endif +} + +// Computes pairwise difference of each argument as a 16-bit signed or unsigned +// integer values a and b. +FORCE_INLINE __m128i _mm_hsub_epi16(__m128i _a, __m128i _b) +{ + int32x4_t a = vreinterpretq_s32_m128i(_a); + int32x4_t b = vreinterpretq_s32_m128i(_b); + // Interleave using vshrn/vmovn + // [a0|a2|a4|a6|b0|b2|b4|b6] + // [a1|a3|a5|a7|b1|b3|b5|b7] + int16x8_t ab0246 = vcombine_s16(vmovn_s32(a), vmovn_s32(b)); + int16x8_t ab1357 = vcombine_s16(vshrn_n_s32(a, 16), vshrn_n_s32(b, 16)); + // Subtract + return vreinterpretq_m128i_s16(vsubq_s16(ab0246, ab1357)); +} + +// Computes saturated pairwise sub of each argument as a 16-bit signed +// integer values a and b. +FORCE_INLINE __m128i _mm_hadds_epi16(__m128i _a, __m128i _b) +{ + int32x4_t a = vreinterpretq_s32_m128i(_a); + int32x4_t b = vreinterpretq_s32_m128i(_b); + // Interleave using vshrn/vmovn + // [a0|a2|a4|a6|b0|b2|b4|b6] + // [a1|a3|a5|a7|b1|b3|b5|b7] + int16x8_t ab0246 = vcombine_s16(vmovn_s32(a), vmovn_s32(b)); + int16x8_t ab1357 = vcombine_s16(vshrn_n_s32(a, 16), vshrn_n_s32(b, 16)); + // Saturated add + return vreinterpretq_m128i_s16(vqaddq_s16(ab0246, ab1357)); +} + +// Computes saturated pairwise difference of each argument as a 16-bit signed +// integer values a and b. +FORCE_INLINE __m128i _mm_hsubs_epi16(__m128i _a, __m128i _b) +{ + int32x4_t a = vreinterpretq_s32_m128i(_a); + int32x4_t b = vreinterpretq_s32_m128i(_b); + // Interleave using vshrn/vmovn + // [a0|a2|a4|a6|b0|b2|b4|b6] + // [a1|a3|a5|a7|b1|b3|b5|b7] + int16x8_t ab0246 = vcombine_s16(vmovn_s32(a), vmovn_s32(b)); + int16x8_t ab1357 = vcombine_s16(vshrn_n_s32(a, 16), vshrn_n_s32(b, 16)); + // Saturated subtract + return vreinterpretq_m128i_s16(vqsubq_s16(ab0246, ab1357)); +} + +// Computes pairwise add of each argument as a 32-bit signed or unsigned integer +// values a and b. +FORCE_INLINE __m128i _mm_hadd_epi32(__m128i _a, __m128i _b) +{ + int32x4_t a = vreinterpretq_s32_m128i(_a); + int32x4_t b = vreinterpretq_s32_m128i(_b); + return vreinterpretq_m128i_s32( + vcombine_s32(vpadd_s32(vget_low_s32(a), vget_high_s32(a)), + vpadd_s32(vget_low_s32(b), vget_high_s32(b)))); +} + +// Computes pairwise difference of each argument as a 32-bit signed or unsigned +// integer values a and b. +FORCE_INLINE __m128i _mm_hsub_epi32(__m128i _a, __m128i _b) +{ + int64x2_t a = vreinterpretq_s64_m128i(_a); + int64x2_t b = vreinterpretq_s64_m128i(_b); + // Interleave using vshrn/vmovn + // [a0|a2|b0|b2] + // [a1|a2|b1|b3] + int32x4_t ab02 = vcombine_s32(vmovn_s64(a), vmovn_s64(b)); + int32x4_t ab13 = vcombine_s32(vshrn_n_s64(a, 32), vshrn_n_s64(b, 32)); + // Subtract + return vreinterpretq_m128i_s32(vsubq_s32(ab02, ab13)); +} + +/* Compare operations */ + +// Compares for less than +// https://msdn.microsoft.com/en-us/library/vstudio/f330yhc8(v=vs.100).aspx +FORCE_INLINE __m128 _mm_cmplt_ps(__m128 a, __m128 b) +{ + return vreinterpretq_m128_u32( + vcltq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b))); +} + +// Compares for greater than. +// +// r0 := (a0 > b0) ? 0xffffffff : 0x0 +// r1 := (a1 > b1) ? 0xffffffff : 0x0 +// r2 := (a2 > b2) ? 0xffffffff : 0x0 +// r3 := (a3 > b3) ? 0xffffffff : 0x0 +// +// https://msdn.microsoft.com/en-us/library/vstudio/11dy102s(v=vs.100).aspx +FORCE_INLINE __m128 _mm_cmpgt_ps(__m128 a, __m128 b) +{ + return vreinterpretq_m128_u32( + vcgtq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b))); +} + +// Compares for greater than or equal. +// https://msdn.microsoft.com/en-us/library/vstudio/fs813y2t(v=vs.100).aspx +FORCE_INLINE __m128 _mm_cmpge_ps(__m128 a, __m128 b) +{ + return vreinterpretq_m128_u32( + vcgeq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b))); +} + +// Compares for less than or equal. +// +// r0 := (a0 <= b0) ? 0xffffffff : 0x0 +// r1 := (a1 <= b1) ? 0xffffffff : 0x0 +// r2 := (a2 <= b2) ? 0xffffffff : 0x0 +// r3 := (a3 <= b3) ? 0xffffffff : 0x0 +// +// https://msdn.microsoft.com/en-us/library/vstudio/1s75w83z(v=vs.100).aspx +FORCE_INLINE __m128 _mm_cmple_ps(__m128 a, __m128 b) +{ + return vreinterpretq_m128_u32( + vcleq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b))); +} + +// Compares for equality. +// https://msdn.microsoft.com/en-us/library/vstudio/36aectz5(v=vs.100).aspx +FORCE_INLINE __m128 _mm_cmpeq_ps(__m128 a, __m128 b) +{ + return vreinterpretq_m128_u32( + vceqq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b))); +} + +// Compares the 16 signed or unsigned 8-bit integers in a and the 16 signed or +// unsigned 8-bit integers in b for equality. +// https://msdn.microsoft.com/en-us/library/windows/desktop/bz5xk21a(v=vs.90).aspx +FORCE_INLINE __m128i _mm_cmpeq_epi8(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u8( + vceqq_s8(vreinterpretq_s8_m128i(a), vreinterpretq_s8_m128i(b))); +} + +// Compares the 8 signed or unsigned 16-bit integers in a and the 8 signed or +// unsigned 16-bit integers in b for equality. +// https://msdn.microsoft.com/en-us/library/2ay060te(v=vs.100).aspx +FORCE_INLINE __m128i _mm_cmpeq_epi16(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u16( + vceqq_s16(vreinterpretq_s16_m128i(a), vreinterpretq_s16_m128i(b))); +} + +// Compare packed 32-bit integers in a and b for equality, and store the results +// in dst +FORCE_INLINE __m128i _mm_cmpeq_epi32(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u32( + vceqq_s32(vreinterpretq_s32_m128i(a), vreinterpretq_s32_m128i(b))); +} + +// Compare packed 64-bit integers in a and b for equality, and store the results +// in dst +FORCE_INLINE __m128i _mm_cmpeq_epi64(__m128i a, __m128i b) +{ +#if defined(__aarch64__) + return vreinterpretq_m128i_u64( + vceqq_u64(vreinterpretq_u64_m128i(a), vreinterpretq_u64_m128i(b))); +#else + // ARMv7 lacks vceqq_u64 + // (a == b) -> (a_lo == b_lo) && (a_hi == b_hi) + uint32x4_t cmp = + vceqq_u32(vreinterpretq_u32_m128i(a), vreinterpretq_u32_m128i(b)); + uint32x4_t swapped = vrev64q_u32(cmp); + return vreinterpretq_m128i_u32(vandq_u32(cmp, swapped)); +#endif +} + +// Compares the 16 signed 8-bit integers in a and the 16 signed 8-bit integers +// in b for lesser than. +// https://msdn.microsoft.com/en-us/library/windows/desktop/9s46csht(v=vs.90).aspx +FORCE_INLINE __m128i _mm_cmplt_epi8(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u8( + vcltq_s8(vreinterpretq_s8_m128i(a), vreinterpretq_s8_m128i(b))); +} + +// Compares the 16 signed 8-bit integers in a and the 16 signed 8-bit integers +// in b for greater than. +// +// r0 := (a0 > b0) ? 0xff : 0x0 +// r1 := (a1 > b1) ? 0xff : 0x0 +// ... +// r15 := (a15 > b15) ? 0xff : 0x0 +// +// https://msdn.microsoft.com/zh-tw/library/wf45zt2b(v=vs.100).aspx +FORCE_INLINE __m128i _mm_cmpgt_epi8(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u8( + vcgtq_s8(vreinterpretq_s8_m128i(a), vreinterpretq_s8_m128i(b))); +} + +// Compares the 8 signed 16-bit integers in a and the 8 signed 16-bit integers +// in b for less than. +// +// r0 := (a0 < b0) ? 0xffff : 0x0 +// r1 := (a1 < b1) ? 0xffff : 0x0 +// ... +// r7 := (a7 < b7) ? 0xffff : 0x0 +// +// https://technet.microsoft.com/en-us/library/t863edb2(v=vs.100).aspx +FORCE_INLINE __m128i _mm_cmplt_epi16(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u16( + vcltq_s16(vreinterpretq_s16_m128i(a), vreinterpretq_s16_m128i(b))); +} + +// Compares the 8 signed 16-bit integers in a and the 8 signed 16-bit integers +// in b for greater than. +// +// r0 := (a0 > b0) ? 0xffff : 0x0 +// r1 := (a1 > b1) ? 0xffff : 0x0 +// ... +// r7 := (a7 > b7) ? 0xffff : 0x0 +// +// https://technet.microsoft.com/en-us/library/xd43yfsa(v=vs.100).aspx +FORCE_INLINE __m128i _mm_cmpgt_epi16(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u16( + vcgtq_s16(vreinterpretq_s16_m128i(a), vreinterpretq_s16_m128i(b))); +} + + +// Compares the 4 signed 32-bit integers in a and the 4 signed 32-bit integers +// in b for less than. +// https://msdn.microsoft.com/en-us/library/vstudio/4ak0bf5d(v=vs.100).aspx +FORCE_INLINE __m128i _mm_cmplt_epi32(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u32( + vcltq_s32(vreinterpretq_s32_m128i(a), vreinterpretq_s32_m128i(b))); +} + +// Compares the 4 signed 32-bit integers in a and the 4 signed 32-bit integers +// in b for greater than. +// https://msdn.microsoft.com/en-us/library/vstudio/1s9f2z0y(v=vs.100).aspx +FORCE_INLINE __m128i _mm_cmpgt_epi32(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u32( + vcgtq_s32(vreinterpretq_s32_m128i(a), vreinterpretq_s32_m128i(b))); +} + +// Compares the 2 signed 64-bit integers in a and the 2 signed 64-bit integers +// in b for greater than. +FORCE_INLINE __m128i _mm_cmpgt_epi64(__m128i a, __m128i b) +{ +#if defined(__aarch64__) + return vreinterpretq_m128i_u64( + vcgtq_s64(vreinterpretq_s64_m128i(a), vreinterpretq_s64_m128i(b))); +#else + // ARMv7 lacks vcgtq_s64. + // This is based off of Clang's SSE2 polyfill: + // (a > b) -> ((a_hi > b_hi) || (a_lo > b_lo && a_hi == b_hi)) + + // Mask the sign bit out since we need a signed AND an unsigned comparison + // and it is ugly to try and split them. + int32x4_t mask = vreinterpretq_s32_s64(vdupq_n_s64(0x80000000ull)); + int32x4_t a_mask = veorq_s32(vreinterpretq_s32_m128i(a), mask); + int32x4_t b_mask = veorq_s32(vreinterpretq_s32_m128i(b), mask); + // Check if a > b + int64x2_t greater = vreinterpretq_s64_u32(vcgtq_s32(a_mask, b_mask)); + // Copy upper mask to lower mask + // a_hi > b_hi + int64x2_t gt_hi = vshrq_n_s64(greater, 63); + // Copy lower mask to upper mask + // a_lo > b_lo + int64x2_t gt_lo = vsliq_n_s64(greater, greater, 32); + // Compare for equality + int64x2_t equal = vreinterpretq_s64_u32(vceqq_s32(a_mask, b_mask)); + // Copy upper mask to lower mask + // a_hi == b_hi + int64x2_t eq_hi = vshrq_n_s64(equal, 63); + // a_hi > b_hi || (a_lo > b_lo && a_hi == b_hi) + int64x2_t ret = vorrq_s64(gt_hi, vandq_s64(gt_lo, eq_hi)); + return vreinterpretq_m128i_s64(ret); +#endif +} + +// Compares the four 32-bit floats in a and b to check if any values are NaN. +// Ordered compare between each value returns true for "orderable" and false for +// "not orderable" (NaN). +// https://msdn.microsoft.com/en-us/library/vstudio/0h9w00fx(v=vs.100).aspx see +// also: +// http://stackoverflow.com/questions/8627331/what-does-ordered-unordered-comparison-mean +// http://stackoverflow.com/questions/29349621/neon-isnanval-intrinsics +FORCE_INLINE __m128 _mm_cmpord_ps(__m128 a, __m128 b) +{ + // Note: NEON does not have ordered compare builtin + // Need to compare a eq a and b eq b to check for NaN + // Do AND of results to get final + uint32x4_t ceqaa = + vceqq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(a)); + uint32x4_t ceqbb = + vceqq_f32(vreinterpretq_f32_m128(b), vreinterpretq_f32_m128(b)); + return vreinterpretq_m128_u32(vandq_u32(ceqaa, ceqbb)); +} + +// Compares the lower single-precision floating point scalar values of a and b +// using a less than operation. : +// https://msdn.microsoft.com/en-us/library/2kwe606b(v=vs.90).aspx Important +// note!! The documentation on MSDN is incorrect! If either of the values is a +// NAN the docs say you will get a one, but in fact, it will return a zero!! +FORCE_INLINE int _mm_comilt_ss(__m128 a, __m128 b) +{ + uint32x4_t a_not_nan = + vceqq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(a)); + uint32x4_t b_not_nan = + vceqq_f32(vreinterpretq_f32_m128(b), vreinterpretq_f32_m128(b)); + uint32x4_t a_and_b_not_nan = vandq_u32(a_not_nan, b_not_nan); + uint32x4_t a_lt_b = + vcltq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b)); + return (vgetq_lane_u32(vandq_u32(a_and_b_not_nan, a_lt_b), 0) != 0) ? 1 : 0; +} + +// Compares the lower single-precision floating point scalar values of a and b +// using a greater than operation. : +// https://msdn.microsoft.com/en-us/library/b0738e0t(v=vs.100).aspx +FORCE_INLINE int _mm_comigt_ss(__m128 a, __m128 b) +{ + // return vgetq_lane_u32(vcgtq_f32(vreinterpretq_f32_m128(a), + // vreinterpretq_f32_m128(b)), 0); + uint32x4_t a_not_nan = + vceqq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(a)); + uint32x4_t b_not_nan = + vceqq_f32(vreinterpretq_f32_m128(b), vreinterpretq_f32_m128(b)); + uint32x4_t a_and_b_not_nan = vandq_u32(a_not_nan, b_not_nan); + uint32x4_t a_gt_b = + vcgtq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b)); + return (vgetq_lane_u32(vandq_u32(a_and_b_not_nan, a_gt_b), 0) != 0) ? 1 : 0; +} + +// Compares the lower single-precision floating point scalar values of a and b +// using a less than or equal operation. : +// https://msdn.microsoft.com/en-us/library/1w4t7c57(v=vs.90).aspx +FORCE_INLINE int _mm_comile_ss(__m128 a, __m128 b) +{ + // return vgetq_lane_u32(vcleq_f32(vreinterpretq_f32_m128(a), + // vreinterpretq_f32_m128(b)), 0); + uint32x4_t a_not_nan = + vceqq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(a)); + uint32x4_t b_not_nan = + vceqq_f32(vreinterpretq_f32_m128(b), vreinterpretq_f32_m128(b)); + uint32x4_t a_and_b_not_nan = vandq_u32(a_not_nan, b_not_nan); + uint32x4_t a_le_b = + vcleq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b)); + return (vgetq_lane_u32(vandq_u32(a_and_b_not_nan, a_le_b), 0) != 0) ? 1 : 0; +} + +// Compares the lower single-precision floating point scalar values of a and b +// using a greater than or equal operation. : +// https://msdn.microsoft.com/en-us/library/8t80des6(v=vs.100).aspx +FORCE_INLINE int _mm_comige_ss(__m128 a, __m128 b) +{ + // return vgetq_lane_u32(vcgeq_f32(vreinterpretq_f32_m128(a), + // vreinterpretq_f32_m128(b)), 0); + uint32x4_t a_not_nan = + vceqq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(a)); + uint32x4_t b_not_nan = + vceqq_f32(vreinterpretq_f32_m128(b), vreinterpretq_f32_m128(b)); + uint32x4_t a_and_b_not_nan = vandq_u32(a_not_nan, b_not_nan); + uint32x4_t a_ge_b = + vcgeq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b)); + return (vgetq_lane_u32(vandq_u32(a_and_b_not_nan, a_ge_b), 0) != 0) ? 1 : 0; +} + +// Compares the lower single-precision floating point scalar values of a and b +// using an equality operation. : +// https://msdn.microsoft.com/en-us/library/93yx2h2b(v=vs.100).aspx +FORCE_INLINE int _mm_comieq_ss(__m128 a, __m128 b) +{ + // return vgetq_lane_u32(vceqq_f32(vreinterpretq_f32_m128(a), + // vreinterpretq_f32_m128(b)), 0); + uint32x4_t a_not_nan = + vceqq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(a)); + uint32x4_t b_not_nan = + vceqq_f32(vreinterpretq_f32_m128(b), vreinterpretq_f32_m128(b)); + uint32x4_t a_and_b_not_nan = vandq_u32(a_not_nan, b_not_nan); + uint32x4_t a_eq_b = + vceqq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b)); + return (vgetq_lane_u32(vandq_u32(a_and_b_not_nan, a_eq_b), 0) != 0) ? 1 : 0; +} + +// Compares the lower single-precision floating point scalar values of a and b +// using an inequality operation. : +// https://msdn.microsoft.com/en-us/library/bafh5e0a(v=vs.90).aspx +FORCE_INLINE int _mm_comineq_ss(__m128 a, __m128 b) +{ + // return !vgetq_lane_u32(vceqq_f32(vreinterpretq_f32_m128(a), + // vreinterpretq_f32_m128(b)), 0); + uint32x4_t a_not_nan = + vceqq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(a)); + uint32x4_t b_not_nan = + vceqq_f32(vreinterpretq_f32_m128(b), vreinterpretq_f32_m128(b)); + uint32x4_t a_or_b_nan = vmvnq_u32(vandq_u32(a_not_nan, b_not_nan)); + uint32x4_t a_neq_b = vmvnq_u32( + vceqq_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b))); + return (vgetq_lane_u32(vorrq_u32(a_or_b_nan, a_neq_b), 0) != 0) ? 1 : 0; +} + +// according to the documentation, these intrinsics behave the same as the +// non-'u' versions. We'll just alias them here. +#define _mm_ucomilt_ss _mm_comilt_ss +#define _mm_ucomile_ss _mm_comile_ss +#define _mm_ucomigt_ss _mm_comigt_ss +#define _mm_ucomige_ss _mm_comige_ss +#define _mm_ucomieq_ss _mm_comieq_ss +#define _mm_ucomineq_ss _mm_comineq_ss + +/* Conversions */ + +// Converts the four single-precision, floating-point values of a to signed +// 32-bit integer values using truncate. +// https://msdn.microsoft.com/en-us/library/vstudio/1h005y6x(v=vs.100).aspx +FORCE_INLINE __m128i _mm_cvttps_epi32(__m128 a) +{ + return vreinterpretq_m128i_s32(vcvtq_s32_f32(vreinterpretq_f32_m128(a))); +} + +// Converts the four signed 32-bit integer values of a to single-precision, +// floating-point values +// https://msdn.microsoft.com/en-us/library/vstudio/36bwxcx5(v=vs.100).aspx +FORCE_INLINE __m128 _mm_cvtepi32_ps(__m128i a) +{ + return vreinterpretq_m128_f32(vcvtq_f32_s32(vreinterpretq_s32_m128i(a))); +} + +// Converts the four unsigned 8-bit integers in the lower 16 bits to four +// unsigned 32-bit integers. +FORCE_INLINE __m128i _mm_cvtepu8_epi16(__m128i a) +{ + uint8x16_t u8x16 = vreinterpretq_u8_m128i(a); /* xxxx xxxx xxxx DCBA */ + uint16x8_t u16x8 = vmovl_u8(vget_low_u8(u8x16)); /* 0x0x 0x0x 0D0C 0B0A */ + return vreinterpretq_m128i_u16(u16x8); +} + +// Converts the four unsigned 8-bit integers in the lower 32 bits to four +// unsigned 32-bit integers. +// https://msdn.microsoft.com/en-us/library/bb531467%28v=vs.100%29.aspx +FORCE_INLINE __m128i _mm_cvtepu8_epi32(__m128i a) +{ + uint8x16_t u8x16 = vreinterpretq_u8_m128i(a); /* xxxx xxxx xxxx DCBA */ + uint16x8_t u16x8 = vmovl_u8(vget_low_u8(u8x16)); /* 0x0x 0x0x 0D0C 0B0A */ + uint32x4_t u32x4 = vmovl_u16(vget_low_u16(u16x8)); /* 000D 000C 000B 000A */ + return vreinterpretq_m128i_u32(u32x4); +} + +// Converts the two unsigned 8-bit integers in the lower 16 bits to two +// unsigned 64-bit integers. +FORCE_INLINE __m128i _mm_cvtepu8_epi64(__m128i a) +{ + uint8x16_t u8x16 = vreinterpretq_u8_m128i(a); /* xxxx xxxx xxxx xxBA */ + uint16x8_t u16x8 = vmovl_u8(vget_low_u8(u8x16)); /* 0x0x 0x0x 0x0x 0B0A */ + uint32x4_t u32x4 = vmovl_u16(vget_low_u16(u16x8)); /* 000x 000x 000B 000A */ + uint64x2_t u64x2 = vmovl_u32(vget_low_u32(u32x4)); /* 0000 000B 0000 000A */ + return vreinterpretq_m128i_u64(u64x2); +} + +// Converts the four unsigned 8-bit integers in the lower 16 bits to four +// unsigned 32-bit integers. +FORCE_INLINE __m128i _mm_cvtepi8_epi16(__m128i a) +{ + int8x16_t s8x16 = vreinterpretq_s8_m128i(a); /* xxxx xxxx xxxx DCBA */ + int16x8_t s16x8 = vmovl_s8(vget_low_s8(s8x16)); /* 0x0x 0x0x 0D0C 0B0A */ + return vreinterpretq_m128i_s16(s16x8); +} + +// Converts the four unsigned 8-bit integers in the lower 32 bits to four +// unsigned 32-bit integers. +FORCE_INLINE __m128i _mm_cvtepi8_epi32(__m128i a) +{ + int8x16_t s8x16 = vreinterpretq_s8_m128i(a); /* xxxx xxxx xxxx DCBA */ + int16x8_t s16x8 = vmovl_s8(vget_low_s8(s8x16)); /* 0x0x 0x0x 0D0C 0B0A */ + int32x4_t s32x4 = vmovl_s16(vget_low_s16(s16x8)); /* 000D 000C 000B 000A */ + return vreinterpretq_m128i_s32(s32x4); +} + +// Converts the two signed 8-bit integers in the lower 32 bits to four +// signed 64-bit integers. +FORCE_INLINE __m128i _mm_cvtepi8_epi64(__m128i a) +{ + int8x16_t s8x16 = vreinterpretq_s8_m128i(a); /* xxxx xxxx xxxx xxBA */ + int16x8_t s16x8 = vmovl_s8(vget_low_s8(s8x16)); /* 0x0x 0x0x 0x0x 0B0A */ + int32x4_t s32x4 = vmovl_s16(vget_low_s16(s16x8)); /* 000x 000x 000B 000A */ + int64x2_t s64x2 = vmovl_s32(vget_low_s32(s32x4)); /* 0000 000B 0000 000A */ + return vreinterpretq_m128i_s64(s64x2); +} + +// Converts the four signed 16-bit integers in the lower 64 bits to four signed +// 32-bit integers. +FORCE_INLINE __m128i _mm_cvtepi16_epi32(__m128i a) +{ + return vreinterpretq_m128i_s32( + vmovl_s16(vget_low_s16(vreinterpretq_s16_m128i(a)))); +} + +// Converts the two signed 16-bit integers in the lower 32 bits two signed +// 32-bit integers. +FORCE_INLINE __m128i _mm_cvtepi16_epi64(__m128i a) +{ + int16x8_t s16x8 = vreinterpretq_s16_m128i(a); /* xxxx xxxx xxxx 0B0A */ + int32x4_t s32x4 = vmovl_s16(vget_low_s16(s16x8)); /* 000x 000x 000B 000A */ + int64x2_t s64x2 = vmovl_s32(vget_low_s32(s32x4)); /* 0000 000B 0000 000A */ + return vreinterpretq_m128i_s64(s64x2); +} + +// Converts the four unsigned 16-bit integers in the lower 64 bits to four +// unsigned 32-bit integers. +FORCE_INLINE __m128i _mm_cvtepu16_epi32(__m128i a) +{ + return vreinterpretq_m128i_u32( + vmovl_u16(vget_low_u16(vreinterpretq_u16_m128i(a)))); +} + +// Converts the two unsigned 16-bit integers in the lower 32 bits to two +// unsigned 64-bit integers. +FORCE_INLINE __m128i _mm_cvtepu16_epi64(__m128i a) +{ + uint16x8_t u16x8 = vreinterpretq_u16_m128i(a); /* xxxx xxxx xxxx 0B0A */ + uint32x4_t u32x4 = vmovl_u16(vget_low_u16(u16x8)); /* 000x 000x 000B 000A */ + uint64x2_t u64x2 = vmovl_u32(vget_low_u32(u32x4)); /* 0000 000B 0000 000A */ + return vreinterpretq_m128i_u64(u64x2); +} + +// Converts the two unsigned 32-bit integers in the lower 64 bits to two +// unsigned 64-bit integers. +FORCE_INLINE __m128i _mm_cvtepu32_epi64(__m128i a) +{ + return vreinterpretq_m128i_u64( + vmovl_u32(vget_low_u32(vreinterpretq_u32_m128i(a)))); +} + +// Converts the two signed 32-bit integers in the lower 64 bits to two signed +// 64-bit integers. +FORCE_INLINE __m128i _mm_cvtepi32_epi64(__m128i a) +{ + return vreinterpretq_m128i_s64( + vmovl_s32(vget_low_s32(vreinterpretq_s32_m128i(a)))); +} + +// Converts the four single-precision, floating-point values of a to signed +// 32-bit integer values. +// +// r0 := (int) a0 +// r1 := (int) a1 +// r2 := (int) a2 +// r3 := (int) a3 +// +// https://msdn.microsoft.com/en-us/library/vstudio/xdc42k5e(v=vs.100).aspx +// *NOTE*. The default rounding mode on SSE is 'round to even', which ARMv7-A +// does not support! It is supported on ARMv8-A however. +FORCE_INLINE __m128i _mm_cvtps_epi32(__m128 a) +{ +#if defined(__aarch64__) + return vreinterpretq_m128i_s32(vcvtnq_s32_f32(a)); +#else + uint32x4_t signmask = vdupq_n_u32(0x80000000); + float32x4_t half = vbslq_f32(signmask, vreinterpretq_f32_m128(a), + vdupq_n_f32(0.5f)); /* +/- 0.5 */ + int32x4_t r_normal = vcvtq_s32_f32(vaddq_f32( + vreinterpretq_f32_m128(a), half)); /* round to integer: [a + 0.5]*/ + int32x4_t r_trunc = + vcvtq_s32_f32(vreinterpretq_f32_m128(a)); /* truncate to integer: [a] */ + int32x4_t plusone = vreinterpretq_s32_u32(vshrq_n_u32( + vreinterpretq_u32_s32(vnegq_s32(r_trunc)), 31)); /* 1 or 0 */ + int32x4_t r_even = vbicq_s32(vaddq_s32(r_trunc, plusone), + vdupq_n_s32(1)); /* ([a] + {0,1}) & ~1 */ + float32x4_t delta = vsubq_f32( + vreinterpretq_f32_m128(a), + vcvtq_f32_s32(r_trunc)); /* compute delta: delta = (a - [a]) */ + uint32x4_t is_delta_half = vceqq_f32(delta, half); /* delta == +/- 0.5 */ + return vreinterpretq_m128i_s32(vbslq_s32(is_delta_half, r_even, r_normal)); +#endif +} + +// Moves the least significant 32 bits of a to a 32-bit integer. +// https://msdn.microsoft.com/en-us/library/5z7a9642%28v=vs.90%29.aspx +FORCE_INLINE int _mm_cvtsi128_si32(__m128i a) +{ + return vgetq_lane_s32(vreinterpretq_s32_m128i(a), 0); +} + +// Extracts the low order 64-bit integer from the parameter. +// https://msdn.microsoft.com/en-us/library/bb531384(v=vs.120).aspx +FORCE_INLINE uint64_t _mm_cvtsi128_si64(__m128i a) +{ + return vgetq_lane_s64(vreinterpretq_s64_m128i(a), 0); +} + +// Moves 32-bit integer a to the least significant 32 bits of an __m128 object, +// zero extending the upper bits. +// +// r0 := a +// r1 := 0x0 +// r2 := 0x0 +// r3 := 0x0 +// +// https://msdn.microsoft.com/en-us/library/ct3539ha%28v=vs.90%29.aspx +FORCE_INLINE __m128i _mm_cvtsi32_si128(int a) +{ + return vreinterpretq_m128i_s32(vsetq_lane_s32(a, vdupq_n_s32(0), 0)); +} + +// Moves 64-bit integer a to the least significant 64 bits of an __m128 object, +// zero extending the upper bits. +// +// r0 := a +// r1 := 0x0 +FORCE_INLINE __m128i _mm_cvtsi64_si128(int64_t a) +{ + return vreinterpretq_m128i_s64(vsetq_lane_s64(a, vdupq_n_s64(0), 0)); +} + +// Applies a type cast to reinterpret four 32-bit floating point values passed +// in as a 128-bit parameter as packed 32-bit integers. +// https://msdn.microsoft.com/en-us/library/bb514099.aspx +FORCE_INLINE __m128i _mm_castps_si128(__m128 a) +{ + return vreinterpretq_m128i_s32(vreinterpretq_s32_m128(a)); +} + +// Applies a type cast to reinterpret four 32-bit integers passed in as a +// 128-bit parameter as packed 32-bit floating point values. +// https://msdn.microsoft.com/en-us/library/bb514029.aspx +FORCE_INLINE __m128 _mm_castsi128_ps(__m128i a) +{ + return vreinterpretq_m128_s32(vreinterpretq_s32_m128i(a)); +} + +// Loads 128-bit value. : +// https://msdn.microsoft.com/en-us/library/atzzad1h(v=vs.80).aspx +FORCE_INLINE __m128i _mm_load_si128(const __m128i *p) +{ + return vreinterpretq_m128i_s32(vld1q_s32((const int32_t *) p)); +} + +// Loads 128-bit value. : +// https://msdn.microsoft.com/zh-cn/library/f4k12ae8(v=vs.90).aspx +FORCE_INLINE __m128i _mm_loadu_si128(const __m128i *p) +{ + return vreinterpretq_m128i_s32(vld1q_s32((const int32_t *) p)); +} + +// _mm_lddqu_si128 functions the same as _mm_loadu_si128. +#define _mm_lddqu_si128 _mm_loadu_si128 + +/* Miscellaneous Operations */ + +// Shifts the 8 signed 16-bit integers in a right by count bits while shifting +// in the sign bit. +// +// r0 := a0 >> count +// r1 := a1 >> count +// ... +// r7 := a7 >> count +// +// https://msdn.microsoft.com/en-us/library/3c9997dk(v%3dvs.90).aspx +FORCE_INLINE __m128i _mm_sra_epi16(__m128i a, __m128i count) +{ + int64_t c = (int64_t) vget_low_s64((int64x2_t) count); + if (c > 15) + return _mm_cmplt_epi16(a, _mm_setzero_si128()); + return vreinterpretq_m128i_s16(vshlq_s16((int16x8_t) a, vdupq_n_s16(-c))); +} + +// Shifts the 4 signed 32-bit integers in a right by count bits while shifting +// in the sign bit. +// +// r0 := a0 >> count +// r1 := a1 >> count +// r2 := a2 >> count +// r3 := a3 >> count +// +// https://msdn.microsoft.com/en-us/library/ce40009e(v%3dvs.100).aspx +FORCE_INLINE __m128i _mm_sra_epi32(__m128i a, __m128i count) +{ + int64_t c = (int64_t) vget_low_s64((int64x2_t) count); + if (c > 31) + return _mm_cmplt_epi32(a, _mm_setzero_si128()); + return vreinterpretq_m128i_s32(vshlq_s32((int32x4_t) a, vdupq_n_s32(-c))); +} + +// Packs the 16 signed 16-bit integers from a and b into 8-bit integers and +// saturates. +// https://msdn.microsoft.com/en-us/library/k4y4f7w5%28v=vs.90%29.aspx +FORCE_INLINE __m128i _mm_packs_epi16(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s8( + vcombine_s8(vqmovn_s16(vreinterpretq_s16_m128i(a)), + vqmovn_s16(vreinterpretq_s16_m128i(b)))); +} + +// Packs the 16 signed 16 - bit integers from a and b into 8 - bit unsigned +// integers and saturates. +// +// r0 := UnsignedSaturate(a0) +// r1 := UnsignedSaturate(a1) +// ... +// r7 := UnsignedSaturate(a7) +// r8 := UnsignedSaturate(b0) +// r9 := UnsignedSaturate(b1) +// ... +// r15 := UnsignedSaturate(b7) +// +// https://msdn.microsoft.com/en-us/library/07ad1wx4(v=vs.100).aspx +FORCE_INLINE __m128i _mm_packus_epi16(const __m128i a, const __m128i b) +{ + return vreinterpretq_m128i_u8( + vcombine_u8(vqmovun_s16(vreinterpretq_s16_m128i(a)), + vqmovun_s16(vreinterpretq_s16_m128i(b)))); +} + +// Packs the 8 signed 32-bit integers from a and b into signed 16-bit integers +// and saturates. +// +// r0 := SignedSaturate(a0) +// r1 := SignedSaturate(a1) +// r2 := SignedSaturate(a2) +// r3 := SignedSaturate(a3) +// r4 := SignedSaturate(b0) +// r5 := SignedSaturate(b1) +// r6 := SignedSaturate(b2) +// r7 := SignedSaturate(b3) +// +// https://msdn.microsoft.com/en-us/library/393t56f9%28v=vs.90%29.aspx +FORCE_INLINE __m128i _mm_packs_epi32(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s16( + vcombine_s16(vqmovn_s32(vreinterpretq_s32_m128i(a)), + vqmovn_s32(vreinterpretq_s32_m128i(b)))); +} + +// Packs the 8 unsigned 32-bit integers from a and b into unsigned 16-bit +// integers and saturates. +// +// r0 := UnsignedSaturate(a0) +// r1 := UnsignedSaturate(a1) +// r2 := UnsignedSaturate(a2) +// r3 := UnsignedSaturate(a3) +// r4 := UnsignedSaturate(b0) +// r5 := UnsignedSaturate(b1) +// r6 := UnsignedSaturate(b2) +// r7 := UnsignedSaturate(b3) +FORCE_INLINE __m128i _mm_packus_epi32(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u16( + vcombine_u16(vqmovn_u32(vreinterpretq_u32_m128i(a)), + vqmovn_u32(vreinterpretq_u32_m128i(b)))); +} + +// Interleaves the lower 8 signed or unsigned 8-bit integers in a with the lower +// 8 signed or unsigned 8-bit integers in b. +// +// r0 := a0 +// r1 := b0 +// r2 := a1 +// r3 := b1 +// ... +// r14 := a7 +// r15 := b7 +// +// https://msdn.microsoft.com/en-us/library/xf7k860c%28v=vs.90%29.aspx +FORCE_INLINE __m128i _mm_unpacklo_epi8(__m128i a, __m128i b) +{ +#if defined(__aarch64__) + return vreinterpretq_m128i_s8( + vzip1q_s8(vreinterpretq_s8_m128i(a), vreinterpretq_s8_m128i(b))); +#else + int8x8_t a1 = vreinterpret_s8_s16(vget_low_s16(vreinterpretq_s16_m128i(a))); + int8x8_t b1 = vreinterpret_s8_s16(vget_low_s16(vreinterpretq_s16_m128i(b))); + int8x8x2_t result = vzip_s8(a1, b1); + return vreinterpretq_m128i_s8(vcombine_s8(result.val[0], result.val[1])); +#endif +} + +// Interleaves the lower 4 signed or unsigned 16-bit integers in a with the +// lower 4 signed or unsigned 16-bit integers in b. +// +// r0 := a0 +// r1 := b0 +// r2 := a1 +// r3 := b1 +// r4 := a2 +// r5 := b2 +// r6 := a3 +// r7 := b3 +// +// https://msdn.microsoft.com/en-us/library/btxb17bw%28v=vs.90%29.aspx +FORCE_INLINE __m128i _mm_unpacklo_epi16(__m128i a, __m128i b) +{ +#if defined(__aarch64__) + return vreinterpretq_m128i_s16( + vzip1q_s16(vreinterpretq_s16_m128i(a), vreinterpretq_s16_m128i(b))); +#else + int16x4_t a1 = vget_low_s16(vreinterpretq_s16_m128i(a)); + int16x4_t b1 = vget_low_s16(vreinterpretq_s16_m128i(b)); + int16x4x2_t result = vzip_s16(a1, b1); + return vreinterpretq_m128i_s16(vcombine_s16(result.val[0], result.val[1])); +#endif +} + +// Interleaves the lower 2 signed or unsigned 32 - bit integers in a with the +// lower 2 signed or unsigned 32 - bit integers in b. +// +// r0 := a0 +// r1 := b0 +// r2 := a1 +// r3 := b1 +// +// https://msdn.microsoft.com/en-us/library/x8atst9d(v=vs.100).aspx +FORCE_INLINE __m128i _mm_unpacklo_epi32(__m128i a, __m128i b) +{ +#if defined(__aarch64__) + return vreinterpretq_m128i_s32( + vzip1q_s32(vreinterpretq_s32_m128i(a), vreinterpretq_s32_m128i(b))); +#else + int32x2_t a1 = vget_low_s32(vreinterpretq_s32_m128i(a)); + int32x2_t b1 = vget_low_s32(vreinterpretq_s32_m128i(b)); + int32x2x2_t result = vzip_s32(a1, b1); + return vreinterpretq_m128i_s32(vcombine_s32(result.val[0], result.val[1])); +#endif +} + +FORCE_INLINE __m128i _mm_unpacklo_epi64(__m128i a, __m128i b) +{ + int64x1_t a_l = vget_low_s64(vreinterpretq_s64_m128i(a)); + int64x1_t b_l = vget_low_s64(vreinterpretq_s64_m128i(b)); + return vreinterpretq_m128i_s64(vcombine_s64(a_l, b_l)); +} + +// Selects and interleaves the lower two single-precision, floating-point values +// from a and b. +// +// r0 := a0 +// r1 := b0 +// r2 := a1 +// r3 := b1 +// +// https://msdn.microsoft.com/en-us/library/25st103b%28v=vs.90%29.aspx +FORCE_INLINE __m128 _mm_unpacklo_ps(__m128 a, __m128 b) +{ +#if defined(__aarch64__) + return vreinterpretq_m128_f32( + vzip1q_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b))); +#else + float32x2_t a1 = vget_low_f32(vreinterpretq_f32_m128(a)); + float32x2_t b1 = vget_low_f32(vreinterpretq_f32_m128(b)); + float32x2x2_t result = vzip_f32(a1, b1); + return vreinterpretq_m128_f32(vcombine_f32(result.val[0], result.val[1])); +#endif +} + +// Selects and interleaves the upper two single-precision, floating-point values +// from a and b. +// +// r0 := a2 +// r1 := b2 +// r2 := a3 +// r3 := b3 +// +// https://msdn.microsoft.com/en-us/library/skccxx7d%28v=vs.90%29.aspx +FORCE_INLINE __m128 _mm_unpackhi_ps(__m128 a, __m128 b) +{ +#if defined(__aarch64__) + return vreinterpretq_m128_f32( + vzip2q_f32(vreinterpretq_f32_m128(a), vreinterpretq_f32_m128(b))); +#else + float32x2_t a1 = vget_high_f32(vreinterpretq_f32_m128(a)); + float32x2_t b1 = vget_high_f32(vreinterpretq_f32_m128(b)); + float32x2x2_t result = vzip_f32(a1, b1); + return vreinterpretq_m128_f32(vcombine_f32(result.val[0], result.val[1])); +#endif +} + +// Interleaves the upper 8 signed or unsigned 8-bit integers in a with the upper +// 8 signed or unsigned 8-bit integers in b. +// +// r0 := a8 +// r1 := b8 +// r2 := a9 +// r3 := b9 +// ... +// r14 := a15 +// r15 := b15 +// +// https://msdn.microsoft.com/en-us/library/t5h7783k(v=vs.100).aspx +FORCE_INLINE __m128i _mm_unpackhi_epi8(__m128i a, __m128i b) +{ +#if defined(__aarch64__) + return vreinterpretq_m128i_s8( + vzip2q_s8(vreinterpretq_s8_m128i(a), vreinterpretq_s8_m128i(b))); +#else + int8x8_t a1 = + vreinterpret_s8_s16(vget_high_s16(vreinterpretq_s16_m128i(a))); + int8x8_t b1 = + vreinterpret_s8_s16(vget_high_s16(vreinterpretq_s16_m128i(b))); + int8x8x2_t result = vzip_s8(a1, b1); + return vreinterpretq_m128i_s8(vcombine_s8(result.val[0], result.val[1])); +#endif +} + +// Interleaves the upper 4 signed or unsigned 16-bit integers in a with the +// upper 4 signed or unsigned 16-bit integers in b. +// +// r0 := a4 +// r1 := b4 +// r2 := a5 +// r3 := b5 +// r4 := a6 +// r5 := b6 +// r6 := a7 +// r7 := b7 +// +// https://msdn.microsoft.com/en-us/library/03196cz7(v=vs.100).aspx +FORCE_INLINE __m128i _mm_unpackhi_epi16(__m128i a, __m128i b) +{ +#if defined(__aarch64__) + return vreinterpretq_m128i_s16( + vzip2q_s16(vreinterpretq_s16_m128i(a), vreinterpretq_s16_m128i(b))); +#else + int16x4_t a1 = vget_high_s16(vreinterpretq_s16_m128i(a)); + int16x4_t b1 = vget_high_s16(vreinterpretq_s16_m128i(b)); + int16x4x2_t result = vzip_s16(a1, b1); + return vreinterpretq_m128i_s16(vcombine_s16(result.val[0], result.val[1])); +#endif +} + +// Interleaves the upper 2 signed or unsigned 32-bit integers in a with the +// upper 2 signed or unsigned 32-bit integers in b. +// https://msdn.microsoft.com/en-us/library/65sa7cbs(v=vs.100).aspx +FORCE_INLINE __m128i _mm_unpackhi_epi32(__m128i a, __m128i b) +{ +#if defined(__aarch64__) + return vreinterpretq_m128i_s32( + vzip2q_s32(vreinterpretq_s32_m128i(a), vreinterpretq_s32_m128i(b))); +#else + int32x2_t a1 = vget_high_s32(vreinterpretq_s32_m128i(a)); + int32x2_t b1 = vget_high_s32(vreinterpretq_s32_m128i(b)); + int32x2x2_t result = vzip_s32(a1, b1); + return vreinterpretq_m128i_s32(vcombine_s32(result.val[0], result.val[1])); +#endif +} + +// Interleaves the upper signed or unsigned 64-bit integer in a with the +// upper signed or unsigned 64-bit integer in b. +// +// r0 := a1 +// r1 := b1 +FORCE_INLINE __m128i _mm_unpackhi_epi64(__m128i a, __m128i b) +{ + int64x1_t a_h = vget_high_s64(vreinterpretq_s64_m128i(a)); + int64x1_t b_h = vget_high_s64(vreinterpretq_s64_m128i(b)); + return vreinterpretq_m128i_s64(vcombine_s64(a_h, b_h)); +} + +// Horizontally compute the minimum amongst the packed unsigned 16-bit integers +// in a, store the minimum and index in dst, and zero the remaining bits in dst. +// +// index[2:0] := 0 +// min[15:0] := a[15:0] +// FOR j := 0 to 7 +// i := j*16 +// IF a[i+15:i] < min[15:0] +// index[2:0] := j +// min[15:0] := a[i+15:i] +// FI +// ENDFOR +// dst[15:0] := min[15:0] +// dst[18:16] := index[2:0] +// dst[127:19] := 0 +// +// https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_minpos_epu16&expand=3789 +FORCE_INLINE __m128i _mm_minpos_epu16(__m128i a) +{ + __m128i dst; + uint16_t min, idx = 0; + // Find the minimum value +#if defined(__aarch64__) + min = vminvq_u16(vreinterpretq_u16_m128i(a)); +#else + __m64i tmp; + tmp = vreinterpret_m64i_u16( + vmin_u16(vget_low_u16(vreinterpretq_u16_m128i(a)), + vget_high_u16(vreinterpretq_u16_m128i(a)))); + tmp = vreinterpret_m64i_u16( + vpmin_u16(vreinterpret_u16_m64i(tmp), vreinterpret_u16_m64i(tmp))); + tmp = vreinterpret_m64i_u16( + vpmin_u16(vreinterpret_u16_m64i(tmp), vreinterpret_u16_m64i(tmp))); + min = vget_lane_u16(vreinterpret_u16_m64i(tmp), 0); +#endif + // Get the index of the minimum value + int i; + for (i = 0; i < 8; i++) { + if (min == vgetq_lane_u16(vreinterpretq_u16_m128i(a), 0)) { + idx = (uint16_t) i; + break; + } + a = _mm_srli_si128(a, 2); + } + // Generate result + dst = _mm_setzero_si128(); + dst = vreinterpretq_m128i_u16( + vsetq_lane_u16(min, vreinterpretq_u16_m128i(dst), 0)); + dst = vreinterpretq_m128i_u16( + vsetq_lane_u16(idx, vreinterpretq_u16_m128i(dst), 1)); + return dst; +} + +// shift to right +// https://msdn.microsoft.com/en-us/library/bb514041(v=vs.120).aspx +// http://blog.csdn.net/hemmingway/article/details/44828303 +// Clang requires a macro here, as it is extremely picky about c being a +// literal. +//#define _mm_alignr_epi8(a, b, c) \ + ((__m128i) vextq_s8((int8x16_t)(b), (int8x16_t)(a), (c))) + +#define _mm_alignr_epi8(a, b, c) \ + (vreinterpretq_m128i_s8(vextq_s8(vreinterpretq_s8_m128i(b), vreinterpretq_s8_m128i(a), (c)))) + +// Extracts the selected signed or unsigned 8-bit integer from a and zero +// extends. +// FORCE_INLINE int _mm_extract_epi8(__m128i a, __constrange(0,16) int imm) +#define _mm_extract_epi8(a, imm) vgetq_lane_u8(vreinterpretq_u8_m128i(a), (imm)) + +// Inserts the least significant 8 bits of b into the selected 8-bit integer +// of a. +// FORCE_INLINE __m128i _mm_insert_epi8(__m128i a, int b, +// __constrange(0,16) int imm) +#define _mm_insert_epi8(a, b, imm) \ + __extension__({ \ + vreinterpretq_m128i_s8( \ + vsetq_lane_s8((b), vreinterpretq_s8_m128i(a), (imm))); \ + }) + +// Extracts the selected signed or unsigned 16-bit integer from a and zero +// extends. +// https://msdn.microsoft.com/en-us/library/6dceta0c(v=vs.100).aspx +// FORCE_INLINE int _mm_extract_epi16(__m128i a, __constrange(0,8) int imm) +#define _mm_extract_epi16(a, imm) \ + vgetq_lane_u16(vreinterpretq_u16_m128i(a), (imm)) + +// Inserts the least significant 16 bits of b into the selected 16-bit integer +// of a. +// https://msdn.microsoft.com/en-us/library/kaze8hz1%28v=vs.100%29.aspx +// FORCE_INLINE __m128i _mm_insert_epi16(__m128i a, int b, +// __constrange(0,8) int imm) +#define _mm_insert_epi16(a, b, imm) \ + __extension__({ \ + vreinterpretq_m128i_s16( \ + vsetq_lane_s16((b), vreinterpretq_s16_m128i(a), (imm))); \ + }) + +// Extracts the selected signed or unsigned 32-bit integer from a and zero +// extends. +// FORCE_INLINE int _mm_extract_epi32(__m128i a, __constrange(0,4) int imm) +#define _mm_extract_epi32(a, imm) \ + vgetq_lane_s32(vreinterpretq_s32_m128i(a), (imm)) + +// Extracts the selected single-precision (32-bit) floating-point from a. +// FORCE_INLINE int _mm_extract_ps(__m128 a, __constrange(0,4) int imm) +#define _mm_extract_ps(a, imm) vgetq_lane_s32(vreinterpretq_s32_m128(a), (imm)) + +// Inserts the least significant 32 bits of b into the selected 32-bit integer +// of a. +// FORCE_INLINE __m128i _mm_insert_epi32(__m128i a, int b, +// __constrange(0,4) int imm) +#define _mm_insert_epi32(a, b, imm) \ + __extension__({ \ + vreinterpretq_m128i_s32( \ + vsetq_lane_s32((b), vreinterpretq_s32_m128i(a), (imm))); \ + }) + +// Extracts the selected signed or unsigned 64-bit integer from a and zero +// extends. +// FORCE_INLINE __int64 _mm_extract_epi64(__m128i a, __constrange(0,2) int imm) +#define _mm_extract_epi64(a, imm) \ + vgetq_lane_s64(vreinterpretq_s64_m128i(a), (imm)) + +// Inserts the least significant 64 bits of b into the selected 64-bit integer +// of a. +// FORCE_INLINE __m128i _mm_insert_epi64(__m128i a, __int64 b, +// __constrange(0,2) int imm) +#define _mm_insert_epi64(a, b, imm) \ + __extension__({ \ + vreinterpretq_m128i_s64( \ + vsetq_lane_s64((b), vreinterpretq_s64_m128i(a), (imm))); \ + }) + +// Count the number of bits set to 1 in unsigned 32-bit integer a, and +// return that count in dst. +// https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_popcnt_u32 +FORCE_INLINE int _mm_popcnt_u32(unsigned int a) +{ +#if defined(__aarch64__) + return (int) vaddlv_u8(vcnt_u8(vcreate_u8((uint64_t) a))); +#else + uint32_t count = 0; + uint8x8_t input_val, count8x8_val; + uint16x4_t count16x4_val; + uint32x2_t count32x2_val; + + input_val = vld1_u8((uint8_t *) &a); + count8x8_val = vcnt_u8(input_val); + count16x4_val = vpaddl_u8(count8x8_val); + count32x2_val = vpaddl_u16(count16x4_val); + + vst1_u32(&count, count32x2_val); + return count; +#endif +} + +// Count the number of bits set to 1 in unsigned 64-bit integer a, and +// return that count in dst. +// https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_popcnt_u64 +FORCE_INLINE int64_t _mm_popcnt_u64(uint64_t a) +{ +#if defined(__aarch64__) + return (int64_t) vaddlv_u8(vcnt_u8(vcreate_u8(a))); +#else + uint64_t count = 0; + uint8x8_t input_val, count8x8_val; + uint16x4_t count16x4_val; + uint32x2_t count32x2_val; + uint64x1_t count64x1_val; + + input_val = vld1_u8((uint8_t *) &a); + count8x8_val = vcnt_u8(input_val); + count16x4_val = vpaddl_u8(count8x8_val); + count32x2_val = vpaddl_u16(count16x4_val); + count64x1_val = vpaddl_u32(count32x2_val); + vst1_u64(&count, count64x1_val); + return count; +#endif +} + +// Macro: Transpose the 4x4 matrix formed by the 4 rows of single-precision +// (32-bit) floating-point elements in row0, row1, row2, and row3, and store the +// transposed matrix in these vectors (row0 now contains column 0, etc.). +// https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=MM_TRANSPOSE4_PS&expand=5949 +#define _MM_TRANSPOSE4_PS(row0, row1, row2, row3) \ + do { \ + __m128 tmp0, tmp1, tmp2, tmp3; \ + tmp0 = _mm_unpacklo_ps(row0, row1); \ + tmp2 = _mm_unpacklo_ps(row2, row3); \ + tmp1 = _mm_unpackhi_ps(row0, row1); \ + tmp3 = _mm_unpackhi_ps(row2, row3); \ + row0 = _mm_movelh_ps(tmp0, tmp2); \ + row1 = _mm_movehl_ps(tmp2, tmp0); \ + row2 = _mm_movelh_ps(tmp1, tmp3); \ + row3 = _mm_movehl_ps(tmp3, tmp1); \ + } while (0) + +/* Crypto Extensions */ + +#if defined(__ARM_FEATURE_CRYPTO) +// Wraps vmull_p64 +FORCE_INLINE uint64x2_t _sse2neon_vmull_p64(uint64x1_t _a, uint64x1_t _b) +{ + poly64_t a = vget_lane_p64(vreinterpret_p64_u64(_a), 0); + poly64_t b = vget_lane_p64(vreinterpret_p64_u64(_b), 0); + return vreinterpretq_u64_p128(vmull_p64(a, b)); +} +#else // ARMv7 polyfill +// ARMv7/some A64 lacks vmull_p64, but it has vmull_p8. +// +// vmull_p8 calculates 8 8-bit->16-bit polynomial multiplies, but we need a +// 64-bit->128-bit polynomial multiply. +// +// It needs some work and is somewhat slow, but it is still faster than all +// known scalar methods. +// +// Algorithm adapted to C from +// https://www.workofard.com/2017/07/ghash-for-low-end-cores/, which is adapted +// from "Fast Software Polynomial Multiplication on ARM Processors Using the +// NEON Engine" by Danilo Camara, Conrado Gouvea, Julio Lopez and Ricardo Dahab +// (https://hal.inria.fr/hal-01506572) +static uint64x2_t _sse2neon_vmull_p64(uint64x1_t _a, uint64x1_t _b) +{ + poly8x8_t a = vreinterpret_p8_u64(_a); + poly8x8_t b = vreinterpret_p8_u64(_b); + + // Masks + uint8x16_t k48_32 = vcombine_u8(vcreate_u8(0x0000ffffffffffff), + vcreate_u8(0x00000000ffffffff)); + uint8x16_t k16_00 = vcombine_u8(vcreate_u8(0x000000000000ffff), + vcreate_u8(0x0000000000000000)); + + // Do the multiplies, rotating with vext to get all combinations + uint8x16_t d = vreinterpretq_u8_p16(vmull_p8(a, b)); // D = A0 * B0 + uint8x16_t e = + vreinterpretq_u8_p16(vmull_p8(a, vext_p8(b, b, 1))); // E = A0 * B1 + uint8x16_t f = + vreinterpretq_u8_p16(vmull_p8(vext_p8(a, a, 1), b)); // F = A1 * B0 + uint8x16_t g = + vreinterpretq_u8_p16(vmull_p8(a, vext_p8(b, b, 2))); // G = A0 * B2 + uint8x16_t h = + vreinterpretq_u8_p16(vmull_p8(vext_p8(a, a, 2), b)); // H = A2 * B0 + uint8x16_t i = + vreinterpretq_u8_p16(vmull_p8(a, vext_p8(b, b, 3))); // I = A0 * B3 + uint8x16_t j = + vreinterpretq_u8_p16(vmull_p8(vext_p8(a, a, 3), b)); // J = A3 * B0 + uint8x16_t k = + vreinterpretq_u8_p16(vmull_p8(a, vext_p8(b, b, 4))); // L = A0 * B4 + + // Add cross products + uint8x16_t l = veorq_u8(e, f); // L = E + F + uint8x16_t m = veorq_u8(g, h); // M = G + H + uint8x16_t n = veorq_u8(i, j); // N = I + J + + // Interleave. Using vzip1 and vzip2 prevents Clang from emitting TBL + // instructions. +#if defined(__aarch64__) + uint8x16_t lm_p0 = vreinterpretq_u8_u64( + vzip1q_u64(vreinterpretq_u64_u8(l), vreinterpretq_u64_u8(m))); + uint8x16_t lm_p1 = vreinterpretq_u8_u64( + vzip2q_u64(vreinterpretq_u64_u8(l), vreinterpretq_u64_u8(m))); + uint8x16_t nk_p0 = vreinterpretq_u8_u64( + vzip1q_u64(vreinterpretq_u64_u8(n), vreinterpretq_u64_u8(k))); + uint8x16_t nk_p1 = vreinterpretq_u8_u64( + vzip2q_u64(vreinterpretq_u64_u8(n), vreinterpretq_u64_u8(k))); +#else + uint8x16_t lm_p0 = vcombine_u8(vget_low_u8(l), vget_low_u8(m)); + uint8x16_t lm_p1 = vcombine_u8(vget_high_u8(l), vget_high_u8(m)); + uint8x16_t nk_p0 = vcombine_u8(vget_low_u8(n), vget_low_u8(k)); + uint8x16_t nk_p1 = vcombine_u8(vget_high_u8(n), vget_high_u8(k)); +#endif + // t0 = (L) (P0 + P1) << 8 + // t1 = (M) (P2 + P3) << 16 + uint8x16_t t0t1_tmp = veorq_u8(lm_p0, lm_p1); + uint8x16_t t0t1_h = vandq_u8(lm_p1, k48_32); + uint8x16_t t0t1_l = veorq_u8(t0t1_tmp, t0t1_h); + + // t2 = (N) (P4 + P5) << 24 + // t3 = (K) (P6 + P7) << 32 + uint8x16_t t2t3_tmp = veorq_u8(nk_p0, nk_p1); + uint8x16_t t2t3_h = vandq_u8(nk_p1, k16_00); + uint8x16_t t2t3_l = veorq_u8(t2t3_tmp, t2t3_h); + + // De-interleave +#if defined(__aarch64__) + uint8x16_t t0 = vreinterpretq_u8_u64( + vuzp1q_u64(vreinterpretq_u64_u8(t0t1_l), vreinterpretq_u64_u8(t0t1_h))); + uint8x16_t t1 = vreinterpretq_u8_u64( + vuzp2q_u64(vreinterpretq_u64_u8(t0t1_l), vreinterpretq_u64_u8(t0t1_h))); + uint8x16_t t2 = vreinterpretq_u8_u64( + vuzp1q_u64(vreinterpretq_u64_u8(t2t3_l), vreinterpretq_u64_u8(t2t3_h))); + uint8x16_t t3 = vreinterpretq_u8_u64( + vuzp2q_u64(vreinterpretq_u64_u8(t2t3_l), vreinterpretq_u64_u8(t2t3_h))); +#else + uint8x16_t t1 = vcombine_u8(vget_high_u8(t0t1_l), vget_high_u8(t0t1_h)); + uint8x16_t t0 = vcombine_u8(vget_low_u8(t0t1_l), vget_low_u8(t0t1_h)); + uint8x16_t t3 = vcombine_u8(vget_high_u8(t2t3_l), vget_high_u8(t2t3_h)); + uint8x16_t t2 = vcombine_u8(vget_low_u8(t2t3_l), vget_low_u8(t2t3_h)); +#endif + // Shift the cross products + uint8x16_t t0_shift = vextq_u8(t0, t0, 15); // t0 << 8 + uint8x16_t t1_shift = vextq_u8(t1, t1, 14); // t1 << 16 + uint8x16_t t2_shift = vextq_u8(t2, t2, 13); // t2 << 24 + uint8x16_t t3_shift = vextq_u8(t3, t3, 12); // t3 << 32 + + // Accumulate the products + uint8x16_t cross1 = veorq_u8(t0_shift, t1_shift); + uint8x16_t cross2 = veorq_u8(t2_shift, t3_shift); + uint8x16_t mix = veorq_u8(d, cross1); + uint8x16_t r = veorq_u8(mix, cross2); + return vreinterpretq_u64_u8(r); +} +#endif // ARMv7 polyfill + +FORCE_INLINE __m128i _mm_clmulepi64_si128(__m128i _a, __m128i _b, const int imm) +{ + uint64x2_t a = vreinterpretq_u64_m128i(_a); + uint64x2_t b = vreinterpretq_u64_m128i(_b); + switch (imm & 0x11) { + case 0x00: + return vreinterpretq_m128i_u64( + _sse2neon_vmull_p64(vget_low_u64(a), vget_low_u64(b))); + case 0x01: + return vreinterpretq_m128i_u64( + _sse2neon_vmull_p64(vget_high_u64(a), vget_low_u64(b))); + case 0x10: + return vreinterpretq_m128i_u64( + _sse2neon_vmull_p64(vget_low_u64(a), vget_high_u64(b))); + case 0x11: + return vreinterpretq_m128i_u64( + _sse2neon_vmull_p64(vget_high_u64(a), vget_high_u64(b))); + default: + abort(); + } +} + +#if !defined(__ARM_FEATURE_CRYPTO) && defined(__aarch64__) +// In the absence of crypto extensions, implement aesenc using regular neon +// intrinsics instead. See: +// https://www.workofard.com/2017/01/accelerated-aes-for-the-arm64-linux-kernel/ +// https://www.workofard.com/2017/07/ghash-for-low-end-cores/ and +// https://github.com/ColinIanKing/linux-next-mirror/blob/b5f466091e130caaf0735976648f72bd5e09aa84/crypto/aegis128-neon-inner.c#L52 +// for more information Reproduced with permission of the author. +FORCE_INLINE __m128i _mm_aesenc_si128(__m128i EncBlock, __m128i RoundKey) +{ + static const uint8_t crypto_aes_sbox[256] = { + 0x63, 0x7c, 0x77, 0x7b, 0xf2, 0x6b, 0x6f, 0xc5, 0x30, 0x01, 0x67, 0x2b, + 0xfe, 0xd7, 0xab, 0x76, 0xca, 0x82, 0xc9, 0x7d, 0xfa, 0x59, 0x47, 0xf0, + 0xad, 0xd4, 0xa2, 0xaf, 0x9c, 0xa4, 0x72, 0xc0, 0xb7, 0xfd, 0x93, 0x26, + 0x36, 0x3f, 0xf7, 0xcc, 0x34, 0xa5, 0xe5, 0xf1, 0x71, 0xd8, 0x31, 0x15, + 0x04, 0xc7, 0x23, 0xc3, 0x18, 0x96, 0x05, 0x9a, 0x07, 0x12, 0x80, 0xe2, + 0xeb, 0x27, 0xb2, 0x75, 0x09, 0x83, 0x2c, 0x1a, 0x1b, 0x6e, 0x5a, 0xa0, + 0x52, 0x3b, 0xd6, 0xb3, 0x29, 0xe3, 0x2f, 0x84, 0x53, 0xd1, 0x00, 0xed, + 0x20, 0xfc, 0xb1, 0x5b, 0x6a, 0xcb, 0xbe, 0x39, 0x4a, 0x4c, 0x58, 0xcf, + 0xd0, 0xef, 0xaa, 0xfb, 0x43, 0x4d, 0x33, 0x85, 0x45, 0xf9, 0x02, 0x7f, + 0x50, 0x3c, 0x9f, 0xa8, 0x51, 0xa3, 0x40, 0x8f, 0x92, 0x9d, 0x38, 0xf5, + 0xbc, 0xb6, 0xda, 0x21, 0x10, 0xff, 0xf3, 0xd2, 0xcd, 0x0c, 0x13, 0xec, + 0x5f, 0x97, 0x44, 0x17, 0xc4, 0xa7, 0x7e, 0x3d, 0x64, 0x5d, 0x19, 0x73, + 0x60, 0x81, 0x4f, 0xdc, 0x22, 0x2a, 0x90, 0x88, 0x46, 0xee, 0xb8, 0x14, + 0xde, 0x5e, 0x0b, 0xdb, 0xe0, 0x32, 0x3a, 0x0a, 0x49, 0x06, 0x24, 0x5c, + 0xc2, 0xd3, 0xac, 0x62, 0x91, 0x95, 0xe4, 0x79, 0xe7, 0xc8, 0x37, 0x6d, + 0x8d, 0xd5, 0x4e, 0xa9, 0x6c, 0x56, 0xf4, 0xea, 0x65, 0x7a, 0xae, 0x08, + 0xba, 0x78, 0x25, 0x2e, 0x1c, 0xa6, 0xb4, 0xc6, 0xe8, 0xdd, 0x74, 0x1f, + 0x4b, 0xbd, 0x8b, 0x8a, 0x70, 0x3e, 0xb5, 0x66, 0x48, 0x03, 0xf6, 0x0e, + 0x61, 0x35, 0x57, 0xb9, 0x86, 0xc1, 0x1d, 0x9e, 0xe1, 0xf8, 0x98, 0x11, + 0x69, 0xd9, 0x8e, 0x94, 0x9b, 0x1e, 0x87, 0xe9, 0xce, 0x55, 0x28, 0xdf, + 0x8c, 0xa1, 0x89, 0x0d, 0xbf, 0xe6, 0x42, 0x68, 0x41, 0x99, 0x2d, 0x0f, + 0xb0, 0x54, 0xbb, 0x16}; + static const uint8_t shift_rows[] = {0x0, 0x5, 0xa, 0xf, 0x4, 0x9, + 0xe, 0x3, 0x8, 0xd, 0x2, 0x7, + 0xc, 0x1, 0x6, 0xb}; + static const uint8_t ror32by8[] = {0x1, 0x2, 0x3, 0x0, 0x5, 0x6, 0x7, 0x4, + 0x9, 0xa, 0xb, 0x8, 0xd, 0xe, 0xf, 0xc}; + + uint8x16_t v; + uint8x16_t w = vreinterpretq_u8_m128i(EncBlock); + + // shift rows + w = vqtbl1q_u8(w, vld1q_u8(shift_rows)); + + // sub bytes + v = vqtbl4q_u8(vld1q_u8_x4(crypto_aes_sbox), w); + v = vqtbx4q_u8(v, vld1q_u8_x4(crypto_aes_sbox + 0x40), w - 0x40); + v = vqtbx4q_u8(v, vld1q_u8_x4(crypto_aes_sbox + 0x80), w - 0x80); + v = vqtbx4q_u8(v, vld1q_u8_x4(crypto_aes_sbox + 0xc0), w - 0xc0); + + // mix columns + w = (v << 1) ^ (uint8x16_t)(((int8x16_t) v >> 7) & 0x1b); + w ^= (uint8x16_t) vrev32q_u16((uint16x8_t) v); + w ^= vqtbl1q_u8(v ^ w, vld1q_u8(ror32by8)); + + // add round key + return vreinterpretq_m128i_u8(w) ^ RoundKey; +} +#elif defined(__ARM_FEATURE_CRYPTO) +// Implements equivalent of 'aesenc' by combining AESE (with an empty key) and +// AESMC and then manually applying the real key as an xor operation This +// unfortunately means an additional xor op; the compiler should be able to +// optimise this away for repeated calls however See +// https://blog.michaelbrase.com/2018/05/08/emulating-x86-aes-intrinsics-on-armv8-a +// for more details. +inline __m128i _mm_aesenc_si128(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u8( + vaesmcq_u8(vaeseq_u8(vreinterpretq_u8_m128i(a), vdupq_n_u8(0))) ^ + vreinterpretq_u8_m128i(b)); +} +#endif + +/* Streaming Extensions */ + +// Guarantees that every preceding store is globally visible before any +// subsequent store. +// https://msdn.microsoft.com/en-us/library/5h2w73d1%28v=vs.90%29.aspx +FORCE_INLINE void _mm_sfence(void) +{ + __sync_synchronize(); +} + +// Stores the data in a to the address p without polluting the caches. If the +// cache line containing address p is already in the cache, the cache will be +// updated.Address p must be 16 - byte aligned. +// https://msdn.microsoft.com/en-us/library/ba08y07y%28v=vs.90%29.aspx +FORCE_INLINE void _mm_stream_si128(__m128i *p, __m128i a) +{ +#if __has_builtin(__builtin_nontemporal_store) + __builtin_nontemporal_store(a, p); +#else + vst1q_s64((int64_t *) p, vreinterpretq_s64_m128i(a)); +#endif +} + +// Cache line containing p is flushed and invalidated from all caches in the +// coherency domain. : +// https://msdn.microsoft.com/en-us/library/ba08y07y(v=vs.100).aspx +FORCE_INLINE void _mm_clflush(void const *p) +{ + (void) p; + // no corollary for Neon? +} + +// Allocate aligned blocks of memory. +// https://software.intel.com/en-us/ +// cpp-compiler-developer-guide-and-reference-allocating-and-freeing-aligned-memory-blocks +FORCE_INLINE void *_mm_malloc(size_t size, size_t align) +{ + void *ptr; + if (align == 1) + return malloc(size); + if (align == 2 || (sizeof(void *) == 8 && align == 4)) + align = sizeof(void *); + if (!posix_memalign(&ptr, align, size)) + return ptr; + return NULL; +} + +FORCE_INLINE void _mm_free(void *addr) +{ + free(addr); +} + +// Starting with the initial value in crc, accumulates a CRC32 value for +// unsigned 8-bit integer v. +// https://msdn.microsoft.com/en-us/library/bb514036(v=vs.100) +FORCE_INLINE uint32_t _mm_crc32_u8(uint32_t crc, uint8_t v) +{ +#if defined(__aarch64__) && defined(__ARM_FEATURE_CRC32) + __asm__ __volatile__("crc32cb %w[c], %w[c], %w[v]\n\t" + : [c] "+r"(crc) + : [v] "r"(v)); +#else + crc ^= v; + for (int bit = 0; bit < 8; bit++) { + if (crc & 1) + crc = (crc >> 1) ^ uint32_t(0x82f63b78); + else + crc = (crc >> 1); + } +#endif + return crc; +} + +// Starting with the initial value in crc, accumulates a CRC32 value for +// unsigned 16-bit integer v. +// https://msdn.microsoft.com/en-us/library/bb531411(v=vs.100) +FORCE_INLINE uint32_t _mm_crc32_u16(uint32_t crc, uint16_t v) +{ +#if defined(__aarch64__) && defined(__ARM_FEATURE_CRC32) + __asm__ __volatile__("crc32ch %w[c], %w[c], %w[v]\n\t" + : [c] "+r"(crc) + : [v] "r"(v)); +#else + crc = _mm_crc32_u8(crc, v & 0xff); + crc = _mm_crc32_u8(crc, (v >> 8) & 0xff); +#endif + return crc; +} + +// Starting with the initial value in crc, accumulates a CRC32 value for +// unsigned 32-bit integer v. +// https://msdn.microsoft.com/en-us/library/bb531394(v=vs.100) +FORCE_INLINE uint32_t _mm_crc32_u32(uint32_t crc, uint32_t v) +{ +#if defined(__aarch64__) && defined(__ARM_FEATURE_CRC32) + __asm__ __volatile__("crc32cw %w[c], %w[c], %w[v]\n\t" + : [c] "+r"(crc) + : [v] "r"(v)); +#else + crc = _mm_crc32_u16(crc, v & 0xffff); + crc = _mm_crc32_u16(crc, (v >> 16) & 0xffff); +#endif + return crc; +} + +// Starting with the initial value in crc, accumulates a CRC32 value for +// unsigned 64-bit integer v. +// https://msdn.microsoft.com/en-us/library/bb514033(v=vs.100) +FORCE_INLINE uint64_t _mm_crc32_u64(uint64_t crc, uint64_t v) +{ +#if defined(__aarch64__) && defined(__ARM_FEATURE_CRC32) + __asm__ __volatile__("crc32cx %w[c], %w[c], %x[v]\n\t" + : [c] "+r"(crc) + : [v] "r"(v)); +#else + crc = _mm_crc32_u32((uint32_t)(crc), v & 0xffffffff); + crc = _mm_crc32_u32((uint32_t)(crc), (v >> 32) & 0xffffffff); +#endif + return crc; +} + +// ------------------------------------ IQ-TREE additional functionality ----------------------------------------------- // + +/* +FORCE_INLINE __m128d _mm_sqrt_pd(const double a) +{ + return vsqrtq_f64(vdupq_n_f64(a)); +} +*/ +FORCE_INLINE __m128i _mm_adds_epi8(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s8(vqaddq_s8(vreinterpretq_s8_m128i(a), vreinterpretq_s8_m128i(b))); +} + +FORCE_INLINE __m128i _mm_max_epi8(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s8(vmaxq_s8(vreinterpretq_s8_m128i(a), vreinterpretq_s8_m128i(b))); +} + +FORCE_INLINE __m128i _mm_min_epi8(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_s8(vminq_s8(vreinterpretq_s8_m128i(a), vreinterpretq_s8_m128i(b))); +} + +FORCE_INLINE __m128i _mm_max_epu16(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u16(vmaxq_u16(vreinterpretq_u16_m128i(a), vreinterpretq_u16_m128i(b))); +} + +FORCE_INLINE __m128i _mm_min_epu16(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u16(vminq_u16(vreinterpretq_u16_m128i(a), vreinterpretq_u16_m128i(b))); +} + +FORCE_INLINE __m128i _mm_max_epu32(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u32(vmaxq_u32(vreinterpretq_u32_m128i(a), vreinterpretq_u32_m128i(b))); +} + +FORCE_INLINE __m128i _mm_min_epu32(__m128i a, __m128i b) +{ + return vreinterpretq_m128i_u32(vminq_u32(vreinterpretq_u32_m128i(a), vreinterpretq_u32_m128i(b))); +} + +FORCE_INLINE __m128d _mm_max_pd(__m128d a, __m128d b) +{ + return vmaxq_f64(a, b); //vreinterpretq_m128_f64(vmaxq_f64(vreinterpretq_f64_m128(a), vreinterpretq_f64_m128(b))); +} + +FORCE_INLINE __m128d _mm_min_pd(__m128d a, __m128d b) +{ + return vminq_f64(a, b); //vreinterpretq_m128_f64(vminq_f64(vreinterpretq_f64_m128(a), vreinterpretq_f64_m128(b))); +} + +#define _MM_FROUND_TO_NEAREST_INT 0x00 +#define _MM_FROUND_TO_NEG_INF 0x01 +#define _MM_FROUND_TO_POS_INF 0x02 +#define _MM_FROUND_TO_ZERO 0x03 +#define _MM_FROUND_CUR_DIRECTION 0x04 +#define _MM_FROUND_RAISE_EXC 0x00 +#define _MM_FROUND_NO_EXC 0x08 + +// aarch64 +FORCE_INLINE __m128 _mm_round_ps(__m128 a, int rounding) +{ + //assert((rounding == (_MM_FROUND_TO_NEAREST_INT | _MM_FROUND_NO_EXC)) || (rounding == (_MM_FROUND_TO_NEG_INF | _MM_FROUND_NO_EXC)) || (rounding == (_MM_FROUND_TO_POS_INF | _MM_FROUND_NO_EXC )) || (rounding == (_MM_FROUND_TO_ZERO | _MM_FROUND_NO_EXC)) || (rounding == _MM_FROUND_CUR_DIRECTION)); + if (rounding == (_MM_FROUND_TO_NEAREST_INT | _MM_FROUND_NO_EXC)) return vreinterpretq_m128_f32(vrndnq_f32(vreinterpretq_f32_m128(a))); + if (rounding == (_MM_FROUND_TO_NEG_INF | _MM_FROUND_NO_EXC)) return vreinterpretq_m128_f32(vrndmq_f32(vreinterpretq_f32_m128(a))); + if (rounding == (_MM_FROUND_TO_POS_INF | _MM_FROUND_NO_EXC)) return vreinterpretq_m128_f32(vrndpq_f32(vreinterpretq_f32_m128(a))); + if (rounding == (_MM_FROUND_TO_ZERO | _MM_FROUND_NO_EXC)) return vreinterpretq_m128_f32(vrndq_f32(vreinterpretq_f32_m128(a))); + //-- if (rounding == _MM_FROUND_CUR_DIRECTION) :-- + else return vreinterpretq_m128_f32(vrndiq_f32(vreinterpretq_f32_m128(a))); +} + +FORCE_INLINE __m128d _mm_round_pd(__m128d a, int rounding) +{ + //assert((rounding == (_MM_FROUND_TO_NEAREST_INT | _MM_FROUND_NO_EXC)) || (rounding == (_MM_FROUND_TO_NEG_INF | _MM_FROUND_NO_EXC)) || (rounding == (_MM_FROUND_TO_POS_INF | _MM_FROUND_NO_EXC )) || (rounding == (_MM_FROUND_TO_ZERO | _MM_FROUND_NO_EXC)) || (rounding == _MM_FROUND_CUR_DIRECTION)); + if (rounding == (_MM_FROUND_TO_NEAREST_INT | _MM_FROUND_NO_EXC)) return vrndnq_f64(a); + if (rounding == (_MM_FROUND_TO_NEG_INF | _MM_FROUND_NO_EXC)) return vrndmq_f64(a); + if (rounding == (_MM_FROUND_TO_POS_INF | _MM_FROUND_NO_EXC)) return vrndpq_f64(a); + if (rounding == (_MM_FROUND_TO_ZERO | _MM_FROUND_NO_EXC)) return vrndq_f64(a); + //-- if (rounding == _MM_FROUND_CUR_DIRECTION) + else return vrndiq_f64(a); +} + +FORCE_INLINE __m128d _mm_loadu_pd(const double* ptr) +{ + return (__m128d)vld1q_f64(ptr); +} + +FORCE_INLINE __m128d _mm_load_pd(const double* ptr) +{ + return (__m128d)vld1q_f64(ptr); +} + +FORCE_INLINE void _mm_storeu_pd(double* mem_addr, __m128d a) +{ + vst1q_f64(mem_addr, (__m128d)(a)); +} + +FORCE_INLINE void _mm_store_pd(double* mem_addr, __m128d a) +{ + vst1q_f64(mem_addr, (__m128d)(a)); +} + +FORCE_INLINE __m128 _mm_insert_ps(__m128 a, __m128 b, const int imm8) +{ + const int imm8_76 = (((1 << 2) -1 ) & (imm8 >> 6)); + const int imm8_54 = (((1 << 2) - 1) & (imm8 >> 4)); + __m128 tmp2 = a; + float tmp1; + switch(imm8_76) { + case 0: + tmp1 = vgetq_lane_f32(vreinterpretq_f32_m128(b), 0); + break; + case 1: + tmp1 = vgetq_lane_f32(vreinterpretq_f32_m128(b), 1); + break; + case 2: + tmp1 = vgetq_lane_f32(vreinterpretq_f32_m128(b), 2); + break; + case 3: + tmp1 = vgetq_lane_f32(vreinterpretq_f32_m128(b), 3); + break; + } + // float tmp1 = vgetq_lane_f32(vreinterpretq_f32_m128(b), (imm8_76)); + switch(imm8_54) { + case 0: + tmp2 = vreinterpretq_m128_f32(vsetq_lane_f32(tmp1, vreinterpretq_f32_m128(tmp2), 0)); + break; + case 1: + tmp2 = vreinterpretq_m128_f32(vsetq_lane_f32(tmp1, vreinterpretq_f32_m128(tmp2), 1)); + break; + case 2: + tmp2 = vreinterpretq_m128_f32(vsetq_lane_f32(tmp1, vreinterpretq_f32_m128(tmp2), 2)); + break; + case 3: + tmp2 = vreinterpretq_m128_f32(vsetq_lane_f32(tmp1, vreinterpretq_f32_m128(tmp2), 3)); + break; + } + //tmp2 = vreinterpretq_m128_f32(vsetq_lane_f32(tmp1, vreinterpretq_f32_m128(tmp2), (imm8_54))); + __m128 dst; + //for (int j = 0; j < 4; j++) + // { + // int i = j*32; + // if ((imm8 >> j) & 0x01 ) dst = vreinterpretq_m128_f32(vsetq_lane_f32(0.0f, vreinterpretq_f32_m128(dst), (j))); + // else dst = vreinterpretq_m128_f32(vsetq_lane_f32(vgetq_lane_f32(vreinterpretq_f32_m128(tmp2), (j)), vreinterpretq_f32_m128(dst), (j))); + // } + + if ((imm8 >> 0) & 0x01 ) dst = vreinterpretq_m128_f32(vsetq_lane_f32(0.0f, vreinterpretq_f32_m128(dst), 0)); + else dst = vreinterpretq_m128_f32(vsetq_lane_f32(vgetq_lane_f32(vreinterpretq_f32_m128(tmp2), 0), vreinterpretq_f32_m128(dst), 0)); + + if ((imm8 >> 1) & 0x01 ) dst = vreinterpretq_m128_f32(vsetq_lane_f32(0.0f, vreinterpretq_f32_m128(dst), 1)); + else dst = vreinterpretq_m128_f32(vsetq_lane_f32(vgetq_lane_f32(vreinterpretq_f32_m128(tmp2), 1), vreinterpretq_f32_m128(dst), 1)); + + if ((imm8 >> 2) & 0x01 ) dst = vreinterpretq_m128_f32(vsetq_lane_f32(0.0f, vreinterpretq_f32_m128(dst), 2)); + else dst = vreinterpretq_m128_f32(vsetq_lane_f32(vgetq_lane_f32(vreinterpretq_f32_m128(tmp2), 2), vreinterpretq_f32_m128(dst), 2)); + + if ((imm8 >> 3) & 0x01 ) dst = vreinterpretq_m128_f32(vsetq_lane_f32(0.0f, vreinterpretq_f32_m128(dst), 3)); + else dst = vreinterpretq_m128_f32(vsetq_lane_f32(vgetq_lane_f32(vreinterpretq_f32_m128(tmp2), 3), vreinterpretq_f32_m128(dst), 3)); + + return dst; + //__transfersize(1) float32_t const* ptr = &b; + // b = _mm_set1_ps(*(ptr)); + //const int lane = imm8 >> 4; + // imm8 = _INSERTPS_NDX(0, lane) = (((0) << 6 | ((lane) << 4))) + //return vreinterpretq_m128_f32(vld1q_lane_f32(ptr, vreinterpretq_f32_m128(a), lane)); + //return vreinterpretq_m128_f32(vsetq_lane_f32((b), vreinterpretq_f32_m128(a), (imm8))); +} + +FORCE_INLINE __m128d _mm_sqrt_pd(__m128d a) +{ + return vsqrtq_f64(a); +} + +FORCE_INLINE __m128d _mm_xor_pd(__m128d a, __m128d b) +{ + return vreinterpretq_f64_s32(veorq_s32(vreinterpretq_s32_f64(a), vreinterpretq_s32_f64(b))); +} + +FORCE_INLINE __m128d _mm_sub_pd(__m128d a, __m128d b) +{ + return vsubq_f64(a, b); +} + +FORCE_INLINE __m128d _mm_add_pd(__m128d a, __m128d b) +{ + return vaddq_f64(a, b); +} + +FORCE_INLINE int _mm_testc_si128(__m128i a, __m128i b) +{ + int32x4_t ZF_interim = vandq_s32(vreinterpretq_s32_m128i(a), vreinterpretq_s32_m128i(b)); + int ZF; + if (ZF_interim[0] == 0 && ZF_interim[1] == 0 && ZF_interim[2] == 0 && ZF_interim[3] == 0) + { + ZF = 1; + } + else + { + ZF = 0; + } + int32x4_t CF_interim = vandq_s32(vmvnq_s32(vreinterpretq_s32_m128i(a)), vreinterpretq_s32_m128i(b)); + int CF; + if (CF_interim[0] == 0 && CF_interim[1] == 0 && CF_interim[2] == 0 && CF_interim[3] == 0) + { + CF = 1; + } + else + { + CF = 0; + } + return CF; +} + +FORCE_INLINE int _mm_testz_si128(__m128i a, __m128i b) +{ + int32x4_t ZF_interim = vandq_s32(vreinterpretq_s32_m128i(a), vreinterpretq_s32_m128i(b)); + int ZF; + if (ZF_interim[0] == 0 && ZF_interim[1] == 0 && ZF_interim[2] == 0 && ZF_interim[3] == 0) + { + ZF = 1; + } + else + { + ZF = 0; + } + int32x4_t CF_interim = vandq_s32(vmvnq_s32(vreinterpretq_s32_m128i(a)), vreinterpretq_s32_m128i(b)); + int CF; + if (CF_interim[0] == 0 && CF_interim[1] == 0 && CF_interim[2] == 0 && CF_interim[3] == 0) + { + CF = 1; + } + else + { + CF = 0; + } + return ZF; + int64x2_t s64 = vandq_s64(vreinterpretq_s64_m128i(a), vreinterpretq_s64_m128i(b)); + return !(vgetq_lane_s64(s64, 0) | vgetq_lane_s64(s64, 1)); +} + +FORCE_INLINE __m128d _mm_andnot_pd(__m128d a, __m128d b) +{ + return vreinterpretq_f64_u32(vandq_u32(vmvnq_u32(vreinterpretq_u32_f64(a)), vreinterpretq_u32_f64(b))); +} + +FORCE_INLINE __m128d _mm_and_pd(__m128d a, __m128d b) +{ + return vreinterpretq_f64_u32(vandq_u32(vreinterpretq_u32_f64(a), vreinterpretq_u32_f64(b))); +} + +FORCE_INLINE __m128 _mm_castpd_ps(__m128d a) +{ + return vreinterpretq_m128_f64(a); +} + +FORCE_INLINE __m128d _mm_castps_pd(__m128 a) +{ + return vreinterpretq_f64_m128(a); +} + +FORCE_INLINE __m128i _mm_castpd_si128(__m128d a) +{ + return vreinterpretq_m128i_s64(vreinterpretq_s64_f64(a)); +} + +FORCE_INLINE __m128d _mm_castsi128_pd(__m128i a) +{ + return vreinterpretq_f64_s64(vreinterpretq_s64_m128i(a)); +} + +FORCE_INLINE __m128d _mm_cmpeq_pd(__m128d a, __m128d b) +{ + return vreinterpretq_f64_u64(vceqq_f64(a, b)); +} + +FORCE_INLINE __m128d _mm_cmple_pd(__m128d a, __m128d b) +{ + return vreinterpretq_f64_u64(vcleq_f64(a, b)); +} + +FORCE_INLINE __m128d _mm_cmplt_pd(__m128d a, __m128d b) +{ + return vreinterpretq_f64_u64(vcltq_f64(a, b)); +} + +FORCE_INLINE __m128d _mm_cmpneq_pd(__m128d a, __m128d b) +{ + return vreinterpretq_f64_u32(vmvnq_u32(vreinterpretq_u32_u64(vceqq_f64(a, b)))); +} + +FORCE_INLINE __m128d _mm_hadd_pd(__m128d a, __m128d b) +{ +//#if defined(__aarch64__) + return vpaddq_f64(a, b); +//#else +// return false; +//#endif +/*#else + float64x2_t a10 = vget_low_f64(a); + float64x2_t a64 = vget_high_f64(a); + float64x2_t b10 = vget_low_f64(b); + float64x2_t b64 = vget_high_f64(b); + return vcombine_f64(vpadd_f64(a10, a64), vpadd_f64(b10, b64)); // no vpadd_f64 intrinsic +#endif*/ +} + +FORCE_INLINE __m128d _mm_or_pd(__m128d a, __m128d b) +{ + return vreinterpretq_f64_u64(vorrq_u64(vreinterpretq_u64_f64(a), vreinterpretq_u64_f64(b))); +} + +FORCE_INLINE __m128i _mm_mulhi_epu16(__m128i a, __m128i b) +{ + uint16x4_t a3210 = vget_low_u16(vreinterpretq_u16_m128i(a)); + uint16x4_t b3210 = vget_low_u16(vreinterpretq_u16_m128i(b)); + uint32x4_t ab3210 = vmull_u16(a3210, b3210); /* 3333222211110000 */ + uint16x4_t a7654 = vget_high_u16(vreinterpretq_u16_m128i(a)); + uint16x4_t b7654 = vget_high_u16(vreinterpretq_u16_m128i(b)); + uint32x4_t ab7654 = vmull_u16(a7654, b7654); /* 7777666655554444 */ + uint16x8x2_t r = + vuzpq_u16(vreinterpretq_u16_u32(ab3210), vreinterpretq_u16_u32(ab7654)); + return vreinterpretq_m128i_u16(r.val[1]); +} + +FORCE_INLINE __m128d _mm_setr_pd(double e1, double e0) +{ + double ALIGN_STRUCT(16) data[2] = {e1, e0}; + return vld1q_f64(data); +} + +FORCE_INLINE __m128d _mm_setzero_pd(void) +{ + return vdupq_n_f64(0); +} + +FORCE_INLINE __m128d _mm_set1_pd(double a) +{ + return vdupq_n_f64(a); +} + +FORCE_INLINE __m128d _mm_set_sd(double a) +{ + double ALIGN_STRUCT(16) data[2] = {a, 0}; + return vld1q_f64(data); +} + +FORCE_INLINE __m128d _mm_div_pd(__m128d a, __m128d b) +{ + float64x2_t recip0 = vrecpeq_f64(b); + float64x2_t recip1 = + vmulq_f64(recip0, vrecpsq_f64(recip0, b)); + return vmulq_f64(a, recip1); +} + +FORCE_INLINE __m128d _mm_mul_pd(__m128d a, __m128d b) +{ + return vmulq_f64(a, b); +} + +FORCE_INLINE int _mm_movemask_pd(__m128d a) +{ + uint64x2_t input = vreinterpretq_u64_f64(a); + static const int64x2_t shift = {-63, -62}; + static const uint64x2_t highbit = {0x8000000000000000, 0x8000000000000000}; + return vaddvq_u64(vshlq_u64(vandq_u64(input, highbit), shift)); +} + +FORCE_INLINE __m128d _mm_shuffle_pd(__m128d a, __m128d b, int imm8) +{ + float64x1_t fst = (imm8 % 2 == 0) ? vget_low_f64(a) : vget_high_f64(a); + float64x1_t snd = ((imm8 >> 1) % 2 == 0) ? vget_low_f64(b) : vget_high_f64(b); + return vcombine_f64(fst, snd); +} + +FORCE_INLINE void _mm_store_sd(double * ptr, __m128d a) +{ + return vst1_f64(ptr, vget_low_f64(a)); +} + +FORCE_INLINE double _mm_cvtsd_f64(__m128d a) +{ + return vgetq_lane_f64(a, 0); +} + +FORCE_INLINE __m128i _mm_cvttpd_epi32(__m128d a) +{ + return vreinterpretq_m128i_s64(vcvtq_s64_f64(a)); +} + +FORCE_INLINE __m128i _mm_cvtpd_epi32(__m128d a) +{ +//#if defined(__aarch64__) + return vreinterpretq_m128i_s32(vreinterpretq_s32_s64(vcvtnq_s64_f64(a))); +//#else +// return false; // ARMv8-A has 'round to even' support, ARMv7-A does not, needs further functionality. +//#endif +} + +FORCE_INLINE __m128d _mm_cvtepi32_pd(__m128i a) +{ + return vcvtq_f64_s64(vreinterpretq_s64_m128i(a)); +} + +FORCE_INLINE __m128i _mm_set_epi64(__m64 i1, __m64 i2) +{ + return _mm_set_epi64x((int64_t) i1, (int64_t) i2); +} + +FORCE_INLINE __m128 _mm_cvtpd_ps(__m128d a) +{ + __m64 temp = vcvtx_f32_f64((float64x2_t) a); + return (__m128) _mm_set_epi64(temp, temp); +} + +FORCE_INLINE __m128d _mm_cvtps_pd(__m128 a) +{ + return (__m128d) vcvt_high_f64_f32((float32x4_t) a); +} + +FORCE_INLINE unsigned int _mm_getcsr(void) +{ + //printf("GET CSR \n"); + return 0; +} + +FORCE_INLINE void _mm_setcsr(unsigned int a) +{ + //printf("%d \n", a); + //return; +} + + +/// need to test lost precision, find a way keeping in floats + +FORCE_INLINE __m128 _mm_blendv_ps(__m128 _a, __m128 _b, __m128 _mask) +{ + //uint32x4_t mask = vreinterpretq_u32_s32(vshrq_n_s32(vreinterpretq_s32_m128(_mask), 31)); + //uint32x4_t a = vreinterpretq_u32_m128(_a); + //uint32x4_t b = vreinterpretq_u32_m128(_b); + //return vreinterpretq_m128_u32(vbslq_u32(mask, b, a)); + return vreinterpretq_m128_f32(vbslq_f32(vreinterpretq_u32_m128(_mask), vreinterpretq_f32_m128(_b), vreinterpretq_f32_m128(_a))); +} + +FORCE_INLINE __m128d _mm_blendv_pd(__m128d _a, __m128d _b, __m128d _mask) +{ + uint64x2_t mask = vreinterpretq_u64_s64(vshrq_n_s64(vreinterpretq_s64_f64(_mask), 63)); + //int64x2_t a = vreinterpretq_64_f64(_a); + //int64x2_t b = vreinterpretq_u64_f64(_b); + return (__m128d) vbslq_f64(mask, _b, _a); +} + +FORCE_INLINE __m128d _mm_set_pd(double e1, double e0) +{ + float64x2_t ret; + ret = vsetq_lane_f64(e0, ret, 0); + ret = vsetq_lane_f64(e1, ret, 1); + return ret; +} + +FORCE_INLINE void _mm_storel_pd(double *p, __m128d a) +{ + *p = vgetq_lane_f64(a, 0); +} + +/* +#define _mm_sqrt_pd vsqrtq_f64 +*/ + +// ----------------------------------- IQ-TREE end of additions -------------------------------------------------------- // + +#if defined(__GNUC__) || defined(__clang__) +#pragma pop_macro("ALIGN_STRUCT") +#pragma pop_macro("FORCE_INLINE") +#endif + +#endif diff --git a/vectorclass/vectorf128.h b/vectorclass/vectorf128.h index c6bf33d64..39026ce22 100755 --- a/vectorclass/vectorf128.h +++ b/vectorclass/vectorf128.h @@ -1201,6 +1201,7 @@ static inline Vec4f exp2(Vec4i const & n) { // 11: round towards zero (truncate) // 15: Flush to Zero +#if !defined(__ARM_NEON) // Function get_control_word: // Read the MXCSR control word static inline uint32_t get_control_word() { @@ -1229,6 +1230,7 @@ static inline void no_subnormals() { static inline void reset_control_word() { set_control_word(0x1F80); } +#endif // Categorization functions diff --git a/vectorclass/vectori128.h b/vectorclass/vectori128.h index 816825872..28bfea9bc 100755 --- a/vectorclass/vectori128.h +++ b/vectorclass/vectori128.h @@ -391,8 +391,13 @@ class Vec16c : public Vec128b { // cut off vector to n elements. The last 16-n elements are set to zero Vec16c & cutoff(int n) { if (uint32_t(n) >= 16) return *this; +#if defined(__ARM_NEON) + static const signed char mask[32] = {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}; +#else static const char mask[32] = {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}; +#endif *this &= Vec16c().load(mask+16-n); return *this; } @@ -4924,7 +4929,11 @@ static inline Vec2q lookup(Vec2q const & index, void const * table) { static inline Vec16c shift_bytes_up(Vec16c const & a, int b) { if ((uint32_t)b > 15) return _mm_setzero_si128(); #if INSTRSET >= 4 // SSSE3 +#if defined(__ARM_NEON) + static const signed char mask[32] = {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15}; +#else static const char mask[32] = {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15}; +#endif return Vec16c(_mm_shuffle_epi8(a, Vec16c().load(mask+16-b))); #else Vec2uq a1 = Vec2uq(a); @@ -4943,7 +4952,11 @@ static inline Vec16c shift_bytes_up(Vec16c const & a, int b) { static inline Vec16c shift_bytes_down(Vec16c const & a, int b) { if ((uint32_t)b > 15) return _mm_setzero_si128(); #if INSTRSET >= 4 // SSSE3 +#if defined(__ARM_NEON) + static const signed char mask[32] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1}; +#else static const char mask[32] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1}; +#endif return Vec16c(_mm_shuffle_epi8(a, Vec16c().load(mask+b))); #else Vec2uq a1 = Vec2uq(a); diff --git a/zlib-1.2.7/.!3202!ChangeLog b/zlib-1.2.7/.!3202!ChangeLog new file mode 100755 index 000000000..cb741e5a7 --- /dev/null +++ b/zlib-1.2.7/.!3202!ChangeLog @@ -0,0 +1,503 @@ + + ChangeLog file for zlib + +Changes in 1.2.7 (2 May 2012) +- Replace use of memmove() with a simple copy for portability +- Test for existence of strerror +- Restore gzgetc_ for backward compatibility with 1.2.6 +- Fix build with non-GNU make on Solaris +- Require gcc 4.0 or later on Mac OS X to use the hidden attribute +- Include unistd.h for Watcom C +- Use __WATCOMC__ instead of __WATCOM__ +- Do not use the visibility attribute if NO_VIZ defined +- Improve the detection of no hidden visibility attribute +- Avoid using __int64 for gcc or solo compilation +- Cast to char * in gzprintf to avoid warnings [Zinser] +- Fix make_vms.com for VAX [Zinser] +- Don't use library or built-in byte swaps +- Simplify test and use of gcc hidden attribute +- Fix bug in gzclose_w() when gzwrite() fails to allocate memory +- Add "x" (O_EXCL) and "e" (O_CLOEXEC) modes support to gzopen() +- Fix bug in test/minigzip.c for configure --solo +- Fix contrib/vstudio project link errors [Mohanathas] +- Add ability to choose the builder in make_vms.com [Schweda] +- Add DESTDIR support to mingw32 win32/Makefile.gcc +- Fix comments in win32/Makefile.gcc for proper usage +- Allow overriding the default install locations for cmake +- Generate and install the pkg-config file with cmake +- Build both a static and a shared version of zlib with cmake +- Include version symbols for cmake builds +- If using cmake with MSVC, add the source directory to the includes +- Remove unneeded EXTRA_CFLAGS from win32/Makefile.gcc [Truta] +- Move obsolete emx makefile to old [Truta] +- Allow the use of -Wundef when compiling or using zlib +- Avoid the use of the -u option with mktemp +- Improve inflate() documentation on the use of Z_FINISH +- Recognize clang as gcc +- Add gzopen_w() in Windows for wide character path names +- Rename zconf.h in CMakeLists.txt to move it out of the way +- Add source directory in CMakeLists.txt for building examples +- Look in build directory for zlib.pc in CMakeLists.txt +- Remove gzflags from zlibvc.def in vc9 and vc10 +- Fix contrib/minizip compilation in the MinGW environment +- Update ./configure for Solaris, support --64 [Mooney] +- Remove -R. from Solaris shared build (possible security issue) +- Avoid race condition for parallel make (-j) running example +- Fix type mismatch between get_crc_table() and crc_table +- Fix parsing of version with "-" in CMakeLists.txt [Snider, Ziegler] +- Fix the path to zlib.map in CMakeLists.txt +- Force the native libtool in Mac OS X to avoid GNU libtool [Beebe] +- Add instructions to win32/Makefile.gcc for shared install [Torri] + +Changes in 1.2.6.1 (12 Feb 2012) +- Avoid the use of the Objective-C reserved name "id" +- Include io.h in gzguts.h for Microsoft compilers +- Fix problem with ./configure --prefix and gzgetc macro +- Include gz_header definition when compiling zlib solo +- Put gzflags() functionality back in zutil.c +- Avoid library header include in crc32.c for Z_SOLO +- Use name in GCC_CLASSIC as C compiler for coverage testing, if set +- Minor cleanup in contrib/minizip/zip.c [Vollant] +- Update make_vms.com [Zinser] +- Remove unnecessary gzgetc_ function +- Use optimized byte swap operations for Microsoft and GNU [Snyder] +- Fix minor typo in zlib.h comments [Rzesniowiecki] + +Changes in 1.2.6 (29 Jan 2012) +- Update the Pascal interface in contrib/pascal +- Fix function numbers for gzgetc_ in zlibvc.def files +- Fix configure.ac for contrib/minizip [Schiffer] +- Fix large-entry detection in minizip on 64-bit systems [Schiffer] +- Have ./configure use the compiler return code for error indication +- Fix CMakeLists.txt for cross compilation [McClure] +- Fix contrib/minizip/zip.c for 64-bit architectures [Dalsnes] +- Fix compilation of contrib/minizip on FreeBSD [Marquez] +- Correct suggested usages in win32/Makefile.msc [Shachar, Horvath] +- Include io.h for Turbo C / Borland C on all platforms [Truta] +- Make version explicit in contrib/minizip/configure.ac [Bosmans] +- Avoid warning for no encryption in contrib/minizip/zip.c [Vollant] +- Minor cleanup up contrib/minizip/unzip.c [Vollant] +- Fix bug when compiling minizip with C++ [Vollant] +- Protect for long name and extra fields in contrib/minizip [Vollant] +- Avoid some warnings in contrib/minizip [Vollant] +- Add -I../.. -L../.. to CFLAGS for minizip and miniunzip +- Add missing libs to minizip linker command +- Add support for VPATH builds in contrib/minizip +- Add an --enable-demos option to contrib/minizip/configure +- Add the generation of configure.log by ./configure +- Exit when required parameters not provided to win32/Makefile.gcc +- Have gzputc return the character written instead of the argument +- Use the -m option on ldconfig for BSD systems [Tobias] +- Correct in zlib.map when deflateResetKeep was added + +Changes in 1.2.5.3 (15 Jan 2012) +- Restore gzgetc function for binary compatibility +- Do not use _lseeki64 under Borland C++ [Truta] +- Update win32/Makefile.msc to build test/*.c [Truta] +- Remove old/visualc6 given CMakefile and other alternatives +- Update AS400 build files and documentation [Monnerat] +- Update win32/Makefile.gcc to build test/*.c [Truta] +- Permit stronger flushes after Z_BLOCK flushes +- Avoid extraneous empty blocks when doing empty flushes +- Permit Z_NULL arguments to deflatePending +- Allow deflatePrime() to insert bits in the middle of a stream +- Remove second empty static block for Z_PARTIAL_FLUSH +- Write out all of the available bits when using Z_BLOCK +- Insert the first two strings in the hash table after a flush + +Changes in 1.2.5.2 (17 Dec 2011) +- fix ld error: unable to find version dependency 'ZLIB_1.2.5' +- use relative symlinks for shared libs +- Avoid searching past window for Z_RLE strategy +- Assure that high-water mark initialization is always applied in deflate +- Add assertions to fill_window() in deflate.c to match comments +- Update python link in README +- Correct spelling error in gzread.c +- Fix bug in gzgets() for a concatenated empty gzip stream +- Correct error in comment for gz_make() +- Change gzread() and related to ignore junk after gzip streams +- Allow gzread() and related to continue after gzclearerr() +- Allow gzrewind() and gzseek() after a premature end-of-file +- Simplify gzseek() now that raw after gzip is ignored +- Change gzgetc() to a macro for speed (~40% speedup in testing) +- Fix gzclose() to return the actual error last encountered +- Always add large file support for windows +- Include zconf.h for windows large file support +- Include zconf.h.cmakein for windows large file support +- Update zconf.h.cmakein on make distclean +- Merge vestigial vsnprintf determination from zutil.h to gzguts.h +- Clarify how gzopen() appends in zlib.h comments +- Correct documentation of gzdirect() since junk at end now ignored +- Add a transparent write mode to gzopen() when 'T' is in the mode +- Update python link in zlib man page +- Get inffixed.h and MAKEFIXED result to match +- Add a ./config --solo option to make zlib subset with no libary use +- Add undocumented inflateResetKeep() function for CAB file decoding +- Add --cover option to ./configure for gcc coverage testing +- Add #define ZLIB_CONST option to use const in the z_stream interface +- Add comment to gzdopen() in zlib.h to use dup() when using fileno() +- Note behavior of uncompress() to provide as much data as it can +- Add files in contrib/minizip to aid in building libminizip +- Split off AR options in Makefile.in and configure +- Change ON macro to Z_ARG to avoid application conflicts +- Facilitate compilation with Borland C++ for pragmas and vsnprintf +- Include io.h for Turbo C / Borland C++ +- Move example.c and minigzip.c to test/ +- Simplify incomplete code table filling in inflate_table() +- Remove code from inflate.c and infback.c that is impossible to execute +- Test the inflate code with full coverage +- Allow deflateSetDictionary, inflateSetDictionary at any time (in raw) +- Add deflateResetKeep and fix inflateResetKeep to retain dictionary +- Fix gzwrite.c to accommodate reduced memory zlib compilation +- Have inflate() with Z_FINISH avoid the allocation of a window +- Do not set strm->adler when doing raw inflate +- Fix gzeof() to behave just like feof() when read is not past end of file +- Fix bug in gzread.c when end-of-file is reached +- Avoid use of Z_BUF_ERROR in gz* functions except for premature EOF +- Document gzread() capability to read concurrently written files +- Remove hard-coding of resource compiler in CMakeLists.txt [Blammo] + +Changes in 1.2.5.1 (10 Sep 2011) +- Update FAQ entry on shared builds (#13) +- Avoid symbolic argument to chmod in Makefile.in +- Fix bug and add consts in contrib/puff [Oberhumer] +- Update contrib/puff/zeros.raw test file to have all block types +- Add full coverage test for puff in contrib/puff/Makefile +- Fix static-only-build install in Makefile.in +- Fix bug in unzGetCurrentFileInfo() in contrib/minizip [Kuno] +- Add libz.a dependency to shared in Makefile.in for parallel builds +- Spell out "number" (instead of "nb") in zlib.h for total_in, total_out +- Replace $(...) with `...` in configure for non-bash sh [Bowler] +- Add darwin* to Darwin* and solaris* to SunOS\ 5* in configure [Groffen] +- Add solaris* to Linux* in configure to allow gcc use [Groffen] +- Add *bsd* to Linux* case in configure [Bar-Lev] +- Add inffast.obj to dependencies in win32/Makefile.msc +- Correct spelling error in deflate.h [Kohler] +- Change libzdll.a again to libz.dll.a (!) in win32/Makefile.gcc +- Add test to configure for GNU C looking for gcc in output of $cc -v +- Add zlib.pc generation to win32/Makefile.gcc [Weigelt] +- Fix bug in zlib.h for _FILE_OFFSET_BITS set and _LARGEFILE64_SOURCE not +- Add comment in zlib.h that adler32_combine with len2 < 0 makes no sense +- Make NO_DIVIDE option in adler32.c much faster (thanks to John Reiser) +- Make stronger test in zconf.h to include unistd.h for LFS +- Apply Darwin patches for 64-bit file offsets to contrib/minizip [Slack] +- Fix zlib.h LFS support when Z_PREFIX used +- Add updated as400 support (removed from old) [Monnerat] +- Avoid deflate sensitivity to volatile input data +- Avoid division in adler32_combine for NO_DIVIDE +- Clarify the use of Z_FINISH with deflateBound() amount of space +- Set binary for output file in puff.c +- Use u4 type for crc_table to avoid conversion warnings +- Apply casts in zlib.h to avoid conversion warnings +- Add OF to prototypes for adler32_combine_ and crc32_combine_ [Miller] +- Improve inflateSync() documentation to note indeterminancy +- Add deflatePending() function to return the amount of pending output +- Correct the spelling of "specification" in FAQ [Randers-Pehrson] +- Add a check in configure for stdarg.h, use for gzprintf() +- Check that pointers fit in ints when gzprint() compiled old style +- Add dummy name before $(SHAREDLIBV) in Makefile [Bar-Lev, Bowler] +- Delete line in configure that adds -L. libz.a to LDFLAGS [Weigelt] +- Add debug records in assmebler code [Londer] +- Update RFC references to use http://tools.ietf.org/html/... [Li] +- Add --archs option, use of libtool to configure for Mac OS X [Borstel] + +Changes in 1.2.5 (19 Apr 2010) +- Disable visibility attribute in win32/Makefile.gcc [Bar-Lev] +- Default to libdir as sharedlibdir in configure [Nieder] +- Update copyright dates on modified source files +- Update trees.c to be able to generate modified trees.h +- Exit configure for MinGW, suggesting win32/Makefile.gcc +- Check for NULL path in gz_open [Homurlu] + +Changes in 1.2.4.5 (18 Apr 2010) +- Set sharedlibdir in configure [Torok] +- Set LDFLAGS in Makefile.in [Bar-Lev] +- Avoid mkdir objs race condition in Makefile.in [Bowler] +- Add ZLIB_INTERNAL in front of internal inter-module functions and arrays +- Define ZLIB_INTERNAL to hide internal functions and arrays for GNU C +- Don't use hidden attribute when it is a warning generator (e.g. Solaris) + +Changes in 1.2.4.4 (18 Apr 2010) +- Fix CROSS_PREFIX executable testing, CHOST extract, mingw* [Torok] +- Undefine _LARGEFILE64_SOURCE in zconf.h if it is zero, but not if empty +- Try to use bash or ksh regardless of functionality of /bin/sh +- Fix configure incompatibility with NetBSD sh +- Remove attempt to run under bash or ksh since have better NetBSD fix +- Fix win32/Makefile.gcc for MinGW [Bar-Lev] +- Add diagnostic messages when using CROSS_PREFIX in configure +- Added --sharedlibdir option to configure [Weigelt] +- Use hidden visibility attribute when available [Frysinger] + +Changes in 1.2.4.3 (10 Apr 2010) +- Only use CROSS_PREFIX in configure for ar and ranlib if they exist +- Use CROSS_PREFIX for nm [Bar-Lev] +- Assume _LARGEFILE64_SOURCE defined is equivalent to true +- Avoid use of undefined symbols in #if with && and || +- Make *64 prototypes in gzguts.h consistent with functions +- Add -shared load option for MinGW in configure [Bowler] +- Move z_off64_t to public interface, use instead of off64_t +- Remove ! from shell test in configure (not portable to Solaris) +- Change +0 macro tests to -0 for possibly increased portability + +Changes in 1.2.4.2 (9 Apr 2010) +- Add consistent carriage returns to readme.txt's in masmx86 and masmx64 +- Really provide prototypes for *64 functions when building without LFS +- Only define unlink() in minigzip.c if unistd.h not included +- Update README to point to contrib/vstudio project files +- Move projects/vc6 to old/ and remove projects/ +- Include stdlib.h in minigzip.c for setmode() definition under WinCE +- Clean up assembler builds in win32/Makefile.msc [Rowe] +- Include sys/types.h for Microsoft for off_t definition +- Fix memory leak on error in gz_open() +- Symbolize nm as $NM in configure [Weigelt] +- Use TEST_LDSHARED instead of LDSHARED to link test programs [Weigelt] +- Add +0 to _FILE_OFFSET_BITS and _LFS64_LARGEFILE in case not defined +- Fix bug in gzeof() to take into account unused input data +- Avoid initialization of structures with variables in puff.c +- Updated win32/README-WIN32.txt [Rowe] + +Changes in 1.2.4.1 (28 Mar 2010) +- Remove the use of [a-z] constructs for sed in configure [gentoo 310225] +- Remove $(SHAREDLIB) from LIBS in Makefile.in [Creech] +- Restore "for debugging" comment on sprintf() in gzlib.c +- Remove fdopen for MVS from gzguts.h +- Put new README-WIN32.txt in win32 [Rowe] +- Add check for shell to configure and invoke another shell if needed +- Fix big fat stinking bug in gzseek() on uncompressed files +- Remove vestigial F_OPEN64 define in zutil.h +- Set and check the value of _LARGEFILE_SOURCE and _LARGEFILE64_SOURCE +- Avoid errors on non-LFS systems when applications define LFS macros +- Set EXE to ".exe" in configure for MINGW [Kahle] +- Match crc32() in crc32.c exactly to the prototype in zlib.h [Sherrill] +- Add prefix for cross-compilation in win32/makefile.gcc [Bar-Lev] +- Add DLL install in win32/makefile.gcc [Bar-Lev] +- Allow Linux* or linux* from uname in configure [Bar-Lev] +- Allow ldconfig to be redefined in configure and Makefile.in [Bar-Lev] +- Add cross-compilation prefixes to configure [Bar-Lev] +- Match type exactly in gz_load() invocation in gzread.c +- Match type exactly of zcalloc() in zutil.c to zlib.h alloc_func +- Provide prototypes for *64 functions when building zlib without LFS +- Don't use -lc when linking shared library on MinGW +- Remove errno.h check in configure and vestigial errno code in zutil.h + +Changes in 1.2.4 (14 Mar 2010) +- Fix VER3 extraction in configure for no fourth subversion +- Update zlib.3, add docs to Makefile.in to make .pdf out of it +- Add zlib.3.pdf to distribution +- Don't set error code in gzerror() if passed pointer is NULL +- Apply destination directory fixes to CMakeLists.txt [Lowman] +- Move #cmakedefine's to a new zconf.in.cmakein +- Restore zconf.h for builds that don't use configure or cmake +- Add distclean to dummy Makefile for convenience +- Update and improve INDEX, README, and FAQ +- Update CMakeLists.txt for the return of zconf.h [Lowman] +- Update contrib/vstudio/vc9 and vc10 [Vollant] +- Change libz.dll.a back to libzdll.a in win32/Makefile.gcc +- Apply license and readme changes to contrib/asm686 [Raiter] +- Check file name lengths and add -c option in minigzip.c [Li] +- Update contrib/amd64 and contrib/masmx86/ [Vollant] +- Avoid use of "eof" parameter in trees.c to not shadow library variable +- Update make_vms.com for removal of zlibdefs.h [Zinser] +- Update assembler code and vstudio projects in contrib [Vollant] +- Remove outdated assembler code contrib/masm686 and contrib/asm586 +- Remove old vc7 and vc8 from contrib/vstudio +- Update win32/Makefile.msc, add ZLIB_VER_SUBREVISION [Rowe] +- Fix memory leaks in gzclose_r() and gzclose_w(), file leak in gz_open() +- Add contrib/gcc_gvmat64 for longest_match and inflate_fast [Vollant] +- Remove *64 functions from win32/zlib.def (they're not 64-bit yet) +- Fix bug in void-returning vsprintf() case in gzwrite.c +- Fix name change from inflate.h in contrib/inflate86/inffas86.c +- Check if temporary file exists before removing in make_vms.com [Zinser] +- Fix make install and uninstall for --static option +- Fix usage of _MSC_VER in gzguts.h and zutil.h [Truta] +- Update readme.txt in contrib/masmx64 and masmx86 to assemble + +Changes in 1.2.3.9 (21 Feb 2010) +- Expunge gzio.c +- Move as400 build information to old +- Fix updates in contrib/minizip and contrib/vstudio +- Add const to vsnprintf test in configure to avoid warnings [Weigelt] +- Delete zconf.h (made by configure) [Weigelt] +- Change zconf.in.h to zconf.h.in per convention [Weigelt] +- Check for NULL buf in gzgets() +- Return empty string for gzgets() with len == 1 (like fgets()) +- Fix description of gzgets() in zlib.h for end-of-file, NULL return +- Update minizip to 1.1 [Vollant] +- Avoid MSVC loss of data warnings in gzread.c, gzwrite.c +- Note in zlib.h that gzerror() should be used to distinguish from EOF +- Remove use of snprintf() from gzlib.c +- Fix bug in gzseek() +- Update contrib/vstudio, adding vc9 and vc10 [Kuno, Vollant] +- Fix zconf.h generation in CMakeLists.txt [Lowman] +- Improve comments in zconf.h where modified by configure + +Changes in 1.2.3.8 (13 Feb 2010) +- Clean up text files (tabs, trailing whitespace, etc.) [Oberhumer] +- Use z_off64_t in gz_zero() and gz_skip() to match state->skip +- Avoid comparison problem when sizeof(int) == sizeof(z_off64_t) +- Revert to Makefile.in from 1.2.3.6 (live with the clutter) +- Fix missing error return in gzflush(), add zlib.h note +- Add *64 functions to zlib.map [Levin] +- Fix signed/unsigned comparison in gz_comp() +- Use SFLAGS when testing shared linking in configure +- Add --64 option to ./configure to use -m64 with gcc +- Fix ./configure --help to correctly name options +- Have make fail if a test fails [Levin] +- Avoid buffer overrun in contrib/masmx64/gvmat64.asm [Simpson] +- Remove assembler object files from contrib + +Changes in 1.2.3.7 (24 Jan 2010) +- Always gzopen() with O_LARGEFILE if available +- Fix gzdirect() to work immediately after gzopen() or gzdopen() +- Make gzdirect() more precise when the state changes while reading +- Improve zlib.h documentation in many places +- Catch memory allocation failure in gz_open() +- Complete close operation if seek forward in gzclose_w() fails +- Return Z_ERRNO from gzclose_r() if close() fails +- Return Z_STREAM_ERROR instead of EOF for gzclose() being passed NULL +- Return zero for gzwrite() errors to match zlib.h description +- Return -1 on gzputs() error to match zlib.h description +- Add zconf.in.h to allow recovery from configure modification [Weigelt] +- Fix static library permissions in Makefile.in [Weigelt] +- Avoid warnings in configure tests that hide functionality [Weigelt] +- Add *BSD and DragonFly to Linux case in configure [gentoo 123571] +- Change libzdll.a to libz.dll.a in win32/Makefile.gcc [gentoo 288212] +- Avoid access of uninitialized data for first inflateReset2 call [Gomes] +- Keep object files in subdirectories to reduce the clutter somewhat +- Remove default Makefile and zlibdefs.h, add dummy Makefile +- Add new external functions to Z_PREFIX, remove duplicates, z_z_ -> z_ +- Remove zlibdefs.h completely -- modify zconf.h instead + +Changes in 1.2.3.6 (17 Jan 2010) +- Avoid void * arithmetic in gzread.c and gzwrite.c +- Make compilers happier with const char * for gz_error message +- Avoid unused parameter warning in inflate.c +- Avoid signed-unsigned comparison warning in inflate.c +- Indent #pragma's for traditional C +- Fix usage of strwinerror() in glib.c, change to gz_strwinerror() +- Correct email address in configure for system options +- Update make_vms.com and add make_vms.com to contrib/minizip [Zinser] +- Update zlib.map [Brown] +- Fix Makefile.in for Solaris 10 make of example64 and minizip64 [Torok] +- Apply various fixes to CMakeLists.txt [Lowman] +- Add checks on len in gzread() and gzwrite() +- Add error message for no more room for gzungetc() +- Remove zlib version check in gzwrite() +- Defer compression of gzprintf() result until need to +- Use snprintf() in gzdopen() if available +- Remove USE_MMAP configuration determination (only used by minigzip) +- Remove examples/pigz.c (available separately) +- Update examples/gun.c to 1.6 + +Changes in 1.2.3.5 (8 Jan 2010) +- Add space after #if in zutil.h for some compilers +- Fix relatively harmless bug in deflate_fast() [Exarevsky] +- Fix same problem in deflate_slow() +- Add $(SHAREDLIBV) to LIBS in Makefile.in [Brown] +- Add deflate_rle() for faster Z_RLE strategy run-length encoding +- Add deflate_huff() for faster Z_HUFFMAN_ONLY encoding +- Change name of "write" variable in inffast.c to avoid library collisions +- Fix premature EOF from gzread() in gzio.c [Brown] +- Use zlib header window size if windowBits is 0 in inflateInit2() +- Remove compressBound() call in deflate.c to avoid linking compress.o +- Replace use of errno in gz* with functions, support WinCE [Alves] +- Provide alternative to perror() in minigzip.c for WinCE [Alves] +- Don't use _vsnprintf on later versions of MSVC [Lowman] +- Add CMake build script and input file [Lowman] +- Update contrib/minizip to 1.1 [Svensson, Vollant] +- Moved nintendods directory from contrib to . +- Replace gzio.c with a new set of routines with the same functionality +- Add gzbuffer(), gzoffset(), gzclose_r(), gzclose_w() as part of above +- Update contrib/minizip to 1.1b +- Change gzeof() to return 0 on error instead of -1 to agree with zlib.h + +Changes in 1.2.3.4 (21 Dec 2009) +- Use old school .SUFFIXES in Makefile.in for FreeBSD compatibility +- Update comments in configure and Makefile.in for default --shared +- Fix test -z's in configure [Marquess] +- Build examplesh and minigzipsh when not testing +- Change NULL's to Z_NULL's in deflate.c and in comments in zlib.h +- Import LDFLAGS from the environment in configure +- Fix configure to populate SFLAGS with discovered CFLAGS options +- Adapt make_vms.com to the new Makefile.in [Zinser] +- Add zlib2ansi script for C++ compilation [Marquess] +- Add _FILE_OFFSET_BITS=64 test to make test (when applicable) +- Add AMD64 assembler code for longest match to contrib [Teterin] +- Include options from $SFLAGS when doing $LDSHARED +- Simplify 64-bit file support by introducing z_off64_t type +- Make shared object files in objs directory to work around old Sun cc +- Use only three-part version number for Darwin shared compiles +- Add rc option to ar in Makefile.in for when ./configure not run +- Add -WI,-rpath,. to LDFLAGS for OSF 1 V4* +- Set LD_LIBRARYN32_PATH for SGI IRIX shared compile +- Protect against _FILE_OFFSET_BITS being defined when compiling zlib +- Rename Makefile.in targets allstatic to static and allshared to shared +- Fix static and shared Makefile.in targets to be independent +- Correct error return bug in gz_open() by setting state [Brown] +- Put spaces before ;;'s in configure for better sh compatibility +- Add pigz.c (parallel implementation of gzip) to examples/ +- Correct constant in crc32.c to UL [Leventhal] +- Reject negative lengths in crc32_combine() +- Add inflateReset2() function to work like inflateEnd()/inflateInit2() +- Include sys/types.h for _LARGEFILE64_SOURCE [Brown] +- Correct typo in doc/algorithm.txt [Janik] +- Fix bug in adler32_combine() [Zhu] +- Catch missing-end-of-block-code error in all inflates and in puff + Assures that random input to inflate eventually results in an error +- Added enough.c (calculation of ENOUGH for inftrees.h) to examples/ +- Update ENOUGH and its usage to reflect discovered bounds +- Fix gzerror() error report on empty input file [Brown] +- Add ush casts in trees.c to avoid pedantic runtime errors +- Fix typo in zlib.h uncompress() description [Reiss] +- Correct inflate() comments with regard to automatic header detection +- Remove deprecation comment on Z_PARTIAL_FLUSH (it stays) +- Put new version of gzlog (2.0) in examples with interruption recovery +- Add puff compile option to permit invalid distance-too-far streams +- Add puff TEST command options, ability to read piped input +- Prototype the *64 functions in zlib.h when _FILE_OFFSET_BITS == 64, but + _LARGEFILE64_SOURCE not defined +- Fix Z_FULL_FLUSH to truly erase the past by resetting s->strstart +- Fix deflateSetDictionary() to use all 32K for output consistency +- Remove extraneous #define MIN_LOOKAHEAD in deflate.c (in deflate.h) +- Clear bytes after deflate lookahead to avoid use of uninitialized data +- Change a limit in inftrees.c to be more transparent to Coverity Prevent +- Update win32/zlib.def with exported symbols from zlib.h +- Correct spelling errors in zlib.h [Willem, Sobrado] +- Allow Z_BLOCK for deflate() to force a new block +- Allow negative bits in inflatePrime() to delete existing bit buffer +- Add Z_TREES flush option to inflate() to return at end of trees +- Add inflateMark() to return current state information for random access +- Add Makefile for NintendoDS to contrib [Costa] +- Add -w in configure compile tests to avoid spurious warnings [Beucler] +- Fix typos in zlib.h comments for deflateSetDictionary() +- Fix EOF detection in transparent gzread() [Maier] + +Changes in 1.2.3.3 (2 October 2006) +- Make --shared the default for configure, add a --static option +- Add compile option to permit invalid distance-too-far streams +- Add inflateUndermine() function which is required to enable above +- Remove use of "this" variable name for C++ compatibility [Marquess] +- Add testing of shared library in make test, if shared library built +- Use ftello() and fseeko() if available instead of ftell() and fseek() +- Provide two versions of all functions that use the z_off_t type for + binary compatibility -- a normal version and a 64-bit offset version, + per the Large File Support Extension when _LARGEFILE64_SOURCE is + defined; use the 64-bit versions by default when _FILE_OFFSET_BITS + is defined to be 64 +- Add a --uname= option to configure to perhaps help with cross-compiling + +Changes in 1.2.3.2 (3 September 2006) +- Turn off silly Borland warnings [Hay] +- Use off64_t and define _LARGEFILE64_SOURCE when present +- Fix missing dependency on inffixed.h in Makefile.in +- Rig configure --shared to build both shared and static [Teredesai, Truta] +- Remove zconf.in.h and instead create a new zlibdefs.h file +- Fix contrib/minizip/unzip.c non-encrypted after encrypted [Vollant] +- Add treebuild.xml (see http://treebuild.metux.de/) [Weigelt] + +Changes in 1.2.3.1 (16 August 2006) +- Add watcom directory with OpenWatcom make files [Daniel] +- Remove #undef of FAR in zconf.in.h for MVS [Fedtke] +- Update make_vms.com [Zinser] +- Use -fPIC for shared build in configure [Teredesai, Nicholson] +- Use only major version number for libz.so on IRIX and OSF1 [Reinholdtsen] diff --git a/zlib-1.2.7/.!3202!ChangeLogr b/zlib-1.2.7/.!3202!ChangeLogr new file mode 100755 index 000000000..cb741e5a7 --- /dev/null +++ b/zlib-1.2.7/.!3202!ChangeLogr @@ -0,0 +1,503 @@ + + ChangeLog file for zlib + +Changes in 1.2.7 (2 May 2012) +- Replace use of memmove() with a simple copy for portability +- Test for existence of strerror +- Restore gzgetc_ for backward compatibility with 1.2.6 +- Fix build with non-GNU make on Solaris +- Require gcc 4.0 or later on Mac OS X to use the hidden attribute +- Include unistd.h for Watcom C +- Use __WATCOMC__ instead of __WATCOM__ +- Do not use the visibility attribute if NO_VIZ defined +- Improve the detection of no hidden visibility attribute +- Avoid using __int64 for gcc or solo compilation +- Cast to char * in gzprintf to avoid warnings [Zinser] +- Fix make_vms.com for VAX [Zinser] +- Don't use library or built-in byte swaps +- Simplify test and use of gcc hidden attribute +- Fix bug in gzclose_w() when gzwrite() fails to allocate memory +- Add "x" (O_EXCL) and "e" (O_CLOEXEC) modes support to gzopen() +- Fix bug in test/minigzip.c for configure --solo +- Fix contrib/vstudio project link errors [Mohanathas] +- Add ability to choose the builder in make_vms.com [Schweda] +- Add DESTDIR support to mingw32 win32/Makefile.gcc +- Fix comments in win32/Makefile.gcc for proper usage +- Allow overriding the default install locations for cmake +- Generate and install the pkg-config file with cmake +- Build both a static and a shared version of zlib with cmake +- Include version symbols for cmake builds +- If using cmake with MSVC, add the source directory to the includes +- Remove unneeded EXTRA_CFLAGS from win32/Makefile.gcc [Truta] +- Move obsolete emx makefile to old [Truta] +- Allow the use of -Wundef when compiling or using zlib +- Avoid the use of the -u option with mktemp +- Improve inflate() documentation on the use of Z_FINISH +- Recognize clang as gcc +- Add gzopen_w() in Windows for wide character path names +- Rename zconf.h in CMakeLists.txt to move it out of the way +- Add source directory in CMakeLists.txt for building examples +- Look in build directory for zlib.pc in CMakeLists.txt +- Remove gzflags from zlibvc.def in vc9 and vc10 +- Fix contrib/minizip compilation in the MinGW environment +- Update ./configure for Solaris, support --64 [Mooney] +- Remove -R. from Solaris shared build (possible security issue) +- Avoid race condition for parallel make (-j) running example +- Fix type mismatch between get_crc_table() and crc_table +- Fix parsing of version with "-" in CMakeLists.txt [Snider, Ziegler] +- Fix the path to zlib.map in CMakeLists.txt +- Force the native libtool in Mac OS X to avoid GNU libtool [Beebe] +- Add instructions to win32/Makefile.gcc for shared install [Torri] + +Changes in 1.2.6.1 (12 Feb 2012) +- Avoid the use of the Objective-C reserved name "id" +- Include io.h in gzguts.h for Microsoft compilers +- Fix problem with ./configure --prefix and gzgetc macro +- Include gz_header definition when compiling zlib solo +- Put gzflags() functionality back in zutil.c +- Avoid library header include in crc32.c for Z_SOLO +- Use name in GCC_CLASSIC as C compiler for coverage testing, if set +- Minor cleanup in contrib/minizip/zip.c [Vollant] +- Update make_vms.com [Zinser] +- Remove unnecessary gzgetc_ function +- Use optimized byte swap operations for Microsoft and GNU [Snyder] +- Fix minor typo in zlib.h comments [Rzesniowiecki] + +Changes in 1.2.6 (29 Jan 2012) +- Update the Pascal interface in contrib/pascal +- Fix function numbers for gzgetc_ in zlibvc.def files +- Fix configure.ac for contrib/minizip [Schiffer] +- Fix large-entry detection in minizip on 64-bit systems [Schiffer] +- Have ./configure use the compiler return code for error indication +- Fix CMakeLists.txt for cross compilation [McClure] +- Fix contrib/minizip/zip.c for 64-bit architectures [Dalsnes] +- Fix compilation of contrib/minizip on FreeBSD [Marquez] +- Correct suggested usages in win32/Makefile.msc [Shachar, Horvath] +- Include io.h for Turbo C / Borland C on all platforms [Truta] +- Make version explicit in contrib/minizip/configure.ac [Bosmans] +- Avoid warning for no encryption in contrib/minizip/zip.c [Vollant] +- Minor cleanup up contrib/minizip/unzip.c [Vollant] +- Fix bug when compiling minizip with C++ [Vollant] +- Protect for long name and extra fields in contrib/minizip [Vollant] +- Avoid some warnings in contrib/minizip [Vollant] +- Add -I../.. -L../.. to CFLAGS for minizip and miniunzip +- Add missing libs to minizip linker command +- Add support for VPATH builds in contrib/minizip +- Add an --enable-demos option to contrib/minizip/configure +- Add the generation of configure.log by ./configure +- Exit when required parameters not provided to win32/Makefile.gcc +- Have gzputc return the character written instead of the argument +- Use the -m option on ldconfig for BSD systems [Tobias] +- Correct in zlib.map when deflateResetKeep was added + +Changes in 1.2.5.3 (15 Jan 2012) +- Restore gzgetc function for binary compatibility +- Do not use _lseeki64 under Borland C++ [Truta] +- Update win32/Makefile.msc to build test/*.c [Truta] +- Remove old/visualc6 given CMakefile and other alternatives +- Update AS400 build files and documentation [Monnerat] +- Update win32/Makefile.gcc to build test/*.c [Truta] +- Permit stronger flushes after Z_BLOCK flushes +- Avoid extraneous empty blocks when doing empty flushes +- Permit Z_NULL arguments to deflatePending +- Allow deflatePrime() to insert bits in the middle of a stream +- Remove second empty static block for Z_PARTIAL_FLUSH +- Write out all of the available bits when using Z_BLOCK +- Insert the first two strings in the hash table after a flush + +Changes in 1.2.5.2 (17 Dec 2011) +- fix ld error: unable to find version dependency 'ZLIB_1.2.5' +- use relative symlinks for shared libs +- Avoid searching past window for Z_RLE strategy +- Assure that high-water mark initialization is always applied in deflate +- Add assertions to fill_window() in deflate.c to match comments +- Update python link in README +- Correct spelling error in gzread.c +- Fix bug in gzgets() for a concatenated empty gzip stream +- Correct error in comment for gz_make() +- Change gzread() and related to ignore junk after gzip streams +- Allow gzread() and related to continue after gzclearerr() +- Allow gzrewind() and gzseek() after a premature end-of-file +- Simplify gzseek() now that raw after gzip is ignored +- Change gzgetc() to a macro for speed (~40% speedup in testing) +- Fix gzclose() to return the actual error last encountered +- Always add large file support for windows +- Include zconf.h for windows large file support +- Include zconf.h.cmakein for windows large file support +- Update zconf.h.cmakein on make distclean +- Merge vestigial vsnprintf determination from zutil.h to gzguts.h +- Clarify how gzopen() appends in zlib.h comments +- Correct documentation of gzdirect() since junk at end now ignored +- Add a transparent write mode to gzopen() when 'T' is in the mode +- Update python link in zlib man page +- Get inffixed.h and MAKEFIXED result to match +- Add a ./config --solo option to make zlib subset with no libary use +- Add undocumented inflateResetKeep() function for CAB file decoding +- Add --cover option to ./configure for gcc coverage testing +- Add #define ZLIB_CONST option to use const in the z_stream interface +- Add comment to gzdopen() in zlib.h to use dup() when using fileno() +- Note behavior of uncompress() to provide as much data as it can +- Add files in contrib/minizip to aid in building libminizip +- Split off AR options in Makefile.in and configure +- Change ON macro to Z_ARG to avoid application conflicts +- Facilitate compilation with Borland C++ for pragmas and vsnprintf +- Include io.h for Turbo C / Borland C++ +- Move example.c and minigzip.c to test/ +- Simplify incomplete code table filling in inflate_table() +- Remove code from inflate.c and infback.c that is impossible to execute +- Test the inflate code with full coverage +- Allow deflateSetDictionary, inflateSetDictionary at any time (in raw) +- Add deflateResetKeep and fix inflateResetKeep to retain dictionary +- Fix gzwrite.c to accommodate reduced memory zlib compilation +- Have inflate() with Z_FINISH avoid the allocation of a window +- Do not set strm->adler when doing raw inflate +- Fix gzeof() to behave just like feof() when read is not past end of file +- Fix bug in gzread.c when end-of-file is reached +- Avoid use of Z_BUF_ERROR in gz* functions except for premature EOF +- Document gzread() capability to read concurrently written files +- Remove hard-coding of resource compiler in CMakeLists.txt [Blammo] + +Changes in 1.2.5.1 (10 Sep 2011) +- Update FAQ entry on shared builds (#13) +- Avoid symbolic argument to chmod in Makefile.in +- Fix bug and add consts in contrib/puff [Oberhumer] +- Update contrib/puff/zeros.raw test file to have all block types +- Add full coverage test for puff in contrib/puff/Makefile +- Fix static-only-build install in Makefile.in +- Fix bug in unzGetCurrentFileInfo() in contrib/minizip [Kuno] +- Add libz.a dependency to shared in Makefile.in for parallel builds +- Spell out "number" (instead of "nb") in zlib.h for total_in, total_out +- Replace $(...) with `...` in configure for non-bash sh [Bowler] +- Add darwin* to Darwin* and solaris* to SunOS\ 5* in configure [Groffen] +- Add solaris* to Linux* in configure to allow gcc use [Groffen] +- Add *bsd* to Linux* case in configure [Bar-Lev] +- Add inffast.obj to dependencies in win32/Makefile.msc +- Correct spelling error in deflate.h [Kohler] +- Change libzdll.a again to libz.dll.a (!) in win32/Makefile.gcc +- Add test to configure for GNU C looking for gcc in output of $cc -v +- Add zlib.pc generation to win32/Makefile.gcc [Weigelt] +- Fix bug in zlib.h for _FILE_OFFSET_BITS set and _LARGEFILE64_SOURCE not +- Add comment in zlib.h that adler32_combine with len2 < 0 makes no sense +- Make NO_DIVIDE option in adler32.c much faster (thanks to John Reiser) +- Make stronger test in zconf.h to include unistd.h for LFS +- Apply Darwin patches for 64-bit file offsets to contrib/minizip [Slack] +- Fix zlib.h LFS support when Z_PREFIX used +- Add updated as400 support (removed from old) [Monnerat] +- Avoid deflate sensitivity to volatile input data +- Avoid division in adler32_combine for NO_DIVIDE +- Clarify the use of Z_FINISH with deflateBound() amount of space +- Set binary for output file in puff.c +- Use u4 type for crc_table to avoid conversion warnings +- Apply casts in zlib.h to avoid conversion warnings +- Add OF to prototypes for adler32_combine_ and crc32_combine_ [Miller] +- Improve inflateSync() documentation to note indeterminancy +- Add deflatePending() function to return the amount of pending output +- Correct the spelling of "specification" in FAQ [Randers-Pehrson] +- Add a check in configure for stdarg.h, use for gzprintf() +- Check that pointers fit in ints when gzprint() compiled old style +- Add dummy name before $(SHAREDLIBV) in Makefile [Bar-Lev, Bowler] +- Delete line in configure that adds -L. libz.a to LDFLAGS [Weigelt] +- Add debug records in assmebler code [Londer] +- Update RFC references to use http://tools.ietf.org/html/... [Li] +- Add --archs option, use of libtool to configure for Mac OS X [Borstel] + +Changes in 1.2.5 (19 Apr 2010) +- Disable visibility attribute in win32/Makefile.gcc [Bar-Lev] +- Default to libdir as sharedlibdir in configure [Nieder] +- Update copyright dates on modified source files +- Update trees.c to be able to generate modified trees.h +- Exit configure for MinGW, suggesting win32/Makefile.gcc +- Check for NULL path in gz_open [Homurlu] + +Changes in 1.2.4.5 (18 Apr 2010) +- Set sharedlibdir in configure [Torok] +- Set LDFLAGS in Makefile.in [Bar-Lev] +- Avoid mkdir objs race condition in Makefile.in [Bowler] +- Add ZLIB_INTERNAL in front of internal inter-module functions and arrays +- Define ZLIB_INTERNAL to hide internal functions and arrays for GNU C +- Don't use hidden attribute when it is a warning generator (e.g. Solaris) + +Changes in 1.2.4.4 (18 Apr 2010) +- Fix CROSS_PREFIX executable testing, CHOST extract, mingw* [Torok] +- Undefine _LARGEFILE64_SOURCE in zconf.h if it is zero, but not if empty +- Try to use bash or ksh regardless of functionality of /bin/sh +- Fix configure incompatibility with NetBSD sh +- Remove attempt to run under bash or ksh since have better NetBSD fix +- Fix win32/Makefile.gcc for MinGW [Bar-Lev] +- Add diagnostic messages when using CROSS_PREFIX in configure +- Added --sharedlibdir option to configure [Weigelt] +- Use hidden visibility attribute when available [Frysinger] + +Changes in 1.2.4.3 (10 Apr 2010) +- Only use CROSS_PREFIX in configure for ar and ranlib if they exist +- Use CROSS_PREFIX for nm [Bar-Lev] +- Assume _LARGEFILE64_SOURCE defined is equivalent to true +- Avoid use of undefined symbols in #if with && and || +- Make *64 prototypes in gzguts.h consistent with functions +- Add -shared load option for MinGW in configure [Bowler] +- Move z_off64_t to public interface, use instead of off64_t +- Remove ! from shell test in configure (not portable to Solaris) +- Change +0 macro tests to -0 for possibly increased portability + +Changes in 1.2.4.2 (9 Apr 2010) +- Add consistent carriage returns to readme.txt's in masmx86 and masmx64 +- Really provide prototypes for *64 functions when building without LFS +- Only define unlink() in minigzip.c if unistd.h not included +- Update README to point to contrib/vstudio project files +- Move projects/vc6 to old/ and remove projects/ +- Include stdlib.h in minigzip.c for setmode() definition under WinCE +- Clean up assembler builds in win32/Makefile.msc [Rowe] +- Include sys/types.h for Microsoft for off_t definition +- Fix memory leak on error in gz_open() +- Symbolize nm as $NM in configure [Weigelt] +- Use TEST_LDSHARED instead of LDSHARED to link test programs [Weigelt] +- Add +0 to _FILE_OFFSET_BITS and _LFS64_LARGEFILE in case not defined +- Fix bug in gzeof() to take into account unused input data +- Avoid initialization of structures with variables in puff.c +- Updated win32/README-WIN32.txt [Rowe] + +Changes in 1.2.4.1 (28 Mar 2010) +- Remove the use of [a-z] constructs for sed in configure [gentoo 310225] +- Remove $(SHAREDLIB) from LIBS in Makefile.in [Creech] +- Restore "for debugging" comment on sprintf() in gzlib.c +- Remove fdopen for MVS from gzguts.h +- Put new README-WIN32.txt in win32 [Rowe] +- Add check for shell to configure and invoke another shell if needed +- Fix big fat stinking bug in gzseek() on uncompressed files +- Remove vestigial F_OPEN64 define in zutil.h +- Set and check the value of _LARGEFILE_SOURCE and _LARGEFILE64_SOURCE +- Avoid errors on non-LFS systems when applications define LFS macros +- Set EXE to ".exe" in configure for MINGW [Kahle] +- Match crc32() in crc32.c exactly to the prototype in zlib.h [Sherrill] +- Add prefix for cross-compilation in win32/makefile.gcc [Bar-Lev] +- Add DLL install in win32/makefile.gcc [Bar-Lev] +- Allow Linux* or linux* from uname in configure [Bar-Lev] +- Allow ldconfig to be redefined in configure and Makefile.in [Bar-Lev] +- Add cross-compilation prefixes to configure [Bar-Lev] +- Match type exactly in gz_load() invocation in gzread.c +- Match type exactly of zcalloc() in zutil.c to zlib.h alloc_func +- Provide prototypes for *64 functions when building zlib without LFS +- Don't use -lc when linking shared library on MinGW +- Remove errno.h check in configure and vestigial errno code in zutil.h + +Changes in 1.2.4 (14 Mar 2010) +- Fix VER3 extraction in configure for no fourth subversion +- Update zlib.3, add docs to Makefile.in to make .pdf out of it +- Add zlib.3.pdf to distribution +- Don't set error code in gzerror() if passed pointer is NULL +- Apply destination directory fixes to CMakeLists.txt [Lowman] +- Move #cmakedefine's to a new zconf.in.cmakein +- Restore zconf.h for builds that don't use configure or cmake +- Add distclean to dummy Makefile for convenience +- Update and improve INDEX, README, and FAQ +- Update CMakeLists.txt for the return of zconf.h [Lowman] +- Update contrib/vstudio/vc9 and vc10 [Vollant] +- Change libz.dll.a back to libzdll.a in win32/Makefile.gcc +- Apply license and readme changes to contrib/asm686 [Raiter] +- Check file name lengths and add -c option in minigzip.c [Li] +- Update contrib/amd64 and contrib/masmx86/ [Vollant] +- Avoid use of "eof" parameter in trees.c to not shadow library variable +- Update make_vms.com for removal of zlibdefs.h [Zinser] +- Update assembler code and vstudio projects in contrib [Vollant] +- Remove outdated assembler code contrib/masm686 and contrib/asm586 +- Remove old vc7 and vc8 from contrib/vstudio +- Update win32/Makefile.msc, add ZLIB_VER_SUBREVISION [Rowe] +- Fix memory leaks in gzclose_r() and gzclose_w(), file leak in gz_open() +- Add contrib/gcc_gvmat64 for longest_match and inflate_fast [Vollant] +- Remove *64 functions from win32/zlib.def (they're not 64-bit yet) +- Fix bug in void-returning vsprintf() case in gzwrite.c +- Fix name change from inflate.h in contrib/inflate86/inffas86.c +- Check if temporary file exists before removing in make_vms.com [Zinser] +- Fix make install and uninstall for --static option +- Fix usage of _MSC_VER in gzguts.h and zutil.h [Truta] +- Update readme.txt in contrib/masmx64 and masmx86 to assemble + +Changes in 1.2.3.9 (21 Feb 2010) +- Expunge gzio.c +- Move as400 build information to old +- Fix updates in contrib/minizip and contrib/vstudio +- Add const to vsnprintf test in configure to avoid warnings [Weigelt] +- Delete zconf.h (made by configure) [Weigelt] +- Change zconf.in.h to zconf.h.in per convention [Weigelt] +- Check for NULL buf in gzgets() +- Return empty string for gzgets() with len == 1 (like fgets()) +- Fix description of gzgets() in zlib.h for end-of-file, NULL return +- Update minizip to 1.1 [Vollant] +- Avoid MSVC loss of data warnings in gzread.c, gzwrite.c +- Note in zlib.h that gzerror() should be used to distinguish from EOF +- Remove use of snprintf() from gzlib.c +- Fix bug in gzseek() +- Update contrib/vstudio, adding vc9 and vc10 [Kuno, Vollant] +- Fix zconf.h generation in CMakeLists.txt [Lowman] +- Improve comments in zconf.h where modified by configure + +Changes in 1.2.3.8 (13 Feb 2010) +- Clean up text files (tabs, trailing whitespace, etc.) [Oberhumer] +- Use z_off64_t in gz_zero() and gz_skip() to match state->skip +- Avoid comparison problem when sizeof(int) == sizeof(z_off64_t) +- Revert to Makefile.in from 1.2.3.6 (live with the clutter) +- Fix missing error return in gzflush(), add zlib.h note +- Add *64 functions to zlib.map [Levin] +- Fix signed/unsigned comparison in gz_comp() +- Use SFLAGS when testing shared linking in configure +- Add --64 option to ./configure to use -m64 with gcc +- Fix ./configure --help to correctly name options +- Have make fail if a test fails [Levin] +- Avoid buffer overrun in contrib/masmx64/gvmat64.asm [Simpson] +- Remove assembler object files from contrib + +Changes in 1.2.3.7 (24 Jan 2010) +- Always gzopen() with O_LARGEFILE if available +- Fix gzdirect() to work immediately after gzopen() or gzdopen() +- Make gzdirect() more precise when the state changes while reading +- Improve zlib.h documentation in many places +- Catch memory allocation failure in gz_open() +- Complete close operation if seek forward in gzclose_w() fails +- Return Z_ERRNO from gzclose_r() if close() fails +- Return Z_STREAM_ERROR instead of EOF for gzclose() being passed NULL +- Return zero for gzwrite() errors to match zlib.h description +- Return -1 on gzputs() error to match zlib.h description +- Add zconf.in.h to allow recovery from configure modification [Weigelt] +- Fix static library permissions in Makefile.in [Weigelt] +- Avoid warnings in configure tests that hide functionality [Weigelt] +- Add *BSD and DragonFly to Linux case in configure [gentoo 123571] +- Change libzdll.a to libz.dll.a in win32/Makefile.gcc [gentoo 288212] +- Avoid access of uninitialized data for first inflateReset2 call [Gomes] +- Keep object files in subdirectories to reduce the clutter somewhat +- Remove default Makefile and zlibdefs.h, add dummy Makefile +- Add new external functions to Z_PREFIX, remove duplicates, z_z_ -> z_ +- Remove zlibdefs.h completely -- modify zconf.h instead + +Changes in 1.2.3.6 (17 Jan 2010) +- Avoid void * arithmetic in gzread.c and gzwrite.c +- Make compilers happier with const char * for gz_error message +- Avoid unused parameter warning in inflate.c +- Avoid signed-unsigned comparison warning in inflate.c +- Indent #pragma's for traditional C +- Fix usage of strwinerror() in glib.c, change to gz_strwinerror() +- Correct email address in configure for system options +- Update make_vms.com and add make_vms.com to contrib/minizip [Zinser] +- Update zlib.map [Brown] +- Fix Makefile.in for Solaris 10 make of example64 and minizip64 [Torok] +- Apply various fixes to CMakeLists.txt [Lowman] +- Add checks on len in gzread() and gzwrite() +- Add error message for no more room for gzungetc() +- Remove zlib version check in gzwrite() +- Defer compression of gzprintf() result until need to +- Use snprintf() in gzdopen() if available +- Remove USE_MMAP configuration determination (only used by minigzip) +- Remove examples/pigz.c (available separately) +- Update examples/gun.c to 1.6 + +Changes in 1.2.3.5 (8 Jan 2010) +- Add space after #if in zutil.h for some compilers +- Fix relatively harmless bug in deflate_fast() [Exarevsky] +- Fix same problem in deflate_slow() +- Add $(SHAREDLIBV) to LIBS in Makefile.in [Brown] +- Add deflate_rle() for faster Z_RLE strategy run-length encoding +- Add deflate_huff() for faster Z_HUFFMAN_ONLY encoding +- Change name of "write" variable in inffast.c to avoid library collisions +- Fix premature EOF from gzread() in gzio.c [Brown] +- Use zlib header window size if windowBits is 0 in inflateInit2() +- Remove compressBound() call in deflate.c to avoid linking compress.o +- Replace use of errno in gz* with functions, support WinCE [Alves] +- Provide alternative to perror() in minigzip.c for WinCE [Alves] +- Don't use _vsnprintf on later versions of MSVC [Lowman] +- Add CMake build script and input file [Lowman] +- Update contrib/minizip to 1.1 [Svensson, Vollant] +- Moved nintendods directory from contrib to . +- Replace gzio.c with a new set of routines with the same functionality +- Add gzbuffer(), gzoffset(), gzclose_r(), gzclose_w() as part of above +- Update contrib/minizip to 1.1b +- Change gzeof() to return 0 on error instead of -1 to agree with zlib.h + +Changes in 1.2.3.4 (21 Dec 2009) +- Use old school .SUFFIXES in Makefile.in for FreeBSD compatibility +- Update comments in configure and Makefile.in for default --shared +- Fix test -z's in configure [Marquess] +- Build examplesh and minigzipsh when not testing +- Change NULL's to Z_NULL's in deflate.c and in comments in zlib.h +- Import LDFLAGS from the environment in configure +- Fix configure to populate SFLAGS with discovered CFLAGS options +- Adapt make_vms.com to the new Makefile.in [Zinser] +- Add zlib2ansi script for C++ compilation [Marquess] +- Add _FILE_OFFSET_BITS=64 test to make test (when applicable) +- Add AMD64 assembler code for longest match to contrib [Teterin] +- Include options from $SFLAGS when doing $LDSHARED +- Simplify 64-bit file support by introducing z_off64_t type +- Make shared object files in objs directory to work around old Sun cc +- Use only three-part version number for Darwin shared compiles +- Add rc option to ar in Makefile.in for when ./configure not run +- Add -WI,-rpath,. to LDFLAGS for OSF 1 V4* +- Set LD_LIBRARYN32_PATH for SGI IRIX shared compile +- Protect against _FILE_OFFSET_BITS being defined when compiling zlib +- Rename Makefile.in targets allstatic to static and allshared to shared +- Fix static and shared Makefile.in targets to be independent +- Correct error return bug in gz_open() by setting state [Brown] +- Put spaces before ;;'s in configure for better sh compatibility +- Add pigz.c (parallel implementation of gzip) to examples/ +- Correct constant in crc32.c to UL [Leventhal] +- Reject negative lengths in crc32_combine() +- Add inflateReset2() function to work like inflateEnd()/inflateInit2() +- Include sys/types.h for _LARGEFILE64_SOURCE [Brown] +- Correct typo in doc/algorithm.txt [Janik] +- Fix bug in adler32_combine() [Zhu] +- Catch missing-end-of-block-code error in all inflates and in puff + Assures that random input to inflate eventually results in an error +- Added enough.c (calculation of ENOUGH for inftrees.h) to examples/ +- Update ENOUGH and its usage to reflect discovered bounds +- Fix gzerror() error report on empty input file [Brown] +- Add ush casts in trees.c to avoid pedantic runtime errors +- Fix typo in zlib.h uncompress() description [Reiss] +- Correct inflate() comments with regard to automatic header detection +- Remove deprecation comment on Z_PARTIAL_FLUSH (it stays) +- Put new version of gzlog (2.0) in examples with interruption recovery +- Add puff compile option to permit invalid distance-too-far streams +- Add puff TEST command options, ability to read piped input +- Prototype the *64 functions in zlib.h when _FILE_OFFSET_BITS == 64, but + _LARGEFILE64_SOURCE not defined +- Fix Z_FULL_FLUSH to truly erase the past by resetting s->strstart +- Fix deflateSetDictionary() to use all 32K for output consistency +- Remove extraneous #define MIN_LOOKAHEAD in deflate.c (in deflate.h) +- Clear bytes after deflate lookahead to avoid use of uninitialized data +- Change a limit in inftrees.c to be more transparent to Coverity Prevent +- Update win32/zlib.def with exported symbols from zlib.h +- Correct spelling errors in zlib.h [Willem, Sobrado] +- Allow Z_BLOCK for deflate() to force a new block +- Allow negative bits in inflatePrime() to delete existing bit buffer +- Add Z_TREES flush option to inflate() to return at end of trees +- Add inflateMark() to return current state information for random access +- Add Makefile for NintendoDS to contrib [Costa] +- Add -w in configure compile tests to avoid spurious warnings [Beucler] +- Fix typos in zlib.h comments for deflateSetDictionary() +- Fix EOF detection in transparent gzread() [Maier] + +Changes in 1.2.3.3 (2 October 2006) +- Make --shared the default for configure, add a --static option +- Add compile option to permit invalid distance-too-far streams +- Add inflateUndermine() function which is required to enable above +- Remove use of "this" variable name for C++ compatibility [Marquess] +- Add testing of shared library in make test, if shared library built +- Use ftello() and fseeko() if available instead of ftell() and fseek() +- Provide two versions of all functions that use the z_off_t type for + binary compatibility -- a normal version and a 64-bit offset version, + per the Large File Support Extension when _LARGEFILE64_SOURCE is + defined; use the 64-bit versions by default when _FILE_OFFSET_BITS + is defined to be 64 +- Add a --uname= option to configure to perhaps help with cross-compiling + +Changes in 1.2.3.2 (3 September 2006) +- Turn off silly Borland warnings [Hay] +- Use off64_t and define _LARGEFILE64_SOURCE when present +- Fix missing dependency on inffixed.h in Makefile.in +- Rig configure --shared to build both shared and static [Teredesai, Truta] +- Remove zconf.in.h and instead create a new zlibdefs.h file +- Fix contrib/minizip/unzip.c non-encrypted after encrypted [Vollant] +- Add treebuild.xml (see http://treebuild.metux.de/) [Weigelt] + +Changes in 1.2.3.1 (16 August 2006) +- Add watcom directory with OpenWatcom make files [Daniel] +- Remove #undef of FAR in zconf.in.h for MVS [Fedtke] +- Update make_vms.com [Zinser] +- Use -fPIC for shared build in configure [Teredesai, Nicholson] +- Use only major version number for libz.so on IRIX and OSF1 [Reinholdtsen] diff --git a/zlib-1.2.7/.!3417!zlib.3.pdf b/zlib-1.2.7/.!3417!zlib.3.pdf new file mode 100755 index 000000000..9ab49ee00 Binary files /dev/null and b/zlib-1.2.7/.!3417!zlib.3.pdf differ diff --git a/zlib-1.2.7/.!3417!zlib.3.pdfr b/zlib-1.2.7/.!3417!zlib.3.pdfr new file mode 100755 index 000000000..9ab49ee00 --- /dev/null +++ b/zlib-1.2.7/.!3417!zlib.3.pdfr @@ -0,0 +1 @@ +%PDF-1.4 diff --git a/zlib-1.2.7/.!6486!ChangeLog b/zlib-1.2.7/.!6486!ChangeLog new file mode 100755 index 000000000..cb741e5a7 --- /dev/null +++ b/zlib-1.2.7/.!6486!ChangeLog @@ -0,0 +1,503 @@ + + ChangeLog file for zlib + +Changes in 1.2.7 (2 May 2012) +- Replace use of memmove() with a simple copy for portability +- Test for existence of strerror +- Restore gzgetc_ for backward compatibility with 1.2.6 +- Fix build with non-GNU make on Solaris +- Require gcc 4.0 or later on Mac OS X to use the hidden attribute +- Include unistd.h for Watcom C +- Use __WATCOMC__ instead of __WATCOM__ +- Do not use the visibility attribute if NO_VIZ defined +- Improve the detection of no hidden visibility attribute +- Avoid using __int64 for gcc or solo compilation +- Cast to char * in gzprintf to avoid warnings [Zinser] +- Fix make_vms.com for VAX [Zinser] +- Don't use library or built-in byte swaps +- Simplify test and use of gcc hidden attribute +- Fix bug in gzclose_w() when gzwrite() fails to allocate memory +- Add "x" (O_EXCL) and "e" (O_CLOEXEC) modes support to gzopen() +- Fix bug in test/minigzip.c for configure --solo +- Fix contrib/vstudio project link errors [Mohanathas] +- Add ability to choose the builder in make_vms.com [Schweda] +- Add DESTDIR support to mingw32 win32/Makefile.gcc +- Fix comments in win32/Makefile.gcc for proper usage +- Allow overriding the default install locations for cmake +- Generate and install the pkg-config file with cmake +- Build both a static and a shared version of zlib with cmake +- Include version symbols for cmake builds +- If using cmake with MSVC, add the source directory to the includes +- Remove unneeded EXTRA_CFLAGS from win32/Makefile.gcc [Truta] +- Move obsolete emx makefile to old [Truta] +- Allow the use of -Wundef when compiling or using zlib +- Avoid the use of the -u option with mktemp +- Improve inflate() documentation on the use of Z_FINISH +- Recognize clang as gcc +- Add gzopen_w() in Windows for wide character path names +- Rename zconf.h in CMakeLists.txt to move it out of the way +- Add source directory in CMakeLists.txt for building examples +- Look in build directory for zlib.pc in CMakeLists.txt +- Remove gzflags from zlibvc.def in vc9 and vc10 +- Fix contrib/minizip compilation in the MinGW environment +- Update ./configure for Solaris, support --64 [Mooney] +- Remove -R. from Solaris shared build (possible security issue) +- Avoid race condition for parallel make (-j) running example +- Fix type mismatch between get_crc_table() and crc_table +- Fix parsing of version with "-" in CMakeLists.txt [Snider, Ziegler] +- Fix the path to zlib.map in CMakeLists.txt +- Force the native libtool in Mac OS X to avoid GNU libtool [Beebe] +- Add instructions to win32/Makefile.gcc for shared install [Torri] + +Changes in 1.2.6.1 (12 Feb 2012) +- Avoid the use of the Objective-C reserved name "id" +- Include io.h in gzguts.h for Microsoft compilers +- Fix problem with ./configure --prefix and gzgetc macro +- Include gz_header definition when compiling zlib solo +- Put gzflags() functionality back in zutil.c +- Avoid library header include in crc32.c for Z_SOLO +- Use name in GCC_CLASSIC as C compiler for coverage testing, if set +- Minor cleanup in contrib/minizip/zip.c [Vollant] +- Update make_vms.com [Zinser] +- Remove unnecessary gzgetc_ function +- Use optimized byte swap operations for Microsoft and GNU [Snyder] +- Fix minor typo in zlib.h comments [Rzesniowiecki] + +Changes in 1.2.6 (29 Jan 2012) +- Update the Pascal interface in contrib/pascal +- Fix function numbers for gzgetc_ in zlibvc.def files +- Fix configure.ac for contrib/minizip [Schiffer] +- Fix large-entry detection in minizip on 64-bit systems [Schiffer] +- Have ./configure use the compiler return code for error indication +- Fix CMakeLists.txt for cross compilation [McClure] +- Fix contrib/minizip/zip.c for 64-bit architectures [Dalsnes] +- Fix compilation of contrib/minizip on FreeBSD [Marquez] +- Correct suggested usages in win32/Makefile.msc [Shachar, Horvath] +- Include io.h for Turbo C / Borland C on all platforms [Truta] +- Make version explicit in contrib/minizip/configure.ac [Bosmans] +- Avoid warning for no encryption in contrib/minizip/zip.c [Vollant] +- Minor cleanup up contrib/minizip/unzip.c [Vollant] +- Fix bug when compiling minizip with C++ [Vollant] +- Protect for long name and extra fields in contrib/minizip [Vollant] +- Avoid some warnings in contrib/minizip [Vollant] +- Add -I../.. -L../.. to CFLAGS for minizip and miniunzip +- Add missing libs to minizip linker command +- Add support for VPATH builds in contrib/minizip +- Add an --enable-demos option to contrib/minizip/configure +- Add the generation of configure.log by ./configure +- Exit when required parameters not provided to win32/Makefile.gcc +- Have gzputc return the character written instead of the argument +- Use the -m option on ldconfig for BSD systems [Tobias] +- Correct in zlib.map when deflateResetKeep was added + +Changes in 1.2.5.3 (15 Jan 2012) +- Restore gzgetc function for binary compatibility +- Do not use _lseeki64 under Borland C++ [Truta] +- Update win32/Makefile.msc to build test/*.c [Truta] +- Remove old/visualc6 given CMakefile and other alternatives +- Update AS400 build files and documentation [Monnerat] +- Update win32/Makefile.gcc to build test/*.c [Truta] +- Permit stronger flushes after Z_BLOCK flushes +- Avoid extraneous empty blocks when doing empty flushes +- Permit Z_NULL arguments to deflatePending +- Allow deflatePrime() to insert bits in the middle of a stream +- Remove second empty static block for Z_PARTIAL_FLUSH +- Write out all of the available bits when using Z_BLOCK +- Insert the first two strings in the hash table after a flush + +Changes in 1.2.5.2 (17 Dec 2011) +- fix ld error: unable to find version dependency 'ZLIB_1.2.5' +- use relative symlinks for shared libs +- Avoid searching past window for Z_RLE strategy +- Assure that high-water mark initialization is always applied in deflate +- Add assertions to fill_window() in deflate.c to match comments +- Update python link in README +- Correct spelling error in gzread.c +- Fix bug in gzgets() for a concatenated empty gzip stream +- Correct error in comment for gz_make() +- Change gzread() and related to ignore junk after gzip streams +- Allow gzread() and related to continue after gzclearerr() +- Allow gzrewind() and gzseek() after a premature end-of-file +- Simplify gzseek() now that raw after gzip is ignored +- Change gzgetc() to a macro for speed (~40% speedup in testing) +- Fix gzclose() to return the actual error last encountered +- Always add large file support for windows +- Include zconf.h for windows large file support +- Include zconf.h.cmakein for windows large file support +- Update zconf.h.cmakein on make distclean +- Merge vestigial vsnprintf determination from zutil.h to gzguts.h +- Clarify how gzopen() appends in zlib.h comments +- Correct documentation of gzdirect() since junk at end now ignored +- Add a transparent write mode to gzopen() when 'T' is in the mode +- Update python link in zlib man page +- Get inffixed.h and MAKEFIXED result to match +- Add a ./config --solo option to make zlib subset with no libary use +- Add undocumented inflateResetKeep() function for CAB file decoding +- Add --cover option to ./configure for gcc coverage testing +- Add #define ZLIB_CONST option to use const in the z_stream interface +- Add comment to gzdopen() in zlib.h to use dup() when using fileno() +- Note behavior of uncompress() to provide as much data as it can +- Add files in contrib/minizip to aid in building libminizip +- Split off AR options in Makefile.in and configure +- Change ON macro to Z_ARG to avoid application conflicts +- Facilitate compilation with Borland C++ for pragmas and vsnprintf +- Include io.h for Turbo C / Borland C++ +- Move example.c and minigzip.c to test/ +- Simplify incomplete code table filling in inflate_table() +- Remove code from inflate.c and infback.c that is impossible to execute +- Test the inflate code with full coverage +- Allow deflateSetDictionary, inflateSetDictionary at any time (in raw) +- Add deflateResetKeep and fix inflateResetKeep to retain dictionary +- Fix gzwrite.c to accommodate reduced memory zlib compilation +- Have inflate() with Z_FINISH avoid the allocation of a window +- Do not set strm->adler when doing raw inflate +- Fix gzeof() to behave just like feof() when read is not past end of file +- Fix bug in gzread.c when end-of-file is reached +- Avoid use of Z_BUF_ERROR in gz* functions except for premature EOF +- Document gzread() capability to read concurrently written files +- Remove hard-coding of resource compiler in CMakeLists.txt [Blammo] + +Changes in 1.2.5.1 (10 Sep 2011) +- Update FAQ entry on shared builds (#13) +- Avoid symbolic argument to chmod in Makefile.in +- Fix bug and add consts in contrib/puff [Oberhumer] +- Update contrib/puff/zeros.raw test file to have all block types +- Add full coverage test for puff in contrib/puff/Makefile +- Fix static-only-build install in Makefile.in +- Fix bug in unzGetCurrentFileInfo() in contrib/minizip [Kuno] +- Add libz.a dependency to shared in Makefile.in for parallel builds +- Spell out "number" (instead of "nb") in zlib.h for total_in, total_out +- Replace $(...) with `...` in configure for non-bash sh [Bowler] +- Add darwin* to Darwin* and solaris* to SunOS\ 5* in configure [Groffen] +- Add solaris* to Linux* in configure to allow gcc use [Groffen] +- Add *bsd* to Linux* case in configure [Bar-Lev] +- Add inffast.obj to dependencies in win32/Makefile.msc +- Correct spelling error in deflate.h [Kohler] +- Change libzdll.a again to libz.dll.a (!) in win32/Makefile.gcc +- Add test to configure for GNU C looking for gcc in output of $cc -v +- Add zlib.pc generation to win32/Makefile.gcc [Weigelt] +- Fix bug in zlib.h for _FILE_OFFSET_BITS set and _LARGEFILE64_SOURCE not +- Add comment in zlib.h that adler32_combine with len2 < 0 makes no sense +- Make NO_DIVIDE option in adler32.c much faster (thanks to John Reiser) +- Make stronger test in zconf.h to include unistd.h for LFS +- Apply Darwin patches for 64-bit file offsets to contrib/minizip [Slack] +- Fix zlib.h LFS support when Z_PREFIX used +- Add updated as400 support (removed from old) [Monnerat] +- Avoid deflate sensitivity to volatile input data +- Avoid division in adler32_combine for NO_DIVIDE +- Clarify the use of Z_FINISH with deflateBound() amount of space +- Set binary for output file in puff.c +- Use u4 type for crc_table to avoid conversion warnings +- Apply casts in zlib.h to avoid conversion warnings +- Add OF to prototypes for adler32_combine_ and crc32_combine_ [Miller] +- Improve inflateSync() documentation to note indeterminancy +- Add deflatePending() function to return the amount of pending output +- Correct the spelling of "specification" in FAQ [Randers-Pehrson] +- Add a check in configure for stdarg.h, use for gzprintf() +- Check that pointers fit in ints when gzprint() compiled old style +- Add dummy name before $(SHAREDLIBV) in Makefile [Bar-Lev, Bowler] +- Delete line in configure that adds -L. libz.a to LDFLAGS [Weigelt] +- Add debug records in assmebler code [Londer] +- Update RFC references to use http://tools.ietf.org/html/... [Li] +- Add --archs option, use of libtool to configure for Mac OS X [Borstel] + +Changes in 1.2.5 (19 Apr 2010) +- Disable visibility attribute in win32/Makefile.gcc [Bar-Lev] +- Default to libdir as sharedlibdir in configure [Nieder] +- Update copyright dates on modified source files +- Update trees.c to be able to generate modified trees.h +- Exit configure for MinGW, suggesting win32/Makefile.gcc +- Check for NULL path in gz_open [Homurlu] + +Changes in 1.2.4.5 (18 Apr 2010) +- Set sharedlibdir in configure [Torok] +- Set LDFLAGS in Makefile.in [Bar-Lev] +- Avoid mkdir objs race condition in Makefile.in [Bowler] +- Add ZLIB_INTERNAL in front of internal inter-module functions and arrays +- Define ZLIB_INTERNAL to hide internal functions and arrays for GNU C +- Don't use hidden attribute when it is a warning generator (e.g. Solaris) + +Changes in 1.2.4.4 (18 Apr 2010) +- Fix CROSS_PREFIX executable testing, CHOST extract, mingw* [Torok] +- Undefine _LARGEFILE64_SOURCE in zconf.h if it is zero, but not if empty +- Try to use bash or ksh regardless of functionality of /bin/sh +- Fix configure incompatibility with NetBSD sh +- Remove attempt to run under bash or ksh since have better NetBSD fix +- Fix win32/Makefile.gcc for MinGW [Bar-Lev] +- Add diagnostic messages when using CROSS_PREFIX in configure +- Added --sharedlibdir option to configure [Weigelt] +- Use hidden visibility attribute when available [Frysinger] + +Changes in 1.2.4.3 (10 Apr 2010) +- Only use CROSS_PREFIX in configure for ar and ranlib if they exist +- Use CROSS_PREFIX for nm [Bar-Lev] +- Assume _LARGEFILE64_SOURCE defined is equivalent to true +- Avoid use of undefined symbols in #if with && and || +- Make *64 prototypes in gzguts.h consistent with functions +- Add -shared load option for MinGW in configure [Bowler] +- Move z_off64_t to public interface, use instead of off64_t +- Remove ! from shell test in configure (not portable to Solaris) +- Change +0 macro tests to -0 for possibly increased portability + +Changes in 1.2.4.2 (9 Apr 2010) +- Add consistent carriage returns to readme.txt's in masmx86 and masmx64 +- Really provide prototypes for *64 functions when building without LFS +- Only define unlink() in minigzip.c if unistd.h not included +- Update README to point to contrib/vstudio project files +- Move projects/vc6 to old/ and remove projects/ +- Include stdlib.h in minigzip.c for setmode() definition under WinCE +- Clean up assembler builds in win32/Makefile.msc [Rowe] +- Include sys/types.h for Microsoft for off_t definition +- Fix memory leak on error in gz_open() +- Symbolize nm as $NM in configure [Weigelt] +- Use TEST_LDSHARED instead of LDSHARED to link test programs [Weigelt] +- Add +0 to _FILE_OFFSET_BITS and _LFS64_LARGEFILE in case not defined +- Fix bug in gzeof() to take into account unused input data +- Avoid initialization of structures with variables in puff.c +- Updated win32/README-WIN32.txt [Rowe] + +Changes in 1.2.4.1 (28 Mar 2010) +- Remove the use of [a-z] constructs for sed in configure [gentoo 310225] +- Remove $(SHAREDLIB) from LIBS in Makefile.in [Creech] +- Restore "for debugging" comment on sprintf() in gzlib.c +- Remove fdopen for MVS from gzguts.h +- Put new README-WIN32.txt in win32 [Rowe] +- Add check for shell to configure and invoke another shell if needed +- Fix big fat stinking bug in gzseek() on uncompressed files +- Remove vestigial F_OPEN64 define in zutil.h +- Set and check the value of _LARGEFILE_SOURCE and _LARGEFILE64_SOURCE +- Avoid errors on non-LFS systems when applications define LFS macros +- Set EXE to ".exe" in configure for MINGW [Kahle] +- Match crc32() in crc32.c exactly to the prototype in zlib.h [Sherrill] +- Add prefix for cross-compilation in win32/makefile.gcc [Bar-Lev] +- Add DLL install in win32/makefile.gcc [Bar-Lev] +- Allow Linux* or linux* from uname in configure [Bar-Lev] +- Allow ldconfig to be redefined in configure and Makefile.in [Bar-Lev] +- Add cross-compilation prefixes to configure [Bar-Lev] +- Match type exactly in gz_load() invocation in gzread.c +- Match type exactly of zcalloc() in zutil.c to zlib.h alloc_func +- Provide prototypes for *64 functions when building zlib without LFS +- Don't use -lc when linking shared library on MinGW +- Remove errno.h check in configure and vestigial errno code in zutil.h + +Changes in 1.2.4 (14 Mar 2010) +- Fix VER3 extraction in configure for no fourth subversion +- Update zlib.3, add docs to Makefile.in to make .pdf out of it +- Add zlib.3.pdf to distribution +- Don't set error code in gzerror() if passed pointer is NULL +- Apply destination directory fixes to CMakeLists.txt [Lowman] +- Move #cmakedefine's to a new zconf.in.cmakein +- Restore zconf.h for builds that don't use configure or cmake +- Add distclean to dummy Makefile for convenience +- Update and improve INDEX, README, and FAQ +- Update CMakeLists.txt for the return of zconf.h [Lowman] +- Update contrib/vstudio/vc9 and vc10 [Vollant] +- Change libz.dll.a back to libzdll.a in win32/Makefile.gcc +- Apply license and readme changes to contrib/asm686 [Raiter] +- Check file name lengths and add -c option in minigzip.c [Li] +- Update contrib/amd64 and contrib/masmx86/ [Vollant] +- Avoid use of "eof" parameter in trees.c to not shadow library variable +- Update make_vms.com for removal of zlibdefs.h [Zinser] +- Update assembler code and vstudio projects in contrib [Vollant] +- Remove outdated assembler code contrib/masm686 and contrib/asm586 +- Remove old vc7 and vc8 from contrib/vstudio +- Update win32/Makefile.msc, add ZLIB_VER_SUBREVISION [Rowe] +- Fix memory leaks in gzclose_r() and gzclose_w(), file leak in gz_open() +- Add contrib/gcc_gvmat64 for longest_match and inflate_fast [Vollant] +- Remove *64 functions from win32/zlib.def (they're not 64-bit yet) +- Fix bug in void-returning vsprintf() case in gzwrite.c +- Fix name change from inflate.h in contrib/inflate86/inffas86.c +- Check if temporary file exists before removing in make_vms.com [Zinser] +- Fix make install and uninstall for --static option +- Fix usage of _MSC_VER in gzguts.h and zutil.h [Truta] +- Update readme.txt in contrib/masmx64 and masmx86 to assemble + +Changes in 1.2.3.9 (21 Feb 2010) +- Expunge gzio.c +- Move as400 build information to old +- Fix updates in contrib/minizip and contrib/vstudio +- Add const to vsnprintf test in configure to avoid warnings [Weigelt] +- Delete zconf.h (made by configure) [Weigelt] +- Change zconf.in.h to zconf.h.in per convention [Weigelt] +- Check for NULL buf in gzgets() +- Return empty string for gzgets() with len == 1 (like fgets()) +- Fix description of gzgets() in zlib.h for end-of-file, NULL return +- Update minizip to 1.1 [Vollant] +- Avoid MSVC loss of data warnings in gzread.c, gzwrite.c +- Note in zlib.h that gzerror() should be used to distinguish from EOF +- Remove use of snprintf() from gzlib.c +- Fix bug in gzseek() +- Update contrib/vstudio, adding vc9 and vc10 [Kuno, Vollant] +- Fix zconf.h generation in CMakeLists.txt [Lowman] +- Improve comments in zconf.h where modified by configure + +Changes in 1.2.3.8 (13 Feb 2010) +- Clean up text files (tabs, trailing whitespace, etc.) [Oberhumer] +- Use z_off64_t in gz_zero() and gz_skip() to match state->skip +- Avoid comparison problem when sizeof(int) == sizeof(z_off64_t) +- Revert to Makefile.in from 1.2.3.6 (live with the clutter) +- Fix missing error return in gzflush(), add zlib.h note +- Add *64 functions to zlib.map [Levin] +- Fix signed/unsigned comparison in gz_comp() +- Use SFLAGS when testing shared linking in configure +- Add --64 option to ./configure to use -m64 with gcc +- Fix ./configure --help to correctly name options +- Have make fail if a test fails [Levin] +- Avoid buffer overrun in contrib/masmx64/gvmat64.asm [Simpson] +- Remove assembler object files from contrib + +Changes in 1.2.3.7 (24 Jan 2010) +- Always gzopen() with O_LARGEFILE if available +- Fix gzdirect() to work immediately after gzopen() or gzdopen() +- Make gzdirect() more precise when the state changes while reading +- Improve zlib.h documentation in many places +- Catch memory allocation failure in gz_open() +- Complete close operation if seek forward in gzclose_w() fails +- Return Z_ERRNO from gzclose_r() if close() fails +- Return Z_STREAM_ERROR instead of EOF for gzclose() being passed NULL +- Return zero for gzwrite() errors to match zlib.h description +- Return -1 on gzputs() error to match zlib.h description +- Add zconf.in.h to allow recovery from configure modification [Weigelt] +- Fix static library permissions in Makefile.in [Weigelt] +- Avoid warnings in configure tests that hide functionality [Weigelt] +- Add *BSD and DragonFly to Linux case in configure [gentoo 123571] +- Change libzdll.a to libz.dll.a in win32/Makefile.gcc [gentoo 288212] +- Avoid access of uninitialized data for first inflateReset2 call [Gomes] +- Keep object files in subdirectories to reduce the clutter somewhat +- Remove default Makefile and zlibdefs.h, add dummy Makefile +- Add new external functions to Z_PREFIX, remove duplicates, z_z_ -> z_ +- Remove zlibdefs.h completely -- modify zconf.h instead + +Changes in 1.2.3.6 (17 Jan 2010) +- Avoid void * arithmetic in gzread.c and gzwrite.c +- Make compilers happier with const char * for gz_error message +- Avoid unused parameter warning in inflate.c +- Avoid signed-unsigned comparison warning in inflate.c +- Indent #pragma's for traditional C +- Fix usage of strwinerror() in glib.c, change to gz_strwinerror() +- Correct email address in configure for system options +- Update make_vms.com and add make_vms.com to contrib/minizip [Zinser] +- Update zlib.map [Brown] +- Fix Makefile.in for Solaris 10 make of example64 and minizip64 [Torok] +- Apply various fixes to CMakeLists.txt [Lowman] +- Add checks on len in gzread() and gzwrite() +- Add error message for no more room for gzungetc() +- Remove zlib version check in gzwrite() +- Defer compression of gzprintf() result until need to +- Use snprintf() in gzdopen() if available +- Remove USE_MMAP configuration determination (only used by minigzip) +- Remove examples/pigz.c (available separately) +- Update examples/gun.c to 1.6 + +Changes in 1.2.3.5 (8 Jan 2010) +- Add space after #if in zutil.h for some compilers +- Fix relatively harmless bug in deflate_fast() [Exarevsky] +- Fix same problem in deflate_slow() +- Add $(SHAREDLIBV) to LIBS in Makefile.in [Brown] +- Add deflate_rle() for faster Z_RLE strategy run-length encoding +- Add deflate_huff() for faster Z_HUFFMAN_ONLY encoding +- Change name of "write" variable in inffast.c to avoid library collisions +- Fix premature EOF from gzread() in gzio.c [Brown] +- Use zlib header window size if windowBits is 0 in inflateInit2() +- Remove compressBound() call in deflate.c to avoid linking compress.o +- Replace use of errno in gz* with functions, support WinCE [Alves] +- Provide alternative to perror() in minigzip.c for WinCE [Alves] +- Don't use _vsnprintf on later versions of MSVC [Lowman] +- Add CMake build script and input file [Lowman] +- Update contrib/minizip to 1.1 [Svensson, Vollant] +- Moved nintendods directory from contrib to . +- Replace gzio.c with a new set of routines with the same functionality +- Add gzbuffer(), gzoffset(), gzclose_r(), gzclose_w() as part of above +- Update contrib/minizip to 1.1b +- Change gzeof() to return 0 on error instead of -1 to agree with zlib.h + +Changes in 1.2.3.4 (21 Dec 2009) +- Use old school .SUFFIXES in Makefile.in for FreeBSD compatibility +- Update comments in configure and Makefile.in for default --shared +- Fix test -z's in configure [Marquess] +- Build examplesh and minigzipsh when not testing +- Change NULL's to Z_NULL's in deflate.c and in comments in zlib.h +- Import LDFLAGS from the environment in configure +- Fix configure to populate SFLAGS with discovered CFLAGS options +- Adapt make_vms.com to the new Makefile.in [Zinser] +- Add zlib2ansi script for C++ compilation [Marquess] +- Add _FILE_OFFSET_BITS=64 test to make test (when applicable) +- Add AMD64 assembler code for longest match to contrib [Teterin] +- Include options from $SFLAGS when doing $LDSHARED +- Simplify 64-bit file support by introducing z_off64_t type +- Make shared object files in objs directory to work around old Sun cc +- Use only three-part version number for Darwin shared compiles +- Add rc option to ar in Makefile.in for when ./configure not run +- Add -WI,-rpath,. to LDFLAGS for OSF 1 V4* +- Set LD_LIBRARYN32_PATH for SGI IRIX shared compile +- Protect against _FILE_OFFSET_BITS being defined when compiling zlib +- Rename Makefile.in targets allstatic to static and allshared to shared +- Fix static and shared Makefile.in targets to be independent +- Correct error return bug in gz_open() by setting state [Brown] +- Put spaces before ;;'s in configure for better sh compatibility +- Add pigz.c (parallel implementation of gzip) to examples/ +- Correct constant in crc32.c to UL [Leventhal] +- Reject negative lengths in crc32_combine() +- Add inflateReset2() function to work like inflateEnd()/inflateInit2() +- Include sys/types.h for _LARGEFILE64_SOURCE [Brown] +- Correct typo in doc/algorithm.txt [Janik] +- Fix bug in adler32_combine() [Zhu] +- Catch missing-end-of-block-code error in all inflates and in puff + Assures that random input to inflate eventually results in an error +- Added enough.c (calculation of ENOUGH for inftrees.h) to examples/ +- Update ENOUGH and its usage to reflect discovered bounds +- Fix gzerror() error report on empty input file [Brown] +- Add ush casts in trees.c to avoid pedantic runtime errors +- Fix typo in zlib.h uncompress() description [Reiss] +- Correct inflate() comments with regard to automatic header detection +- Remove deprecation comment on Z_PARTIAL_FLUSH (it stays) +- Put new version of gzlog (2.0) in examples with interruption recovery +- Add puff compile option to permit invalid distance-too-far streams +- Add puff TEST command options, ability to read piped input +- Prototype the *64 functions in zlib.h when _FILE_OFFSET_BITS == 64, but + _LARGEFILE64_SOURCE not defined +- Fix Z_FULL_FLUSH to truly erase the past by resetting s->strstart +- Fix deflateSetDictionary() to use all 32K for output consistency +- Remove extraneous #define MIN_LOOKAHEAD in deflate.c (in deflate.h) +- Clear bytes after deflate lookahead to avoid use of uninitialized data +- Change a limit in inftrees.c to be more transparent to Coverity Prevent +- Update win32/zlib.def with exported symbols from zlib.h +- Correct spelling errors in zlib.h [Willem, Sobrado] +- Allow Z_BLOCK for deflate() to force a new block +- Allow negative bits in inflatePrime() to delete existing bit buffer +- Add Z_TREES flush option to inflate() to return at end of trees +- Add inflateMark() to return current state information for random access +- Add Makefile for NintendoDS to contrib [Costa] +- Add -w in configure compile tests to avoid spurious warnings [Beucler] +- Fix typos in zlib.h comments for deflateSetDictionary() +- Fix EOF detection in transparent gzread() [Maier] + +Changes in 1.2.3.3 (2 October 2006) +- Make --shared the default for configure, add a --static option +- Add compile option to permit invalid distance-too-far streams +- Add inflateUndermine() function which is required to enable above +- Remove use of "this" variable name for C++ compatibility [Marquess] +- Add testing of shared library in make test, if shared library built +- Use ftello() and fseeko() if available instead of ftell() and fseek() +- Provide two versions of all functions that use the z_off_t type for + binary compatibility -- a normal version and a 64-bit offset version, + per the Large File Support Extension when _LARGEFILE64_SOURCE is + defined; use the 64-bit versions by default when _FILE_OFFSET_BITS + is defined to be 64 +- Add a --uname= option to configure to perhaps help with cross-compiling + +Changes in 1.2.3.2 (3 September 2006) +- Turn off silly Borland warnings [Hay] +- Use off64_t and define _LARGEFILE64_SOURCE when present +- Fix missing dependency on inffixed.h in Makefile.in +- Rig configure --shared to build both shared and static [Teredesai, Truta] +- Remove zconf.in.h and instead create a new zlibdefs.h file +- Fix contrib/minizip/unzip.c non-encrypted after encrypted [Vollant] +- Add treebuild.xml (see http://treebuild.metux.de/) [Weigelt] + +Changes in 1.2.3.1 (16 August 2006) +- Add watcom directory with OpenWatcom make files [Daniel] +- Remove #undef of FAR in zconf.in.h for MVS [Fedtke] +- Update make_vms.com [Zinser] +- Use -fPIC for shared build in configure [Teredesai, Nicholson] +- Use only major version number for libz.so on IRIX and OSF1 [Reinholdtsen] diff --git a/zlib-1.2.7/.!6713!zlib.3.pdf b/zlib-1.2.7/.!6713!zlib.3.pdf new file mode 100755 index 000000000..9ab49ee00 Binary files /dev/null and b/zlib-1.2.7/.!6713!zlib.3.pdf differ diff --git a/zlib-1.2.7/.!8046!ChangeLog b/zlib-1.2.7/.!8046!ChangeLog new file mode 100755 index 000000000..cb741e5a7 --- /dev/null +++ b/zlib-1.2.7/.!8046!ChangeLog @@ -0,0 +1,503 @@ + + ChangeLog file for zlib + +Changes in 1.2.7 (2 May 2012) +- Replace use of memmove() with a simple copy for portability +- Test for existence of strerror +- Restore gzgetc_ for backward compatibility with 1.2.6 +- Fix build with non-GNU make on Solaris +- Require gcc 4.0 or later on Mac OS X to use the hidden attribute +- Include unistd.h for Watcom C +- Use __WATCOMC__ instead of __WATCOM__ +- Do not use the visibility attribute if NO_VIZ defined +- Improve the detection of no hidden visibility attribute +- Avoid using __int64 for gcc or solo compilation +- Cast to char * in gzprintf to avoid warnings [Zinser] +- Fix make_vms.com for VAX [Zinser] +- Don't use library or built-in byte swaps +- Simplify test and use of gcc hidden attribute +- Fix bug in gzclose_w() when gzwrite() fails to allocate memory +- Add "x" (O_EXCL) and "e" (O_CLOEXEC) modes support to gzopen() +- Fix bug in test/minigzip.c for configure --solo +- Fix contrib/vstudio project link errors [Mohanathas] +- Add ability to choose the builder in make_vms.com [Schweda] +- Add DESTDIR support to mingw32 win32/Makefile.gcc +- Fix comments in win32/Makefile.gcc for proper usage +- Allow overriding the default install locations for cmake +- Generate and install the pkg-config file with cmake +- Build both a static and a shared version of zlib with cmake +- Include version symbols for cmake builds +- If using cmake with MSVC, add the source directory to the includes +- Remove unneeded EXTRA_CFLAGS from win32/Makefile.gcc [Truta] +- Move obsolete emx makefile to old [Truta] +- Allow the use of -Wundef when compiling or using zlib +- Avoid the use of the -u option with mktemp +- Improve inflate() documentation on the use of Z_FINISH +- Recognize clang as gcc +- Add gzopen_w() in Windows for wide character path names +- Rename zconf.h in CMakeLists.txt to move it out of the way +- Add source directory in CMakeLists.txt for building examples +- Look in build directory for zlib.pc in CMakeLists.txt +- Remove gzflags from zlibvc.def in vc9 and vc10 +- Fix contrib/minizip compilation in the MinGW environment +- Update ./configure for Solaris, support --64 [Mooney] +- Remove -R. from Solaris shared build (possible security issue) +- Avoid race condition for parallel make (-j) running example +- Fix type mismatch between get_crc_table() and crc_table +- Fix parsing of version with "-" in CMakeLists.txt [Snider, Ziegler] +- Fix the path to zlib.map in CMakeLists.txt +- Force the native libtool in Mac OS X to avoid GNU libtool [Beebe] +- Add instructions to win32/Makefile.gcc for shared install [Torri] + +Changes in 1.2.6.1 (12 Feb 2012) +- Avoid the use of the Objective-C reserved name "id" +- Include io.h in gzguts.h for Microsoft compilers +- Fix problem with ./configure --prefix and gzgetc macro +- Include gz_header definition when compiling zlib solo +- Put gzflags() functionality back in zutil.c +- Avoid library header include in crc32.c for Z_SOLO +- Use name in GCC_CLASSIC as C compiler for coverage testing, if set +- Minor cleanup in contrib/minizip/zip.c [Vollant] +- Update make_vms.com [Zinser] +- Remove unnecessary gzgetc_ function +- Use optimized byte swap operations for Microsoft and GNU [Snyder] +- Fix minor typo in zlib.h comments [Rzesniowiecki] + +Changes in 1.2.6 (29 Jan 2012) +- Update the Pascal interface in contrib/pascal +- Fix function numbers for gzgetc_ in zlibvc.def files +- Fix configure.ac for contrib/minizip [Schiffer] +- Fix large-entry detection in minizip on 64-bit systems [Schiffer] +- Have ./configure use the compiler return code for error indication +- Fix CMakeLists.txt for cross compilation [McClure] +- Fix contrib/minizip/zip.c for 64-bit architectures [Dalsnes] +- Fix compilation of contrib/minizip on FreeBSD [Marquez] +- Correct suggested usages in win32/Makefile.msc [Shachar, Horvath] +- Include io.h for Turbo C / Borland C on all platforms [Truta] +- Make version explicit in contrib/minizip/configure.ac [Bosmans] +- Avoid warning for no encryption in contrib/minizip/zip.c [Vollant] +- Minor cleanup up contrib/minizip/unzip.c [Vollant] +- Fix bug when compiling minizip with C++ [Vollant] +- Protect for long name and extra fields in contrib/minizip [Vollant] +- Avoid some warnings in contrib/minizip [Vollant] +- Add -I../.. -L../.. to CFLAGS for minizip and miniunzip +- Add missing libs to minizip linker command +- Add support for VPATH builds in contrib/minizip +- Add an --enable-demos option to contrib/minizip/configure +- Add the generation of configure.log by ./configure +- Exit when required parameters not provided to win32/Makefile.gcc +- Have gzputc return the character written instead of the argument +- Use the -m option on ldconfig for BSD systems [Tobias] +- Correct in zlib.map when deflateResetKeep was added + +Changes in 1.2.5.3 (15 Jan 2012) +- Restore gzgetc function for binary compatibility +- Do not use _lseeki64 under Borland C++ [Truta] +- Update win32/Makefile.msc to build test/*.c [Truta] +- Remove old/visualc6 given CMakefile and other alternatives +- Update AS400 build files and documentation [Monnerat] +- Update win32/Makefile.gcc to build test/*.c [Truta] +- Permit stronger flushes after Z_BLOCK flushes +- Avoid extraneous empty blocks when doing empty flushes +- Permit Z_NULL arguments to deflatePending +- Allow deflatePrime() to insert bits in the middle of a stream +- Remove second empty static block for Z_PARTIAL_FLUSH +- Write out all of the available bits when using Z_BLOCK +- Insert the first two strings in the hash table after a flush + +Changes in 1.2.5.2 (17 Dec 2011) +- fix ld error: unable to find version dependency 'ZLIB_1.2.5' +- use relative symlinks for shared libs +- Avoid searching past window for Z_RLE strategy +- Assure that high-water mark initialization is always applied in deflate +- Add assertions to fill_window() in deflate.c to match comments +- Update python link in README +- Correct spelling error in gzread.c +- Fix bug in gzgets() for a concatenated empty gzip stream +- Correct error in comment for gz_make() +- Change gzread() and related to ignore junk after gzip streams +- Allow gzread() and related to continue after gzclearerr() +- Allow gzrewind() and gzseek() after a premature end-of-file +- Simplify gzseek() now that raw after gzip is ignored +- Change gzgetc() to a macro for speed (~40% speedup in testing) +- Fix gzclose() to return the actual error last encountered +- Always add large file support for windows +- Include zconf.h for windows large file support +- Include zconf.h.cmakein for windows large file support +- Update zconf.h.cmakein on make distclean +- Merge vestigial vsnprintf determination from zutil.h to gzguts.h +- Clarify how gzopen() appends in zlib.h comments +- Correct documentation of gzdirect() since junk at end now ignored +- Add a transparent write mode to gzopen() when 'T' is in the mode +- Update python link in zlib man page +- Get inffixed.h and MAKEFIXED result to match +- Add a ./config --solo option to make zlib subset with no libary use +- Add undocumented inflateResetKeep() function for CAB file decoding +- Add --cover option to ./configure for gcc coverage testing +- Add #define ZLIB_CONST option to use const in the z_stream interface +- Add comment to gzdopen() in zlib.h to use dup() when using fileno() +- Note behavior of uncompress() to provide as much data as it can +- Add files in contrib/minizip to aid in building libminizip +- Split off AR options in Makefile.in and configure +- Change ON macro to Z_ARG to avoid application conflicts +- Facilitate compilation with Borland C++ for pragmas and vsnprintf +- Include io.h for Turbo C / Borland C++ +- Move example.c and minigzip.c to test/ +- Simplify incomplete code table filling in inflate_table() +- Remove code from inflate.c and infback.c that is impossible to execute +- Test the inflate code with full coverage +- Allow deflateSetDictionary, inflateSetDictionary at any time (in raw) +- Add deflateResetKeep and fix inflateResetKeep to retain dictionary +- Fix gzwrite.c to accommodate reduced memory zlib compilation +- Have inflate() with Z_FINISH avoid the allocation of a window +- Do not set strm->adler when doing raw inflate +- Fix gzeof() to behave just like feof() when read is not past end of file +- Fix bug in gzread.c when end-of-file is reached +- Avoid use of Z_BUF_ERROR in gz* functions except for premature EOF +- Document gzread() capability to read concurrently written files +- Remove hard-coding of resource compiler in CMakeLists.txt [Blammo] + +Changes in 1.2.5.1 (10 Sep 2011) +- Update FAQ entry on shared builds (#13) +- Avoid symbolic argument to chmod in Makefile.in +- Fix bug and add consts in contrib/puff [Oberhumer] +- Update contrib/puff/zeros.raw test file to have all block types +- Add full coverage test for puff in contrib/puff/Makefile +- Fix static-only-build install in Makefile.in +- Fix bug in unzGetCurrentFileInfo() in contrib/minizip [Kuno] +- Add libz.a dependency to shared in Makefile.in for parallel builds +- Spell out "number" (instead of "nb") in zlib.h for total_in, total_out +- Replace $(...) with `...` in configure for non-bash sh [Bowler] +- Add darwin* to Darwin* and solaris* to SunOS\ 5* in configure [Groffen] +- Add solaris* to Linux* in configure to allow gcc use [Groffen] +- Add *bsd* to Linux* case in configure [Bar-Lev] +- Add inffast.obj to dependencies in win32/Makefile.msc +- Correct spelling error in deflate.h [Kohler] +- Change libzdll.a again to libz.dll.a (!) in win32/Makefile.gcc +- Add test to configure for GNU C looking for gcc in output of $cc -v +- Add zlib.pc generation to win32/Makefile.gcc [Weigelt] +- Fix bug in zlib.h for _FILE_OFFSET_BITS set and _LARGEFILE64_SOURCE not +- Add comment in zlib.h that adler32_combine with len2 < 0 makes no sense +- Make NO_DIVIDE option in adler32.c much faster (thanks to John Reiser) +- Make stronger test in zconf.h to include unistd.h for LFS +- Apply Darwin patches for 64-bit file offsets to contrib/minizip [Slack] +- Fix zlib.h LFS support when Z_PREFIX used +- Add updated as400 support (removed from old) [Monnerat] +- Avoid deflate sensitivity to volatile input data +- Avoid division in adler32_combine for NO_DIVIDE +- Clarify the use of Z_FINISH with deflateBound() amount of space +- Set binary for output file in puff.c +- Use u4 type for crc_table to avoid conversion warnings +- Apply casts in zlib.h to avoid conversion warnings +- Add OF to prototypes for adler32_combine_ and crc32_combine_ [Miller] +- Improve inflateSync() documentation to note indeterminancy +- Add deflatePending() function to return the amount of pending output +- Correct the spelling of "specification" in FAQ [Randers-Pehrson] +- Add a check in configure for stdarg.h, use for gzprintf() +- Check that pointers fit in ints when gzprint() compiled old style +- Add dummy name before $(SHAREDLIBV) in Makefile [Bar-Lev, Bowler] +- Delete line in configure that adds -L. libz.a to LDFLAGS [Weigelt] +- Add debug records in assmebler code [Londer] +- Update RFC references to use http://tools.ietf.org/html/... [Li] +- Add --archs option, use of libtool to configure for Mac OS X [Borstel] + +Changes in 1.2.5 (19 Apr 2010) +- Disable visibility attribute in win32/Makefile.gcc [Bar-Lev] +- Default to libdir as sharedlibdir in configure [Nieder] +- Update copyright dates on modified source files +- Update trees.c to be able to generate modified trees.h +- Exit configure for MinGW, suggesting win32/Makefile.gcc +- Check for NULL path in gz_open [Homurlu] + +Changes in 1.2.4.5 (18 Apr 2010) +- Set sharedlibdir in configure [Torok] +- Set LDFLAGS in Makefile.in [Bar-Lev] +- Avoid mkdir objs race condition in Makefile.in [Bowler] +- Add ZLIB_INTERNAL in front of internal inter-module functions and arrays +- Define ZLIB_INTERNAL to hide internal functions and arrays for GNU C +- Don't use hidden attribute when it is a warning generator (e.g. Solaris) + +Changes in 1.2.4.4 (18 Apr 2010) +- Fix CROSS_PREFIX executable testing, CHOST extract, mingw* [Torok] +- Undefine _LARGEFILE64_SOURCE in zconf.h if it is zero, but not if empty +- Try to use bash or ksh regardless of functionality of /bin/sh +- Fix configure incompatibility with NetBSD sh +- Remove attempt to run under bash or ksh since have better NetBSD fix +- Fix win32/Makefile.gcc for MinGW [Bar-Lev] +- Add diagnostic messages when using CROSS_PREFIX in configure +- Added --sharedlibdir option to configure [Weigelt] +- Use hidden visibility attribute when available [Frysinger] + +Changes in 1.2.4.3 (10 Apr 2010) +- Only use CROSS_PREFIX in configure for ar and ranlib if they exist +- Use CROSS_PREFIX for nm [Bar-Lev] +- Assume _LARGEFILE64_SOURCE defined is equivalent to true +- Avoid use of undefined symbols in #if with && and || +- Make *64 prototypes in gzguts.h consistent with functions +- Add -shared load option for MinGW in configure [Bowler] +- Move z_off64_t to public interface, use instead of off64_t +- Remove ! from shell test in configure (not portable to Solaris) +- Change +0 macro tests to -0 for possibly increased portability + +Changes in 1.2.4.2 (9 Apr 2010) +- Add consistent carriage returns to readme.txt's in masmx86 and masmx64 +- Really provide prototypes for *64 functions when building without LFS +- Only define unlink() in minigzip.c if unistd.h not included +- Update README to point to contrib/vstudio project files +- Move projects/vc6 to old/ and remove projects/ +- Include stdlib.h in minigzip.c for setmode() definition under WinCE +- Clean up assembler builds in win32/Makefile.msc [Rowe] +- Include sys/types.h for Microsoft for off_t definition +- Fix memory leak on error in gz_open() +- Symbolize nm as $NM in configure [Weigelt] +- Use TEST_LDSHARED instead of LDSHARED to link test programs [Weigelt] +- Add +0 to _FILE_OFFSET_BITS and _LFS64_LARGEFILE in case not defined +- Fix bug in gzeof() to take into account unused input data +- Avoid initialization of structures with variables in puff.c +- Updated win32/README-WIN32.txt [Rowe] + +Changes in 1.2.4.1 (28 Mar 2010) +- Remove the use of [a-z] constructs for sed in configure [gentoo 310225] +- Remove $(SHAREDLIB) from LIBS in Makefile.in [Creech] +- Restore "for debugging" comment on sprintf() in gzlib.c +- Remove fdopen for MVS from gzguts.h +- Put new README-WIN32.txt in win32 [Rowe] +- Add check for shell to configure and invoke another shell if needed +- Fix big fat stinking bug in gzseek() on uncompressed files +- Remove vestigial F_OPEN64 define in zutil.h +- Set and check the value of _LARGEFILE_SOURCE and _LARGEFILE64_SOURCE +- Avoid errors on non-LFS systems when applications define LFS macros +- Set EXE to ".exe" in configure for MINGW [Kahle] +- Match crc32() in crc32.c exactly to the prototype in zlib.h [Sherrill] +- Add prefix for cross-compilation in win32/makefile.gcc [Bar-Lev] +- Add DLL install in win32/makefile.gcc [Bar-Lev] +- Allow Linux* or linux* from uname in configure [Bar-Lev] +- Allow ldconfig to be redefined in configure and Makefile.in [Bar-Lev] +- Add cross-compilation prefixes to configure [Bar-Lev] +- Match type exactly in gz_load() invocation in gzread.c +- Match type exactly of zcalloc() in zutil.c to zlib.h alloc_func +- Provide prototypes for *64 functions when building zlib without LFS +- Don't use -lc when linking shared library on MinGW +- Remove errno.h check in configure and vestigial errno code in zutil.h + +Changes in 1.2.4 (14 Mar 2010) +- Fix VER3 extraction in configure for no fourth subversion +- Update zlib.3, add docs to Makefile.in to make .pdf out of it +- Add zlib.3.pdf to distribution +- Don't set error code in gzerror() if passed pointer is NULL +- Apply destination directory fixes to CMakeLists.txt [Lowman] +- Move #cmakedefine's to a new zconf.in.cmakein +- Restore zconf.h for builds that don't use configure or cmake +- Add distclean to dummy Makefile for convenience +- Update and improve INDEX, README, and FAQ +- Update CMakeLists.txt for the return of zconf.h [Lowman] +- Update contrib/vstudio/vc9 and vc10 [Vollant] +- Change libz.dll.a back to libzdll.a in win32/Makefile.gcc +- Apply license and readme changes to contrib/asm686 [Raiter] +- Check file name lengths and add -c option in minigzip.c [Li] +- Update contrib/amd64 and contrib/masmx86/ [Vollant] +- Avoid use of "eof" parameter in trees.c to not shadow library variable +- Update make_vms.com for removal of zlibdefs.h [Zinser] +- Update assembler code and vstudio projects in contrib [Vollant] +- Remove outdated assembler code contrib/masm686 and contrib/asm586 +- Remove old vc7 and vc8 from contrib/vstudio +- Update win32/Makefile.msc, add ZLIB_VER_SUBREVISION [Rowe] +- Fix memory leaks in gzclose_r() and gzclose_w(), file leak in gz_open() +- Add contrib/gcc_gvmat64 for longest_match and inflate_fast [Vollant] +- Remove *64 functions from win32/zlib.def (they're not 64-bit yet) +- Fix bug in void-returning vsprintf() case in gzwrite.c +- Fix name change from inflate.h in contrib/inflate86/inffas86.c +- Check if temporary file exists before removing in make_vms.com [Zinser] +- Fix make install and uninstall for --static option +- Fix usage of _MSC_VER in gzguts.h and zutil.h [Truta] +- Update readme.txt in contrib/masmx64 and masmx86 to assemble + +Changes in 1.2.3.9 (21 Feb 2010) +- Expunge gzio.c +- Move as400 build information to old +- Fix updates in contrib/minizip and contrib/vstudio +- Add const to vsnprintf test in configure to avoid warnings [Weigelt] +- Delete zconf.h (made by configure) [Weigelt] +- Change zconf.in.h to zconf.h.in per convention [Weigelt] +- Check for NULL buf in gzgets() +- Return empty string for gzgets() with len == 1 (like fgets()) +- Fix description of gzgets() in zlib.h for end-of-file, NULL return +- Update minizip to 1.1 [Vollant] +- Avoid MSVC loss of data warnings in gzread.c, gzwrite.c +- Note in zlib.h that gzerror() should be used to distinguish from EOF +- Remove use of snprintf() from gzlib.c +- Fix bug in gzseek() +- Update contrib/vstudio, adding vc9 and vc10 [Kuno, Vollant] +- Fix zconf.h generation in CMakeLists.txt [Lowman] +- Improve comments in zconf.h where modified by configure + +Changes in 1.2.3.8 (13 Feb 2010) +- Clean up text files (tabs, trailing whitespace, etc.) [Oberhumer] +- Use z_off64_t in gz_zero() and gz_skip() to match state->skip +- Avoid comparison problem when sizeof(int) == sizeof(z_off64_t) +- Revert to Makefile.in from 1.2.3.6 (live with the clutter) +- Fix missing error return in gzflush(), add zlib.h note +- Add *64 functions to zlib.map [Levin] +- Fix signed/unsigned comparison in gz_comp() +- Use SFLAGS when testing shared linking in configure +- Add --64 option to ./configure to use -m64 with gcc +- Fix ./configure --help to correctly name options +- Have make fail if a test fails [Levin] +- Avoid buffer overrun in contrib/masmx64/gvmat64.asm [Simpson] +- Remove assembler object files from contrib + +Changes in 1.2.3.7 (24 Jan 2010) +- Always gzopen() with O_LARGEFILE if available +- Fix gzdirect() to work immediately after gzopen() or gzdopen() +- Make gzdirect() more precise when the state changes while reading +- Improve zlib.h documentation in many places +- Catch memory allocation failure in gz_open() +- Complete close operation if seek forward in gzclose_w() fails +- Return Z_ERRNO from gzclose_r() if close() fails +- Return Z_STREAM_ERROR instead of EOF for gzclose() being passed NULL +- Return zero for gzwrite() errors to match zlib.h description +- Return -1 on gzputs() error to match zlib.h description +- Add zconf.in.h to allow recovery from configure modification [Weigelt] +- Fix static library permissions in Makefile.in [Weigelt] +- Avoid warnings in configure tests that hide functionality [Weigelt] +- Add *BSD and DragonFly to Linux case in configure [gentoo 123571] +- Change libzdll.a to libz.dll.a in win32/Makefile.gcc [gentoo 288212] +- Avoid access of uninitialized data for first inflateReset2 call [Gomes] +- Keep object files in subdirectories to reduce the clutter somewhat +- Remove default Makefile and zlibdefs.h, add dummy Makefile +- Add new external functions to Z_PREFIX, remove duplicates, z_z_ -> z_ +- Remove zlibdefs.h completely -- modify zconf.h instead + +Changes in 1.2.3.6 (17 Jan 2010) +- Avoid void * arithmetic in gzread.c and gzwrite.c +- Make compilers happier with const char * for gz_error message +- Avoid unused parameter warning in inflate.c +- Avoid signed-unsigned comparison warning in inflate.c +- Indent #pragma's for traditional C +- Fix usage of strwinerror() in glib.c, change to gz_strwinerror() +- Correct email address in configure for system options +- Update make_vms.com and add make_vms.com to contrib/minizip [Zinser] +- Update zlib.map [Brown] +- Fix Makefile.in for Solaris 10 make of example64 and minizip64 [Torok] +- Apply various fixes to CMakeLists.txt [Lowman] +- Add checks on len in gzread() and gzwrite() +- Add error message for no more room for gzungetc() +- Remove zlib version check in gzwrite() +- Defer compression of gzprintf() result until need to +- Use snprintf() in gzdopen() if available +- Remove USE_MMAP configuration determination (only used by minigzip) +- Remove examples/pigz.c (available separately) +- Update examples/gun.c to 1.6 + +Changes in 1.2.3.5 (8 Jan 2010) +- Add space after #if in zutil.h for some compilers +- Fix relatively harmless bug in deflate_fast() [Exarevsky] +- Fix same problem in deflate_slow() +- Add $(SHAREDLIBV) to LIBS in Makefile.in [Brown] +- Add deflate_rle() for faster Z_RLE strategy run-length encoding +- Add deflate_huff() for faster Z_HUFFMAN_ONLY encoding +- Change name of "write" variable in inffast.c to avoid library collisions +- Fix premature EOF from gzread() in gzio.c [Brown] +- Use zlib header window size if windowBits is 0 in inflateInit2() +- Remove compressBound() call in deflate.c to avoid linking compress.o +- Replace use of errno in gz* with functions, support WinCE [Alves] +- Provide alternative to perror() in minigzip.c for WinCE [Alves] +- Don't use _vsnprintf on later versions of MSVC [Lowman] +- Add CMake build script and input file [Lowman] +- Update contrib/minizip to 1.1 [Svensson, Vollant] +- Moved nintendods directory from contrib to . +- Replace gzio.c with a new set of routines with the same functionality +- Add gzbuffer(), gzoffset(), gzclose_r(), gzclose_w() as part of above +- Update contrib/minizip to 1.1b +- Change gzeof() to return 0 on error instead of -1 to agree with zlib.h + +Changes in 1.2.3.4 (21 Dec 2009) +- Use old school .SUFFIXES in Makefile.in for FreeBSD compatibility +- Update comments in configure and Makefile.in for default --shared +- Fix test -z's in configure [Marquess] +- Build examplesh and minigzipsh when not testing +- Change NULL's to Z_NULL's in deflate.c and in comments in zlib.h +- Import LDFLAGS from the environment in configure +- Fix configure to populate SFLAGS with discovered CFLAGS options +- Adapt make_vms.com to the new Makefile.in [Zinser] +- Add zlib2ansi script for C++ compilation [Marquess] +- Add _FILE_OFFSET_BITS=64 test to make test (when applicable) +- Add AMD64 assembler code for longest match to contrib [Teterin] +- Include options from $SFLAGS when doing $LDSHARED +- Simplify 64-bit file support by introducing z_off64_t type +- Make shared object files in objs directory to work around old Sun cc +- Use only three-part version number for Darwin shared compiles +- Add rc option to ar in Makefile.in for when ./configure not run +- Add -WI,-rpath,. to LDFLAGS for OSF 1 V4* +- Set LD_LIBRARYN32_PATH for SGI IRIX shared compile +- Protect against _FILE_OFFSET_BITS being defined when compiling zlib +- Rename Makefile.in targets allstatic to static and allshared to shared +- Fix static and shared Makefile.in targets to be independent +- Correct error return bug in gz_open() by setting state [Brown] +- Put spaces before ;;'s in configure for better sh compatibility +- Add pigz.c (parallel implementation of gzip) to examples/ +- Correct constant in crc32.c to UL [Leventhal] +- Reject negative lengths in crc32_combine() +- Add inflateReset2() function to work like inflateEnd()/inflateInit2() +- Include sys/types.h for _LARGEFILE64_SOURCE [Brown] +- Correct typo in doc/algorithm.txt [Janik] +- Fix bug in adler32_combine() [Zhu] +- Catch missing-end-of-block-code error in all inflates and in puff + Assures that random input to inflate eventually results in an error +- Added enough.c (calculation of ENOUGH for inftrees.h) to examples/ +- Update ENOUGH and its usage to reflect discovered bounds +- Fix gzerror() error report on empty input file [Brown] +- Add ush casts in trees.c to avoid pedantic runtime errors +- Fix typo in zlib.h uncompress() description [Reiss] +- Correct inflate() comments with regard to automatic header detection +- Remove deprecation comment on Z_PARTIAL_FLUSH (it stays) +- Put new version of gzlog (2.0) in examples with interruption recovery +- Add puff compile option to permit invalid distance-too-far streams +- Add puff TEST command options, ability to read piped input +- Prototype the *64 functions in zlib.h when _FILE_OFFSET_BITS == 64, but + _LARGEFILE64_SOURCE not defined +- Fix Z_FULL_FLUSH to truly erase the past by resetting s->strstart +- Fix deflateSetDictionary() to use all 32K for output consistency +- Remove extraneous #define MIN_LOOKAHEAD in deflate.c (in deflate.h) +- Clear bytes after deflate lookahead to avoid use of uninitialized data +- Change a limit in inftrees.c to be more transparent to Coverity Prevent +- Update win32/zlib.def with exported symbols from zlib.h +- Correct spelling errors in zlib.h [Willem, Sobrado] +- Allow Z_BLOCK for deflate() to force a new block +- Allow negative bits in inflatePrime() to delete existing bit buffer +- Add Z_TREES flush option to inflate() to return at end of trees +- Add inflateMark() to return current state information for random access +- Add Makefile for NintendoDS to contrib [Costa] +- Add -w in configure compile tests to avoid spurious warnings [Beucler] +- Fix typos in zlib.h comments for deflateSetDictionary() +- Fix EOF detection in transparent gzread() [Maier] + +Changes in 1.2.3.3 (2 October 2006) +- Make --shared the default for configure, add a --static option +- Add compile option to permit invalid distance-too-far streams +- Add inflateUndermine() function which is required to enable above +- Remove use of "this" variable name for C++ compatibility [Marquess] +- Add testing of shared library in make test, if shared library built +- Use ftello() and fseeko() if available instead of ftell() and fseek() +- Provide two versions of all functions that use the z_off_t type for + binary compatibility -- a normal version and a 64-bit offset version, + per the Large File Support Extension when _LARGEFILE64_SOURCE is + defined; use the 64-bit versions by default when _FILE_OFFSET_BITS + is defined to be 64 +- Add a --uname= option to configure to perhaps help with cross-compiling + +Changes in 1.2.3.2 (3 September 2006) +- Turn off silly Borland warnings [Hay] +- Use off64_t and define _LARGEFILE64_SOURCE when present +- Fix missing dependency on inffixed.h in Makefile.in +- Rig configure --shared to build both shared and static [Teredesai, Truta] +- Remove zconf.in.h and instead create a new zlibdefs.h file +- Fix contrib/minizip/unzip.c non-encrypted after encrypted [Vollant] +- Add treebuild.xml (see http://treebuild.metux.de/) [Weigelt] + +Changes in 1.2.3.1 (16 August 2006) +- Add watcom directory with OpenWatcom make files [Daniel] +- Remove #undef of FAR in zconf.in.h for MVS [Fedtke] +- Update make_vms.com [Zinser] +- Use -fPIC for shared build in configure [Teredesai, Nicholson] +- Use only major version number for libz.so on IRIX and OSF1 [Reinholdtsen] diff --git a/zlib-1.2.7/.!8498!zlib.3.pdf b/zlib-1.2.7/.!8498!zlib.3.pdf new file mode 100755 index 000000000..9ab49ee00 Binary files /dev/null and b/zlib-1.2.7/.!8498!zlib.3.pdf differ diff --git a/zlib-1.2.7/Makefile b/zlib-1.2.7/Makefile deleted file mode 100755 index 6bba86c73..000000000 --- a/zlib-1.2.7/Makefile +++ /dev/null @@ -1,5 +0,0 @@ -all: - -@echo "Please use ./configure first. Thank you." - -distclean: - make -f Makefile.in distclean diff --git a/zlib-1.2.7/contrib/.!3305!README.contrib b/zlib-1.2.7/contrib/.!3305!README.contrib new file mode 100755 index 000000000..f61eca07d --- /dev/null +++ b/zlib-1.2.7/contrib/.!3305!README.contrib @@ -0,0 +1,40 @@ +All files under this contrib directory are UNSUPPORTED. There were +provided by users of zlib and were not tested by the authors of zlib. +Use at your own risk. Please contact the authors of the contributions +for help about these, not the zlib authors. Thanks. + + +ada/ by Dmitriy Anisimkov + Support for Ada + See http://zlib-ada.sourceforge.net/ + +amd64/ by Mikhail Teterin + asm code for AMD64 + See patch at http://www.freebsd.org/cgi/query-pr.cgi?pr=bin/96393 + +asm686/ by Brian Raiter + asm code for Pentium and PPro/PII, using the AT&T (GNU as) syntax + See http://www.muppetlabs.com/~breadbox/software/assembly.html + +blast/ by Mark Adler + Decompressor for output of PKWare Data Compression Library (DCL) + +delphi/ by Cosmin Truta + Support for Delphi and C++ Builder + +dotzlib/ by Henrik Ravn + Support for Microsoft .Net and Visual C++ .Net + +gcc_gvmat64/by Gilles Vollant + GCC Version of x86 64-bit (AMD64 and Intel EM64t) code for x64 + assembler to replace longest_match() and inflate_fast() + +infback9/ by Mark Adler + Unsupported diffs to infback to decode the deflate64 format + +inflate86/ by Chris Anderson + Tuned x86 gcc asm code to replace inflate_fast() + +iostream/ by Kevin Ruland + A C++ I/O streams interface to the zlib gz* functions + diff --git a/zlib-1.2.7/contrib/.!3305!README.contribr b/zlib-1.2.7/contrib/.!3305!README.contribr new file mode 100755 index 000000000..f61eca07d --- /dev/null +++ b/zlib-1.2.7/contrib/.!3305!README.contribr @@ -0,0 +1,40 @@ +All files under this contrib directory are UNSUPPORTED. There were +provided by users of zlib and were not tested by the authors of zlib. +Use at your own risk. Please contact the authors of the contributions +for help about these, not the zlib authors. Thanks. + + +ada/ by Dmitriy Anisimkov + Support for Ada + See http://zlib-ada.sourceforge.net/ + +amd64/ by Mikhail Teterin + asm code for AMD64 + See patch at http://www.freebsd.org/cgi/query-pr.cgi?pr=bin/96393 + +asm686/ by Brian Raiter + asm code for Pentium and PPro/PII, using the AT&T (GNU as) syntax + See http://www.muppetlabs.com/~breadbox/software/assembly.html + +blast/ by Mark Adler + Decompressor for output of PKWare Data Compression Library (DCL) + +delphi/ by Cosmin Truta + Support for Delphi and C++ Builder + +dotzlib/ by Henrik Ravn + Support for Microsoft .Net and Visual C++ .Net + +gcc_gvmat64/by Gilles Vollant + GCC Version of x86 64-bit (AMD64 and Intel EM64t) code for x64 + assembler to replace longest_match() and inflate_fast() + +infback9/ by Mark Adler + Unsupported diffs to infback to decode the deflate64 format + +inflate86/ by Chris Anderson + Tuned x86 gcc asm code to replace inflate_fast() + +iostream/ by Kevin Ruland + A C++ I/O streams interface to the zlib gz* functions + diff --git a/zlib-1.2.7/contrib/.!6601!README.contrib b/zlib-1.2.7/contrib/.!6601!README.contrib new file mode 100755 index 000000000..f61eca07d --- /dev/null +++ b/zlib-1.2.7/contrib/.!6601!README.contrib @@ -0,0 +1,40 @@ +All files under this contrib directory are UNSUPPORTED. There were +provided by users of zlib and were not tested by the authors of zlib. +Use at your own risk. Please contact the authors of the contributions +for help about these, not the zlib authors. Thanks. + + +ada/ by Dmitriy Anisimkov + Support for Ada + See http://zlib-ada.sourceforge.net/ + +amd64/ by Mikhail Teterin + asm code for AMD64 + See patch at http://www.freebsd.org/cgi/query-pr.cgi?pr=bin/96393 + +asm686/ by Brian Raiter + asm code for Pentium and PPro/PII, using the AT&T (GNU as) syntax + See http://www.muppetlabs.com/~breadbox/software/assembly.html + +blast/ by Mark Adler + Decompressor for output of PKWare Data Compression Library (DCL) + +delphi/ by Cosmin Truta + Support for Delphi and C++ Builder + +dotzlib/ by Henrik Ravn + Support for Microsoft .Net and Visual C++ .Net + +gcc_gvmat64/by Gilles Vollant + GCC Version of x86 64-bit (AMD64 and Intel EM64t) code for x64 + assembler to replace longest_match() and inflate_fast() + +infback9/ by Mark Adler + Unsupported diffs to infback to decode the deflate64 format + +inflate86/ by Chris Anderson + Tuned x86 gcc asm code to replace inflate_fast() + +iostream/ by Kevin Ruland + A C++ I/O streams interface to the zlib gz* functions + diff --git a/zlib-1.2.7/contrib/.!8276!README.contrib b/zlib-1.2.7/contrib/.!8276!README.contrib new file mode 100755 index 000000000..f61eca07d --- /dev/null +++ b/zlib-1.2.7/contrib/.!8276!README.contrib @@ -0,0 +1,40 @@ +All files under this contrib directory are UNSUPPORTED. There were +provided by users of zlib and were not tested by the authors of zlib. +Use at your own risk. Please contact the authors of the contributions +for help about these, not the zlib authors. Thanks. + + +ada/ by Dmitriy Anisimkov + Support for Ada + See http://zlib-ada.sourceforge.net/ + +amd64/ by Mikhail Teterin + asm code for AMD64 + See patch at http://www.freebsd.org/cgi/query-pr.cgi?pr=bin/96393 + +asm686/ by Brian Raiter + asm code for Pentium and PPro/PII, using the AT&T (GNU as) syntax + See http://www.muppetlabs.com/~breadbox/software/assembly.html + +blast/ by Mark Adler + Decompressor for output of PKWare Data Compression Library (DCL) + +delphi/ by Cosmin Truta + Support for Delphi and C++ Builder + +dotzlib/ by Henrik Ravn + Support for Microsoft .Net and Visual C++ .Net + +gcc_gvmat64/by Gilles Vollant + GCC Version of x86 64-bit (AMD64 and Intel EM64t) code for x64 + assembler to replace longest_match() and inflate_fast() + +infback9/ by Mark Adler + Unsupported diffs to infback to decode the deflate64 format + +inflate86/ by Chris Anderson + Tuned x86 gcc asm code to replace inflate_fast() + +iostream/ by Kevin Ruland + A C++ I/O streams interface to the zlib gz* functions + diff --git a/zlib-1.2.7/contrib/blast/.!3225!test.pk b/zlib-1.2.7/contrib/blast/.!3225!test.pk new file mode 100755 index 000000000..e69de29bb diff --git a/zlib-1.2.7/contrib/blast/.!3225!test.pkr b/zlib-1.2.7/contrib/blast/.!3225!test.pkr new file mode 100755 index 000000000..e69de29bb diff --git a/zlib-1.2.7/contrib/blast/.!6511!test.pk b/zlib-1.2.7/contrib/blast/.!6511!test.pk new file mode 100755 index 000000000..e69de29bb diff --git a/zlib-1.2.7/contrib/blast/.!8097!test.pk b/zlib-1.2.7/contrib/blast/.!8097!test.pk new file mode 100755 index 000000000..e69de29bb diff --git a/zlib-1.2.7/contrib/blast/Makefile b/zlib-1.2.7/contrib/blast/Makefile deleted file mode 100755 index 9be80bafe..000000000 --- a/zlib-1.2.7/contrib/blast/Makefile +++ /dev/null @@ -1,8 +0,0 @@ -blast: blast.c blast.h - cc -DTEST -o blast blast.c - -test: blast - blast < test.pk | cmp - test.txt - -clean: - rm -f blast blast.o diff --git a/zlib-1.2.7/contrib/blast/test.txt b/zlib-1.2.7/contrib/blast/test.txt index bfdf1c5dc..159002de5 100755 --- a/zlib-1.2.7/contrib/blast/test.txt +++ b/zlib-1.2.7/contrib/blast/test.txt @@ -1 +1 @@ -AIAIAIAIAIAIA \ No newline at end of file +AIAIAIAIAIAIA diff --git a/zlib-1.2.7/contrib/dotzlib/.!3242!DotZLib.chm b/zlib-1.2.7/contrib/dotzlib/.!3242!DotZLib.chm new file mode 100755 index 000000000..e69de29bb diff --git a/zlib-1.2.7/contrib/dotzlib/.!3242!DotZLib.chmr b/zlib-1.2.7/contrib/dotzlib/.!3242!DotZLib.chmr new file mode 100755 index 000000000..e69de29bb diff --git a/zlib-1.2.7/contrib/dotzlib/.!6537!DotZLib.chm b/zlib-1.2.7/contrib/dotzlib/.!6537!DotZLib.chm new file mode 100755 index 000000000..e69de29bb diff --git a/zlib-1.2.7/contrib/dotzlib/.!8149!DotZLib.chm b/zlib-1.2.7/contrib/dotzlib/.!8149!DotZLib.chm new file mode 100755 index 000000000..e69de29bb diff --git a/zlib-1.2.7/contrib/dotzlib/DotZLib.build b/zlib-1.2.7/contrib/dotzlib/DotZLib.build index 7f90d6bc7..d263a3cd6 100755 --- a/zlib-1.2.7/contrib/dotzlib/DotZLib.build +++ b/zlib-1.2.7/contrib/dotzlib/DotZLib.build @@ -30,4 +30,4 @@ - \ No newline at end of file + diff --git a/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3232!ChecksumImpl.cs b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3232!ChecksumImpl.cs new file mode 100755 index 000000000..5f7c77da4 --- /dev/null +++ b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3232!ChecksumImpl.cs @@ -0,0 +1 @@ +// diff --git a/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3232!ChecksumImpl.csr b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3232!ChecksumImpl.csr new file mode 100755 index 000000000..5f7c77da4 --- /dev/null +++ b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3232!ChecksumImpl.csr @@ -0,0 +1 @@ +// diff --git a/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3233!CircularBuffer.cs b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3233!CircularBuffer.cs new file mode 100755 index 000000000..5f7c77da4 --- /dev/null +++ b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3233!CircularBuffer.cs @@ -0,0 +1 @@ +// diff --git a/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3233!CircularBuffer.csr b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3233!CircularBuffer.csr new file mode 100755 index 000000000..5f7c77da4 --- /dev/null +++ b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3233!CircularBuffer.csr @@ -0,0 +1 @@ +// diff --git a/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3234!CodecBase.cs b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3234!CodecBase.cs new file mode 100755 index 000000000..5f7c77da4 --- /dev/null +++ b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3234!CodecBase.cs @@ -0,0 +1 @@ +// diff --git a/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3234!CodecBase.csr b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3234!CodecBase.csr new file mode 100755 index 000000000..5f7c77da4 --- /dev/null +++ b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3234!CodecBase.csr @@ -0,0 +1 @@ +// diff --git a/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3235!Deflater.cs b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3235!Deflater.cs new file mode 100755 index 000000000..5f7c77da4 --- /dev/null +++ b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3235!Deflater.cs @@ -0,0 +1 @@ +// diff --git a/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3235!Deflater.csr b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3235!Deflater.csr new file mode 100755 index 000000000..5f7c77da4 --- /dev/null +++ b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3235!Deflater.csr @@ -0,0 +1 @@ +// diff --git a/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3236!DotZLib.cs b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3236!DotZLib.cs new file mode 100755 index 000000000..5f7c77da4 --- /dev/null +++ b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3236!DotZLib.cs @@ -0,0 +1 @@ +// diff --git a/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3236!DotZLib.csr b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3236!DotZLib.csr new file mode 100755 index 000000000..5f7c77da4 --- /dev/null +++ b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3236!DotZLib.csr @@ -0,0 +1 @@ +// diff --git a/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3238!GZipStream.cs b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3238!GZipStream.cs new file mode 100755 index 000000000..5f7c77da4 --- /dev/null +++ b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3238!GZipStream.cs @@ -0,0 +1 @@ +// diff --git a/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3238!GZipStream.csr b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3238!GZipStream.csr new file mode 100755 index 000000000..5f7c77da4 --- /dev/null +++ b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3238!GZipStream.csr @@ -0,0 +1 @@ +// diff --git a/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3239!Inflater.cs b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3239!Inflater.cs new file mode 100755 index 000000000..5f7c77da4 --- /dev/null +++ b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3239!Inflater.cs @@ -0,0 +1 @@ +// diff --git a/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3239!Inflater.csr b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3239!Inflater.csr new file mode 100755 index 000000000..5f7c77da4 --- /dev/null +++ b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3239!Inflater.csr @@ -0,0 +1 @@ +// diff --git a/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3240!UnitTests.cs b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3240!UnitTests.cs new file mode 100755 index 000000000..5f7c77da4 --- /dev/null +++ b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3240!UnitTests.cs @@ -0,0 +1 @@ +// diff --git a/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3240!UnitTests.csr b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3240!UnitTests.csr new file mode 100755 index 000000000..5f7c77da4 --- /dev/null +++ b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!3240!UnitTests.csr @@ -0,0 +1 @@ +// diff --git a/zlib-1.2.7/contrib/dotzlib/DotZLib/.!6527!ChecksumImpl.cs b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!6527!ChecksumImpl.cs new file mode 100755 index 000000000..5f7c77da4 --- /dev/null +++ b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!6527!ChecksumImpl.cs @@ -0,0 +1 @@ +// diff --git a/zlib-1.2.7/contrib/dotzlib/DotZLib/.!6528!CircularBuffer.cs b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!6528!CircularBuffer.cs new file mode 100755 index 000000000..5f7c77da4 --- /dev/null +++ b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!6528!CircularBuffer.cs @@ -0,0 +1 @@ +// diff --git a/zlib-1.2.7/contrib/dotzlib/DotZLib/.!6529!CodecBase.cs b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!6529!CodecBase.cs new file mode 100755 index 000000000..5f7c77da4 --- /dev/null +++ b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!6529!CodecBase.cs @@ -0,0 +1 @@ +// diff --git a/zlib-1.2.7/contrib/dotzlib/DotZLib/.!6530!Deflater.cs b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!6530!Deflater.cs new file mode 100755 index 000000000..5f7c77da4 --- /dev/null +++ b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!6530!Deflater.cs @@ -0,0 +1 @@ +// diff --git a/zlib-1.2.7/contrib/dotzlib/DotZLib/.!6531!DotZLib.cs b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!6531!DotZLib.cs new file mode 100755 index 000000000..5f7c77da4 --- /dev/null +++ b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!6531!DotZLib.cs @@ -0,0 +1 @@ +// diff --git a/zlib-1.2.7/contrib/dotzlib/DotZLib/.!6533!GZipStream.cs b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!6533!GZipStream.cs new file mode 100755 index 000000000..5f7c77da4 --- /dev/null +++ b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!6533!GZipStream.cs @@ -0,0 +1 @@ +// diff --git a/zlib-1.2.7/contrib/dotzlib/DotZLib/.!6534!Inflater.cs b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!6534!Inflater.cs new file mode 100755 index 000000000..5f7c77da4 --- /dev/null +++ b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!6534!Inflater.cs @@ -0,0 +1 @@ +// diff --git a/zlib-1.2.7/contrib/dotzlib/DotZLib/.!6535!UnitTests.cs b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!6535!UnitTests.cs new file mode 100755 index 000000000..5f7c77da4 --- /dev/null +++ b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!6535!UnitTests.cs @@ -0,0 +1 @@ +// diff --git a/zlib-1.2.7/contrib/dotzlib/DotZLib/.!8137!ChecksumImpl.cs b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!8137!ChecksumImpl.cs new file mode 100755 index 000000000..5f7c77da4 --- /dev/null +++ b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!8137!ChecksumImpl.cs @@ -0,0 +1 @@ +// diff --git a/zlib-1.2.7/contrib/dotzlib/DotZLib/.!8138!CircularBuffer.cs b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!8138!CircularBuffer.cs new file mode 100755 index 000000000..5f7c77da4 --- /dev/null +++ b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!8138!CircularBuffer.cs @@ -0,0 +1 @@ +// diff --git a/zlib-1.2.7/contrib/dotzlib/DotZLib/.!8139!CodecBase.cs b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!8139!CodecBase.cs new file mode 100755 index 000000000..5f7c77da4 --- /dev/null +++ b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!8139!CodecBase.cs @@ -0,0 +1 @@ +// diff --git a/zlib-1.2.7/contrib/dotzlib/DotZLib/.!8140!Deflater.cs b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!8140!Deflater.cs new file mode 100755 index 000000000..5f7c77da4 --- /dev/null +++ b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!8140!Deflater.cs @@ -0,0 +1 @@ +// diff --git a/zlib-1.2.7/contrib/dotzlib/DotZLib/.!8141!DotZLib.cs b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!8141!DotZLib.cs new file mode 100755 index 000000000..5f7c77da4 --- /dev/null +++ b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!8141!DotZLib.cs @@ -0,0 +1 @@ +// diff --git a/zlib-1.2.7/contrib/dotzlib/DotZLib/.!8144!GZipStream.cs b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!8144!GZipStream.cs new file mode 100755 index 000000000..5f7c77da4 --- /dev/null +++ b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!8144!GZipStream.cs @@ -0,0 +1 @@ +// diff --git a/zlib-1.2.7/contrib/dotzlib/DotZLib/.!8145!Inflater.cs b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!8145!Inflater.cs new file mode 100755 index 000000000..5f7c77da4 --- /dev/null +++ b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!8145!Inflater.cs @@ -0,0 +1 @@ +// diff --git a/zlib-1.2.7/contrib/dotzlib/DotZLib/.!8146!UnitTests.cs b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!8146!UnitTests.cs new file mode 100755 index 000000000..5f7c77da4 --- /dev/null +++ b/zlib-1.2.7/contrib/dotzlib/DotZLib/.!8146!UnitTests.cs @@ -0,0 +1 @@ +// diff --git a/zlib-1.2.7/contrib/dotzlib/LICENSE_1_0.txt b/zlib-1.2.7/contrib/dotzlib/LICENSE_1_0.txt index 30aac2cf4..0755c1bc8 100755 --- a/zlib-1.2.7/contrib/dotzlib/LICENSE_1_0.txt +++ b/zlib-1.2.7/contrib/dotzlib/LICENSE_1_0.txt @@ -20,4 +20,4 @@ FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. \ No newline at end of file +DEALINGS IN THE SOFTWARE. diff --git a/zlib-1.2.7/contrib/minizip/Makefile b/zlib-1.2.7/contrib/minizip/Makefile deleted file mode 100755 index 84eaad20d..000000000 --- a/zlib-1.2.7/contrib/minizip/Makefile +++ /dev/null @@ -1,25 +0,0 @@ -CC=cc -CFLAGS=-O -I../.. - -UNZ_OBJS = miniunz.o unzip.o ioapi.o ../../libz.a -ZIP_OBJS = minizip.o zip.o ioapi.o ../../libz.a - -.c.o: - $(CC) -c $(CFLAGS) $*.c - -all: miniunz minizip - -miniunz: $(UNZ_OBJS) - $(CC) $(CFLAGS) -o $@ $(UNZ_OBJS) - -minizip: $(ZIP_OBJS) - $(CC) $(CFLAGS) -o $@ $(ZIP_OBJS) - -test: miniunz minizip - ./minizip test readme.txt - ./miniunz -l test.zip - mv readme.txt readme.old - ./miniunz test.zip - -clean: - /bin/rm -f *.o *~ minizip miniunz diff --git a/zlib-1.2.7/contrib/puff/.!3304!zeros.raw b/zlib-1.2.7/contrib/puff/.!3304!zeros.raw new file mode 100755 index 000000000..e69de29bb diff --git a/zlib-1.2.7/contrib/puff/.!3304!zeros.rawr b/zlib-1.2.7/contrib/puff/.!3304!zeros.rawr new file mode 100755 index 000000000..e69de29bb diff --git a/zlib-1.2.7/contrib/puff/.!6600!zeros.raw b/zlib-1.2.7/contrib/puff/.!6600!zeros.raw new file mode 100755 index 000000000..e69de29bb diff --git a/zlib-1.2.7/contrib/puff/.!8275!zeros.raw b/zlib-1.2.7/contrib/puff/.!8275!zeros.raw new file mode 100755 index 000000000..e69de29bb diff --git a/zlib-1.2.7/contrib/puff/Makefile b/zlib-1.2.7/contrib/puff/Makefile deleted file mode 100755 index 0e2594c80..000000000 --- a/zlib-1.2.7/contrib/puff/Makefile +++ /dev/null @@ -1,42 +0,0 @@ -CFLAGS=-O - -puff: puff.o pufftest.o - -puff.o: puff.h - -pufftest.o: puff.h - -test: puff - puff zeros.raw - -puft: puff.c puff.h pufftest.o - cc -fprofile-arcs -ftest-coverage -o puft puff.c pufftest.o - -# puff full coverage test (should say 100%) -cov: puft - @rm -f *.gcov *.gcda - @puft -w zeros.raw 2>&1 | cat > /dev/null - @echo '04' | xxd -r -p | puft 2> /dev/null || test $$? -eq 2 - @echo '00' | xxd -r -p | puft 2> /dev/null || test $$? -eq 2 - @echo '00 00 00 00 00' | xxd -r -p | puft 2> /dev/null || test $$? -eq 254 - @echo '00 01 00 fe ff' | xxd -r -p | puft 2> /dev/null || test $$? -eq 2 - @echo '01 01 00 fe ff 0a' | xxd -r -p | puft -f 2>&1 | cat > /dev/null - @echo '02 7e ff ff' | xxd -r -p | puft 2> /dev/null || test $$? -eq 246 - @echo '02' | xxd -r -p | puft 2> /dev/null || test $$? -eq 2 - @echo '04 80 49 92 24 49 92 24 0f b4 ff ff c3 04' | xxd -r -p | puft 2> /dev/null || test $$? -eq 2 - @echo '04 80 49 92 24 49 92 24 71 ff ff 93 11 00' | xxd -r -p | puft 2> /dev/null || test $$? -eq 249 - @echo '04 c0 81 08 00 00 00 00 20 7f eb 0b 00 00' | xxd -r -p | puft 2> /dev/null || test $$? -eq 246 - @echo '0b 00 00' | xxd -r -p | puft -f 2>&1 | cat > /dev/null - @echo '1a 07' | xxd -r -p | puft 2> /dev/null || test $$? -eq 246 - @echo '0c c0 81 00 00 00 00 00 90 ff 6b 04' | xxd -r -p | puft 2> /dev/null || test $$? -eq 245 - @puft -f zeros.raw 2>&1 | cat > /dev/null - @echo 'fc 00 00' | xxd -r -p | puft 2> /dev/null || test $$? -eq 253 - @echo '04 00 fe ff' | xxd -r -p | puft 2> /dev/null || test $$? -eq 252 - @echo '04 00 24 49' | xxd -r -p | puft 2> /dev/null || test $$? -eq 251 - @echo '04 80 49 92 24 49 92 24 0f b4 ff ff c3 84' | xxd -r -p | puft 2> /dev/null || test $$? -eq 248 - @echo '04 00 24 e9 ff ff' | xxd -r -p | puft 2> /dev/null || test $$? -eq 250 - @echo '04 00 24 e9 ff 6d' | xxd -r -p | puft 2> /dev/null || test $$? -eq 247 - @gcov -n puff.c - -clean: - rm -f puff puft *.o *.gc* diff --git a/zlib-1.2.7/contrib/testzlib/testzlib.txt b/zlib-1.2.7/contrib/testzlib/testzlib.txt index 62258f149..0c19cc4e5 100755 --- a/zlib-1.2.7/contrib/testzlib/testzlib.txt +++ b/zlib-1.2.7/contrib/testzlib/testzlib.txt @@ -7,4 +7,4 @@ copy to a directory file from : - contrib/masmx64 - contrib/vstudio/vc7 -and open testzlib8.sln \ No newline at end of file +and open testzlib8.sln diff --git a/zlib-1.2.7/contrib/untgz/Makefile b/zlib-1.2.7/contrib/untgz/Makefile deleted file mode 100755 index b54266fba..000000000 --- a/zlib-1.2.7/contrib/untgz/Makefile +++ /dev/null @@ -1,14 +0,0 @@ -CC=cc -CFLAGS=-g - -untgz: untgz.o ../../libz.a - $(CC) $(CFLAGS) -o untgz untgz.o -L../.. -lz - -untgz.o: untgz.c ../../zlib.h - $(CC) $(CFLAGS) -c -I../.. untgz.c - -../../libz.a: - cd ../..; ./configure; make - -clean: - rm -f untgz untgz.o *~ diff --git a/zlib-1.2.7/contrib/vstudio/vc10/miniunz.vcxproj b/zlib-1.2.7/contrib/vstudio/vc10/miniunz.vcxproj index 74e15c90d..9a5df98e4 100755 --- a/zlib-1.2.7/contrib/vstudio/vc10/miniunz.vcxproj +++ b/zlib-1.2.7/contrib/vstudio/vc10/miniunz.vcxproj @@ -307,4 +307,4 @@ - \ No newline at end of file + diff --git a/zlib-1.2.7/contrib/vstudio/vc10/miniunz.vcxproj.filters b/zlib-1.2.7/contrib/vstudio/vc10/miniunz.vcxproj.filters index 0b2a3de2d..87a02296a 100755 --- a/zlib-1.2.7/contrib/vstudio/vc10/miniunz.vcxproj.filters +++ b/zlib-1.2.7/contrib/vstudio/vc10/miniunz.vcxproj.filters @@ -19,4 +19,4 @@ Source Files - \ No newline at end of file + diff --git a/zlib-1.2.7/contrib/vstudio/vc10/miniunz.vcxproj.user b/zlib-1.2.7/contrib/vstudio/vc10/miniunz.vcxproj.user index 695b5c78b..f392a182d 100755 --- a/zlib-1.2.7/contrib/vstudio/vc10/miniunz.vcxproj.user +++ b/zlib-1.2.7/contrib/vstudio/vc10/miniunz.vcxproj.user @@ -1,3 +1,3 @@  - \ No newline at end of file + diff --git a/zlib-1.2.7/contrib/vstudio/vc10/minizip.vcxproj b/zlib-1.2.7/contrib/vstudio/vc10/minizip.vcxproj index 917e15652..e5bace69d 100755 --- a/zlib-1.2.7/contrib/vstudio/vc10/minizip.vcxproj +++ b/zlib-1.2.7/contrib/vstudio/vc10/minizip.vcxproj @@ -304,4 +304,4 @@ - \ No newline at end of file + diff --git a/zlib-1.2.7/contrib/vstudio/vc10/minizip.vcxproj.filters b/zlib-1.2.7/contrib/vstudio/vc10/minizip.vcxproj.filters index dd73cd313..76636cc4b 100755 --- a/zlib-1.2.7/contrib/vstudio/vc10/minizip.vcxproj.filters +++ b/zlib-1.2.7/contrib/vstudio/vc10/minizip.vcxproj.filters @@ -19,4 +19,4 @@ Source Files - \ No newline at end of file + diff --git a/zlib-1.2.7/contrib/vstudio/vc10/minizip.vcxproj.user b/zlib-1.2.7/contrib/vstudio/vc10/minizip.vcxproj.user index 695b5c78b..f392a182d 100755 --- a/zlib-1.2.7/contrib/vstudio/vc10/minizip.vcxproj.user +++ b/zlib-1.2.7/contrib/vstudio/vc10/minizip.vcxproj.user @@ -1,3 +1,3 @@  - \ No newline at end of file + diff --git a/zlib-1.2.7/contrib/vstudio/vc10/testzlib.vcxproj b/zlib-1.2.7/contrib/vstudio/vc10/testzlib.vcxproj index 9088d176f..f9fd5c903 100755 --- a/zlib-1.2.7/contrib/vstudio/vc10/testzlib.vcxproj +++ b/zlib-1.2.7/contrib/vstudio/vc10/testzlib.vcxproj @@ -417,4 +417,4 @@ - \ No newline at end of file + diff --git a/zlib-1.2.7/contrib/vstudio/vc10/testzlib.vcxproj.filters b/zlib-1.2.7/contrib/vstudio/vc10/testzlib.vcxproj.filters index 249daa89c..75f02eed3 100755 --- a/zlib-1.2.7/contrib/vstudio/vc10/testzlib.vcxproj.filters +++ b/zlib-1.2.7/contrib/vstudio/vc10/testzlib.vcxproj.filters @@ -55,4 +55,4 @@ Source Files - \ No newline at end of file + diff --git a/zlib-1.2.7/contrib/vstudio/vc10/testzlib.vcxproj.user b/zlib-1.2.7/contrib/vstudio/vc10/testzlib.vcxproj.user index 695b5c78b..f392a182d 100755 --- a/zlib-1.2.7/contrib/vstudio/vc10/testzlib.vcxproj.user +++ b/zlib-1.2.7/contrib/vstudio/vc10/testzlib.vcxproj.user @@ -1,3 +1,3 @@  - \ No newline at end of file + diff --git a/zlib-1.2.7/contrib/vstudio/vc10/testzlibdll.vcxproj b/zlib-1.2.7/contrib/vstudio/vc10/testzlibdll.vcxproj index bcb08ff95..120de757b 100755 --- a/zlib-1.2.7/contrib/vstudio/vc10/testzlibdll.vcxproj +++ b/zlib-1.2.7/contrib/vstudio/vc10/testzlibdll.vcxproj @@ -307,4 +307,4 @@ - \ No newline at end of file + diff --git a/zlib-1.2.7/contrib/vstudio/vc10/testzlibdll.vcxproj.filters b/zlib-1.2.7/contrib/vstudio/vc10/testzlibdll.vcxproj.filters index 53a8693bb..227e6df54 100755 --- a/zlib-1.2.7/contrib/vstudio/vc10/testzlibdll.vcxproj.filters +++ b/zlib-1.2.7/contrib/vstudio/vc10/testzlibdll.vcxproj.filters @@ -19,4 +19,4 @@ Source Files - \ No newline at end of file + diff --git a/zlib-1.2.7/contrib/vstudio/vc10/testzlibdll.vcxproj.user b/zlib-1.2.7/contrib/vstudio/vc10/testzlibdll.vcxproj.user index 695b5c78b..f392a182d 100755 --- a/zlib-1.2.7/contrib/vstudio/vc10/testzlibdll.vcxproj.user +++ b/zlib-1.2.7/contrib/vstudio/vc10/testzlibdll.vcxproj.user @@ -1,3 +1,3 @@  - \ No newline at end of file + diff --git a/zlib-1.2.7/contrib/vstudio/vc10/zlibstat.vcxproj b/zlib-1.2.7/contrib/vstudio/vc10/zlibstat.vcxproj index 2682fca24..5cc38bb54 100755 --- a/zlib-1.2.7/contrib/vstudio/vc10/zlibstat.vcxproj +++ b/zlib-1.2.7/contrib/vstudio/vc10/zlibstat.vcxproj @@ -454,4 +454,4 @@ - \ No newline at end of file + diff --git a/zlib-1.2.7/contrib/vstudio/vc10/zlibstat.vcxproj.filters b/zlib-1.2.7/contrib/vstudio/vc10/zlibstat.vcxproj.filters index c8c7f7ea3..25a504ddb 100755 --- a/zlib-1.2.7/contrib/vstudio/vc10/zlibstat.vcxproj.filters +++ b/zlib-1.2.7/contrib/vstudio/vc10/zlibstat.vcxproj.filters @@ -74,4 +74,4 @@ Source Files - \ No newline at end of file + diff --git a/zlib-1.2.7/contrib/vstudio/vc10/zlibstat.vcxproj.user b/zlib-1.2.7/contrib/vstudio/vc10/zlibstat.vcxproj.user index 695b5c78b..f392a182d 100755 --- a/zlib-1.2.7/contrib/vstudio/vc10/zlibstat.vcxproj.user +++ b/zlib-1.2.7/contrib/vstudio/vc10/zlibstat.vcxproj.user @@ -1,3 +1,3 @@  - \ No newline at end of file + diff --git a/zlib-1.2.7/contrib/vstudio/vc10/zlibvc.vcxproj b/zlib-1.2.7/contrib/vstudio/vc10/zlibvc.vcxproj index 9218fdce9..2fb54f6a1 100755 --- a/zlib-1.2.7/contrib/vstudio/vc10/zlibvc.vcxproj +++ b/zlib-1.2.7/contrib/vstudio/vc10/zlibvc.vcxproj @@ -678,4 +678,4 @@ bld_ml64.bat - \ No newline at end of file + diff --git a/zlib-1.2.7/contrib/vstudio/vc10/zlibvc.vcxproj.filters b/zlib-1.2.7/contrib/vstudio/vc10/zlibvc.vcxproj.filters index 180b71cd6..d074647a5 100755 --- a/zlib-1.2.7/contrib/vstudio/vc10/zlibvc.vcxproj.filters +++ b/zlib-1.2.7/contrib/vstudio/vc10/zlibvc.vcxproj.filters @@ -115,4 +115,4 @@ Header Files - \ No newline at end of file + diff --git a/zlib-1.2.7/contrib/vstudio/vc10/zlibvc.vcxproj.user b/zlib-1.2.7/contrib/vstudio/vc10/zlibvc.vcxproj.user index 695b5c78b..f392a182d 100755 --- a/zlib-1.2.7/contrib/vstudio/vc10/zlibvc.vcxproj.user +++ b/zlib-1.2.7/contrib/vstudio/vc10/zlibvc.vcxproj.user @@ -1,3 +1,3 @@  - \ No newline at end of file + diff --git a/zlib-1.2.7/examples/README.examples b/zlib-1.2.7/examples/README.examples deleted file mode 100755 index 56a31714e..000000000 --- a/zlib-1.2.7/examples/README.examples +++ /dev/null @@ -1,49 +0,0 @@ -This directory contains examples of the use of zlib and other relevant -programs and documentation. - -enough.c - calculation and justification of ENOUGH parameter in inftrees.h - - calculates the maximum table space used in inflate tree - construction over all possible Huffman codes - -fitblk.c - compress just enough input to nearly fill a requested output size - - zlib isn't designed to do this, but fitblk does it anyway - -gun.c - uncompress a gzip file - - illustrates the use of inflateBack() for high speed file-to-file - decompression using call-back functions - - is approximately twice as fast as gzip -d - - also provides Unix uncompress functionality, again twice as fast - -gzappend.c - append to a gzip file - - illustrates the use of the Z_BLOCK flush parameter for inflate() - - illustrates the use of deflatePrime() to start at any bit - -gzjoin.c - join gzip files without recalculating the crc or recompressing - - illustrates the use of the Z_BLOCK flush parameter for inflate() - - illustrates the use of crc32_combine() - -gzlog.c -gzlog.h - efficiently and robustly maintain a message log file in gzip format - - illustrates use of raw deflate, Z_PARTIAL_FLUSH, deflatePrime(), - and deflateSetDictionary() - - illustrates use of a gzip header extra field - -zlib_how.html - painfully comprehensive description of zpipe.c (see below) - - describes in excruciating detail the use of deflate() and inflate() - -zpipe.c - reads and writes zlib streams from stdin to stdout - - illustrates the proper use of deflate() and inflate() - - deeply commented in zlib_how.html (see above) - -zran.c - index a zlib or gzip stream and randomly access it - - illustrates the use of Z_BLOCK, inflatePrime(), and - inflateSetDictionary() to provide random access diff --git a/zlib-1.2.7/examples/enough.c b/zlib-1.2.7/examples/enough.c deleted file mode 100755 index c40410bad..000000000 --- a/zlib-1.2.7/examples/enough.c +++ /dev/null @@ -1,569 +0,0 @@ -/* enough.c -- determine the maximum size of inflate's Huffman code tables over - * all possible valid and complete Huffman codes, subject to a length limit. - * Copyright (C) 2007, 2008 Mark Adler - * Version 1.3 17 February 2008 Mark Adler - */ - -/* Version history: - 1.0 3 Jan 2007 First version (derived from codecount.c version 1.4) - 1.1 4 Jan 2007 Use faster incremental table usage computation - Prune examine() search on previously visited states - 1.2 5 Jan 2007 Comments clean up - As inflate does, decrease root for short codes - Refuse cases where inflate would increase root - 1.3 17 Feb 2008 Add argument for initial root table size - Fix bug for initial root table size == max - 1 - Use a macro to compute the history index - */ - -/* - Examine all possible Huffman codes for a given number of symbols and a - maximum code length in bits to determine the maximum table size for zilb's - inflate. Only complete Huffman codes are counted. - - Two codes are considered distinct if the vectors of the number of codes per - length are not identical. So permutations of the symbol assignments result - in the same code for the counting, as do permutations of the assignments of - the bit values to the codes (i.e. only canonical codes are counted). - - We build a code from shorter to longer lengths, determining how many symbols - are coded at each length. At each step, we have how many symbols remain to - be coded, what the last code length used was, and how many bit patterns of - that length remain unused. Then we add one to the code length and double the - number of unused patterns to graduate to the next code length. We then - assign all portions of the remaining symbols to that code length that - preserve the properties of a correct and eventually complete code. Those - properties are: we cannot use more bit patterns than are available; and when - all the symbols are used, there are exactly zero possible bit patterns - remaining. - - The inflate Huffman decoding algorithm uses two-level lookup tables for - speed. There is a single first-level table to decode codes up to root bits - in length (root == 9 in the current inflate implementation). The table - has 1 << root entries and is indexed by the next root bits of input. Codes - shorter than root bits have replicated table entries, so that the correct - entry is pointed to regardless of the bits that follow the short code. If - the code is longer than root bits, then the table entry points to a second- - level table. The size of that table is determined by the longest code with - that root-bit prefix. If that longest code has length len, then the table - has size 1 << (len - root), to index the remaining bits in that set of - codes. Each subsequent root-bit prefix then has its own sub-table. The - total number of table entries required by the code is calculated - incrementally as the number of codes at each bit length is populated. When - all of the codes are shorter than root bits, then root is reduced to the - longest code length, resulting in a single, smaller, one-level table. - - The inflate algorithm also provides for small values of root (relative to - the log2 of the number of symbols), where the shortest code has more bits - than root. In that case, root is increased to the length of the shortest - code. This program, by design, does not handle that case, so it is verified - that the number of symbols is less than 2^(root + 1). - - In order to speed up the examination (by about ten orders of magnitude for - the default arguments), the intermediate states in the build-up of a code - are remembered and previously visited branches are pruned. The memory - required for this will increase rapidly with the total number of symbols and - the maximum code length in bits. However this is a very small price to pay - for the vast speedup. - - First, all of the possible Huffman codes are counted, and reachable - intermediate states are noted by a non-zero count in a saved-results array. - Second, the intermediate states that lead to (root + 1) bit or longer codes - are used to look at all sub-codes from those junctures for their inflate - memory usage. (The amount of memory used is not affected by the number of - codes of root bits or less in length.) Third, the visited states in the - construction of those sub-codes and the associated calculation of the table - size is recalled in order to avoid recalculating from the same juncture. - Beginning the code examination at (root + 1) bit codes, which is enabled by - identifying the reachable nodes, accounts for about six of the orders of - magnitude of improvement for the default arguments. About another four - orders of magnitude come from not revisiting previous states. Out of - approximately 2x10^16 possible Huffman codes, only about 2x10^6 sub-codes - need to be examined to cover all of the possible table memory usage cases - for the default arguments of 286 symbols limited to 15-bit codes. - - Note that an unsigned long long type is used for counting. It is quite easy - to exceed the capacity of an eight-byte integer with a large number of - symbols and a large maximum code length, so multiple-precision arithmetic - would need to replace the unsigned long long arithmetic in that case. This - program will abort if an overflow occurs. The big_t type identifies where - the counting takes place. - - An unsigned long long type is also used for calculating the number of - possible codes remaining at the maximum length. This limits the maximum - code length to the number of bits in a long long minus the number of bits - needed to represent the symbols in a flat code. The code_t type identifies - where the bit pattern counting takes place. - */ - -#include -#include -#include -#include - -#define local static - -/* special data types */ -typedef unsigned long long big_t; /* type for code counting */ -typedef unsigned long long code_t; /* type for bit pattern counting */ -struct tab { /* type for been here check */ - size_t len; /* length of bit vector in char's */ - char *vec; /* allocated bit vector */ -}; - -/* The array for saving results, num[], is indexed with this triplet: - - syms: number of symbols remaining to code - left: number of available bit patterns at length len - len: number of bits in the codes currently being assigned - - Those indices are constrained thusly when saving results: - - syms: 3..totsym (totsym == total symbols to code) - left: 2..syms - 1, but only the evens (so syms == 8 -> 2, 4, 6) - len: 1..max - 1 (max == maximum code length in bits) - - syms == 2 is not saved since that immediately leads to a single code. left - must be even, since it represents the number of available bit patterns at - the current length, which is double the number at the previous length. - left ends at syms-1 since left == syms immediately results in a single code. - (left > sym is not allowed since that would result in an incomplete code.) - len is less than max, since the code completes immediately when len == max. - - The offset into the array is calculated for the three indices with the - first one (syms) being outermost, and the last one (len) being innermost. - We build the array with length max-1 lists for the len index, with syms-3 - of those for each symbol. There are totsym-2 of those, with each one - varying in length as a function of sym. See the calculation of index in - count() for the index, and the calculation of size in main() for the size - of the array. - - For the deflate example of 286 symbols limited to 15-bit codes, the array - has 284,284 entries, taking up 2.17 MB for an 8-byte big_t. More than - half of the space allocated for saved results is actually used -- not all - possible triplets are reached in the generation of valid Huffman codes. - */ - -/* The array for tracking visited states, done[], is itself indexed identically - to the num[] array as described above for the (syms, left, len) triplet. - Each element in the array is further indexed by the (mem, rem) doublet, - where mem is the amount of inflate table space used so far, and rem is the - remaining unused entries in the current inflate sub-table. Each indexed - element is simply one bit indicating whether the state has been visited or - not. Since the ranges for mem and rem are not known a priori, each bit - vector is of a variable size, and grows as needed to accommodate the visited - states. mem and rem are used to calculate a single index in a triangular - array. Since the range of mem is expected in the default case to be about - ten times larger than the range of rem, the array is skewed to reduce the - memory usage, with eight times the range for mem than for rem. See the - calculations for offset and bit in beenhere() for the details. - - For the deflate example of 286 symbols limited to 15-bit codes, the bit - vectors grow to total approximately 21 MB, in addition to the 4.3 MB done[] - array itself. - */ - -/* Globals to avoid propagating constants or constant pointers recursively */ -local int max; /* maximum allowed bit length for the codes */ -local int root; /* size of base code table in bits */ -local int large; /* largest code table so far */ -local size_t size; /* number of elements in num and done */ -local int *code; /* number of symbols assigned to each bit length */ -local big_t *num; /* saved results array for code counting */ -local struct tab *done; /* states already evaluated array */ - -/* Index function for num[] and done[] */ -#define INDEX(i,j,k) (((size_t)((i-1)>>1)*((i-2)>>1)+(j>>1)-1)*(max-1)+k-1) - -/* Free allocated space. Uses globals code, num, and done. */ -local void cleanup(void) -{ - size_t n; - - if (done != NULL) { - for (n = 0; n < size; n++) - if (done[n].len) - free(done[n].vec); - free(done); - } - if (num != NULL) - free(num); - if (code != NULL) - free(code); -} - -/* Return the number of possible Huffman codes using bit patterns of lengths - len through max inclusive, coding syms symbols, with left bit patterns of - length len unused -- return -1 if there is an overflow in the counting. - Keep a record of previous results in num to prevent repeating the same - calculation. Uses the globals max and num. */ -local big_t count(int syms, int len, int left) -{ - big_t sum; /* number of possible codes from this juncture */ - big_t got; /* value returned from count() */ - int least; /* least number of syms to use at this juncture */ - int most; /* most number of syms to use at this juncture */ - int use; /* number of bit patterns to use in next call */ - size_t index; /* index of this case in *num */ - - /* see if only one possible code */ - if (syms == left) - return 1; - - /* note and verify the expected state */ - assert(syms > left && left > 0 && len < max); - - /* see if we've done this one already */ - index = INDEX(syms, left, len); - got = num[index]; - if (got) - return got; /* we have -- return the saved result */ - - /* we need to use at least this many bit patterns so that the code won't be - incomplete at the next length (more bit patterns than symbols) */ - least = (left << 1) - syms; - if (least < 0) - least = 0; - - /* we can use at most this many bit patterns, lest there not be enough - available for the remaining symbols at the maximum length (if there were - no limit to the code length, this would become: most = left - 1) */ - most = (((code_t)left << (max - len)) - syms) / - (((code_t)1 << (max - len)) - 1); - - /* count all possible codes from this juncture and add them up */ - sum = 0; - for (use = least; use <= most; use++) { - got = count(syms - use, len + 1, (left - use) << 1); - sum += got; - if (got == -1 || sum < got) /* overflow */ - return -1; - } - - /* verify that all recursive calls are productive */ - assert(sum != 0); - - /* save the result and return it */ - num[index] = sum; - return sum; -} - -/* Return true if we've been here before, set to true if not. Set a bit in a - bit vector to indicate visiting this state. Each (syms,len,left) state - has a variable size bit vector indexed by (mem,rem). The bit vector is - lengthened if needed to allow setting the (mem,rem) bit. */ -local int beenhere(int syms, int len, int left, int mem, int rem) -{ - size_t index; /* index for this state's bit vector */ - size_t offset; /* offset in this state's bit vector */ - int bit; /* mask for this state's bit */ - size_t length; /* length of the bit vector in bytes */ - char *vector; /* new or enlarged bit vector */ - - /* point to vector for (syms,left,len), bit in vector for (mem,rem) */ - index = INDEX(syms, left, len); - mem -= 1 << root; - offset = (mem >> 3) + rem; - offset = ((offset * (offset + 1)) >> 1) + rem; - bit = 1 << (mem & 7); - - /* see if we've been here */ - length = done[index].len; - if (offset < length && (done[index].vec[offset] & bit) != 0) - return 1; /* done this! */ - - /* we haven't been here before -- set the bit to show we have now */ - - /* see if we need to lengthen the vector in order to set the bit */ - if (length <= offset) { - /* if we have one already, enlarge it, zero out the appended space */ - if (length) { - do { - length <<= 1; - } while (length <= offset); - vector = realloc(done[index].vec, length); - if (vector != NULL) - memset(vector + done[index].len, 0, length - done[index].len); - } - - /* otherwise we need to make a new vector and zero it out */ - else { - length = 1 << (len - root); - while (length <= offset) - length <<= 1; - vector = calloc(length, sizeof(char)); - } - - /* in either case, bail if we can't get the memory */ - if (vector == NULL) { - fputs("abort: unable to allocate enough memory\n", stderr); - cleanup(); - exit(1); - } - - /* install the new vector */ - done[index].len = length; - done[index].vec = vector; - } - - /* set the bit */ - done[index].vec[offset] |= bit; - return 0; -} - -/* Examine all possible codes from the given node (syms, len, left). Compute - the amount of memory required to build inflate's decoding tables, where the - number of code structures used so far is mem, and the number remaining in - the current sub-table is rem. Uses the globals max, code, root, large, and - done. */ -local void examine(int syms, int len, int left, int mem, int rem) -{ - int least; /* least number of syms to use at this juncture */ - int most; /* most number of syms to use at this juncture */ - int use; /* number of bit patterns to use in next call */ - - /* see if we have a complete code */ - if (syms == left) { - /* set the last code entry */ - code[len] = left; - - /* complete computation of memory used by this code */ - while (rem < left) { - left -= rem; - rem = 1 << (len - root); - mem += rem; - } - assert(rem == left); - - /* if this is a new maximum, show the entries used and the sub-code */ - if (mem > large) { - large = mem; - printf("max %d: ", mem); - for (use = root + 1; use <= max; use++) - if (code[use]) - printf("%d[%d] ", code[use], use); - putchar('\n'); - fflush(stdout); - } - - /* remove entries as we drop back down in the recursion */ - code[len] = 0; - return; - } - - /* prune the tree if we can */ - if (beenhere(syms, len, left, mem, rem)) - return; - - /* we need to use at least this many bit patterns so that the code won't be - incomplete at the next length (more bit patterns than symbols) */ - least = (left << 1) - syms; - if (least < 0) - least = 0; - - /* we can use at most this many bit patterns, lest there not be enough - available for the remaining symbols at the maximum length (if there were - no limit to the code length, this would become: most = left - 1) */ - most = (((code_t)left << (max - len)) - syms) / - (((code_t)1 << (max - len)) - 1); - - /* occupy least table spaces, creating new sub-tables as needed */ - use = least; - while (rem < use) { - use -= rem; - rem = 1 << (len - root); - mem += rem; - } - rem -= use; - - /* examine codes from here, updating table space as we go */ - for (use = least; use <= most; use++) { - code[len] = use; - examine(syms - use, len + 1, (left - use) << 1, - mem + (rem ? 1 << (len - root) : 0), rem << 1); - if (rem == 0) { - rem = 1 << (len - root); - mem += rem; - } - rem--; - } - - /* remove entries as we drop back down in the recursion */ - code[len] = 0; -} - -/* Look at all sub-codes starting with root + 1 bits. Look at only the valid - intermediate code states (syms, left, len). For each completed code, - calculate the amount of memory required by inflate to build the decoding - tables. Find the maximum amount of memory required and show the code that - requires that maximum. Uses the globals max, root, and num. */ -local void enough(int syms) -{ - int n; /* number of remaing symbols for this node */ - int left; /* number of unused bit patterns at this length */ - size_t index; /* index of this case in *num */ - - /* clear code */ - for (n = 0; n <= max; n++) - code[n] = 0; - - /* look at all (root + 1) bit and longer codes */ - large = 1 << root; /* base table */ - if (root < max) /* otherwise, there's only a base table */ - for (n = 3; n <= syms; n++) - for (left = 2; left < n; left += 2) - { - /* look at all reachable (root + 1) bit nodes, and the - resulting codes (complete at root + 2 or more) */ - index = INDEX(n, left, root + 1); - if (root + 1 < max && num[index]) /* reachable node */ - examine(n, root + 1, left, 1 << root, 0); - - /* also look at root bit codes with completions at root + 1 - bits (not saved in num, since complete), just in case */ - if (num[index - 1] && n <= left << 1) - examine((n - left) << 1, root + 1, (n - left) << 1, - 1 << root, 0); - } - - /* done */ - printf("done: maximum of %d table entries\n", large); -} - -/* - Examine and show the total number of possible Huffman codes for a given - maximum number of symbols, initial root table size, and maximum code length - in bits -- those are the command arguments in that order. The default - values are 286, 9, and 15 respectively, for the deflate literal/length code. - The possible codes are counted for each number of coded symbols from two to - the maximum. The counts for each of those and the total number of codes are - shown. The maximum number of inflate table entires is then calculated - across all possible codes. Each new maximum number of table entries and the - associated sub-code (starting at root + 1 == 10 bits) is shown. - - To count and examine Huffman codes that are not length-limited, provide a - maximum length equal to the number of symbols minus one. - - For the deflate literal/length code, use "enough". For the deflate distance - code, use "enough 30 6". - - This uses the %llu printf format to print big_t numbers, which assumes that - big_t is an unsigned long long. If the big_t type is changed (for example - to a multiple precision type), the method of printing will also need to be - updated. - */ -int main(int argc, char **argv) -{ - int syms; /* total number of symbols to code */ - int n; /* number of symbols to code for this run */ - big_t got; /* return value of count() */ - big_t sum; /* accumulated number of codes over n */ - - /* set up globals for cleanup() */ - code = NULL; - num = NULL; - done = NULL; - - /* get arguments -- default to the deflate literal/length code */ - syms = 286; - root = 9; - max = 15; - if (argc > 1) { - syms = atoi(argv[1]); - if (argc > 2) { - root = atoi(argv[2]); - if (argc > 3) - max = atoi(argv[3]); - } - } - if (argc > 4 || syms < 2 || root < 1 || max < 1) { - fputs("invalid arguments, need: [sym >= 2 [root >= 1 [max >= 1]]]\n", - stderr); - return 1; - } - - /* if not restricting the code length, the longest is syms - 1 */ - if (max > syms - 1) - max = syms - 1; - - /* determine the number of bits in a code_t */ - n = 0; - while (((code_t)1 << n) != 0) - n++; - - /* make sure that the calculation of most will not overflow */ - if (max > n || syms - 2 >= (((code_t)0 - 1) >> (max - 1))) { - fputs("abort: code length too long for internal types\n", stderr); - return 1; - } - - /* reject impossible code requests */ - if (syms - 1 > ((code_t)1 << max) - 1) { - fprintf(stderr, "%d symbols cannot be coded in %d bits\n", - syms, max); - return 1; - } - - /* allocate code vector */ - code = calloc(max + 1, sizeof(int)); - if (code == NULL) { - fputs("abort: unable to allocate enough memory\n", stderr); - return 1; - } - - /* determine size of saved results array, checking for overflows, - allocate and clear the array (set all to zero with calloc()) */ - if (syms == 2) /* iff max == 1 */ - num = NULL; /* won't be saving any results */ - else { - size = syms >> 1; - if (size > ((size_t)0 - 1) / (n = (syms - 1) >> 1) || - (size *= n, size > ((size_t)0 - 1) / (n = max - 1)) || - (size *= n, size > ((size_t)0 - 1) / sizeof(big_t)) || - (num = calloc(size, sizeof(big_t))) == NULL) { - fputs("abort: unable to allocate enough memory\n", stderr); - cleanup(); - return 1; - } - } - - /* count possible codes for all numbers of symbols, add up counts */ - sum = 0; - for (n = 2; n <= syms; n++) { - got = count(n, 1, 2); - sum += got; - if (got == -1 || sum < got) { /* overflow */ - fputs("abort: can't count that high!\n", stderr); - cleanup(); - return 1; - } - printf("%llu %d-codes\n", got, n); - } - printf("%llu total codes for 2 to %d symbols", sum, syms); - if (max < syms - 1) - printf(" (%d-bit length limit)\n", max); - else - puts(" (no length limit)"); - - /* allocate and clear done array for beenhere() */ - if (syms == 2) - done = NULL; - else if (size > ((size_t)0 - 1) / sizeof(struct tab) || - (done = calloc(size, sizeof(struct tab))) == NULL) { - fputs("abort: unable to allocate enough memory\n", stderr); - cleanup(); - return 1; - } - - /* find and show maximum inflate table usage */ - if (root > max) /* reduce root to max length */ - root = max; - if (syms < ((code_t)1 << (root + 1))) - enough(syms); - else - puts("cannot handle minimum code lengths > root"); - - /* done */ - cleanup(); - return 0; -} diff --git a/zlib-1.2.7/examples/fitblk.c b/zlib-1.2.7/examples/fitblk.c deleted file mode 100755 index c61de5c99..000000000 --- a/zlib-1.2.7/examples/fitblk.c +++ /dev/null @@ -1,233 +0,0 @@ -/* fitblk.c: example of fitting compressed output to a specified size - Not copyrighted -- provided to the public domain - Version 1.1 25 November 2004 Mark Adler */ - -/* Version history: - 1.0 24 Nov 2004 First version - 1.1 25 Nov 2004 Change deflateInit2() to deflateInit() - Use fixed-size, stack-allocated raw buffers - Simplify code moving compression to subroutines - Use assert() for internal errors - Add detailed description of approach - */ - -/* Approach to just fitting a requested compressed size: - - fitblk performs three compression passes on a portion of the input - data in order to determine how much of that input will compress to - nearly the requested output block size. The first pass generates - enough deflate blocks to produce output to fill the requested - output size plus a specfied excess amount (see the EXCESS define - below). The last deflate block may go quite a bit past that, but - is discarded. The second pass decompresses and recompresses just - the compressed data that fit in the requested plus excess sized - buffer. The deflate process is terminated after that amount of - input, which is less than the amount consumed on the first pass. - The last deflate block of the result will be of a comparable size - to the final product, so that the header for that deflate block and - the compression ratio for that block will be about the same as in - the final product. The third compression pass decompresses the - result of the second step, but only the compressed data up to the - requested size minus an amount to allow the compressed stream to - complete (see the MARGIN define below). That will result in a - final compressed stream whose length is less than or equal to the - requested size. Assuming sufficient input and a requested size - greater than a few hundred bytes, the shortfall will typically be - less than ten bytes. - - If the input is short enough that the first compression completes - before filling the requested output size, then that compressed - stream is return with no recompression. - - EXCESS is chosen to be just greater than the shortfall seen in a - two pass approach similar to the above. That shortfall is due to - the last deflate block compressing more efficiently with a smaller - header on the second pass. EXCESS is set to be large enough so - that there is enough uncompressed data for the second pass to fill - out the requested size, and small enough so that the final deflate - block of the second pass will be close in size to the final deflate - block of the third and final pass. MARGIN is chosen to be just - large enough to assure that the final compression has enough room - to complete in all cases. - */ - -#include -#include -#include -#include "zlib.h" - -#define local static - -/* print nastygram and leave */ -local void quit(char *why) -{ - fprintf(stderr, "fitblk abort: %s\n", why); - exit(1); -} - -#define RAWLEN 4096 /* intermediate uncompressed buffer size */ - -/* compress from file to def until provided buffer is full or end of - input reached; return last deflate() return value, or Z_ERRNO if - there was read error on the file */ -local int partcompress(FILE *in, z_streamp def) -{ - int ret, flush; - unsigned char raw[RAWLEN]; - - flush = Z_NO_FLUSH; - do { - def->avail_in = fread(raw, 1, RAWLEN, in); - if (ferror(in)) - return Z_ERRNO; - def->next_in = raw; - if (feof(in)) - flush = Z_FINISH; - ret = deflate(def, flush); - assert(ret != Z_STREAM_ERROR); - } while (def->avail_out != 0 && flush == Z_NO_FLUSH); - return ret; -} - -/* recompress from inf's input to def's output; the input for inf and - the output for def are set in those structures before calling; - return last deflate() return value, or Z_MEM_ERROR if inflate() - was not able to allocate enough memory when it needed to */ -local int recompress(z_streamp inf, z_streamp def) -{ - int ret, flush; - unsigned char raw[RAWLEN]; - - flush = Z_NO_FLUSH; - do { - /* decompress */ - inf->avail_out = RAWLEN; - inf->next_out = raw; - ret = inflate(inf, Z_NO_FLUSH); - assert(ret != Z_STREAM_ERROR && ret != Z_DATA_ERROR && - ret != Z_NEED_DICT); - if (ret == Z_MEM_ERROR) - return ret; - - /* compress what was decompresed until done or no room */ - def->avail_in = RAWLEN - inf->avail_out; - def->next_in = raw; - if (inf->avail_out != 0) - flush = Z_FINISH; - ret = deflate(def, flush); - assert(ret != Z_STREAM_ERROR); - } while (ret != Z_STREAM_END && def->avail_out != 0); - return ret; -} - -#define EXCESS 256 /* empirically determined stream overage */ -#define MARGIN 8 /* amount to back off for completion */ - -/* compress from stdin to fixed-size block on stdout */ -int main(int argc, char **argv) -{ - int ret; /* return code */ - unsigned size; /* requested fixed output block size */ - unsigned have; /* bytes written by deflate() call */ - unsigned char *blk; /* intermediate and final stream */ - unsigned char *tmp; /* close to desired size stream */ - z_stream def, inf; /* zlib deflate and inflate states */ - - /* get requested output size */ - if (argc != 2) - quit("need one argument: size of output block"); - ret = strtol(argv[1], argv + 1, 10); - if (argv[1][0] != 0) - quit("argument must be a number"); - if (ret < 8) /* 8 is minimum zlib stream size */ - quit("need positive size of 8 or greater"); - size = (unsigned)ret; - - /* allocate memory for buffers and compression engine */ - blk = malloc(size + EXCESS); - def.zalloc = Z_NULL; - def.zfree = Z_NULL; - def.opaque = Z_NULL; - ret = deflateInit(&def, Z_DEFAULT_COMPRESSION); - if (ret != Z_OK || blk == NULL) - quit("out of memory"); - - /* compress from stdin until output full, or no more input */ - def.avail_out = size + EXCESS; - def.next_out = blk; - ret = partcompress(stdin, &def); - if (ret == Z_ERRNO) - quit("error reading input"); - - /* if it all fit, then size was undersubscribed -- done! */ - if (ret == Z_STREAM_END && def.avail_out >= EXCESS) { - /* write block to stdout */ - have = size + EXCESS - def.avail_out; - if (fwrite(blk, 1, have, stdout) != have || ferror(stdout)) - quit("error writing output"); - - /* clean up and print results to stderr */ - ret = deflateEnd(&def); - assert(ret != Z_STREAM_ERROR); - free(blk); - fprintf(stderr, - "%u bytes unused out of %u requested (all input)\n", - size - have, size); - return 0; - } - - /* it didn't all fit -- set up for recompression */ - inf.zalloc = Z_NULL; - inf.zfree = Z_NULL; - inf.opaque = Z_NULL; - inf.avail_in = 0; - inf.next_in = Z_NULL; - ret = inflateInit(&inf); - tmp = malloc(size + EXCESS); - if (ret != Z_OK || tmp == NULL) - quit("out of memory"); - ret = deflateReset(&def); - assert(ret != Z_STREAM_ERROR); - - /* do first recompression close to the right amount */ - inf.avail_in = size + EXCESS; - inf.next_in = blk; - def.avail_out = size + EXCESS; - def.next_out = tmp; - ret = recompress(&inf, &def); - if (ret == Z_MEM_ERROR) - quit("out of memory"); - - /* set up for next reocmpression */ - ret = inflateReset(&inf); - assert(ret != Z_STREAM_ERROR); - ret = deflateReset(&def); - assert(ret != Z_STREAM_ERROR); - - /* do second and final recompression (third compression) */ - inf.avail_in = size - MARGIN; /* assure stream will complete */ - inf.next_in = tmp; - def.avail_out = size; - def.next_out = blk; - ret = recompress(&inf, &def); - if (ret == Z_MEM_ERROR) - quit("out of memory"); - assert(ret == Z_STREAM_END); /* otherwise MARGIN too small */ - - /* done -- write block to stdout */ - have = size - def.avail_out; - if (fwrite(blk, 1, have, stdout) != have || ferror(stdout)) - quit("error writing output"); - - /* clean up and print results to stderr */ - free(tmp); - ret = inflateEnd(&inf); - assert(ret != Z_STREAM_ERROR); - ret = deflateEnd(&def); - assert(ret != Z_STREAM_ERROR); - free(blk); - fprintf(stderr, - "%u bytes unused out of %u requested (%lu input)\n", - size - have, size, def.total_in); - return 0; -} diff --git a/zlib-1.2.7/examples/gun.c b/zlib-1.2.7/examples/gun.c deleted file mode 100755 index 72b0882ab..000000000 --- a/zlib-1.2.7/examples/gun.c +++ /dev/null @@ -1,701 +0,0 @@ -/* gun.c -- simple gunzip to give an example of the use of inflateBack() - * Copyright (C) 2003, 2005, 2008, 2010 Mark Adler - * For conditions of distribution and use, see copyright notice in zlib.h - Version 1.6 17 January 2010 Mark Adler */ - -/* Version history: - 1.0 16 Feb 2003 First version for testing of inflateBack() - 1.1 21 Feb 2005 Decompress concatenated gzip streams - Remove use of "this" variable (C++ keyword) - Fix return value for in() - Improve allocation failure checking - Add typecasting for void * structures - Add -h option for command version and usage - Add a bunch of comments - 1.2 20 Mar 2005 Add Unix compress (LZW) decompression - Copy file attributes from input file to output file - 1.3 12 Jun 2005 Add casts for error messages [Oberhumer] - 1.4 8 Dec 2006 LZW decompression speed improvements - 1.5 9 Feb 2008 Avoid warning in latest version of gcc - 1.6 17 Jan 2010 Avoid signed/unsigned comparison warnings - */ - -/* - gun [ -t ] [ name ... ] - - decompresses the data in the named gzip files. If no arguments are given, - gun will decompress from stdin to stdout. The names must end in .gz, -gz, - .z, -z, _z, or .Z. The uncompressed data will be written to a file name - with the suffix stripped. On success, the original file is deleted. On - failure, the output file is deleted. For most failures, the command will - continue to process the remaining names on the command line. A memory - allocation failure will abort the command. If -t is specified, then the - listed files or stdin will be tested as gzip files for integrity (without - checking for a proper suffix), no output will be written, and no files - will be deleted. - - Like gzip, gun allows concatenated gzip streams and will decompress them, - writing all of the uncompressed data to the output. Unlike gzip, gun allows - an empty file on input, and will produce no error writing an empty output - file. - - gun will also decompress files made by Unix compress, which uses LZW - compression. These files are automatically detected by virtue of their - magic header bytes. Since the end of Unix compress stream is marked by the - end-of-file, they cannot be concantenated. If a Unix compress stream is - encountered in an input file, it is the last stream in that file. - - Like gunzip and uncompress, the file attributes of the orignal compressed - file are maintained in the final uncompressed file, to the extent that the - user permissions allow it. - - On my Mac OS X PowerPC G4, gun is almost twice as fast as gunzip (version - 1.2.4) is on the same file, when gun is linked with zlib 1.2.2. Also the - LZW decompression provided by gun is about twice as fast as the standard - Unix uncompress command. - */ - -/* external functions and related types and constants */ -#include /* fprintf() */ -#include /* malloc(), free() */ -#include /* strerror(), strcmp(), strlen(), memcpy() */ -#include /* errno */ -#include /* open() */ -#include /* read(), write(), close(), chown(), unlink() */ -#include -#include /* stat(), chmod() */ -#include /* utime() */ -#include "zlib.h" /* inflateBackInit(), inflateBack(), */ - /* inflateBackEnd(), crc32() */ - -/* function declaration */ -#define local static - -/* buffer constants */ -#define SIZE 32768U /* input and output buffer sizes */ -#define PIECE 16384 /* limits i/o chunks for 16-bit int case */ - -/* structure for infback() to pass to input function in() -- it maintains the - input file and a buffer of size SIZE */ -struct ind { - int infile; - unsigned char *inbuf; -}; - -/* Load input buffer, assumed to be empty, and return bytes loaded and a - pointer to them. read() is called until the buffer is full, or until it - returns end-of-file or error. Return 0 on error. */ -local unsigned in(void *in_desc, unsigned char **buf) -{ - int ret; - unsigned len; - unsigned char *next; - struct ind *me = (struct ind *)in_desc; - - next = me->inbuf; - *buf = next; - len = 0; - do { - ret = PIECE; - if ((unsigned)ret > SIZE - len) - ret = (int)(SIZE - len); - ret = (int)read(me->infile, next, ret); - if (ret == -1) { - len = 0; - break; - } - next += ret; - len += ret; - } while (ret != 0 && len < SIZE); - return len; -} - -/* structure for infback() to pass to output function out() -- it maintains the - output file, a running CRC-32 check on the output and the total number of - bytes output, both for checking against the gzip trailer. (The length in - the gzip trailer is stored modulo 2^32, so it's ok if a long is 32 bits and - the output is greater than 4 GB.) */ -struct outd { - int outfile; - int check; /* true if checking crc and total */ - unsigned long crc; - unsigned long total; -}; - -/* Write output buffer and update the CRC-32 and total bytes written. write() - is called until all of the output is written or an error is encountered. - On success out() returns 0. For a write failure, out() returns 1. If the - output file descriptor is -1, then nothing is written. - */ -local int out(void *out_desc, unsigned char *buf, unsigned len) -{ - int ret; - struct outd *me = (struct outd *)out_desc; - - if (me->check) { - me->crc = crc32(me->crc, buf, len); - me->total += len; - } - if (me->outfile != -1) - do { - ret = PIECE; - if ((unsigned)ret > len) - ret = (int)len; - ret = (int)write(me->outfile, buf, ret); - if (ret == -1) - return 1; - buf += ret; - len -= ret; - } while (len != 0); - return 0; -} - -/* next input byte macro for use inside lunpipe() and gunpipe() */ -#define NEXT() (have ? 0 : (have = in(indp, &next)), \ - last = have ? (have--, (int)(*next++)) : -1) - -/* memory for gunpipe() and lunpipe() -- - the first 256 entries of prefix[] and suffix[] are never used, could - have offset the index, but it's faster to waste the memory */ -unsigned char inbuf[SIZE]; /* input buffer */ -unsigned char outbuf[SIZE]; /* output buffer */ -unsigned short prefix[65536]; /* index to LZW prefix string */ -unsigned char suffix[65536]; /* one-character LZW suffix */ -unsigned char match[65280 + 2]; /* buffer for reversed match or gzip - 32K sliding window */ - -/* throw out what's left in the current bits byte buffer (this is a vestigial - aspect of the compressed data format derived from an implementation that - made use of a special VAX machine instruction!) */ -#define FLUSHCODE() \ - do { \ - left = 0; \ - rem = 0; \ - if (chunk > have) { \ - chunk -= have; \ - have = 0; \ - if (NEXT() == -1) \ - break; \ - chunk--; \ - if (chunk > have) { \ - chunk = have = 0; \ - break; \ - } \ - } \ - have -= chunk; \ - next += chunk; \ - chunk = 0; \ - } while (0) - -/* Decompress a compress (LZW) file from indp to outfile. The compress magic - header (two bytes) has already been read and verified. There are have bytes - of buffered input at next. strm is used for passing error information back - to gunpipe(). - - lunpipe() will return Z_OK on success, Z_BUF_ERROR for an unexpected end of - file, read error, or write error (a write error indicated by strm->next_in - not equal to Z_NULL), or Z_DATA_ERROR for invalid input. - */ -local int lunpipe(unsigned have, unsigned char *next, struct ind *indp, - int outfile, z_stream *strm) -{ - int last; /* last byte read by NEXT(), or -1 if EOF */ - unsigned chunk; /* bytes left in current chunk */ - int left; /* bits left in rem */ - unsigned rem; /* unused bits from input */ - int bits; /* current bits per code */ - unsigned code; /* code, table traversal index */ - unsigned mask; /* mask for current bits codes */ - int max; /* maximum bits per code for this stream */ - unsigned flags; /* compress flags, then block compress flag */ - unsigned end; /* last valid entry in prefix/suffix tables */ - unsigned temp; /* current code */ - unsigned prev; /* previous code */ - unsigned final; /* last character written for previous code */ - unsigned stack; /* next position for reversed string */ - unsigned outcnt; /* bytes in output buffer */ - struct outd outd; /* output structure */ - unsigned char *p; - - /* set up output */ - outd.outfile = outfile; - outd.check = 0; - - /* process remainder of compress header -- a flags byte */ - flags = NEXT(); - if (last == -1) - return Z_BUF_ERROR; - if (flags & 0x60) { - strm->msg = (char *)"unknown lzw flags set"; - return Z_DATA_ERROR; - } - max = flags & 0x1f; - if (max < 9 || max > 16) { - strm->msg = (char *)"lzw bits out of range"; - return Z_DATA_ERROR; - } - if (max == 9) /* 9 doesn't really mean 9 */ - max = 10; - flags &= 0x80; /* true if block compress */ - - /* clear table */ - bits = 9; - mask = 0x1ff; - end = flags ? 256 : 255; - - /* set up: get first 9-bit code, which is the first decompressed byte, but - don't create a table entry until the next code */ - if (NEXT() == -1) /* no compressed data is ok */ - return Z_OK; - final = prev = (unsigned)last; /* low 8 bits of code */ - if (NEXT() == -1) /* missing a bit */ - return Z_BUF_ERROR; - if (last & 1) { /* code must be < 256 */ - strm->msg = (char *)"invalid lzw code"; - return Z_DATA_ERROR; - } - rem = (unsigned)last >> 1; /* remaining 7 bits */ - left = 7; - chunk = bits - 2; /* 7 bytes left in this chunk */ - outbuf[0] = (unsigned char)final; /* write first decompressed byte */ - outcnt = 1; - - /* decode codes */ - stack = 0; - for (;;) { - /* if the table will be full after this, increment the code size */ - if (end >= mask && bits < max) { - FLUSHCODE(); - bits++; - mask <<= 1; - mask++; - } - - /* get a code of length bits */ - if (chunk == 0) /* decrement chunk modulo bits */ - chunk = bits; - code = rem; /* low bits of code */ - if (NEXT() == -1) { /* EOF is end of compressed data */ - /* write remaining buffered output */ - if (outcnt && out(&outd, outbuf, outcnt)) { - strm->next_in = outbuf; /* signal write error */ - return Z_BUF_ERROR; - } - return Z_OK; - } - code += (unsigned)last << left; /* middle (or high) bits of code */ - left += 8; - chunk--; - if (bits > left) { /* need more bits */ - if (NEXT() == -1) /* can't end in middle of code */ - return Z_BUF_ERROR; - code += (unsigned)last << left; /* high bits of code */ - left += 8; - chunk--; - } - code &= mask; /* mask to current code length */ - left -= bits; /* number of unused bits */ - rem = (unsigned)last >> (8 - left); /* unused bits from last byte */ - - /* process clear code (256) */ - if (code == 256 && flags) { - FLUSHCODE(); - bits = 9; /* initialize bits and mask */ - mask = 0x1ff; - end = 255; /* empty table */ - continue; /* get next code */ - } - - /* special code to reuse last match */ - temp = code; /* save the current code */ - if (code > end) { - /* Be picky on the allowed code here, and make sure that the code - we drop through (prev) will be a valid index so that random - input does not cause an exception. The code != end + 1 check is - empirically derived, and not checked in the original uncompress - code. If this ever causes a problem, that check could be safely - removed. Leaving this check in greatly improves gun's ability - to detect random or corrupted input after a compress header. - In any case, the prev > end check must be retained. */ - if (code != end + 1 || prev > end) { - strm->msg = (char *)"invalid lzw code"; - return Z_DATA_ERROR; - } - match[stack++] = (unsigned char)final; - code = prev; - } - - /* walk through linked list to generate output in reverse order */ - p = match + stack; - while (code >= 256) { - *p++ = suffix[code]; - code = prefix[code]; - } - stack = p - match; - match[stack++] = (unsigned char)code; - final = code; - - /* link new table entry */ - if (end < mask) { - end++; - prefix[end] = (unsigned short)prev; - suffix[end] = (unsigned char)final; - } - - /* set previous code for next iteration */ - prev = temp; - - /* write output in forward order */ - while (stack > SIZE - outcnt) { - while (outcnt < SIZE) - outbuf[outcnt++] = match[--stack]; - if (out(&outd, outbuf, outcnt)) { - strm->next_in = outbuf; /* signal write error */ - return Z_BUF_ERROR; - } - outcnt = 0; - } - p = match + stack; - do { - outbuf[outcnt++] = *--p; - } while (p > match); - stack = 0; - - /* loop for next code with final and prev as the last match, rem and - left provide the first 0..7 bits of the next code, end is the last - valid table entry */ - } -} - -/* Decompress a gzip file from infile to outfile. strm is assumed to have been - successfully initialized with inflateBackInit(). The input file may consist - of a series of gzip streams, in which case all of them will be decompressed - to the output file. If outfile is -1, then the gzip stream(s) integrity is - checked and nothing is written. - - The return value is a zlib error code: Z_MEM_ERROR if out of memory, - Z_DATA_ERROR if the header or the compressed data is invalid, or if the - trailer CRC-32 check or length doesn't match, Z_BUF_ERROR if the input ends - prematurely or a write error occurs, or Z_ERRNO if junk (not a another gzip - stream) follows a valid gzip stream. - */ -local int gunpipe(z_stream *strm, int infile, int outfile) -{ - int ret, first, last; - unsigned have, flags, len; - unsigned char *next = NULL; - struct ind ind, *indp; - struct outd outd; - - /* setup input buffer */ - ind.infile = infile; - ind.inbuf = inbuf; - indp = &ind; - - /* decompress concatenated gzip streams */ - have = 0; /* no input data read in yet */ - first = 1; /* looking for first gzip header */ - strm->next_in = Z_NULL; /* so Z_BUF_ERROR means EOF */ - for (;;) { - /* look for the two magic header bytes for a gzip stream */ - if (NEXT() == -1) { - ret = Z_OK; - break; /* empty gzip stream is ok */ - } - if (last != 31 || (NEXT() != 139 && last != 157)) { - strm->msg = (char *)"incorrect header check"; - ret = first ? Z_DATA_ERROR : Z_ERRNO; - break; /* not a gzip or compress header */ - } - first = 0; /* next non-header is junk */ - - /* process a compress (LZW) file -- can't be concatenated after this */ - if (last == 157) { - ret = lunpipe(have, next, indp, outfile, strm); - break; - } - - /* process remainder of gzip header */ - ret = Z_BUF_ERROR; - if (NEXT() != 8) { /* only deflate method allowed */ - if (last == -1) break; - strm->msg = (char *)"unknown compression method"; - ret = Z_DATA_ERROR; - break; - } - flags = NEXT(); /* header flags */ - NEXT(); /* discard mod time, xflgs, os */ - NEXT(); - NEXT(); - NEXT(); - NEXT(); - NEXT(); - if (last == -1) break; - if (flags & 0xe0) { - strm->msg = (char *)"unknown header flags set"; - ret = Z_DATA_ERROR; - break; - } - if (flags & 4) { /* extra field */ - len = NEXT(); - len += (unsigned)(NEXT()) << 8; - if (last == -1) break; - while (len > have) { - len -= have; - have = 0; - if (NEXT() == -1) break; - len--; - } - if (last == -1) break; - have -= len; - next += len; - } - if (flags & 8) /* file name */ - while (NEXT() != 0 && last != -1) - ; - if (flags & 16) /* comment */ - while (NEXT() != 0 && last != -1) - ; - if (flags & 2) { /* header crc */ - NEXT(); - NEXT(); - } - if (last == -1) break; - - /* set up output */ - outd.outfile = outfile; - outd.check = 1; - outd.crc = crc32(0L, Z_NULL, 0); - outd.total = 0; - - /* decompress data to output */ - strm->next_in = next; - strm->avail_in = have; - ret = inflateBack(strm, in, indp, out, &outd); - if (ret != Z_STREAM_END) break; - next = strm->next_in; - have = strm->avail_in; - strm->next_in = Z_NULL; /* so Z_BUF_ERROR means EOF */ - - /* check trailer */ - ret = Z_BUF_ERROR; - if (NEXT() != (int)(outd.crc & 0xff) || - NEXT() != (int)((outd.crc >> 8) & 0xff) || - NEXT() != (int)((outd.crc >> 16) & 0xff) || - NEXT() != (int)((outd.crc >> 24) & 0xff)) { - /* crc error */ - if (last != -1) { - strm->msg = (char *)"incorrect data check"; - ret = Z_DATA_ERROR; - } - break; - } - if (NEXT() != (int)(outd.total & 0xff) || - NEXT() != (int)((outd.total >> 8) & 0xff) || - NEXT() != (int)((outd.total >> 16) & 0xff) || - NEXT() != (int)((outd.total >> 24) & 0xff)) { - /* length error */ - if (last != -1) { - strm->msg = (char *)"incorrect length check"; - ret = Z_DATA_ERROR; - } - break; - } - - /* go back and look for another gzip stream */ - } - - /* clean up and return */ - return ret; -} - -/* Copy file attributes, from -> to, as best we can. This is best effort, so - no errors are reported. The mode bits, including suid, sgid, and the sticky - bit are copied (if allowed), the owner's user id and group id are copied - (again if allowed), and the access and modify times are copied. */ -local void copymeta(char *from, char *to) -{ - struct stat was; - struct utimbuf when; - - /* get all of from's Unix meta data, return if not a regular file */ - if (stat(from, &was) != 0 || (was.st_mode & S_IFMT) != S_IFREG) - return; - - /* set to's mode bits, ignore errors */ - (void)chmod(to, was.st_mode & 07777); - - /* copy owner's user and group, ignore errors */ - (void)chown(to, was.st_uid, was.st_gid); - - /* copy access and modify times, ignore errors */ - when.actime = was.st_atime; - when.modtime = was.st_mtime; - (void)utime(to, &when); -} - -/* Decompress the file inname to the file outnname, of if test is true, just - decompress without writing and check the gzip trailer for integrity. If - inname is NULL or an empty string, read from stdin. If outname is NULL or - an empty string, write to stdout. strm is a pre-initialized inflateBack - structure. When appropriate, copy the file attributes from inname to - outname. - - gunzip() returns 1 if there is an out-of-memory error or an unexpected - return code from gunpipe(). Otherwise it returns 0. - */ -local int gunzip(z_stream *strm, char *inname, char *outname, int test) -{ - int ret; - int infile, outfile; - - /* open files */ - if (inname == NULL || *inname == 0) { - inname = "-"; - infile = 0; /* stdin */ - } - else { - infile = open(inname, O_RDONLY, 0); - if (infile == -1) { - fprintf(stderr, "gun cannot open %s\n", inname); - return 0; - } - } - if (test) - outfile = -1; - else if (outname == NULL || *outname == 0) { - outname = "-"; - outfile = 1; /* stdout */ - } - else { - outfile = open(outname, O_CREAT | O_TRUNC | O_WRONLY, 0666); - if (outfile == -1) { - close(infile); - fprintf(stderr, "gun cannot create %s\n", outname); - return 0; - } - } - errno = 0; - - /* decompress */ - ret = gunpipe(strm, infile, outfile); - if (outfile > 2) close(outfile); - if (infile > 2) close(infile); - - /* interpret result */ - switch (ret) { - case Z_OK: - case Z_ERRNO: - if (infile > 2 && outfile > 2) { - copymeta(inname, outname); /* copy attributes */ - unlink(inname); - } - if (ret == Z_ERRNO) - fprintf(stderr, "gun warning: trailing garbage ignored in %s\n", - inname); - break; - case Z_DATA_ERROR: - if (outfile > 2) unlink(outname); - fprintf(stderr, "gun data error on %s: %s\n", inname, strm->msg); - break; - case Z_MEM_ERROR: - if (outfile > 2) unlink(outname); - fprintf(stderr, "gun out of memory error--aborting\n"); - return 1; - case Z_BUF_ERROR: - if (outfile > 2) unlink(outname); - if (strm->next_in != Z_NULL) { - fprintf(stderr, "gun write error on %s: %s\n", - outname, strerror(errno)); - } - else if (errno) { - fprintf(stderr, "gun read error on %s: %s\n", - inname, strerror(errno)); - } - else { - fprintf(stderr, "gun unexpected end of file on %s\n", - inname); - } - break; - default: - if (outfile > 2) unlink(outname); - fprintf(stderr, "gun internal error--aborting\n"); - return 1; - } - return 0; -} - -/* Process the gun command line arguments. See the command syntax near the - beginning of this source file. */ -int main(int argc, char **argv) -{ - int ret, len, test; - char *outname; - unsigned char *window; - z_stream strm; - - /* initialize inflateBack state for repeated use */ - window = match; /* reuse LZW match buffer */ - strm.zalloc = Z_NULL; - strm.zfree = Z_NULL; - strm.opaque = Z_NULL; - ret = inflateBackInit(&strm, 15, window); - if (ret != Z_OK) { - fprintf(stderr, "gun out of memory error--aborting\n"); - return 1; - } - - /* decompress each file to the same name with the suffix removed */ - argc--; - argv++; - test = 0; - if (argc && strcmp(*argv, "-h") == 0) { - fprintf(stderr, "gun 1.6 (17 Jan 2010)\n"); - fprintf(stderr, "Copyright (C) 2003-2010 Mark Adler\n"); - fprintf(stderr, "usage: gun [-t] [file1.gz [file2.Z ...]]\n"); - return 0; - } - if (argc && strcmp(*argv, "-t") == 0) { - test = 1; - argc--; - argv++; - } - if (argc) - do { - if (test) - outname = NULL; - else { - len = (int)strlen(*argv); - if (strcmp(*argv + len - 3, ".gz") == 0 || - strcmp(*argv + len - 3, "-gz") == 0) - len -= 3; - else if (strcmp(*argv + len - 2, ".z") == 0 || - strcmp(*argv + len - 2, "-z") == 0 || - strcmp(*argv + len - 2, "_z") == 0 || - strcmp(*argv + len - 2, ".Z") == 0) - len -= 2; - else { - fprintf(stderr, "gun error: no gz type on %s--skipping\n", - *argv); - continue; - } - outname = malloc(len + 1); - if (outname == NULL) { - fprintf(stderr, "gun out of memory error--aborting\n"); - ret = 1; - break; - } - memcpy(outname, *argv, len); - outname[len] = 0; - } - ret = gunzip(&strm, *argv, outname, test); - if (outname != NULL) free(outname); - if (ret) break; - } while (argv++, --argc); - else - ret = gunzip(&strm, NULL, NULL, test); - - /* clean up */ - inflateBackEnd(&strm); - return ret; -} diff --git a/zlib-1.2.7/examples/gzappend.c b/zlib-1.2.7/examples/gzappend.c deleted file mode 100755 index e9e878e11..000000000 --- a/zlib-1.2.7/examples/gzappend.c +++ /dev/null @@ -1,500 +0,0 @@ -/* gzappend -- command to append to a gzip file - - Copyright (C) 2003 Mark Adler, all rights reserved - version 1.1, 4 Nov 2003 - - This software is provided 'as-is', without any express or implied - warranty. In no event will the author be held liable for any damages - arising from the use of this software. - - Permission is granted to anyone to use this software for any purpose, - including commercial applications, and to alter it and redistribute it - freely, subject to the following restrictions: - - 1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. - 2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. - 3. This notice may not be removed or altered from any source distribution. - - Mark Adler madler@alumni.caltech.edu - */ - -/* - * Change history: - * - * 1.0 19 Oct 2003 - First version - * 1.1 4 Nov 2003 - Expand and clarify some comments and notes - * - Add version and copyright to help - * - Send help to stdout instead of stderr - * - Add some preemptive typecasts - * - Add L to constants in lseek() calls - * - Remove some debugging information in error messages - * - Use new data_type definition for zlib 1.2.1 - * - Simplfy and unify file operations - * - Finish off gzip file in gztack() - * - Use deflatePrime() instead of adding empty blocks - * - Keep gzip file clean on appended file read errors - * - Use in-place rotate instead of auxiliary buffer - * (Why you ask? Because it was fun to write!) - */ - -/* - gzappend takes a gzip file and appends to it, compressing files from the - command line or data from stdin. The gzip file is written to directly, to - avoid copying that file, in case it's large. Note that this results in the - unfriendly behavior that if gzappend fails, the gzip file is corrupted. - - This program was written to illustrate the use of the new Z_BLOCK option of - zlib 1.2.x's inflate() function. This option returns from inflate() at each - block boundary to facilitate locating and modifying the last block bit at - the start of the final deflate block. Also whether using Z_BLOCK or not, - another required feature of zlib 1.2.x is that inflate() now provides the - number of unusued bits in the last input byte used. gzappend will not work - with versions of zlib earlier than 1.2.1. - - gzappend first decompresses the gzip file internally, discarding all but - the last 32K of uncompressed data, and noting the location of the last block - bit and the number of unused bits in the last byte of the compressed data. - The gzip trailer containing the CRC-32 and length of the uncompressed data - is verified. This trailer will be later overwritten. - - Then the last block bit is cleared by seeking back in the file and rewriting - the byte that contains it. Seeking forward, the last byte of the compressed - data is saved along with the number of unused bits to initialize deflate. - - A deflate process is initialized, using the last 32K of the uncompressed - data from the gzip file to initialize the dictionary. If the total - uncompressed data was less than 32K, then all of it is used to initialize - the dictionary. The deflate output bit buffer is also initialized with the - last bits from the original deflate stream. From here on, the data to - append is simply compressed using deflate, and written to the gzip file. - When that is complete, the new CRC-32 and uncompressed length are written - as the trailer of the gzip file. - */ - -#include -#include -#include -#include -#include -#include "zlib.h" - -#define local static -#define LGCHUNK 14 -#define CHUNK (1U << LGCHUNK) -#define DSIZE 32768U - -/* print an error message and terminate with extreme prejudice */ -local void bye(char *msg1, char *msg2) -{ - fprintf(stderr, "gzappend error: %s%s\n", msg1, msg2); - exit(1); -} - -/* return the greatest common divisor of a and b using Euclid's algorithm, - modified to be fast when one argument much greater than the other, and - coded to avoid unnecessary swapping */ -local unsigned gcd(unsigned a, unsigned b) -{ - unsigned c; - - while (a && b) - if (a > b) { - c = b; - while (a - c >= c) - c <<= 1; - a -= c; - } - else { - c = a; - while (b - c >= c) - c <<= 1; - b -= c; - } - return a + b; -} - -/* rotate list[0..len-1] left by rot positions, in place */ -local void rotate(unsigned char *list, unsigned len, unsigned rot) -{ - unsigned char tmp; - unsigned cycles; - unsigned char *start, *last, *to, *from; - - /* normalize rot and handle degenerate cases */ - if (len < 2) return; - if (rot >= len) rot %= len; - if (rot == 0) return; - - /* pointer to last entry in list */ - last = list + (len - 1); - - /* do simple left shift by one */ - if (rot == 1) { - tmp = *list; - memcpy(list, list + 1, len - 1); - *last = tmp; - return; - } - - /* do simple right shift by one */ - if (rot == len - 1) { - tmp = *last; - memmove(list + 1, list, len - 1); - *list = tmp; - return; - } - - /* otherwise do rotate as a set of cycles in place */ - cycles = gcd(len, rot); /* number of cycles */ - do { - start = from = list + cycles; /* start index is arbitrary */ - tmp = *from; /* save entry to be overwritten */ - for (;;) { - to = from; /* next step in cycle */ - from += rot; /* go right rot positions */ - if (from > last) from -= len; /* (pointer better not wrap) */ - if (from == start) break; /* all but one shifted */ - *to = *from; /* shift left */ - } - *to = tmp; /* complete the circle */ - } while (--cycles); -} - -/* structure for gzip file read operations */ -typedef struct { - int fd; /* file descriptor */ - int size; /* 1 << size is bytes in buf */ - unsigned left; /* bytes available at next */ - unsigned char *buf; /* buffer */ - unsigned char *next; /* next byte in buffer */ - char *name; /* file name for error messages */ -} file; - -/* reload buffer */ -local int readin(file *in) -{ - int len; - - len = read(in->fd, in->buf, 1 << in->size); - if (len == -1) bye("error reading ", in->name); - in->left = (unsigned)len; - in->next = in->buf; - return len; -} - -/* read from file in, exit if end-of-file */ -local int readmore(file *in) -{ - if (readin(in) == 0) bye("unexpected end of ", in->name); - return 0; -} - -#define read1(in) (in->left == 0 ? readmore(in) : 0, \ - in->left--, *(in->next)++) - -/* skip over n bytes of in */ -local void skip(file *in, unsigned n) -{ - unsigned bypass; - - if (n > in->left) { - n -= in->left; - bypass = n & ~((1U << in->size) - 1); - if (bypass) { - if (lseek(in->fd, (off_t)bypass, SEEK_CUR) == -1) - bye("seeking ", in->name); - n -= bypass; - } - readmore(in); - if (n > in->left) - bye("unexpected end of ", in->name); - } - in->left -= n; - in->next += n; -} - -/* read a four-byte unsigned integer, little-endian, from in */ -unsigned long read4(file *in) -{ - unsigned long val; - - val = read1(in); - val += (unsigned)read1(in) << 8; - val += (unsigned long)read1(in) << 16; - val += (unsigned long)read1(in) << 24; - return val; -} - -/* skip over gzip header */ -local void gzheader(file *in) -{ - int flags; - unsigned n; - - if (read1(in) != 31 || read1(in) != 139) bye(in->name, " not a gzip file"); - if (read1(in) != 8) bye("unknown compression method in", in->name); - flags = read1(in); - if (flags & 0xe0) bye("unknown header flags set in", in->name); - skip(in, 6); - if (flags & 4) { - n = read1(in); - n += (unsigned)(read1(in)) << 8; - skip(in, n); - } - if (flags & 8) while (read1(in) != 0) ; - if (flags & 16) while (read1(in) != 0) ; - if (flags & 2) skip(in, 2); -} - -/* decompress gzip file "name", return strm with a deflate stream ready to - continue compression of the data in the gzip file, and return a file - descriptor pointing to where to write the compressed data -- the deflate - stream is initialized to compress using level "level" */ -local int gzscan(char *name, z_stream *strm, int level) -{ - int ret, lastbit, left, full; - unsigned have; - unsigned long crc, tot; - unsigned char *window; - off_t lastoff, end; - file gz; - - /* open gzip file */ - gz.name = name; - gz.fd = open(name, O_RDWR, 0); - if (gz.fd == -1) bye("cannot open ", name); - gz.buf = malloc(CHUNK); - if (gz.buf == NULL) bye("out of memory", ""); - gz.size = LGCHUNK; - gz.left = 0; - - /* skip gzip header */ - gzheader(&gz); - - /* prepare to decompress */ - window = malloc(DSIZE); - if (window == NULL) bye("out of memory", ""); - strm->zalloc = Z_NULL; - strm->zfree = Z_NULL; - strm->opaque = Z_NULL; - ret = inflateInit2(strm, -15); - if (ret != Z_OK) bye("out of memory", " or library mismatch"); - - /* decompress the deflate stream, saving append information */ - lastbit = 0; - lastoff = lseek(gz.fd, 0L, SEEK_CUR) - gz.left; - left = 0; - strm->avail_in = gz.left; - strm->next_in = gz.next; - crc = crc32(0L, Z_NULL, 0); - have = full = 0; - do { - /* if needed, get more input */ - if (strm->avail_in == 0) { - readmore(&gz); - strm->avail_in = gz.left; - strm->next_in = gz.next; - } - - /* set up output to next available section of sliding window */ - strm->avail_out = DSIZE - have; - strm->next_out = window + have; - - /* inflate and check for errors */ - ret = inflate(strm, Z_BLOCK); - if (ret == Z_STREAM_ERROR) bye("internal stream error!", ""); - if (ret == Z_MEM_ERROR) bye("out of memory", ""); - if (ret == Z_DATA_ERROR) - bye("invalid compressed data--format violated in", name); - - /* update crc and sliding window pointer */ - crc = crc32(crc, window + have, DSIZE - have - strm->avail_out); - if (strm->avail_out) - have = DSIZE - strm->avail_out; - else { - have = 0; - full = 1; - } - - /* process end of block */ - if (strm->data_type & 128) { - if (strm->data_type & 64) - left = strm->data_type & 0x1f; - else { - lastbit = strm->data_type & 0x1f; - lastoff = lseek(gz.fd, 0L, SEEK_CUR) - strm->avail_in; - } - } - } while (ret != Z_STREAM_END); - inflateEnd(strm); - gz.left = strm->avail_in; - gz.next = strm->next_in; - - /* save the location of the end of the compressed data */ - end = lseek(gz.fd, 0L, SEEK_CUR) - gz.left; - - /* check gzip trailer and save total for deflate */ - if (crc != read4(&gz)) - bye("invalid compressed data--crc mismatch in ", name); - tot = strm->total_out; - if ((tot & 0xffffffffUL) != read4(&gz)) - bye("invalid compressed data--length mismatch in", name); - - /* if not at end of file, warn */ - if (gz.left || readin(&gz)) - fprintf(stderr, - "gzappend warning: junk at end of gzip file overwritten\n"); - - /* clear last block bit */ - lseek(gz.fd, lastoff - (lastbit != 0), SEEK_SET); - if (read(gz.fd, gz.buf, 1) != 1) bye("reading after seek on ", name); - *gz.buf = (unsigned char)(*gz.buf ^ (1 << ((8 - lastbit) & 7))); - lseek(gz.fd, -1L, SEEK_CUR); - if (write(gz.fd, gz.buf, 1) != 1) bye("writing after seek to ", name); - - /* if window wrapped, build dictionary from window by rotating */ - if (full) { - rotate(window, DSIZE, have); - have = DSIZE; - } - - /* set up deflate stream with window, crc, total_in, and leftover bits */ - ret = deflateInit2(strm, level, Z_DEFLATED, -15, 8, Z_DEFAULT_STRATEGY); - if (ret != Z_OK) bye("out of memory", ""); - deflateSetDictionary(strm, window, have); - strm->adler = crc; - strm->total_in = tot; - if (left) { - lseek(gz.fd, --end, SEEK_SET); - if (read(gz.fd, gz.buf, 1) != 1) bye("reading after seek on ", name); - deflatePrime(strm, 8 - left, *gz.buf); - } - lseek(gz.fd, end, SEEK_SET); - - /* clean up and return */ - free(window); - free(gz.buf); - return gz.fd; -} - -/* append file "name" to gzip file gd using deflate stream strm -- if last - is true, then finish off the deflate stream at the end */ -local void gztack(char *name, int gd, z_stream *strm, int last) -{ - int fd, len, ret; - unsigned left; - unsigned char *in, *out; - - /* open file to compress and append */ - fd = 0; - if (name != NULL) { - fd = open(name, O_RDONLY, 0); - if (fd == -1) - fprintf(stderr, "gzappend warning: %s not found, skipping ...\n", - name); - } - - /* allocate buffers */ - in = fd == -1 ? NULL : malloc(CHUNK); - out = malloc(CHUNK); - if (out == NULL) bye("out of memory", ""); - - /* compress input file and append to gzip file */ - do { - /* get more input */ - len = fd == -1 ? 0 : read(fd, in, CHUNK); - if (len == -1) { - fprintf(stderr, - "gzappend warning: error reading %s, skipping rest ...\n", - name); - len = 0; - } - strm->avail_in = (unsigned)len; - strm->next_in = in; - if (len) strm->adler = crc32(strm->adler, in, (unsigned)len); - - /* compress and write all available output */ - do { - strm->avail_out = CHUNK; - strm->next_out = out; - ret = deflate(strm, last && len == 0 ? Z_FINISH : Z_NO_FLUSH); - left = CHUNK - strm->avail_out; - while (left) { - len = write(gd, out + CHUNK - strm->avail_out - left, left); - if (len == -1) bye("writing gzip file", ""); - left -= (unsigned)len; - } - } while (strm->avail_out == 0 && ret != Z_STREAM_END); - } while (len != 0); - - /* write trailer after last entry */ - if (last) { - deflateEnd(strm); - out[0] = (unsigned char)(strm->adler); - out[1] = (unsigned char)(strm->adler >> 8); - out[2] = (unsigned char)(strm->adler >> 16); - out[3] = (unsigned char)(strm->adler >> 24); - out[4] = (unsigned char)(strm->total_in); - out[5] = (unsigned char)(strm->total_in >> 8); - out[6] = (unsigned char)(strm->total_in >> 16); - out[7] = (unsigned char)(strm->total_in >> 24); - len = 8; - do { - ret = write(gd, out + 8 - len, len); - if (ret == -1) bye("writing gzip file", ""); - len -= ret; - } while (len); - close(gd); - } - - /* clean up and return */ - free(out); - if (in != NULL) free(in); - if (fd > 0) close(fd); -} - -/* process the compression level option if present, scan the gzip file, and - append the specified files, or append the data from stdin if no other file - names are provided on the command line -- the gzip file must be writable - and seekable */ -int main(int argc, char **argv) -{ - int gd, level; - z_stream strm; - - /* ignore command name */ - argv++; - - /* provide usage if no arguments */ - if (*argv == NULL) { - printf("gzappend 1.1 (4 Nov 2003) Copyright (C) 2003 Mark Adler\n"); - printf( - "usage: gzappend [-level] file.gz [ addthis [ andthis ... ]]\n"); - return 0; - } - - /* set compression level */ - level = Z_DEFAULT_COMPRESSION; - if (argv[0][0] == '-') { - if (argv[0][1] < '0' || argv[0][1] > '9' || argv[0][2] != 0) - bye("invalid compression level", ""); - level = argv[0][1] - '0'; - if (*++argv == NULL) bye("no gzip file name after options", ""); - } - - /* prepare to append to gzip file */ - gd = gzscan(*argv++, &strm, level); - - /* append files on command line, or from stdin if none */ - if (*argv == NULL) - gztack(NULL, gd, &strm, 1); - else - do { - gztack(*argv, gd, &strm, argv[1] == NULL); - } while (*++argv != NULL); - return 0; -} diff --git a/zlib-1.2.7/examples/gzjoin.c b/zlib-1.2.7/examples/gzjoin.c deleted file mode 100755 index 129347ce3..000000000 --- a/zlib-1.2.7/examples/gzjoin.c +++ /dev/null @@ -1,448 +0,0 @@ -/* gzjoin -- command to join gzip files into one gzip file - - Copyright (C) 2004 Mark Adler, all rights reserved - version 1.0, 11 Dec 2004 - - This software is provided 'as-is', without any express or implied - warranty. In no event will the author be held liable for any damages - arising from the use of this software. - - Permission is granted to anyone to use this software for any purpose, - including commercial applications, and to alter it and redistribute it - freely, subject to the following restrictions: - - 1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. - 2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. - 3. This notice may not be removed or altered from any source distribution. - - Mark Adler madler@alumni.caltech.edu - */ - -/* - * Change history: - * - * 1.0 11 Dec 2004 - First version - * 1.1 12 Jun 2005 - Changed ssize_t to long for portability - */ - -/* - gzjoin takes one or more gzip files on the command line and writes out a - single gzip file that will uncompress to the concatenation of the - uncompressed data from the individual gzip files. gzjoin does this without - having to recompress any of the data and without having to calculate a new - crc32 for the concatenated uncompressed data. gzjoin does however have to - decompress all of the input data in order to find the bits in the compressed - data that need to be modified to concatenate the streams. - - gzjoin does not do an integrity check on the input gzip files other than - checking the gzip header and decompressing the compressed data. They are - otherwise assumed to be complete and correct. - - Each joint between gzip files removes at least 18 bytes of previous trailer - and subsequent header, and inserts an average of about three bytes to the - compressed data in order to connect the streams. The output gzip file - has a minimal ten-byte gzip header with no file name or modification time. - - This program was written to illustrate the use of the Z_BLOCK option of - inflate() and the crc32_combine() function. gzjoin will not compile with - versions of zlib earlier than 1.2.3. - */ - -#include /* fputs(), fprintf(), fwrite(), putc() */ -#include /* exit(), malloc(), free() */ -#include /* open() */ -#include /* close(), read(), lseek() */ -#include "zlib.h" - /* crc32(), crc32_combine(), inflateInit2(), inflate(), inflateEnd() */ - -#define local static - -/* exit with an error (return a value to allow use in an expression) */ -local int bail(char *why1, char *why2) -{ - fprintf(stderr, "gzjoin error: %s%s, output incomplete\n", why1, why2); - exit(1); - return 0; -} - -/* -- simple buffered file input with access to the buffer -- */ - -#define CHUNK 32768 /* must be a power of two and fit in unsigned */ - -/* bin buffered input file type */ -typedef struct { - char *name; /* name of file for error messages */ - int fd; /* file descriptor */ - unsigned left; /* bytes remaining at next */ - unsigned char *next; /* next byte to read */ - unsigned char *buf; /* allocated buffer of length CHUNK */ -} bin; - -/* close a buffered file and free allocated memory */ -local void bclose(bin *in) -{ - if (in != NULL) { - if (in->fd != -1) - close(in->fd); - if (in->buf != NULL) - free(in->buf); - free(in); - } -} - -/* open a buffered file for input, return a pointer to type bin, or NULL on - failure */ -local bin *bopen(char *name) -{ - bin *in; - - in = malloc(sizeof(bin)); - if (in == NULL) - return NULL; - in->buf = malloc(CHUNK); - in->fd = open(name, O_RDONLY, 0); - if (in->buf == NULL || in->fd == -1) { - bclose(in); - return NULL; - } - in->left = 0; - in->next = in->buf; - in->name = name; - return in; -} - -/* load buffer from file, return -1 on read error, 0 or 1 on success, with - 1 indicating that end-of-file was reached */ -local int bload(bin *in) -{ - long len; - - if (in == NULL) - return -1; - if (in->left != 0) - return 0; - in->next = in->buf; - do { - len = (long)read(in->fd, in->buf + in->left, CHUNK - in->left); - if (len < 0) - return -1; - in->left += (unsigned)len; - } while (len != 0 && in->left < CHUNK); - return len == 0 ? 1 : 0; -} - -/* get a byte from the file, bail if end of file */ -#define bget(in) (in->left ? 0 : bload(in), \ - in->left ? (in->left--, *(in->next)++) : \ - bail("unexpected end of file on ", in->name)) - -/* get a four-byte little-endian unsigned integer from file */ -local unsigned long bget4(bin *in) -{ - unsigned long val; - - val = bget(in); - val += (unsigned long)(bget(in)) << 8; - val += (unsigned long)(bget(in)) << 16; - val += (unsigned long)(bget(in)) << 24; - return val; -} - -/* skip bytes in file */ -local void bskip(bin *in, unsigned skip) -{ - /* check pointer */ - if (in == NULL) - return; - - /* easy case -- skip bytes in buffer */ - if (skip <= in->left) { - in->left -= skip; - in->next += skip; - return; - } - - /* skip what's in buffer, discard buffer contents */ - skip -= in->left; - in->left = 0; - - /* seek past multiples of CHUNK bytes */ - if (skip > CHUNK) { - unsigned left; - - left = skip & (CHUNK - 1); - if (left == 0) { - /* exact number of chunks: seek all the way minus one byte to check - for end-of-file with a read */ - lseek(in->fd, skip - 1, SEEK_CUR); - if (read(in->fd, in->buf, 1) != 1) - bail("unexpected end of file on ", in->name); - return; - } - - /* skip the integral chunks, update skip with remainder */ - lseek(in->fd, skip - left, SEEK_CUR); - skip = left; - } - - /* read more input and skip remainder */ - bload(in); - if (skip > in->left) - bail("unexpected end of file on ", in->name); - in->left -= skip; - in->next += skip; -} - -/* -- end of buffered input functions -- */ - -/* skip the gzip header from file in */ -local void gzhead(bin *in) -{ - int flags; - - /* verify gzip magic header and compression method */ - if (bget(in) != 0x1f || bget(in) != 0x8b || bget(in) != 8) - bail(in->name, " is not a valid gzip file"); - - /* get and verify flags */ - flags = bget(in); - if ((flags & 0xe0) != 0) - bail("unknown reserved bits set in ", in->name); - - /* skip modification time, extra flags, and os */ - bskip(in, 6); - - /* skip extra field if present */ - if (flags & 4) { - unsigned len; - - len = bget(in); - len += (unsigned)(bget(in)) << 8; - bskip(in, len); - } - - /* skip file name if present */ - if (flags & 8) - while (bget(in) != 0) - ; - - /* skip comment if present */ - if (flags & 16) - while (bget(in) != 0) - ; - - /* skip header crc if present */ - if (flags & 2) - bskip(in, 2); -} - -/* write a four-byte little-endian unsigned integer to out */ -local void put4(unsigned long val, FILE *out) -{ - putc(val & 0xff, out); - putc((val >> 8) & 0xff, out); - putc((val >> 16) & 0xff, out); - putc((val >> 24) & 0xff, out); -} - -/* Load up zlib stream from buffered input, bail if end of file */ -local void zpull(z_streamp strm, bin *in) -{ - if (in->left == 0) - bload(in); - if (in->left == 0) - bail("unexpected end of file on ", in->name); - strm->avail_in = in->left; - strm->next_in = in->next; -} - -/* Write header for gzip file to out and initialize trailer. */ -local void gzinit(unsigned long *crc, unsigned long *tot, FILE *out) -{ - fwrite("\x1f\x8b\x08\0\0\0\0\0\0\xff", 1, 10, out); - *crc = crc32(0L, Z_NULL, 0); - *tot = 0; -} - -/* Copy the compressed data from name, zeroing the last block bit of the last - block if clr is true, and adding empty blocks as needed to get to a byte - boundary. If clr is false, then the last block becomes the last block of - the output, and the gzip trailer is written. crc and tot maintains the - crc and length (modulo 2^32) of the output for the trailer. The resulting - gzip file is written to out. gzinit() must be called before the first call - of gzcopy() to write the gzip header and to initialize crc and tot. */ -local void gzcopy(char *name, int clr, unsigned long *crc, unsigned long *tot, - FILE *out) -{ - int ret; /* return value from zlib functions */ - int pos; /* where the "last block" bit is in byte */ - int last; /* true if processing the last block */ - bin *in; /* buffered input file */ - unsigned char *start; /* start of compressed data in buffer */ - unsigned char *junk; /* buffer for uncompressed data -- discarded */ - z_off_t len; /* length of uncompressed data (support > 4 GB) */ - z_stream strm; /* zlib inflate stream */ - - /* open gzip file and skip header */ - in = bopen(name); - if (in == NULL) - bail("could not open ", name); - gzhead(in); - - /* allocate buffer for uncompressed data and initialize raw inflate - stream */ - junk = malloc(CHUNK); - strm.zalloc = Z_NULL; - strm.zfree = Z_NULL; - strm.opaque = Z_NULL; - strm.avail_in = 0; - strm.next_in = Z_NULL; - ret = inflateInit2(&strm, -15); - if (junk == NULL || ret != Z_OK) - bail("out of memory", ""); - - /* inflate and copy compressed data, clear last-block bit if requested */ - len = 0; - zpull(&strm, in); - start = strm.next_in; - last = start[0] & 1; - if (last && clr) - start[0] &= ~1; - strm.avail_out = 0; - for (;;) { - /* if input used and output done, write used input and get more */ - if (strm.avail_in == 0 && strm.avail_out != 0) { - fwrite(start, 1, strm.next_in - start, out); - start = in->buf; - in->left = 0; - zpull(&strm, in); - } - - /* decompress -- return early when end-of-block reached */ - strm.avail_out = CHUNK; - strm.next_out = junk; - ret = inflate(&strm, Z_BLOCK); - switch (ret) { - case Z_MEM_ERROR: - bail("out of memory", ""); - case Z_DATA_ERROR: - bail("invalid compressed data in ", in->name); - } - - /* update length of uncompressed data */ - len += CHUNK - strm.avail_out; - - /* check for block boundary (only get this when block copied out) */ - if (strm.data_type & 128) { - /* if that was the last block, then done */ - if (last) - break; - - /* number of unused bits in last byte */ - pos = strm.data_type & 7; - - /* find the next last-block bit */ - if (pos != 0) { - /* next last-block bit is in last used byte */ - pos = 0x100 >> pos; - last = strm.next_in[-1] & pos; - if (last && clr) - strm.next_in[-1] &= ~pos; - } - else { - /* next last-block bit is in next unused byte */ - if (strm.avail_in == 0) { - /* don't have that byte yet -- get it */ - fwrite(start, 1, strm.next_in - start, out); - start = in->buf; - in->left = 0; - zpull(&strm, in); - } - last = strm.next_in[0] & 1; - if (last && clr) - strm.next_in[0] &= ~1; - } - } - } - - /* update buffer with unused input */ - in->left = strm.avail_in; - in->next = strm.next_in; - - /* copy used input, write empty blocks to get to byte boundary */ - pos = strm.data_type & 7; - fwrite(start, 1, in->next - start - 1, out); - last = in->next[-1]; - if (pos == 0 || !clr) - /* already at byte boundary, or last file: write last byte */ - putc(last, out); - else { - /* append empty blocks to last byte */ - last &= ((0x100 >> pos) - 1); /* assure unused bits are zero */ - if (pos & 1) { - /* odd -- append an empty stored block */ - putc(last, out); - if (pos == 1) - putc(0, out); /* two more bits in block header */ - fwrite("\0\0\xff\xff", 1, 4, out); - } - else { - /* even -- append 1, 2, or 3 empty fixed blocks */ - switch (pos) { - case 6: - putc(last | 8, out); - last = 0; - case 4: - putc(last | 0x20, out); - last = 0; - case 2: - putc(last | 0x80, out); - putc(0, out); - } - } - } - - /* update crc and tot */ - *crc = crc32_combine(*crc, bget4(in), len); - *tot += (unsigned long)len; - - /* clean up */ - inflateEnd(&strm); - free(junk); - bclose(in); - - /* write trailer if this is the last gzip file */ - if (!clr) { - put4(*crc, out); - put4(*tot, out); - } -} - -/* join the gzip files on the command line, write result to stdout */ -int main(int argc, char **argv) -{ - unsigned long crc, tot; /* running crc and total uncompressed length */ - - /* skip command name */ - argc--; - argv++; - - /* show usage if no arguments */ - if (argc == 0) { - fputs("gzjoin usage: gzjoin f1.gz [f2.gz [f3.gz ...]] > fjoin.gz\n", - stderr); - return 0; - } - - /* join gzip files on command line and write to stdout */ - gzinit(&crc, &tot, stdout); - while (argc--) - gzcopy(*argv++, argc, &crc, &tot, stdout); - - /* done */ - return 0; -} diff --git a/zlib-1.2.7/examples/gzlog.c b/zlib-1.2.7/examples/gzlog.c deleted file mode 100755 index d70aacaba..000000000 --- a/zlib-1.2.7/examples/gzlog.c +++ /dev/null @@ -1,1058 +0,0 @@ -/* - * gzlog.c - * Copyright (C) 2004, 2008 Mark Adler, all rights reserved - * For conditions of distribution and use, see copyright notice in gzlog.h - * version 2.0, 25 Apr 2008 - */ - -/* - gzlog provides a mechanism for frequently appending short strings to a gzip - file that is efficient both in execution time and compression ratio. The - strategy is to write the short strings in an uncompressed form to the end of - the gzip file, only compressing when the amount of uncompressed data has - reached a given threshold. - - gzlog also provides protection against interruptions in the process due to - system crashes. The status of the operation is recorded in an extra field - in the gzip file, and is only updated once the gzip file is brought to a - valid state. The last data to be appended or compressed is saved in an - auxiliary file, so that if the operation is interrupted, it can be completed - the next time an append operation is attempted. - - gzlog maintains another auxiliary file with the last 32K of data from the - compressed portion, which is preloaded for the compression of the subsequent - data. This minimizes the impact to the compression ratio of appending. - */ - -/* - Operations Concept: - - Files (log name "foo"): - foo.gz -- gzip file with the complete log - foo.add -- last message to append or last data to compress - foo.dict -- dictionary of the last 32K of data for next compression - foo.temp -- temporary dictionary file for compression after this one - foo.lock -- lock file for reading and writing the other files - foo.repairs -- log file for log file recovery operations (not compressed) - - gzip file structure: - - fixed-length (no file name) header with extra field (see below) - - compressed data ending initially with empty stored block - - uncompressed data filling out originally empty stored block and - subsequent stored blocks as needed (16K max each) - - gzip trailer - - no junk at end (no other gzip streams) - - When appending data, the information in the first three items above plus the - foo.add file are sufficient to recover an interrupted append operation. The - extra field has the necessary information to restore the start of the last - stored block and determine where to append the data in the foo.add file, as - well as the crc and length of the gzip data before the append operation. - - The foo.add file is created before the gzip file is marked for append, and - deleted after the gzip file is marked as complete. So if the append - operation is interrupted, the data to add will still be there. If due to - some external force, the foo.add file gets deleted between when the append - operation was interrupted and when recovery is attempted, the gzip file will - still be restored, but without the appended data. - - When compressing data, the information in the first two items above plus the - foo.add file are sufficient to recover an interrupted compress operation. - The extra field has the necessary information to find the end of the - compressed data, and contains both the crc and length of just the compressed - data and of the complete set of data including the contents of the foo.add - file. - - Again, the foo.add file is maintained during the compress operation in case - of an interruption. If in the unlikely event the foo.add file with the data - to be compressed is missing due to some external force, a gzip file with - just the previous compressed data will be reconstructed. In this case, all - of the data that was to be compressed is lost (approximately one megabyte). - This will not occur if all that happened was an interruption of the compress - operation. - - The third state that is marked is the replacement of the old dictionary with - the new dictionary after a compress operation. Once compression is - complete, the gzip file is marked as being in the replace state. This - completes the gzip file, so an interrupt after being so marked does not - result in recompression. Then the dictionary file is replaced, and the gzip - file is marked as completed. This state prevents the possibility of - restarting compression with the wrong dictionary file. - - All three operations are wrapped by a lock/unlock procedure. In order to - gain exclusive access to the log files, first a foo.lock file must be - exclusively created. When all operations are complete, the lock is - released by deleting the foo.lock file. If when attempting to create the - lock file, it already exists and the modify time of the lock file is more - than five minutes old (set by the PATIENCE define below), then the old - lock file is considered stale and deleted, and the exclusive creation of - the lock file is retried. To assure that there are no false assessments - of the staleness of the lock file, the operations periodically touch the - lock file to update the modified date. - - Following is the definition of the extra field with all of the information - required to enable the above append and compress operations and their - recovery if interrupted. Multi-byte values are stored little endian - (consistent with the gzip format). File pointers are eight bytes long. - The crc's and lengths for the gzip trailer are four bytes long. (Note that - the length at the end of a gzip file is used for error checking only, and - for large files is actually the length modulo 2^32.) The stored block - length is two bytes long. The gzip extra field two-byte identification is - "ap" for append. It is assumed that writing the extra field to the file is - an "atomic" operation. That is, either all of the extra field is written - to the file, or none of it is, if the operation is interrupted right at the - point of updating the extra field. This is a reasonable assumption, since - the extra field is within the first 52 bytes of the file, which is smaller - than any expected block size for a mass storage device (usually 512 bytes or - larger). - - Extra field (35 bytes): - - Pointer to first stored block length -- this points to the two-byte length - of the first stored block, which is followed by the two-byte, one's - complement of that length. The stored block length is preceded by the - three-bit header of the stored block, which is the actual start of the - stored block in the deflate format. See the bit offset field below. - - Pointer to the last stored block length. This is the same as above, but - for the last stored block of the uncompressed data in the gzip file. - Initially this is the same as the first stored block length pointer. - When the stored block gets to 16K (see the MAX_STORE define), then a new - stored block as added, at which point the last stored block length pointer - is different from the first stored block length pointer. When they are - different, the first bit of the last stored block header is eight bits, or - one byte back from the block length. - - Compressed data crc and length. This is the crc and length of the data - that is in the compressed portion of the deflate stream. These are used - only in the event that the foo.add file containing the data to compress is - lost after a compress operation is interrupted. - - Total data crc and length. This is the crc and length of all of the data - stored in the gzip file, compressed and uncompressed. It is used to - reconstruct the gzip trailer when compressing, as well as when recovering - interrupted operations. - - Final stored block length. This is used to quickly find where to append, - and allows the restoration of the original final stored block state when - an append operation is interrupted. - - First stored block start as the number of bits back from the final stored - block first length byte. This value is in the range of 3..10, and is - stored as the low three bits of the final byte of the extra field after - subtracting three (0..7). This allows the last-block bit of the stored - block header to be updated when a new stored block is added, for the case - when the first stored block and the last stored block are the same. (When - they are different, the numbers of bits back is known to be eight.) This - also allows for new compressed data to be appended to the old compressed - data in the compress operation, overwriting the previous first stored - block, or for the compressed data to be terminated and a valid gzip file - reconstructed on the off chance that a compression operation was - interrupted and the data to compress in the foo.add file was deleted. - - The operation in process. This is the next two bits in the last byte (the - bits under the mask 0x18). The are interpreted as 0: nothing in process, - 1: append in process, 2: compress in process, 3: replace in process. - - The top three bits of the last byte in the extra field are reserved and - are currently set to zero. - - Main procedure: - - Exclusively create the foo.lock file using the O_CREAT and O_EXCL modes of - the system open() call. If the modify time of an existing lock file is - more than PATIENCE seconds old, then the lock file is deleted and the - exclusive create is retried. - - Load the extra field from the foo.gz file, and see if an operation was in - progress but not completed. If so, apply the recovery procedure below. - - Perform the append procedure with the provided data. - - If the uncompressed data in the foo.gz file is 1MB or more, apply the - compress procedure. - - Delete the foo.lock file. - - Append procedure: - - Put what to append in the foo.add file so that the operation can be - restarted if this procedure is interrupted. - - Mark the foo.gz extra field with the append operation in progress. - + Restore the original last-block bit and stored block length of the last - stored block from the information in the extra field, in case a previous - append operation was interrupted. - - Append the provided data to the last stored block, creating new stored - blocks as needed and updating the stored blocks last-block bits and - lengths. - - Update the crc and length with the new data, and write the gzip trailer. - - Write over the extra field (with a single write operation) with the new - pointers, lengths, and crc's, and mark the gzip file as not in process. - Though there is still a foo.add file, it will be ignored since nothing - is in process. If a foo.add file is leftover from a previously - completed operation, it is truncated when writing new data to it. - - Delete the foo.add file. - - Compress and replace procedures: - - Read all of the uncompressed data in the stored blocks in foo.gz and write - it to foo.add. Also write foo.temp with the last 32K of that data to - provide a dictionary for the next invocation of this procedure. - - Rewrite the extra field marking foo.gz with a compression in process. - * If there is no data provided to compress (due to a missing foo.add file - when recovering), reconstruct and truncate the foo.gz file to contain - only the previous compressed data and proceed to the step after the next - one. Otherwise ... - - Compress the data with the dictionary in foo.dict, and write to the - foo.gz file starting at the bit immediately following the last previously - compressed block. If there is no foo.dict, proceed anyway with the - compression at slightly reduced efficiency. (For the foo.dict file to be - missing requires some external failure beyond simply the interruption of - a compress operation.) During this process, the foo.lock file is - periodically touched to assure that that file is not considered stale by - another process before we're done. The deflation is terminated with a - non-last empty static block (10 bits long), that is then located and - written over by a last-bit-set empty stored block. - - Append the crc and length of the data in the gzip file (previously - calculated during the append operations). - - Write over the extra field with the updated stored block offsets, bits - back, crc's, and lengths, and mark foo.gz as in process for a replacement - of the dictionary. - @ Delete the foo.add file. - - Replace foo.dict with foo.temp. - - Write over the extra field, marking foo.gz as complete. - - Recovery procedure: - - If not a replace recovery, read in the foo.add file, and provide that data - to the appropriate recovery below. If there is no foo.add file, provide - a zero data length to the recovery. In that case, the append recovery - restores the foo.gz to the previous compressed + uncompressed data state. - For the the compress recovery, a missing foo.add file results in foo.gz - being restored to the previous compressed-only data state. - - Append recovery: - - Pick up append at + step above - - Compress recovery: - - Pick up compress at * step above - - Replace recovery: - - Pick up compress at @ step above - - Log the repair with a date stamp in foo.repairs - */ - -#include -#include /* rename, fopen, fprintf, fclose */ -#include /* malloc, free */ -#include /* strlen, strrchr, strcpy, strncpy, strcmp */ -#include /* open */ -#include /* lseek, read, write, close, unlink, sleep, */ - /* ftruncate, fsync */ -#include /* errno */ -#include /* time, ctime */ -#include /* stat */ -#include /* utimes */ -#include "zlib.h" /* crc32 */ - -#include "gzlog.h" /* header for external access */ - -#define local static -typedef unsigned int uint; -typedef unsigned long ulong; - -/* Macro for debugging to deterministically force recovery operations */ -#ifdef DEBUG - #include /* longjmp */ - jmp_buf gzlog_jump; /* where to go back to */ - int gzlog_bail = 0; /* which point to bail at (1..8) */ - int gzlog_count = -1; /* number of times through to wait */ -# define BAIL(n) do { if (n == gzlog_bail && gzlog_count-- == 0) \ - longjmp(gzlog_jump, gzlog_bail); } while (0) -#else -# define BAIL(n) -#endif - -/* how old the lock file can be in seconds before considering it stale */ -#define PATIENCE 300 - -/* maximum stored block size in Kbytes -- must be in 1..63 */ -#define MAX_STORE 16 - -/* number of stored Kbytes to trigger compression (must be >= 32 to allow - dictionary construction, and <= 204 * MAX_STORE, in order for >> 10 to - discard the stored block headers contribution of five bytes each) */ -#define TRIGGER 1024 - -/* size of a deflate dictionary (this cannot be changed) */ -#define DICT 32768U - -/* values for the operation (2 bits) */ -#define NO_OP 0 -#define APPEND_OP 1 -#define COMPRESS_OP 2 -#define REPLACE_OP 3 - -/* macros to extract little-endian integers from an unsigned byte buffer */ -#define PULL2(p) ((p)[0]+((uint)((p)[1])<<8)) -#define PULL4(p) (PULL2(p)+((ulong)PULL2(p+2)<<16)) -#define PULL8(p) (PULL4(p)+((off_t)PULL4(p+4)<<32)) - -/* macros to store integers into a byte buffer in little-endian order */ -#define PUT2(p,a) do {(p)[0]=a;(p)[1]=(a)>>8;} while(0) -#define PUT4(p,a) do {PUT2(p,a);PUT2(p+2,a>>16);} while(0) -#define PUT8(p,a) do {PUT4(p,a);PUT4(p+4,a>>32);} while(0) - -/* internal structure for log information */ -#define LOGID "\106\035\172" /* should be three non-zero characters */ -struct log { - char id[4]; /* contains LOGID to detect inadvertent overwrites */ - int fd; /* file descriptor for .gz file, opened read/write */ - char *path; /* allocated path, e.g. "/var/log/foo" or "foo" */ - char *end; /* end of path, for appending suffices such as ".gz" */ - off_t first; /* offset of first stored block first length byte */ - int back; /* location of first block id in bits back from first */ - uint stored; /* bytes currently in last stored block */ - off_t last; /* offset of last stored block first length byte */ - ulong ccrc; /* crc of compressed data */ - ulong clen; /* length (modulo 2^32) of compressed data */ - ulong tcrc; /* crc of total data */ - ulong tlen; /* length (modulo 2^32) of total data */ - time_t lock; /* last modify time of our lock file */ -}; - -/* gzip header for gzlog */ -local unsigned char log_gzhead[] = { - 0x1f, 0x8b, /* magic gzip id */ - 8, /* compression method is deflate */ - 4, /* there is an extra field (no file name) */ - 0, 0, 0, 0, /* no modification time provided */ - 0, 0xff, /* no extra flags, no OS specified */ - 39, 0, 'a', 'p', 35, 0 /* extra field with "ap" subfield */ - /* 35 is EXTRA, 39 is EXTRA + 4 */ -}; - -#define HEAD sizeof(log_gzhead) /* should be 16 */ - -/* initial gzip extra field content (52 == HEAD + EXTRA + 1) */ -local unsigned char log_gzext[] = { - 52, 0, 0, 0, 0, 0, 0, 0, /* offset of first stored block length */ - 52, 0, 0, 0, 0, 0, 0, 0, /* offset of last stored block length */ - 0, 0, 0, 0, 0, 0, 0, 0, /* compressed data crc and length */ - 0, 0, 0, 0, 0, 0, 0, 0, /* total data crc and length */ - 0, 0, /* final stored block data length */ - 5 /* op is NO_OP, last bit 8 bits back */ -}; - -#define EXTRA sizeof(log_gzext) /* should be 35 */ - -/* initial gzip data and trailer */ -local unsigned char log_gzbody[] = { - 1, 0, 0, 0xff, 0xff, /* empty stored block (last) */ - 0, 0, 0, 0, /* crc */ - 0, 0, 0, 0 /* uncompressed length */ -}; - -#define BODY sizeof(log_gzbody) - -/* Exclusively create foo.lock in order to negotiate exclusive access to the - foo.* files. If the modify time of an existing lock file is greater than - PATIENCE seconds in the past, then consider the lock file to have been - abandoned, delete it, and try the exclusive create again. Save the lock - file modify time for verification of ownership. Return 0 on success, or -1 - on failure, usually due to an access restriction or invalid path. Note that - if stat() or unlink() fails, it may be due to another process noticing the - abandoned lock file a smidge sooner and deleting it, so those are not - flagged as an error. */ -local int log_lock(struct log *log) -{ - int fd; - struct stat st; - - strcpy(log->end, ".lock"); - while ((fd = open(log->path, O_CREAT | O_EXCL, 0644)) < 0) { - if (errno != EEXIST) - return -1; - if (stat(log->path, &st) == 0 && time(NULL) - st.st_mtime > PATIENCE) { - unlink(log->path); - continue; - } - sleep(2); /* relinquish the CPU for two seconds while waiting */ - } - close(fd); - if (stat(log->path, &st) == 0) - log->lock = st.st_mtime; - return 0; -} - -/* Update the modify time of the lock file to now, in order to prevent another - task from thinking that the lock is stale. Save the lock file modify time - for verification of ownership. */ -local void log_touch(struct log *log) -{ - struct stat st; - - strcpy(log->end, ".lock"); - utimes(log->path, NULL); - if (stat(log->path, &st) == 0) - log->lock = st.st_mtime; -} - -/* Check the log file modify time against what is expected. Return true if - this is not our lock. If it is our lock, touch it to keep it. */ -local int log_check(struct log *log) -{ - struct stat st; - - strcpy(log->end, ".lock"); - if (stat(log->path, &st) || st.st_mtime != log->lock) - return 1; - log_touch(log); - return 0; -} - -/* Unlock a previously acquired lock, but only if it's ours. */ -local void log_unlock(struct log *log) -{ - if (log_check(log)) - return; - strcpy(log->end, ".lock"); - unlink(log->path); - log->lock = 0; -} - -/* Check the gzip header and read in the extra field, filling in the values in - the log structure. Return op on success or -1 if the gzip header was not as - expected. op is the current operation in progress last written to the extra - field. This assumes that the gzip file has already been opened, with the - file descriptor log->fd. */ -local int log_head(struct log *log) -{ - int op; - unsigned char buf[HEAD + EXTRA]; - - if (lseek(log->fd, 0, SEEK_SET) < 0 || - read(log->fd, buf, HEAD + EXTRA) != HEAD + EXTRA || - memcmp(buf, log_gzhead, HEAD)) { - return -1; - } - log->first = PULL8(buf + HEAD); - log->last = PULL8(buf + HEAD + 8); - log->ccrc = PULL4(buf + HEAD + 16); - log->clen = PULL4(buf + HEAD + 20); - log->tcrc = PULL4(buf + HEAD + 24); - log->tlen = PULL4(buf + HEAD + 28); - log->stored = PULL2(buf + HEAD + 32); - log->back = 3 + (buf[HEAD + 34] & 7); - op = (buf[HEAD + 34] >> 3) & 3; - return op; -} - -/* Write over the extra field contents, marking the operation as op. Use fsync - to assure that the device is written to, and in the requested order. This - operation, and only this operation, is assumed to be atomic in order to - assure that the log is recoverable in the event of an interruption at any - point in the process. Return -1 if the write to foo.gz failed. */ -local int log_mark(struct log *log, int op) -{ - int ret; - unsigned char ext[EXTRA]; - - PUT8(ext, log->first); - PUT8(ext + 8, log->last); - PUT4(ext + 16, log->ccrc); - PUT4(ext + 20, log->clen); - PUT4(ext + 24, log->tcrc); - PUT4(ext + 28, log->tlen); - PUT2(ext + 32, log->stored); - ext[34] = log->back - 3 + (op << 3); - fsync(log->fd); - ret = lseek(log->fd, HEAD, SEEK_SET) < 0 || - write(log->fd, ext, EXTRA) != EXTRA ? -1 : 0; - fsync(log->fd); - return ret; -} - -/* Rewrite the last block header bits and subsequent zero bits to get to a byte - boundary, setting the last block bit if last is true, and then write the - remainder of the stored block header (length and one's complement). Leave - the file pointer after the end of the last stored block data. Return -1 if - there is a read or write failure on the foo.gz file */ -local int log_last(struct log *log, int last) -{ - int back, len, mask; - unsigned char buf[6]; - - /* determine the locations of the bytes and bits to modify */ - back = log->last == log->first ? log->back : 8; - len = back > 8 ? 2 : 1; /* bytes back from log->last */ - mask = 0x80 >> ((back - 1) & 7); /* mask for block last-bit */ - - /* get the byte to modify (one or two back) into buf[0] -- don't need to - read the byte if the last-bit is eight bits back, since in that case - the entire byte will be modified */ - buf[0] = 0; - if (back != 8 && (lseek(log->fd, log->last - len, SEEK_SET) < 0 || - read(log->fd, buf, 1) != 1)) - return -1; - - /* change the last-bit of the last stored block as requested -- note - that all bits above the last-bit are set to zero, per the type bits - of a stored block being 00 and per the convention that the bits to - bring the stream to a byte boundary are also zeros */ - buf[1] = 0; - buf[2 - len] = (*buf & (mask - 1)) + (last ? mask : 0); - - /* write the modified stored block header and lengths, move the file - pointer to after the last stored block data */ - PUT2(buf + 2, log->stored); - PUT2(buf + 4, log->stored ^ 0xffff); - return lseek(log->fd, log->last - len, SEEK_SET) < 0 || - write(log->fd, buf + 2 - len, len + 4) != len + 4 || - lseek(log->fd, log->stored, SEEK_CUR) < 0 ? -1 : 0; -} - -/* Append len bytes from data to the locked and open log file. len may be zero - if recovering and no .add file was found. In that case, the previous state - of the foo.gz file is restored. The data is appended uncompressed in - deflate stored blocks. Return -1 if there was an error reading or writing - the foo.gz file. */ -local int log_append(struct log *log, unsigned char *data, size_t len) -{ - uint put; - off_t end; - unsigned char buf[8]; - - /* set the last block last-bit and length, in case recovering an - interrupted append, then position the file pointer to append to the - block */ - if (log_last(log, 1)) - return -1; - - /* append, adding stored blocks and updating the offset of the last stored - block as needed, and update the total crc and length */ - while (len) { - /* append as much as we can to the last block */ - put = (MAX_STORE << 10) - log->stored; - if (put > len) - put = (uint)len; - if (put) { - if (write(log->fd, data, put) != put) - return -1; - BAIL(1); - log->tcrc = crc32(log->tcrc, data, put); - log->tlen += put; - log->stored += put; - data += put; - len -= put; - } - - /* if we need to, add a new empty stored block */ - if (len) { - /* mark current block as not last */ - if (log_last(log, 0)) - return -1; - - /* point to new, empty stored block */ - log->last += 4 + log->stored + 1; - log->stored = 0; - } - - /* mark last block as last, update its length */ - if (log_last(log, 1)) - return -1; - BAIL(2); - } - - /* write the new crc and length trailer, and truncate just in case (could - be recovering from partial append with a missing foo.add file) */ - PUT4(buf, log->tcrc); - PUT4(buf + 4, log->tlen); - if (write(log->fd, buf, 8) != 8 || - (end = lseek(log->fd, 0, SEEK_CUR)) < 0 || ftruncate(log->fd, end)) - return -1; - - /* write the extra field, marking the log file as done, delete .add file */ - if (log_mark(log, NO_OP)) - return -1; - strcpy(log->end, ".add"); - unlink(log->path); /* ignore error, since may not exist */ - return 0; -} - -/* Replace the foo.dict file with the foo.temp file. Also delete the foo.add - file, since the compress operation may have been interrupted before that was - done. Returns 1 if memory could not be allocated, or -1 if reading or - writing foo.gz fails, or if the rename fails for some reason other than - foo.temp not existing. foo.temp not existing is a permitted error, since - the replace operation may have been interrupted after the rename is done, - but before foo.gz is marked as complete. */ -local int log_replace(struct log *log) -{ - int ret; - char *dest; - - /* delete foo.add file */ - strcpy(log->end, ".add"); - unlink(log->path); /* ignore error, since may not exist */ - BAIL(3); - - /* rename foo.name to foo.dict, replacing foo.dict if it exists */ - strcpy(log->end, ".dict"); - dest = malloc(strlen(log->path) + 1); - if (dest == NULL) - return -2; - strcpy(dest, log->path); - strcpy(log->end, ".temp"); - ret = rename(log->path, dest); - free(dest); - if (ret && errno != ENOENT) - return -1; - BAIL(4); - - /* mark the foo.gz file as done */ - return log_mark(log, NO_OP); -} - -/* Compress the len bytes at data and append the compressed data to the - foo.gz deflate data immediately after the previous compressed data. This - overwrites the previous uncompressed data, which was stored in foo.add - and is the data provided in data[0..len-1]. If this operation is - interrupted, it picks up at the start of this routine, with the foo.add - file read in again. If there is no data to compress (len == 0), then we - simply terminate the foo.gz file after the previously compressed data, - appending a final empty stored block and the gzip trailer. Return -1 if - reading or writing the log.gz file failed, or -2 if there was a memory - allocation failure. */ -local int log_compress(struct log *log, unsigned char *data, size_t len) -{ - int fd; - uint got, max; - ssize_t dict; - off_t end; - z_stream strm; - unsigned char buf[DICT]; - - /* compress and append compressed data */ - if (len) { - /* set up for deflate, allocating memory */ - strm.zalloc = Z_NULL; - strm.zfree = Z_NULL; - strm.opaque = Z_NULL; - if (deflateInit2(&strm, Z_DEFAULT_COMPRESSION, Z_DEFLATED, -15, 8, - Z_DEFAULT_STRATEGY) != Z_OK) - return -2; - - /* read in dictionary (last 32K of data that was compressed) */ - strcpy(log->end, ".dict"); - fd = open(log->path, O_RDONLY, 0); - if (fd >= 0) { - dict = read(fd, buf, DICT); - close(fd); - if (dict < 0) { - deflateEnd(&strm); - return -1; - } - if (dict) - deflateSetDictionary(&strm, buf, (uint)dict); - } - log_touch(log); - - /* prime deflate with last bits of previous block, position write - pointer to write those bits and overwrite what follows */ - if (lseek(log->fd, log->first - (log->back > 8 ? 2 : 1), - SEEK_SET) < 0 || - read(log->fd, buf, 1) != 1 || lseek(log->fd, -1, SEEK_CUR) < 0) { - deflateEnd(&strm); - return -1; - } - deflatePrime(&strm, (8 - log->back) & 7, *buf); - - /* compress, finishing with a partial non-last empty static block */ - strm.next_in = data; - max = (((uint)0 - 1) >> 1) + 1; /* in case int smaller than size_t */ - do { - strm.avail_in = len > max ? max : (uint)len; - len -= strm.avail_in; - do { - strm.avail_out = DICT; - strm.next_out = buf; - deflate(&strm, len ? Z_NO_FLUSH : Z_PARTIAL_FLUSH); - got = DICT - strm.avail_out; - if (got && write(log->fd, buf, got) != got) { - deflateEnd(&strm); - return -1; - } - log_touch(log); - } while (strm.avail_out == 0); - } while (len); - deflateEnd(&strm); - BAIL(5); - - /* find start of empty static block -- scanning backwards the first one - bit is the second bit of the block, if the last byte is zero, then - we know the byte before that has a one in the top bit, since an - empty static block is ten bits long */ - if ((log->first = lseek(log->fd, -1, SEEK_CUR)) < 0 || - read(log->fd, buf, 1) != 1) - return -1; - log->first++; - if (*buf) { - log->back = 1; - while ((*buf & ((uint)1 << (8 - log->back++))) == 0) - ; /* guaranteed to terminate, since *buf != 0 */ - } - else - log->back = 10; - - /* update compressed crc and length */ - log->ccrc = log->tcrc; - log->clen = log->tlen; - } - else { - /* no data to compress -- fix up existing gzip stream */ - log->tcrc = log->ccrc; - log->tlen = log->clen; - } - - /* complete and truncate gzip stream */ - log->last = log->first; - log->stored = 0; - PUT4(buf, log->tcrc); - PUT4(buf + 4, log->tlen); - if (log_last(log, 1) || write(log->fd, buf, 8) != 8 || - (end = lseek(log->fd, 0, SEEK_CUR)) < 0 || ftruncate(log->fd, end)) - return -1; - BAIL(6); - - /* mark as being in the replace operation */ - if (log_mark(log, REPLACE_OP)) - return -1; - - /* execute the replace operation and mark the file as done */ - return log_replace(log); -} - -/* log a repair record to the .repairs file */ -local void log_log(struct log *log, int op, char *record) -{ - time_t now; - FILE *rec; - - now = time(NULL); - strcpy(log->end, ".repairs"); - rec = fopen(log->path, "a"); - if (rec == NULL) - return; - fprintf(rec, "%.24s %s recovery: %s\n", ctime(&now), op == APPEND_OP ? - "append" : (op == COMPRESS_OP ? "compress" : "replace"), record); - fclose(rec); - return; -} - -/* Recover the interrupted operation op. First read foo.add for recovering an - append or compress operation. Return -1 if there was an error reading or - writing foo.gz or reading an existing foo.add, or -2 if there was a memory - allocation failure. */ -local int log_recover(struct log *log, int op) -{ - int fd, ret = 0; - unsigned char *data = NULL; - size_t len = 0; - struct stat st; - - /* log recovery */ - log_log(log, op, "start"); - - /* load foo.add file if expected and present */ - if (op == APPEND_OP || op == COMPRESS_OP) { - strcpy(log->end, ".add"); - if (stat(log->path, &st) == 0 && st.st_size) { - len = (size_t)(st.st_size); - if (len != st.st_size || (data = malloc(st.st_size)) == NULL) { - log_log(log, op, "allocation failure"); - return -2; - } - if ((fd = open(log->path, O_RDONLY, 0)) < 0) { - log_log(log, op, ".add file read failure"); - return -1; - } - ret = read(fd, data, len) != len; - close(fd); - if (ret) { - log_log(log, op, ".add file read failure"); - return -1; - } - log_log(log, op, "loaded .add file"); - } - else - log_log(log, op, "missing .add file!"); - } - - /* recover the interrupted operation */ - switch (op) { - case APPEND_OP: - ret = log_append(log, data, len); - break; - case COMPRESS_OP: - ret = log_compress(log, data, len); - break; - case REPLACE_OP: - ret = log_replace(log); - } - - /* log status */ - log_log(log, op, ret ? "failure" : "complete"); - - /* clean up */ - if (data != NULL) - free(data); - return ret; -} - -/* Close the foo.gz file (if open) and release the lock. */ -local void log_close(struct log *log) -{ - if (log->fd >= 0) - close(log->fd); - log->fd = -1; - log_unlock(log); -} - -/* Open foo.gz, verify the header, and load the extra field contents, after - first creating the foo.lock file to gain exclusive access to the foo.* - files. If foo.gz does not exist or is empty, then write the initial header, - extra, and body content of an empty foo.gz log file. If there is an error - creating the lock file due to access restrictions, or an error reading or - writing the foo.gz file, or if the foo.gz file is not a proper log file for - this object (e.g. not a gzip file or does not contain the expected extra - field), then return true. If there is an error, the lock is released. - Otherwise, the lock is left in place. */ -local int log_open(struct log *log) -{ - int op; - - /* release open file resource if left over -- can occur if lock lost - between gzlog_open() and gzlog_write() */ - if (log->fd >= 0) - close(log->fd); - log->fd = -1; - - /* negotiate exclusive access */ - if (log_lock(log) < 0) - return -1; - - /* open the log file, foo.gz */ - strcpy(log->end, ".gz"); - log->fd = open(log->path, O_RDWR | O_CREAT, 0644); - if (log->fd < 0) { - log_close(log); - return -1; - } - - /* if new, initialize foo.gz with an empty log, delete old dictionary */ - if (lseek(log->fd, 0, SEEK_END) == 0) { - if (write(log->fd, log_gzhead, HEAD) != HEAD || - write(log->fd, log_gzext, EXTRA) != EXTRA || - write(log->fd, log_gzbody, BODY) != BODY) { - log_close(log); - return -1; - } - strcpy(log->end, ".dict"); - unlink(log->path); - } - - /* verify log file and load extra field information */ - if ((op = log_head(log)) < 0) { - log_close(log); - return -1; - } - - /* check for interrupted process and if so, recover */ - if (op != NO_OP && log_recover(log, op)) { - log_close(log); - return -1; - } - - /* touch the lock file to prevent another process from grabbing it */ - log_touch(log); - return 0; -} - -/* See gzlog.h for the description of the external methods below */ -gzlog *gzlog_open(char *path) -{ - size_t n; - struct log *log; - - /* check arguments */ - if (path == NULL || *path == 0) - return NULL; - - /* allocate and initialize log structure */ - log = malloc(sizeof(struct log)); - if (log == NULL) - return NULL; - strcpy(log->id, LOGID); - log->fd = -1; - - /* save path and end of path for name construction */ - n = strlen(path); - log->path = malloc(n + 9); /* allow for ".repairs" */ - if (log->path == NULL) { - free(log); - return NULL; - } - strcpy(log->path, path); - log->end = log->path + n; - - /* gain exclusive access and verify log file -- may perform a - recovery operation if needed */ - if (log_open(log)) { - free(log->path); - free(log); - return NULL; - } - - /* return pointer to log structure */ - return log; -} - -/* gzlog_compress() return values: - 0: all good - -1: file i/o error (usually access issue) - -2: memory allocation failure - -3: invalid log pointer argument */ -int gzlog_compress(gzlog *logd) -{ - int fd, ret; - uint block; - size_t len, next; - unsigned char *data, buf[5]; - struct log *log = logd; - - /* check arguments */ - if (log == NULL || strcmp(log->id, LOGID) || len < 0) - return -3; - - /* see if we lost the lock -- if so get it again and reload the extra - field information (it probably changed), recover last operation if - necessary */ - if (log_check(log) && log_open(log)) - return -1; - - /* create space for uncompressed data */ - len = ((size_t)(log->last - log->first) & ~(((size_t)1 << 10) - 1)) + - log->stored; - if ((data = malloc(len)) == NULL) - return -2; - - /* do statement here is just a cheap trick for error handling */ - do { - /* read in the uncompressed data */ - if (lseek(log->fd, log->first - 1, SEEK_SET) < 0) - break; - next = 0; - while (next < len) { - if (read(log->fd, buf, 5) != 5) - break; - block = PULL2(buf + 1); - if (next + block > len || - read(log->fd, (char *)data + next, block) != block) - break; - next += block; - } - if (lseek(log->fd, 0, SEEK_CUR) != log->last + 4 + log->stored) - break; - log_touch(log); - - /* write the uncompressed data to the .add file */ - strcpy(log->end, ".add"); - fd = open(log->path, O_WRONLY | O_CREAT | O_TRUNC, 0644); - if (fd < 0) - break; - ret = write(fd, data, len) != len; - if (ret | close(fd)) - break; - log_touch(log); - - /* write the dictionary for the next compress to the .temp file */ - strcpy(log->end, ".temp"); - fd = open(log->path, O_WRONLY | O_CREAT | O_TRUNC, 0644); - if (fd < 0) - break; - next = DICT > len ? len : DICT; - ret = write(fd, (char *)data + len - next, next) != next; - if (ret | close(fd)) - break; - log_touch(log); - - /* roll back to compressed data, mark the compress in progress */ - log->last = log->first; - log->stored = 0; - if (log_mark(log, COMPRESS_OP)) - break; - BAIL(7); - - /* compress and append the data (clears mark) */ - ret = log_compress(log, data, len); - free(data); - return ret; - } while (0); - - /* broke out of do above on i/o error */ - free(data); - return -1; -} - -/* gzlog_write() return values: - 0: all good - -1: file i/o error (usually access issue) - -2: memory allocation failure - -3: invalid log pointer argument */ -int gzlog_write(gzlog *logd, void *data, size_t len) -{ - int fd, ret; - struct log *log = logd; - - /* check arguments */ - if (log == NULL || strcmp(log->id, LOGID) || len < 0) - return -3; - if (data == NULL || len == 0) - return 0; - - /* see if we lost the lock -- if so get it again and reload the extra - field information (it probably changed), recover last operation if - necessary */ - if (log_check(log) && log_open(log)) - return -1; - - /* create and write .add file */ - strcpy(log->end, ".add"); - fd = open(log->path, O_WRONLY | O_CREAT | O_TRUNC, 0644); - if (fd < 0) - return -1; - ret = write(fd, data, len) != len; - if (ret | close(fd)) - return -1; - log_touch(log); - - /* mark log file with append in progress */ - if (log_mark(log, APPEND_OP)) - return -1; - BAIL(8); - - /* append data (clears mark) */ - if (log_append(log, data, len)) - return -1; - - /* check to see if it's time to compress -- if not, then done */ - if (((log->last - log->first) >> 10) + (log->stored >> 10) < TRIGGER) - return 0; - - /* time to compress */ - return gzlog_compress(log); -} - -/* gzlog_close() return values: - 0: ok - -3: invalid log pointer argument */ -int gzlog_close(gzlog *logd) -{ - struct log *log = logd; - - /* check arguments */ - if (log == NULL || strcmp(log->id, LOGID)) - return -3; - - /* close the log file and release the lock */ - log_close(log); - - /* free structure and return */ - if (log->path != NULL) - free(log->path); - strcpy(log->id, "bad"); - free(log); - return 0; -} diff --git a/zlib-1.2.7/examples/gzlog.h b/zlib-1.2.7/examples/gzlog.h deleted file mode 100755 index c46142673..000000000 --- a/zlib-1.2.7/examples/gzlog.h +++ /dev/null @@ -1,89 +0,0 @@ -/* gzlog.h - Copyright (C) 2004, 2008 Mark Adler, all rights reserved - version 2.0, 25 Apr 2008 - - This software is provided 'as-is', without any express or implied - warranty. In no event will the author be held liable for any damages - arising from the use of this software. - - Permission is granted to anyone to use this software for any purpose, - including commercial applications, and to alter it and redistribute it - freely, subject to the following restrictions: - - 1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. - 2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. - 3. This notice may not be removed or altered from any source distribution. - - Mark Adler madler@alumni.caltech.edu - */ - -/* Version History: - 1.0 26 Nov 2004 First version - 2.0 25 Apr 2008 Complete redesign for recovery of interrupted operations - Interface changed slightly in that now path is a prefix - Compression now occurs as needed during gzlog_write() - gzlog_write() now always leaves the log file as valid gzip - */ - -/* - The gzlog object allows writing short messages to a gzipped log file, - opening the log file locked for small bursts, and then closing it. The log - object works by appending stored (uncompressed) data to the gzip file until - 1 MB has been accumulated. At that time, the stored data is compressed, and - replaces the uncompressed data in the file. The log file is truncated to - its new size at that time. After each write operation, the log file is a - valid gzip file that can decompressed to recover what was written. - - The gzlog operations can be interupted at any point due to an application or - system crash, and the log file will be recovered the next time the log is - opened with gzlog_open(). - */ - -#ifndef GZLOG_H -#define GZLOG_H - -/* gzlog object type */ -typedef void gzlog; - -/* Open a gzlog object, creating the log file if it does not exist. Return - NULL on error. Note that gzlog_open() could take a while to complete if it - has to wait to verify that a lock is stale (possibly for five minutes), or - if there is significant contention with other instantiations of this object - when locking the resource. path is the prefix of the file names created by - this object. If path is "foo", then the log file will be "foo.gz", and - other auxiliary files will be created and destroyed during the process: - "foo.dict" for a compression dictionary, "foo.temp" for a temporary (next) - dictionary, "foo.add" for data being added or compressed, "foo.lock" for the - lock file, and "foo.repairs" to log recovery operations performed due to - interrupted gzlog operations. A gzlog_open() followed by a gzlog_close() - will recover a previously interrupted operation, if any. */ -gzlog *gzlog_open(char *path); - -/* Write to a gzlog object. Return zero on success, -1 if there is a file i/o - error on any of the gzlog files (this should not happen if gzlog_open() - succeeded, unless the device has run out of space or leftover auxiliary - files have permissions or ownership that prevent their use), -2 if there is - a memory allocation failure, or -3 if the log argument is invalid (e.g. if - it was not created by gzlog_open()). This function will write data to the - file uncompressed, until 1 MB has been accumulated, at which time that data - will be compressed. The log file will be a valid gzip file upon successful - return. */ -int gzlog_write(gzlog *log, void *data, size_t len); - -/* Force compression of any uncompressed data in the log. This should be used - sparingly, if at all. The main application would be when a log file will - not be appended to again. If this is used to compress frequently while - appending, it will both significantly increase the execution time and - reduce the compression ratio. The return codes are the same as for - gzlog_write(). */ -int gzlog_compress(gzlog *log); - -/* Close a gzlog object. Return zero on success, -3 if the log argument is - invalid. The log object is freed, and so cannot be referenced again. */ -int gzlog_close(gzlog *log); - -#endif diff --git a/zlib-1.2.7/examples/zlib_how.html b/zlib-1.2.7/examples/zlib_how.html deleted file mode 100755 index 444ff1c9a..000000000 --- a/zlib-1.2.7/examples/zlib_how.html +++ /dev/null @@ -1,545 +0,0 @@ - - - - -zlib Usage Example - - - -

zlib Usage Example

-We often get questions about how the deflate() and inflate() functions should be used. -Users wonder when they should provide more input, when they should use more output, -what to do with a Z_BUF_ERROR, how to make sure the process terminates properly, and -so on. So for those who have read zlib.h (a few times), and -would like further edification, below is an annotated example in C of simple routines to compress and decompress -from an input file to an output file using deflate() and inflate() respectively. The -annotations are interspersed between lines of the code. So please read between the lines. -We hope this helps explain some of the intricacies of zlib. -

-Without further adieu, here is the program zpipe.c: -


-/* zpipe.c: example of proper use of zlib's inflate() and deflate()
-   Not copyrighted -- provided to the public domain
-   Version 1.4  11 December 2005  Mark Adler */
-
-/* Version history:
-   1.0  30 Oct 2004  First version
-   1.1   8 Nov 2004  Add void casting for unused return values
-                     Use switch statement for inflate() return values
-   1.2   9 Nov 2004  Add assertions to document zlib guarantees
-   1.3   6 Apr 2005  Remove incorrect assertion in inf()
-   1.4  11 Dec 2005  Add hack to avoid MSDOS end-of-line conversions
-                     Avoid some compiler warnings for input and output buffers
- */
-
-We now include the header files for the required definitions. From -stdio.h we use fopen(), fread(), fwrite(), -feof(), ferror(), and fclose() for file i/o, and -fputs() for error messages. From string.h we use -strcmp() for command line argument processing. -From assert.h we use the assert() macro. -From zlib.h -we use the basic compression functions deflateInit(), -deflate(), and deflateEnd(), and the basic decompression -functions inflateInit(), inflate(), and -inflateEnd(). -

-#include <stdio.h>
-#include <string.h>
-#include <assert.h>
-#include "zlib.h"
-
-This is an ugly hack required to avoid corruption of the input and output data on -Windows/MS-DOS systems. Without this, those systems would assume that the input and output -files are text, and try to convert the end-of-line characters from one standard to -another. That would corrupt binary data, and in particular would render the compressed data unusable. -This sets the input and output to binary which suppresses the end-of-line conversions. -SET_BINARY_MODE() will be used later on stdin and stdout, at the beginning of main(). -

-#if defined(MSDOS) || defined(OS2) || defined(WIN32) || defined(__CYGWIN__)
-#  include <fcntl.h>
-#  include <io.h>
-#  define SET_BINARY_MODE(file) setmode(fileno(file), O_BINARY)
-#else
-#  define SET_BINARY_MODE(file)
-#endif
-
-CHUNK is simply the buffer size for feeding data to and pulling data -from the zlib routines. Larger buffer sizes would be more efficient, -especially for inflate(). If the memory is available, buffers sizes -on the order of 128K or 256K bytes should be used. -

-#define CHUNK 16384
-
-The def() routine compresses data from an input file to an output file. The output data -will be in the zlib format, which is different from the gzip or zip -formats. The zlib format has a very small header of only two bytes to identify it as -a zlib stream and to provide decoding information, and a four-byte trailer with a fast -check value to verify the integrity of the uncompressed data after decoding. -

-/* Compress from file source to file dest until EOF on source.
-   def() returns Z_OK on success, Z_MEM_ERROR if memory could not be
-   allocated for processing, Z_STREAM_ERROR if an invalid compression
-   level is supplied, Z_VERSION_ERROR if the version of zlib.h and the
-   version of the library linked do not match, or Z_ERRNO if there is
-   an error reading or writing the files. */
-int def(FILE *source, FILE *dest, int level)
-{
-
-Here are the local variables for def(). ret will be used for zlib -return codes. flush will keep track of the current flushing state for deflate(), -which is either no flushing, or flush to completion after the end of the input file is reached. -have is the amount of data returned from deflate(). The strm structure -is used to pass information to and from the zlib routines, and to maintain the -deflate() state. in and out are the input and output buffers for -deflate(). -

-    int ret, flush;
-    unsigned have;
-    z_stream strm;
-    unsigned char in[CHUNK];
-    unsigned char out[CHUNK];
-
-The first thing we do is to initialize the zlib state for compression using -deflateInit(). This must be done before the first use of deflate(). -The zalloc, zfree, and opaque fields in the strm -structure must be initialized before calling deflateInit(). Here they are -set to the zlib constant Z_NULL to request that zlib use -the default memory allocation routines. An application may also choose to provide -custom memory allocation routines here. deflateInit() will allocate on the -order of 256K bytes for the internal state. -(See zlib Technical Details.) -

-deflateInit() is called with a pointer to the structure to be initialized and -the compression level, which is an integer in the range of -1 to 9. Lower compression -levels result in faster execution, but less compression. Higher levels result in -greater compression, but slower execution. The zlib constant Z_DEFAULT_COMPRESSION, -equal to -1, -provides a good compromise between compression and speed and is equivalent to level 6. -Level 0 actually does no compression at all, and in fact expands the data slightly to produce -the zlib format (it is not a byte-for-byte copy of the input). -More advanced applications of zlib -may use deflateInit2() here instead. Such an application may want to reduce how -much memory will be used, at some price in compression. Or it may need to request a -gzip header and trailer instead of a zlib header and trailer, or raw -encoding with no header or trailer at all. -

-We must check the return value of deflateInit() against the zlib constant -Z_OK to make sure that it was able to -allocate memory for the internal state, and that the provided arguments were valid. -deflateInit() will also check that the version of zlib that the zlib.h -file came from matches the version of zlib actually linked with the program. This -is especially important for environments in which zlib is a shared library. -

-Note that an application can initialize multiple, independent zlib streams, which can -operate in parallel. The state information maintained in the structure allows the zlib -routines to be reentrant. -


-    /* allocate deflate state */
-    strm.zalloc = Z_NULL;
-    strm.zfree = Z_NULL;
-    strm.opaque = Z_NULL;
-    ret = deflateInit(&strm, level);
-    if (ret != Z_OK)
-        return ret;
-
-With the pleasantries out of the way, now we can get down to business. The outer do-loop -reads all of the input file and exits at the bottom of the loop once end-of-file is reached. -This loop contains the only call of deflate(). So we must make sure that all of the -input data has been processed and that all of the output data has been generated and consumed -before we fall out of the loop at the bottom. -

-    /* compress until end of file */
-    do {
-
-We start off by reading data from the input file. The number of bytes read is put directly -into avail_in, and a pointer to those bytes is put into next_in. We also -check to see if end-of-file on the input has been reached. If we are at the end of file, then flush is set to the -zlib constant Z_FINISH, which is later passed to deflate() to -indicate that this is the last chunk of input data to compress. We need to use feof() -to check for end-of-file as opposed to seeing if fewer than CHUNK bytes have been read. The -reason is that if the input file length is an exact multiple of CHUNK, we will miss -the fact that we got to the end-of-file, and not know to tell deflate() to finish -up the compressed stream. If we are not yet at the end of the input, then the zlib -constant Z_NO_FLUSH will be passed to deflate to indicate that we are still -in the middle of the uncompressed data. -

-If there is an error in reading from the input file, the process is aborted with -deflateEnd() being called to free the allocated zlib state before returning -the error. We wouldn't want a memory leak, now would we? deflateEnd() can be called -at any time after the state has been initialized. Once that's done, deflateInit() (or -deflateInit2()) would have to be called to start a new compression process. There is -no point here in checking the deflateEnd() return code. The deallocation can't fail. -


-        strm.avail_in = fread(in, 1, CHUNK, source);
-        if (ferror(source)) {
-            (void)deflateEnd(&strm);
-            return Z_ERRNO;
-        }
-        flush = feof(source) ? Z_FINISH : Z_NO_FLUSH;
-        strm.next_in = in;
-
-The inner do-loop passes our chunk of input data to deflate(), and then -keeps calling deflate() until it is done producing output. Once there is no more -new output, deflate() is guaranteed to have consumed all of the input, i.e., -avail_in will be zero. -

-        /* run deflate() on input until output buffer not full, finish
-           compression if all of source has been read in */
-        do {
-
-Output space is provided to deflate() by setting avail_out to the number -of available output bytes and next_out to a pointer to that space. -

-            strm.avail_out = CHUNK;
-            strm.next_out = out;
-
-Now we call the compression engine itself, deflate(). It takes as many of the -avail_in bytes at next_in as it can process, and writes as many as -avail_out bytes to next_out. Those counters and pointers are then -updated past the input data consumed and the output data written. It is the amount of -output space available that may limit how much input is consumed. -Hence the inner loop to make sure that -all of the input is consumed by providing more output space each time. Since avail_in -and next_in are updated by deflate(), we don't have to mess with those -between deflate() calls until it's all used up. -

-The parameters to deflate() are a pointer to the strm structure containing -the input and output information and the internal compression engine state, and a parameter -indicating whether and how to flush data to the output. Normally deflate will consume -several K bytes of input data before producing any output (except for the header), in order -to accumulate statistics on the data for optimum compression. It will then put out a burst of -compressed data, and proceed to consume more input before the next burst. Eventually, -deflate() -must be told to terminate the stream, complete the compression with provided input data, and -write out the trailer check value. deflate() will continue to compress normally as long -as the flush parameter is Z_NO_FLUSH. Once the Z_FINISH parameter is provided, -deflate() will begin to complete the compressed output stream. However depending on how -much output space is provided, deflate() may have to be called several times until it -has provided the complete compressed stream, even after it has consumed all of the input. The flush -parameter must continue to be Z_FINISH for those subsequent calls. -

-There are other values of the flush parameter that are used in more advanced applications. You can -force deflate() to produce a burst of output that encodes all of the input data provided -so far, even if it wouldn't have otherwise, for example to control data latency on a link with -compressed data. You can also ask that deflate() do that as well as erase any history up to -that point so that what follows can be decompressed independently, for example for random access -applications. Both requests will degrade compression by an amount depending on how often such -requests are made. -

-deflate() has a return value that can indicate errors, yet we do not check it here. Why -not? Well, it turns out that deflate() can do no wrong here. Let's go through -deflate()'s return values and dispense with them one by one. The possible values are -Z_OK, Z_STREAM_END, Z_STREAM_ERROR, or Z_BUF_ERROR. Z_OK -is, well, ok. Z_STREAM_END is also ok and will be returned for the last call of -deflate(). This is already guaranteed by calling deflate() with Z_FINISH -until it has no more output. Z_STREAM_ERROR is only possible if the stream is not -initialized properly, but we did initialize it properly. There is no harm in checking for -Z_STREAM_ERROR here, for example to check for the possibility that some -other part of the application inadvertently clobbered the memory containing the zlib state. -Z_BUF_ERROR will be explained further below, but -suffice it to say that this is simply an indication that deflate() could not consume -more input or produce more output. deflate() can be called again with more output space -or more available input, which it will be in this code. -


-            ret = deflate(&strm, flush);    /* no bad return value */
-            assert(ret != Z_STREAM_ERROR);  /* state not clobbered */
-
-Now we compute how much output deflate() provided on the last call, which is the -difference between how much space was provided before the call, and how much output space -is still available after the call. Then that data, if any, is written to the output file. -We can then reuse the output buffer for the next call of deflate(). Again if there -is a file i/o error, we call deflateEnd() before returning to avoid a memory leak. -

-            have = CHUNK - strm.avail_out;
-            if (fwrite(out, 1, have, dest) != have || ferror(dest)) {
-                (void)deflateEnd(&strm);
-                return Z_ERRNO;
-            }
-
-The inner do-loop is repeated until the last deflate() call fails to fill the -provided output buffer. Then we know that deflate() has done as much as it can with -the provided input, and that all of that input has been consumed. We can then fall out of this -loop and reuse the input buffer. -

-The way we tell that deflate() has no more output is by seeing that it did not fill -the output buffer, leaving avail_out greater than zero. However suppose that -deflate() has no more output, but just so happened to exactly fill the output buffer! -avail_out is zero, and we can't tell that deflate() has done all it can. -As far as we know, deflate() -has more output for us. So we call it again. But now deflate() produces no output -at all, and avail_out remains unchanged as CHUNK. That deflate() call -wasn't able to do anything, either consume input or produce output, and so it returns -Z_BUF_ERROR. (See, I told you I'd cover this later.) However this is not a problem at -all. Now we finally have the desired indication that deflate() is really done, -and so we drop out of the inner loop to provide more input to deflate(). -

-With flush set to Z_FINISH, this final set of deflate() calls will -complete the output stream. Once that is done, subsequent calls of deflate() would return -Z_STREAM_ERROR if the flush parameter is not Z_FINISH, and do no more processing -until the state is reinitialized. -

-Some applications of zlib have two loops that call deflate() -instead of the single inner loop we have here. The first loop would call -without flushing and feed all of the data to deflate(). The second loop would call -deflate() with no more -data and the Z_FINISH parameter to complete the process. As you can see from this -example, that can be avoided by simply keeping track of the current flush state. -


-        } while (strm.avail_out == 0);
-        assert(strm.avail_in == 0);     /* all input will be used */
-
-Now we check to see if we have already processed all of the input file. That information was -saved in the flush variable, so we see if that was set to Z_FINISH. If so, -then we're done and we fall out of the outer loop. We're guaranteed to get Z_STREAM_END -from the last deflate() call, since we ran it until the last chunk of input was -consumed and all of the output was generated. -

-        /* done when last data in file processed */
-    } while (flush != Z_FINISH);
-    assert(ret == Z_STREAM_END);        /* stream will be complete */
-
-The process is complete, but we still need to deallocate the state to avoid a memory leak -(or rather more like a memory hemorrhage if you didn't do this). Then -finally we can return with a happy return value. -

-    /* clean up and return */
-    (void)deflateEnd(&strm);
-    return Z_OK;
-}
-
-Now we do the same thing for decompression in the inf() routine. inf() -decompresses what is hopefully a valid zlib stream from the input file and writes the -uncompressed data to the output file. Much of the discussion above for def() -applies to inf() as well, so the discussion here will focus on the differences between -the two. -

-/* Decompress from file source to file dest until stream ends or EOF.
-   inf() returns Z_OK on success, Z_MEM_ERROR if memory could not be
-   allocated for processing, Z_DATA_ERROR if the deflate data is
-   invalid or incomplete, Z_VERSION_ERROR if the version of zlib.h and
-   the version of the library linked do not match, or Z_ERRNO if there
-   is an error reading or writing the files. */
-int inf(FILE *source, FILE *dest)
-{
-
-The local variables have the same functionality as they do for def(). The -only difference is that there is no flush variable, since inflate() -can tell from the zlib stream itself when the stream is complete. -

-    int ret;
-    unsigned have;
-    z_stream strm;
-    unsigned char in[CHUNK];
-    unsigned char out[CHUNK];
-
-The initialization of the state is the same, except that there is no compression level, -of course, and two more elements of the structure are initialized. avail_in -and next_in must be initialized before calling inflateInit(). This -is because the application has the option to provide the start of the zlib stream in -order for inflateInit() to have access to information about the compression -method to aid in memory allocation. In the current implementation of zlib -(up through versions 1.2.x), the method-dependent memory allocations are deferred to the first call of -inflate() anyway. However those fields must be initialized since later versions -of zlib that provide more compression methods may take advantage of this interface. -In any case, no decompression is performed by inflateInit(), so the -avail_out and next_out fields do not need to be initialized before calling. -

-Here avail_in is set to zero and next_in is set to Z_NULL to -indicate that no input data is being provided. -


-    /* allocate inflate state */
-    strm.zalloc = Z_NULL;
-    strm.zfree = Z_NULL;
-    strm.opaque = Z_NULL;
-    strm.avail_in = 0;
-    strm.next_in = Z_NULL;
-    ret = inflateInit(&strm);
-    if (ret != Z_OK)
-        return ret;
-
-The outer do-loop decompresses input until inflate() indicates -that it has reached the end of the compressed data and has produced all of the uncompressed -output. This is in contrast to def() which processes all of the input file. -If end-of-file is reached before the compressed data self-terminates, then the compressed -data is incomplete and an error is returned. -

-    /* decompress until deflate stream ends or end of file */
-    do {
-
-We read input data and set the strm structure accordingly. If we've reached the -end of the input file, then we leave the outer loop and report an error, since the -compressed data is incomplete. Note that we may read more data than is eventually consumed -by inflate(), if the input file continues past the zlib stream. -For applications where zlib streams are embedded in other data, this routine would -need to be modified to return the unused data, or at least indicate how much of the input -data was not used, so the application would know where to pick up after the zlib stream. -

-        strm.avail_in = fread(in, 1, CHUNK, source);
-        if (ferror(source)) {
-            (void)inflateEnd(&strm);
-            return Z_ERRNO;
-        }
-        if (strm.avail_in == 0)
-            break;
-        strm.next_in = in;
-
-The inner do-loop has the same function it did in def(), which is to -keep calling inflate() until has generated all of the output it can with the -provided input. -

-        /* run inflate() on input until output buffer not full */
-        do {
-
-Just like in def(), the same output space is provided for each call of inflate(). -

-            strm.avail_out = CHUNK;
-            strm.next_out = out;
-
-Now we run the decompression engine itself. There is no need to adjust the flush parameter, since -the zlib format is self-terminating. The main difference here is that there are -return values that we need to pay attention to. Z_DATA_ERROR -indicates that inflate() detected an error in the zlib compressed data format, -which means that either the data is not a zlib stream to begin with, or that the data was -corrupted somewhere along the way since it was compressed. The other error to be processed is -Z_MEM_ERROR, which can occur since memory allocation is deferred until inflate() -needs it, unlike deflate(), whose memory is allocated at the start by deflateInit(). -

-Advanced applications may use -deflateSetDictionary() to prime deflate() with a set of likely data to improve the -first 32K or so of compression. This is noted in the zlib header, so inflate() -requests that that dictionary be provided before it can start to decompress. Without the dictionary, -correct decompression is not possible. For this routine, we have no idea what the dictionary is, -so the Z_NEED_DICT indication is converted to a Z_DATA_ERROR. -

-inflate() can also return Z_STREAM_ERROR, which should not be possible here, -but could be checked for as noted above for def(). Z_BUF_ERROR does not need to be -checked for here, for the same reasons noted for def(). Z_STREAM_END will be -checked for later. -


-            ret = inflate(&strm, Z_NO_FLUSH);
-            assert(ret != Z_STREAM_ERROR);  /* state not clobbered */
-            switch (ret) {
-            case Z_NEED_DICT:
-                ret = Z_DATA_ERROR;     /* and fall through */
-            case Z_DATA_ERROR:
-            case Z_MEM_ERROR:
-                (void)inflateEnd(&strm);
-                return ret;
-            }
-
-The output of inflate() is handled identically to that of deflate(). -

-            have = CHUNK - strm.avail_out;
-            if (fwrite(out, 1, have, dest) != have || ferror(dest)) {
-                (void)inflateEnd(&strm);
-                return Z_ERRNO;
-            }
-
-The inner do-loop ends when inflate() has no more output as indicated -by not filling the output buffer, just as for deflate(). In this case, we cannot -assert that strm.avail_in will be zero, since the deflate stream may end before the file -does. -

-        } while (strm.avail_out == 0);
-
-The outer do-loop ends when inflate() reports that it has reached the -end of the input zlib stream, has completed the decompression and integrity -check, and has provided all of the output. This is indicated by the inflate() -return value Z_STREAM_END. The inner loop is guaranteed to leave ret -equal to Z_STREAM_END if the last chunk of the input file read contained the end -of the zlib stream. So if the return value is not Z_STREAM_END, the -loop continues to read more input. -

-        /* done when inflate() says it's done */
-    } while (ret != Z_STREAM_END);
-
-At this point, decompression successfully completed, or we broke out of the loop due to no -more data being available from the input file. If the last inflate() return value -is not Z_STREAM_END, then the zlib stream was incomplete and a data error -is returned. Otherwise, we return with a happy return value. Of course, inflateEnd() -is called first to avoid a memory leak. -

-    /* clean up and return */
-    (void)inflateEnd(&strm);
-    return ret == Z_STREAM_END ? Z_OK : Z_DATA_ERROR;
-}
-
-That ends the routines that directly use zlib. The following routines make this -a command-line program by running data through the above routines from stdin to -stdout, and handling any errors reported by def() or inf(). -

-zerr() is used to interpret the possible error codes from def() -and inf(), as detailed in their comments above, and print out an error message. -Note that these are only a subset of the possible return values from deflate() -and inflate(). -


-/* report a zlib or i/o error */
-void zerr(int ret)
-{
-    fputs("zpipe: ", stderr);
-    switch (ret) {
-    case Z_ERRNO:
-        if (ferror(stdin))
-            fputs("error reading stdin\n", stderr);
-        if (ferror(stdout))
-            fputs("error writing stdout\n", stderr);
-        break;
-    case Z_STREAM_ERROR:
-        fputs("invalid compression level\n", stderr);
-        break;
-    case Z_DATA_ERROR:
-        fputs("invalid or incomplete deflate data\n", stderr);
-        break;
-    case Z_MEM_ERROR:
-        fputs("out of memory\n", stderr);
-        break;
-    case Z_VERSION_ERROR:
-        fputs("zlib version mismatch!\n", stderr);
-    }
-}
-
-Here is the main() routine used to test def() and inf(). The -zpipe command is simply a compression pipe from stdin to stdout, if -no arguments are given, or it is a decompression pipe if zpipe -d is used. If any other -arguments are provided, no compression or decompression is performed. Instead a usage -message is displayed. Examples are zpipe < foo.txt > foo.txt.z to compress, and -zpipe -d < foo.txt.z > foo.txt to decompress. -

-/* compress or decompress from stdin to stdout */
-int main(int argc, char **argv)
-{
-    int ret;
-
-    /* avoid end-of-line conversions */
-    SET_BINARY_MODE(stdin);
-    SET_BINARY_MODE(stdout);
-
-    /* do compression if no arguments */
-    if (argc == 1) {
-        ret = def(stdin, stdout, Z_DEFAULT_COMPRESSION);
-        if (ret != Z_OK)
-            zerr(ret);
-        return ret;
-    }
-
-    /* do decompression if -d specified */
-    else if (argc == 2 && strcmp(argv[1], "-d") == 0) {
-        ret = inf(stdin, stdout);
-        if (ret != Z_OK)
-            zerr(ret);
-        return ret;
-    }
-
-    /* otherwise, report usage */
-    else {
-        fputs("zpipe usage: zpipe [-d] < source > dest\n", stderr);
-        return 1;
-    }
-}
-
-
-Copyright (c) 2004, 2005 by Mark Adler
Last modified 11 December 2005
- - diff --git a/zlib-1.2.7/examples/zpipe.c b/zlib-1.2.7/examples/zpipe.c deleted file mode 100755 index 83535d169..000000000 --- a/zlib-1.2.7/examples/zpipe.c +++ /dev/null @@ -1,205 +0,0 @@ -/* zpipe.c: example of proper use of zlib's inflate() and deflate() - Not copyrighted -- provided to the public domain - Version 1.4 11 December 2005 Mark Adler */ - -/* Version history: - 1.0 30 Oct 2004 First version - 1.1 8 Nov 2004 Add void casting for unused return values - Use switch statement for inflate() return values - 1.2 9 Nov 2004 Add assertions to document zlib guarantees - 1.3 6 Apr 2005 Remove incorrect assertion in inf() - 1.4 11 Dec 2005 Add hack to avoid MSDOS end-of-line conversions - Avoid some compiler warnings for input and output buffers - */ - -#include -#include -#include -#include "zlib.h" - -#if defined(MSDOS) || defined(OS2) || defined(WIN32) || defined(__CYGWIN__) -# include -# include -# define SET_BINARY_MODE(file) setmode(fileno(file), O_BINARY) -#else -# define SET_BINARY_MODE(file) -#endif - -#define CHUNK 16384 - -/* Compress from file source to file dest until EOF on source. - def() returns Z_OK on success, Z_MEM_ERROR if memory could not be - allocated for processing, Z_STREAM_ERROR if an invalid compression - level is supplied, Z_VERSION_ERROR if the version of zlib.h and the - version of the library linked do not match, or Z_ERRNO if there is - an error reading or writing the files. */ -int def(FILE *source, FILE *dest, int level) -{ - int ret, flush; - unsigned have; - z_stream strm; - unsigned char in[CHUNK]; - unsigned char out[CHUNK]; - - /* allocate deflate state */ - strm.zalloc = Z_NULL; - strm.zfree = Z_NULL; - strm.opaque = Z_NULL; - ret = deflateInit(&strm, level); - if (ret != Z_OK) - return ret; - - /* compress until end of file */ - do { - strm.avail_in = fread(in, 1, CHUNK, source); - if (ferror(source)) { - (void)deflateEnd(&strm); - return Z_ERRNO; - } - flush = feof(source) ? Z_FINISH : Z_NO_FLUSH; - strm.next_in = in; - - /* run deflate() on input until output buffer not full, finish - compression if all of source has been read in */ - do { - strm.avail_out = CHUNK; - strm.next_out = out; - ret = deflate(&strm, flush); /* no bad return value */ - assert(ret != Z_STREAM_ERROR); /* state not clobbered */ - have = CHUNK - strm.avail_out; - if (fwrite(out, 1, have, dest) != have || ferror(dest)) { - (void)deflateEnd(&strm); - return Z_ERRNO; - } - } while (strm.avail_out == 0); - assert(strm.avail_in == 0); /* all input will be used */ - - /* done when last data in file processed */ - } while (flush != Z_FINISH); - assert(ret == Z_STREAM_END); /* stream will be complete */ - - /* clean up and return */ - (void)deflateEnd(&strm); - return Z_OK; -} - -/* Decompress from file source to file dest until stream ends or EOF. - inf() returns Z_OK on success, Z_MEM_ERROR if memory could not be - allocated for processing, Z_DATA_ERROR if the deflate data is - invalid or incomplete, Z_VERSION_ERROR if the version of zlib.h and - the version of the library linked do not match, or Z_ERRNO if there - is an error reading or writing the files. */ -int inf(FILE *source, FILE *dest) -{ - int ret; - unsigned have; - z_stream strm; - unsigned char in[CHUNK]; - unsigned char out[CHUNK]; - - /* allocate inflate state */ - strm.zalloc = Z_NULL; - strm.zfree = Z_NULL; - strm.opaque = Z_NULL; - strm.avail_in = 0; - strm.next_in = Z_NULL; - ret = inflateInit(&strm); - if (ret != Z_OK) - return ret; - - /* decompress until deflate stream ends or end of file */ - do { - strm.avail_in = fread(in, 1, CHUNK, source); - if (ferror(source)) { - (void)inflateEnd(&strm); - return Z_ERRNO; - } - if (strm.avail_in == 0) - break; - strm.next_in = in; - - /* run inflate() on input until output buffer not full */ - do { - strm.avail_out = CHUNK; - strm.next_out = out; - ret = inflate(&strm, Z_NO_FLUSH); - assert(ret != Z_STREAM_ERROR); /* state not clobbered */ - switch (ret) { - case Z_NEED_DICT: - ret = Z_DATA_ERROR; /* and fall through */ - case Z_DATA_ERROR: - case Z_MEM_ERROR: - (void)inflateEnd(&strm); - return ret; - } - have = CHUNK - strm.avail_out; - if (fwrite(out, 1, have, dest) != have || ferror(dest)) { - (void)inflateEnd(&strm); - return Z_ERRNO; - } - } while (strm.avail_out == 0); - - /* done when inflate() says it's done */ - } while (ret != Z_STREAM_END); - - /* clean up and return */ - (void)inflateEnd(&strm); - return ret == Z_STREAM_END ? Z_OK : Z_DATA_ERROR; -} - -/* report a zlib or i/o error */ -void zerr(int ret) -{ - fputs("zpipe: ", stderr); - switch (ret) { - case Z_ERRNO: - if (ferror(stdin)) - fputs("error reading stdin\n", stderr); - if (ferror(stdout)) - fputs("error writing stdout\n", stderr); - break; - case Z_STREAM_ERROR: - fputs("invalid compression level\n", stderr); - break; - case Z_DATA_ERROR: - fputs("invalid or incomplete deflate data\n", stderr); - break; - case Z_MEM_ERROR: - fputs("out of memory\n", stderr); - break; - case Z_VERSION_ERROR: - fputs("zlib version mismatch!\n", stderr); - } -} - -/* compress or decompress from stdin to stdout */ -int main(int argc, char **argv) -{ - int ret; - - /* avoid end-of-line conversions */ - SET_BINARY_MODE(stdin); - SET_BINARY_MODE(stdout); - - /* do compression if no arguments */ - if (argc == 1) { - ret = def(stdin, stdout, Z_DEFAULT_COMPRESSION); - if (ret != Z_OK) - zerr(ret); - return ret; - } - - /* do decompression if -d specified */ - else if (argc == 2 && strcmp(argv[1], "-d") == 0) { - ret = inf(stdin, stdout); - if (ret != Z_OK) - zerr(ret); - return ret; - } - - /* otherwise, report usage */ - else { - fputs("zpipe usage: zpipe [-d] < source > dest\n", stderr); - return 1; - } -} diff --git a/zlib-1.2.7/examples/zran.c b/zlib-1.2.7/examples/zran.c deleted file mode 100755 index 617a13086..000000000 --- a/zlib-1.2.7/examples/zran.c +++ /dev/null @@ -1,404 +0,0 @@ -/* zran.c -- example of zlib/gzip stream indexing and random access - * Copyright (C) 2005 Mark Adler - * For conditions of distribution and use, see copyright notice in zlib.h - Version 1.0 29 May 2005 Mark Adler */ - -/* Illustrate the use of Z_BLOCK, inflatePrime(), and inflateSetDictionary() - for random access of a compressed file. A file containing a zlib or gzip - stream is provided on the command line. The compressed stream is decoded in - its entirety, and an index built with access points about every SPAN bytes - in the uncompressed output. The compressed file is left open, and can then - be read randomly, having to decompress on the average SPAN/2 uncompressed - bytes before getting to the desired block of data. - - An access point can be created at the start of any deflate block, by saving - the starting file offset and bit of that block, and the 32K bytes of - uncompressed data that precede that block. Also the uncompressed offset of - that block is saved to provide a referece for locating a desired starting - point in the uncompressed stream. build_index() works by decompressing the - input zlib or gzip stream a block at a time, and at the end of each block - deciding if enough uncompressed data has gone by to justify the creation of - a new access point. If so, that point is saved in a data structure that - grows as needed to accommodate the points. - - To use the index, an offset in the uncompressed data is provided, for which - the latest accees point at or preceding that offset is located in the index. - The input file is positioned to the specified location in the index, and if - necessary the first few bits of the compressed data is read from the file. - inflate is initialized with those bits and the 32K of uncompressed data, and - the decompression then proceeds until the desired offset in the file is - reached. Then the decompression continues to read the desired uncompressed - data from the file. - - Another approach would be to generate the index on demand. In that case, - requests for random access reads from the compressed data would try to use - the index, but if a read far enough past the end of the index is required, - then further index entries would be generated and added. - - There is some fair bit of overhead to starting inflation for the random - access, mainly copying the 32K byte dictionary. So if small pieces of the - file are being accessed, it would make sense to implement a cache to hold - some lookahead and avoid many calls to extract() for small lengths. - - Another way to build an index would be to use inflateCopy(). That would - not be constrained to have access points at block boundaries, but requires - more memory per access point, and also cannot be saved to file due to the - use of pointers in the state. The approach here allows for storage of the - index in a file. - */ - -#include -#include -#include -#include "zlib.h" - -#define local static - -#define SPAN 1048576L /* desired distance between access points */ -#define WINSIZE 32768U /* sliding window size */ -#define CHUNK 16384 /* file input buffer size */ - -/* access point entry */ -struct point { - off_t out; /* corresponding offset in uncompressed data */ - off_t in; /* offset in input file of first full byte */ - int bits; /* number of bits (1-7) from byte at in - 1, or 0 */ - unsigned char window[WINSIZE]; /* preceding 32K of uncompressed data */ -}; - -/* access point list */ -struct access { - int have; /* number of list entries filled in */ - int size; /* number of list entries allocated */ - struct point *list; /* allocated list */ -}; - -/* Deallocate an index built by build_index() */ -local void free_index(struct access *index) -{ - if (index != NULL) { - free(index->list); - free(index); - } -} - -/* Add an entry to the access point list. If out of memory, deallocate the - existing list and return NULL. */ -local struct access *addpoint(struct access *index, int bits, - off_t in, off_t out, unsigned left, unsigned char *window) -{ - struct point *next; - - /* if list is empty, create it (start with eight points) */ - if (index == NULL) { - index = malloc(sizeof(struct access)); - if (index == NULL) return NULL; - index->list = malloc(sizeof(struct point) << 3); - if (index->list == NULL) { - free(index); - return NULL; - } - index->size = 8; - index->have = 0; - } - - /* if list is full, make it bigger */ - else if (index->have == index->size) { - index->size <<= 1; - next = realloc(index->list, sizeof(struct point) * index->size); - if (next == NULL) { - free_index(index); - return NULL; - } - index->list = next; - } - - /* fill in entry and increment how many we have */ - next = index->list + index->have; - next->bits = bits; - next->in = in; - next->out = out; - if (left) - memcpy(next->window, window + WINSIZE - left, left); - if (left < WINSIZE) - memcpy(next->window + left, window, WINSIZE - left); - index->have++; - - /* return list, possibly reallocated */ - return index; -} - -/* Make one entire pass through the compressed stream and build an index, with - access points about every span bytes of uncompressed output -- span is - chosen to balance the speed of random access against the memory requirements - of the list, about 32K bytes per access point. Note that data after the end - of the first zlib or gzip stream in the file is ignored. build_index() - returns the number of access points on success (>= 1), Z_MEM_ERROR for out - of memory, Z_DATA_ERROR for an error in the input file, or Z_ERRNO for a - file read error. On success, *built points to the resulting index. */ -local int build_index(FILE *in, off_t span, struct access **built) -{ - int ret; - off_t totin, totout; /* our own total counters to avoid 4GB limit */ - off_t last; /* totout value of last access point */ - struct access *index; /* access points being generated */ - z_stream strm; - unsigned char input[CHUNK]; - unsigned char window[WINSIZE]; - - /* initialize inflate */ - strm.zalloc = Z_NULL; - strm.zfree = Z_NULL; - strm.opaque = Z_NULL; - strm.avail_in = 0; - strm.next_in = Z_NULL; - ret = inflateInit2(&strm, 47); /* automatic zlib or gzip decoding */ - if (ret != Z_OK) - return ret; - - /* inflate the input, maintain a sliding window, and build an index -- this - also validates the integrity of the compressed data using the check - information at the end of the gzip or zlib stream */ - totin = totout = last = 0; - index = NULL; /* will be allocated by first addpoint() */ - strm.avail_out = 0; - do { - /* get some compressed data from input file */ - strm.avail_in = fread(input, 1, CHUNK, in); - if (ferror(in)) { - ret = Z_ERRNO; - goto build_index_error; - } - if (strm.avail_in == 0) { - ret = Z_DATA_ERROR; - goto build_index_error; - } - strm.next_in = input; - - /* process all of that, or until end of stream */ - do { - /* reset sliding window if necessary */ - if (strm.avail_out == 0) { - strm.avail_out = WINSIZE; - strm.next_out = window; - } - - /* inflate until out of input, output, or at end of block -- - update the total input and output counters */ - totin += strm.avail_in; - totout += strm.avail_out; - ret = inflate(&strm, Z_BLOCK); /* return at end of block */ - totin -= strm.avail_in; - totout -= strm.avail_out; - if (ret == Z_NEED_DICT) - ret = Z_DATA_ERROR; - if (ret == Z_MEM_ERROR || ret == Z_DATA_ERROR) - goto build_index_error; - if (ret == Z_STREAM_END) - break; - - /* if at end of block, consider adding an index entry (note that if - data_type indicates an end-of-block, then all of the - uncompressed data from that block has been delivered, and none - of the compressed data after that block has been consumed, - except for up to seven bits) -- the totout == 0 provides an - entry point after the zlib or gzip header, and assures that the - index always has at least one access point; we avoid creating an - access point after the last block by checking bit 6 of data_type - */ - if ((strm.data_type & 128) && !(strm.data_type & 64) && - (totout == 0 || totout - last > span)) { - index = addpoint(index, strm.data_type & 7, totin, - totout, strm.avail_out, window); - if (index == NULL) { - ret = Z_MEM_ERROR; - goto build_index_error; - } - last = totout; - } - } while (strm.avail_in != 0); - } while (ret != Z_STREAM_END); - - /* clean up and return index (release unused entries in list) */ - (void)inflateEnd(&strm); - index = realloc(index, sizeof(struct point) * index->have); - index->size = index->have; - *built = index; - return index->size; - - /* return error */ - build_index_error: - (void)inflateEnd(&strm); - if (index != NULL) - free_index(index); - return ret; -} - -/* Use the index to read len bytes from offset into buf, return bytes read or - negative for error (Z_DATA_ERROR or Z_MEM_ERROR). If data is requested past - the end of the uncompressed data, then extract() will return a value less - than len, indicating how much as actually read into buf. This function - should not return a data error unless the file was modified since the index - was generated. extract() may also return Z_ERRNO if there is an error on - reading or seeking the input file. */ -local int extract(FILE *in, struct access *index, off_t offset, - unsigned char *buf, int len) -{ - int ret, skip; - z_stream strm; - struct point *here; - unsigned char input[CHUNK]; - unsigned char discard[WINSIZE]; - - /* proceed only if something reasonable to do */ - if (len < 0) - return 0; - - /* find where in stream to start */ - here = index->list; - ret = index->have; - while (--ret && here[1].out <= offset) - here++; - - /* initialize file and inflate state to start there */ - strm.zalloc = Z_NULL; - strm.zfree = Z_NULL; - strm.opaque = Z_NULL; - strm.avail_in = 0; - strm.next_in = Z_NULL; - ret = inflateInit2(&strm, -15); /* raw inflate */ - if (ret != Z_OK) - return ret; - ret = fseeko(in, here->in - (here->bits ? 1 : 0), SEEK_SET); - if (ret == -1) - goto extract_ret; - if (here->bits) { - ret = getc(in); - if (ret == -1) { - ret = ferror(in) ? Z_ERRNO : Z_DATA_ERROR; - goto extract_ret; - } - (void)inflatePrime(&strm, here->bits, ret >> (8 - here->bits)); - } - (void)inflateSetDictionary(&strm, here->window, WINSIZE); - - /* skip uncompressed bytes until offset reached, then satisfy request */ - offset -= here->out; - strm.avail_in = 0; - skip = 1; /* while skipping to offset */ - do { - /* define where to put uncompressed data, and how much */ - if (offset == 0 && skip) { /* at offset now */ - strm.avail_out = len; - strm.next_out = buf; - skip = 0; /* only do this once */ - } - if (offset > WINSIZE) { /* skip WINSIZE bytes */ - strm.avail_out = WINSIZE; - strm.next_out = discard; - offset -= WINSIZE; - } - else if (offset != 0) { /* last skip */ - strm.avail_out = (unsigned)offset; - strm.next_out = discard; - offset = 0; - } - - /* uncompress until avail_out filled, or end of stream */ - do { - if (strm.avail_in == 0) { - strm.avail_in = fread(input, 1, CHUNK, in); - if (ferror(in)) { - ret = Z_ERRNO; - goto extract_ret; - } - if (strm.avail_in == 0) { - ret = Z_DATA_ERROR; - goto extract_ret; - } - strm.next_in = input; - } - ret = inflate(&strm, Z_NO_FLUSH); /* normal inflate */ - if (ret == Z_NEED_DICT) - ret = Z_DATA_ERROR; - if (ret == Z_MEM_ERROR || ret == Z_DATA_ERROR) - goto extract_ret; - if (ret == Z_STREAM_END) - break; - } while (strm.avail_out != 0); - - /* if reach end of stream, then don't keep trying to get more */ - if (ret == Z_STREAM_END) - break; - - /* do until offset reached and requested data read, or stream ends */ - } while (skip); - - /* compute number of uncompressed bytes read after offset */ - ret = skip ? 0 : len - strm.avail_out; - - /* clean up and return bytes read or error */ - extract_ret: - (void)inflateEnd(&strm); - return ret; -} - -/* Demonstrate the use of build_index() and extract() by processing the file - provided on the command line, and the extracting 16K from about 2/3rds of - the way through the uncompressed output, and writing that to stdout. */ -int main(int argc, char **argv) -{ - int len; - off_t offset; - FILE *in; - struct access *index = NULL; - unsigned char buf[CHUNK]; - - /* open input file */ - if (argc != 2) { - fprintf(stderr, "usage: zran file.gz\n"); - return 1; - } - in = fopen(argv[1], "rb"); - if (in == NULL) { - fprintf(stderr, "zran: could not open %s for reading\n", argv[1]); - return 1; - } - - /* build index */ - len = build_index(in, SPAN, &index); - if (len < 0) { - fclose(in); - switch (len) { - case Z_MEM_ERROR: - fprintf(stderr, "zran: out of memory\n"); - break; - case Z_DATA_ERROR: - fprintf(stderr, "zran: compressed data error in %s\n", argv[1]); - break; - case Z_ERRNO: - fprintf(stderr, "zran: read error on %s\n", argv[1]); - break; - default: - fprintf(stderr, "zran: error %d while building index\n", len); - } - return 1; - } - fprintf(stderr, "zran: built index with %d access points\n", len); - - /* use index by reading some bytes from an arbitrary offset */ - offset = (index->list[index->have - 1].out << 1) / 3; - len = extract(in, index, offset, buf, CHUNK); - if (len < 0) - fprintf(stderr, "zran: extraction failed: %s error\n", - len == Z_MEM_ERROR ? "out of memory" : "input corrupted"); - else { - fwrite(buf, 1, len, stdout); - fprintf(stderr, "zran: extracted %d bytes at %llu\n", len, offset); - } - - /* clean up and exit */ - free_index(index); - fclose(in); - return 0; -} diff --git a/zlib-1.2.7/nintendods/Makefile b/zlib-1.2.7/nintendods/Makefile deleted file mode 100755 index 21337d01a..000000000 --- a/zlib-1.2.7/nintendods/Makefile +++ /dev/null @@ -1,126 +0,0 @@ -#--------------------------------------------------------------------------------- -.SUFFIXES: -#--------------------------------------------------------------------------------- - -ifeq ($(strip $(DEVKITARM)),) -$(error "Please set DEVKITARM in your environment. export DEVKITARM=devkitARM") -endif - -include $(DEVKITARM)/ds_rules - -#--------------------------------------------------------------------------------- -# TARGET is the name of the output -# BUILD is the directory where object files & intermediate files will be placed -# SOURCES is a list of directories containing source code -# DATA is a list of directories containing data files -# INCLUDES is a list of directories containing header files -#--------------------------------------------------------------------------------- -TARGET := $(shell basename $(CURDIR)) -BUILD := build -SOURCES := ../../ -DATA := data -INCLUDES := include - -#--------------------------------------------------------------------------------- -# options for code generation -#--------------------------------------------------------------------------------- -ARCH := -mthumb -mthumb-interwork - -CFLAGS := -Wall -O2\ - -march=armv5te -mtune=arm946e-s \ - -fomit-frame-pointer -ffast-math \ - $(ARCH) - -CFLAGS += $(INCLUDE) -DARM9 -CXXFLAGS := $(CFLAGS) -fno-rtti -fno-exceptions - -ASFLAGS := $(ARCH) -march=armv5te -mtune=arm946e-s -LDFLAGS = -specs=ds_arm9.specs -g $(ARCH) -Wl,-Map,$(notdir $*.map) - -#--------------------------------------------------------------------------------- -# list of directories containing libraries, this must be the top level containing -# include and lib -#--------------------------------------------------------------------------------- -LIBDIRS := $(LIBNDS) - -#--------------------------------------------------------------------------------- -# no real need to edit anything past this point unless you need to add additional -# rules for different file extensions -#--------------------------------------------------------------------------------- -ifneq ($(BUILD),$(notdir $(CURDIR))) -#--------------------------------------------------------------------------------- - -export OUTPUT := $(CURDIR)/lib/libz.a - -export VPATH := $(foreach dir,$(SOURCES),$(CURDIR)/$(dir)) \ - $(foreach dir,$(DATA),$(CURDIR)/$(dir)) - -export DEPSDIR := $(CURDIR)/$(BUILD) - -CFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.c))) -CPPFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.cpp))) -SFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.s))) -BINFILES := $(foreach dir,$(DATA),$(notdir $(wildcard $(dir)/*.*))) - -#--------------------------------------------------------------------------------- -# use CXX for linking C++ projects, CC for standard C -#--------------------------------------------------------------------------------- -ifeq ($(strip $(CPPFILES)),) -#--------------------------------------------------------------------------------- - export LD := $(CC) -#--------------------------------------------------------------------------------- -else -#--------------------------------------------------------------------------------- - export LD := $(CXX) -#--------------------------------------------------------------------------------- -endif -#--------------------------------------------------------------------------------- - -export OFILES := $(addsuffix .o,$(BINFILES)) \ - $(CPPFILES:.cpp=.o) $(CFILES:.c=.o) $(SFILES:.s=.o) - -export INCLUDE := $(foreach dir,$(INCLUDES),-I$(CURDIR)/$(dir)) \ - $(foreach dir,$(LIBDIRS),-I$(dir)/include) \ - -I$(CURDIR)/$(BUILD) - -.PHONY: $(BUILD) clean all - -#--------------------------------------------------------------------------------- -all: $(BUILD) - @[ -d $@ ] || mkdir -p include - @cp ../../*.h include - -lib: - @[ -d $@ ] || mkdir -p $@ - -$(BUILD): lib - @[ -d $@ ] || mkdir -p $@ - @$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile - -#--------------------------------------------------------------------------------- -clean: - @echo clean ... - @rm -fr $(BUILD) lib - -#--------------------------------------------------------------------------------- -else - -DEPENDS := $(OFILES:.o=.d) - -#--------------------------------------------------------------------------------- -# main targets -#--------------------------------------------------------------------------------- -$(OUTPUT) : $(OFILES) - -#--------------------------------------------------------------------------------- -%.bin.o : %.bin -#--------------------------------------------------------------------------------- - @echo $(notdir $<) - @$(bin2o) - - --include $(DEPENDS) - -#--------------------------------------------------------------------------------------- -endif -#---------------------------------------------------------------------------------------